UweKnopf / stoex

https://stoex.vercel.app
3 stars 1 forks source link

Bump the dev-major group with 21 updates #128

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the dev-major group with 21 updates:

Package From To
@floating-ui/dom 1.5.3 1.6.3
@playwright/test 1.39.0 1.42.1
@skeletonlabs/skeleton 2.5.0 2.9.0
@skeletonlabs/tw-plugin 0.2.4 0.3.1
@sveltejs/adapter-auto 2.1.1 3.1.1
@sveltejs/kit 1.27.6 2.5.3
@types/node 20.9.2 20.11.25
@typescript-eslint/eslint-plugin 6.10.0 7.1.1
@typescript-eslint/parser 6.10.0 7.1.1
@vincjo/datatables 1.12.8 1.14.5
eslint 8.53.0 8.57.0
eslint-config-prettier 9.0.0 9.1.0
prettier 3.0.3 3.2.5
prettier-plugin-svelte 3.0.3 3.2.2
svelte-check 3.5.2 3.6.6
sveltekit-superforms 1.10.2 2.8.1
tailwindcss 3.3.5 3.4.1
typescript 5.2.2 5.4.2
vite 4.5.0 5.1.5
vite-plugin-tailwind-purgecss 0.1.3 0.2.0
vitest 0.34.6 1.3.1

Updates @floating-ui/dom from 1.5.3 to 1.6.3

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.3

Patch Changes

  • fix: calculate reference element offset relative to offsetParent iframe. Fixes issue with positioning in nested iframes, such as the following:
<html>
  <iframe>
    <div>floating</div>
    <iframe>
      <div>reference</div>
    </iframe>
  </iframe>
</html>

@​floating-ui/dom@​1.6.2

Patch Changes

  • fix: top layer element positioning and collision detection when using absolute strategy

@​floating-ui/dom@​1.6.1

Patch Changes

  • perf: avoid getContainingBlock call for non-top layer elements

@​floating-ui/dom@​1.6.0

Minor Changes

  • fix: handle CSS :top-layer elements inside containing blocks. It's no longer necessary to implement the middleware workaround outlined in floating-ui/floating-ui#1842.

Patch Changes

  • Update dependencies: @floating-ui/core@1.6.0

@​floating-ui/dom@​1.5.4

Patch Changes

  • 4c04669: chore: export .d.mts types, solves #2472
  • 0d18e37: refactor: avoid $ property appearing in rects dimensions
  • Updated dependencies [afb7e5e]
    • @​floating-ui/utils@​0.2.0
    • @​floating-ui/core@​1.5.3
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.3

Patch Changes

  • fix: calculate reference element offset relative to offsetParent iframe. Fixes issue with positioning in nested iframes, such as the following:
<html>
  <iframe>
    <div>floating</div>
    <iframe>
      <div>reference</div>
    </iframe>
  </iframe>
</html>

1.6.2

Patch Changes

  • fix: top layer element positioning and collision detection when using absolute strategy

1.6.1

Patch Changes

  • perf: avoid getContainingBlock call for non-top layer elements

1.6.0

Minor Changes

  • fix: handle CSS :top-layer elements inside containing blocks. It's no longer necessary to implement the middleware workaround outlined in floating-ui/floating-ui#1842.

Patch Changes

  • Update dependencies: @floating-ui/core@1.6.0

1.5.4

Patch Changes

  • 4c04669: chore: exports .d.mts types, solves #2472
  • 0d18e37: refactor: avoid $ appearing in rects dimensions
  • Updated dependencies [4c04669]
  • Updated dependencies [afb7e5e]
    • @​floating-ui/utils@​0.2.0

... (truncated)

Commits


Updates @playwright/test from 1.39.0 to 1.42.1

Release notes

Sourced from @​playwright/test's releases.

v1.42.1

Highlights

microsoft/playwright#29732 - [Regression]: HEAD requests to webServer.url since v1.42.0 microsoft/playwright#29746 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin import microsoft/playwright#29739 - [Bug]: Component tests fails when imported a module with a dot in a name microsoft/playwright#29731 - [Regression]: 1.42.0 breaks some import statements microsoft/playwright#29760 - [Bug]: Possible regression with chained locators in v1.42

Browser Versions

  • Chromium 123.0.6312.4
  • Mozilla Firefox 123.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 122
  • Microsoft Edge 123

v1.42.0

New APIs

  • Test tags

    New tag syntax for adding tags to the tests (@-tokens in the test title are still supported).

    test('test customer login', { tag: ['@fast', '@login'] }, async ({ page }) => {
      // ...
    });
    

    Use --grep command line option to run only tests with certain tags.

    npx playwright test --grep @fast
    
  • Annotating skipped tests

    New annotation syntax for test annotations allows annotating the tests that do not run.

    test('test full report', {
      annotation: [
        { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23180' },
        { type: 'docs', description: 'https://playwright.dev/docs/test-annotations#tag-tests' },
      ],
    }, async ({ page }) => {
      // ...
    });
    

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by yurys, a new releaser for @​playwright/test since your current version.


Updates @skeletonlabs/skeleton from 2.5.0 to 2.9.0

Release notes

Sourced from @​skeletonlabs/skeleton's releases.

@​skeletonlabs/skeleton@​2.9.0

Minor Changes

  • feat: Added disabled prop to ListBox and ListBoxItem components. (#2485)

@​skeletonlabs/skeleton@​2.8.0

Minor Changes

  • feat: InputChips now allow you to add/remove chips programatically. (#2347)

Patch Changes

  • bugfix: Removed recursive-tree-view's unused props for disabled and open (#2427)

  • bugfix: CodeBlock copy button type is now button instead of default (submit) (#2428)

  • bugfix: added label prop to InputChips to provide aria-label for a11y (#2445)

  • chore: Applied @html interpretation to Autocomplete empty state (#2448)

@​skeletonlabs/skeleton@​2.7.1

Patch Changes

  • chore: Use the ActionReturn type for the clipboard action (#2376)

@​skeletonlabs/skeleton@​2.7.0

Minor Changes

  • feat: The focusTrap action can not take a set of tabIndex values to denote initial tab focus (#2191)

Patch Changes

  • bugfix: Step events have been moved to the parent Stepper component to match the documentation spec (#2341)

  • bugfix: The Modal system's subscription has been updated to avoid a potential memory leak issue (#2336)

  • bugfix: Resolved a Safari browser styling issue when Avatars are placed inside AppBar (#2333)

  • chore: Modal backdrop padding can now be overwritten via regionProp and backdropClasses (#2332)

  • bugfix: Modal Prompt of type number now returns number instead of a string (#2334)

  • bugfix: Fixed an issue where Models would shift or wobble slightly on open (#2255)

@​skeletonlabs/skeleton@​2.6.1

Patch Changes

  • chore: Added a animIndeterminate prop to customize the ProgressBar indeterminate animation. (#2317)

  • chroe: AccordionItem now includes iconOpen and iconClosed slots for custom open/closed icons (#2285)

... (truncated)

Commits
  • 0af33f4 Merge pull request #2520 from skeletonlabs/changeset-release/master
  • 18d246a chore(release): version package
  • 7bc56a1 Merge pull request #2519 from skeletonlabs/dev
  • b78a3b4 docs/fix typo in file path for Datatable.svelte within SSD docs (#2515)
  • 3a27212 Feat/add disabled to listbox listboxitem (#2485)
  • a5a588d remove store link from sidebar navigation (#2500)
  • 9314b1f Testing build isolation
  • 2b72ae1 Merge pull request #2478 from kmalloy24/docs/ssd-typo
  • 191526d typo
  • c6a4ddc Merge pull request #2476 from skeletonlabs/changeset-release/master
  • Additional commits viewable in compare view


Updates @skeletonlabs/tw-plugin from 0.2.4 to 0.3.1

Release notes

Sourced from @​skeletonlabs/tw-plugin's releases.

@​skeletonlabs/tw-plugin@​0.3.1

Patch Changes

  • chore: Table element styles now use the md: breakpoint for adjusting whitespace settings for cells (#2339)

  • bugfix: Fixed input style layout shift when the readonly attribute is set (#2330)

@​skeletonlabs/tw-plugin@​0.3.0

Minor Changes

  • feat: Added design tokens for divide and decoration (#2290)
Commits


Updates @sveltejs/adapter-auto from 2.1.1 to 3.1.1

Release notes

Sourced from @​sveltejs/adapter-auto's releases.

@​sveltejs/adapter-auto@​3.1.1

Patch Changes

  • fix: better error message when using read (#11689)

@​sveltejs/adapter-auto@​3.1.0

Minor Changes

  • feat: bump Azure adapter version (#11496)

@​sveltejs/adapter-auto@​3.0.1

Patch Changes

@​sveltejs/adapter-auto@​3.0.0

Major Changes

  • breaking: require SvelteKit 2 (#11316)
Changelog

Sourced from @​sveltejs/adapter-auto's changelog.

3.1.1

Patch Changes

  • fix: better error message when using read (#11689)

3.1.0

Minor Changes

  • feat: bump Azure adapter version (#11496)

3.0.1

Patch Changes

3.0.0

Major Changes

  • breaking: require SvelteKit 2 (#11316)
Commits


Updates @sveltejs/kit from 1.27.6 to 2.5.3

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.5.3

Patch Changes

  • fix: revert tsconfig change that includes svelte.config.js (#11908)

  • fix: exclude server worker from tsconfig again (#11727)

@​sveltejs/kit@​2.5.2

Patch Changes

  • fix: tsconfig includes should cover svelte.config.js (#11886)

@​sveltejs/kit@​2.5.1

Patch Changes

  • fix: prevent stale values after invalidation (#11870)

  • fix: prevent false positive history.pushState and history.replaceState warnings (#11858)

  • fix: relax status code types (#11781)

  • fix: popstate navigations take pushState navigations into account (#11765)

@​sveltejs/kit@​2.5.0

Minor Changes

  • feat: dev/preview/prerender platform emulation (#11730)

Patch Changes

  • fix: strip /@fs prefix correctly on Windows when invoking read() in dev mode (#11728)

@​sveltejs/kit@​2.4.3

Patch Changes

  • fix: only disallow body with GET/HEAD (#11710)

@​sveltejs/kit@​2.4.2

Patch Changes

  • fix: ignore bodies sent with non-PUT/PATCH/POST requests (#11708)

@​sveltejs/kit@​2.4.1

Patch Changes

  • fix: use Vite's default value for build.target and respect override supplied by user (#11688)

  • fix: properly decode base64 strings inside read (#11682)

  • fix: default route config to {} for feature checking (#11685)

... (truncated)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.5.3

Patch Changes

  • fix: revert tsconfig change that includes svelte.config.js (#11908)

  • fix: exclude server worker from tsconfig again (#11727)

2.5.2

Patch Changes

  • fix: tsconfig includes should cover svelte.config.js (#11886)

2.5.1

Patch Changes

  • fix: prevent stale values after invalidation (#11870)

  • fix: prevent false positive history.pushState and history.replaceState warnings (#11858)

  • fix: relax status code types (#11781)

  • fix: popstate navigations take pushState navigations into account (#11765)

2.5.0

Minor Changes

  • feat: dev/preview/prerender platform emulation (#11730)

Patch Changes

  • fix: strip /@fs prefix correctly on Windows when invoking read() in dev mode (#11728)

2.4.3

Patch Changes

  • fix: only disallow body with GET/HEAD (#11710)

2.4.2

Patch Changes

  • fix: ignore bodies sent with non-PUT/PATCH/POST requests (#11708)

2.4.1

... (truncated)

Commits


Updates @types/node from 20.9.2 to 20.11.25

Commits


Updates @typescript-eslint/eslint-plugin from 6.10.0 to 7.1.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v7.1.1

7.1.1 (2024-03-04)

🩹 Fixes

  • typescript-eslint: apply ignores to all extended configs passed to config helper function (#8567)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.1.0

7.1.0 (2024-02-26)

🚀 Features

  • eslint-plugin: add *-type-checked-only configs (#8367)
  • eslint-plugin: [naming-convention] support the auto-accessor syntax (#8084)
  • eslint-plugin: [consistent-return] add new rule (#8289)
  • typescript-estree: add debug logs for useProgramFromProjectService (#8426)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chan] allow typeof for avoiding reference error (#8472)
  • eslint-plugin: [no-misused-promises] improve check union types (#8534)
  • eslint-plugin: [no-use-before-define] fix false positive type reference in as, satisfies (#8474)
  • typescript-estree: use simpler absolutify behavior for project service client file paths (#8520)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.0.2

7.0.2 (2024-02-19)

🩹 Fixes

  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests (#8460)
  • utils: use mergeable interface for settings property (#8485)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

7.1.1 (2024-03-04)

This was a version bump only for eslint-plugin to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.1.0 (2024-02-26)

🚀 Features

  • eslint-plugin: add *-type-checked-only configs

  • eslint-plugin: [naming-convention] support the auto-accessor syntax

  • eslint-plugin: [consistent-return] add new rule

🩹 Fixes

  • eslint-plugin: [prefer-optional-chan] allow typeof for avoiding reference error

  • eslint-plugin: [no-misused-promises] improve check union types

  • eslint-plugin: [no-use-before-define] fix false positive type reference in as, satisfies

❤️ Thank You

  • Arka Pratim Chaudhuri
  • Josh Goldberg ✨
  • YeonJuan

You can read about our versioning strategy and releases on our website.

7.0.2 (2024-02-19)

🩹 Fixes

  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests

❤️ Thank You

  • Brad Zacher
  • Gareth Jones

You can read about our versioning strategy and releases on our website.

... (truncated)

Commits
  • 88b7463 chore(release): publish 7.1.1
  • 6954a4a test(eslint-plugin): [no-unused-vars] add export import namespace testcase (#...
  • 4bc6944 chore(release): publish 7.1.0
  • 1807d55 docs: add tabs in no-unsafe-unary-minus.md (#8542)
  • f2f57de test(eslint-plugin): [no-misused-promises] add test cases for spread args (#8...
  • fa67955 chore: drop T from internal types (#8521)
  • 60c1cd3 fix(eslint-plugin): [no-use-before-define] fix false positive type reference ...
  • 1458920 fix(eslint-plugin): [no-misused-promises] improve check union types (#8534)
  • c1441c8 fix(eslint-plugin): [prefer-optional-chan] allow typeof for avoiding referenc...
  • e7ec6f0 docs: from option instead of source in prefer-readonly-parameter-types (#8461)
  • Additional commits viewable in compare view


Updates @typescript-eslint/parser from 6.10.0 to 7.1.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v7.1.1

7.1.1 (2024-03-04)

🩹 Fixes

  • typescript-eslint: apply ignores to all extended configs passed to config helper function (#8567)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.1.0

7.1.0 (2024-02-26)

🚀 Features

  • eslint-plugin: add *-type-checked-only configs (#8367)
  • eslint-plugin: [naming-convention] support the auto-accessor syntax (#8084)
  • eslint-plugin: [consistent-return] add new rule (#8289)
  • typescript-estree: add debug logs for useProgramFromProjectService (#8426)

🩹 Fixes

  • eslint-plugin: [prefer-optional-chan] allow typeof for avoiding reference error (#8472)
  • eslint-plugin: [no-misused-promises] improve check union types (#8534)
  • eslint-plugin: [no-use-before-define] fix false positive type reference in as, satisfies (#8474)
  • typescript-estree: use simpler absolutify behavior for project service client file paths (#8520)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.0.2

7.0.2 (2024-02-19)

🩹 Fixes

  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests (#8460)
  • utils: use mergeable interface for settings property (#8485)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

7.1.1 (2024-03-04)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.1.0 (2024-02-26)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.0.2 (2024-02-19)

🩹 Fixes

  • fix tsconfig-less check errors, fix @types/eslint incompatibilities, add tests

❤️ Thank You

  • Brad Zacher
  • Gareth Jones

You can read about our versioning strategy and releases on our website.

7.0.1 (2024-02-12)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

7.0.0 (2024-02-12)

🚀 Features

  • ⚠️ bump ESLint, NodeJS, and TS minimum version requirements

  • add support for flat configs

⚠️ Breaking Changes

  • ⚠️ bump ESLint, NodeJS, and TS minimum version requirements

❤️ Thank You

  • Brad Zacher

... (truncated)

Commits
  • 88b7463 chore(release): publish 7.1.1
  • 4bc6944 chore(release): publish 7.1.0
  • 677e7cc chore(release): publish 7.0.2
  • 4f3215f chore(release): publish 7.0.1
  • b27de99 chore(release): publish 7.0.0
  • 1aa393c chore(deps): update dependency prettier to v3.2.5 (#8401)
  • 8ef5f4b feat: add support for flat configs (#7935)
  • 1200b4c chore(deps): update nx to v17.3.0 (#8317)
  • 584db29 feat: bump ESLint, NodeJS, and TS minimum version requirements (#8377)
  • 289ee88 chore(release): publish 6.21.0
  • Additional commits viewable in compare view


Updates @vincjo/datatables from 1.12.8 to 1.14.5

Commits


Updates eslint from 8.53.0 to 8.57.0

Release notes

Sourced from eslint's releases.

v8.57.0

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#18056) (Milos Djermanovic)

Documentation

  • 84922d0 docs: Show prerelease version in dropdown (#18139) (Nicholas C. Zakas)
  • 5b8c363 docs: Switch to Ethical Ads (#18117) (Milos Djermanovic)
  • 77dbfd9 docs: show NEXT in version selectors (#18052) (Milos Djermanovic)

Chores

  • 1813aec chore: upgrade @​eslint/js@​8.57.0 (#18143) (Milos Djermanovic)
  • 5c356bb chore: package.json update for @​eslint/js release (Jenkins)
  • f4a1fe2 test: add more tests for ignoring files and directories (#18068) (Nitin Kumar)
  • 42c0aef ci: Enable CI for v8.x branch (#18047) (Milos Djermanovic)

v8.56.0

Features

  • 0dd9704 feat: Support custom severity when reporting unused disable directives (#17212) (Bryan Mishkin)
  • 31a7e3f feat: fix no-restricted-properties false negatives with unknown objects (#17818) (Arka Pratim Chaudhuri)

Bug Fixes

  • 7d5e5f6 fix: TypeError: fs.exists is not a function on read-only file system (#17846) (Francesco Trotta)
  • 74739c8 fix: suggestion with invalid syntax in no-promise-executor-return rule (#17812) (Bryan Mishkin)

Documentation

  • 9007719 docs: update link in ways-to-extend.md (#17839) (Amel SELMANE)
  • 3a22236 docs: Update README (GitHub Actions Bot)
  • 54c3ca6 docs: fix migration-guide example (#17829) (Tanuj Kanti)
  • 4391b71 docs: check config comments in rule examples (#17815) (Francesco Trotta)
  • fd28363 docs: remove mention about ESLint stylistic rules in readme (#17810) (Zwyx)
  • 48ed5a6 docs: Update README (GitHub Actions Bot)

Chores

  • ba6af85 chore: upgrade @​eslint/js@​8.56.0 (#17864) (Milos Djermanovic)
  • 60a531a chore: package.json update for @​eslint/js release (Jenkins)
  • ba87a06 chore: update dependency markdownlint to ^0.32.0 (
    vercel[bot] commented 4 months ago

    The latest updates on your projects. Learn more about Vercel for Git ↗︎

    Name Status Preview Comments Updated (UTC)
    stoex ❌ Failed (Inspect) Mar 10, 2024 7:19pm
dependabot[bot] commented 4 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.