UweKnopf / stoex

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

Bump the dev-major group with 10 updates #66

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the dev-major group with 10 updates:

Package From To
@playwright/test 1.37.1 1.39.0
@skeletonlabs/skeleton 2.0.0 2.3.0
@skeletonlabs/tw-plugin 0.1.0 0.2.2
@sveltejs/kit 1.24.1 1.25.2
@types/node 20.5.9 20.8.5
@typescript-eslint/eslint-plugin 6.6.0 6.7.5
@typescript-eslint/parser 6.6.0 6.7.5
eslint 8.48.0 8.51.0
eslint-plugin-svelte 2.33.0 2.34.0
sveltekit-superforms 1.6.1 1.8.0

Updates @playwright/test from 1.37.1 to 1.39.0

Release notes

Sourced from @​playwright/test's releases.

v1.39.0

Add custom matchers to your expect

You can extend Playwright assertions by providing custom matchers. These matchers will be available on the expect object.

import { expect as baseExpect } from '@playwright/test';
export const expect = baseExpect.extend({
  async toHaveAmount(locator: Locator, expected: number, options?: { timeout?: number }) {
    // ... see documentation for how to write matchers.
  },
});

test('pass', async ({ page }) => { await expect(page.getByTestId('cart')).toHaveAmount(5); });

See the documentation for a full example.

Merge test fixtures

You can now merge test fixtures from multiple files or modules:

import { mergeTests } from '@playwright/test';
import { test as dbTest } from 'database-test-utils';
import { test as a11yTest } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest);

import { test } from './fixtures';

test('passes', async ({ database, page, a11y }) => {
  // use database and a11y fixtures.
});

Merge custom expect matchers

You can now merge custom expect matchers from multiple files or modules:

import { mergeTests, mergeExpects } from '@playwright/test';
import { test as dbTest, expect as dbExpect } from 'database-test-utils';
import { test as a11yTest, expect as a11yExpect } from 'a11y-test-utils';

export const test = mergeTests(dbTest, a11yTest); </tr></table>

... (truncated)

Commits


Updates @skeletonlabs/skeleton from 2.0.0 to 2.3.0

Release notes

Sourced from @​skeletonlabs/skeleton's releases.

@​skeletonlabs/skeleton@​2.3.0

Minor Changes

    • feat: File Dropzone and File Button now include a fileInput prop to reference to the input element. (#2105)
    • feat: File Dropzone now forwards the on:focus, on:focusin, and on:focusout events.
  • feat: Added input-chip-interface and input-chip-wrapper region classes to Input Chips. (#2089)

  • feat: Multiple revisions to the Tree View component: (#2069)

    • Enhanced and properly named non-recursive Tree View events.
    • Separated the recursive Tree View under the new component RecursiveTreeView.
    • RecursiveTreeView now utilizes the relational prop to enable relational checking.
    • RecursiveTreeView is now using ID arrays with 2-way binding to control the Tree View state, including:
      • expandedNodes
      • disabledNodes
      • checkedNodes
      • indeterminateNodes (affects only multiple relational mode)
    • TreeViewNode now requires a unique ID to support the new checking system.

Patch Changes

  • bugfix: Resolved an issue that allowed focusTrap to escape hidden inputs (#2077)

  • feat: Added a strokeLinecap property to to Progress Radials, enabling rounded styling (#2093)

  • chore: Accordion now has RTL compatibility via the use of the text-start class (#2109)

  • bugfix: Added title prop to Lightswitch component for better i18n support (#2090)

@​skeletonlabs/skeleton@​2.2.0

Minor Changes

  • bugfix: fixes for the new scrollbarGutter property in AppShell (#2048)

Patch Changes

  • bugfix: ensure styling is applied properly to the lock icon within the stepper component (#2056)

  • bugfix: Resolved issue where component modal's default slot is always true (#2054)

  • bugfix: Added check and error message to clipboard action when used outside secure context (#2044)

@​skeletonlabs/skeleton@​2.1.0

Minor Changes

  • feat: App Shell now includes a new scrollbarGutter property (#2014)

Patch Changes

... (truncated)

Commits
  • cb4574e Merge pull request #2131 from skeletonlabs/changeset-release/master
  • 8b2527f chore(release): version package
  • 3a30de2 Merge fore release 10/10 (#2130)
  • 5b9aab9 Merge pull request #2079 from skeletonlabs/changeset-release/master
  • fe5755d chore(release): version package
  • cfc4aad Merge pull request #2078 from niktek/bugfix/csa-postcss-extension
  • 6d50baf Changeset
  • 80fa905 Changed back to cjs file extension
  • 5bcf1da updated tw-settings.json
  • 1085dfe Merge pull request #2076 from skeletonlabs/changeset-release/master
  • Additional commits viewable in compare view


Updates @skeletonlabs/tw-plugin from 0.1.0 to 0.2.2

Release notes

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

@​skeletonlabs/tw-plugin@​0.2.2

Patch Changes

  • bugfix: Separated light/dark classes for input validation variants (#2121)

  • bugfix: Resolved an issue where the Ring design token would generate invalid CSS when using the important modifier ! (#2111)

@​skeletonlabs/tw-plugin@​0.2.1

Patch Changes

  • bugfix: Added disabled style for the .btn-icon class (#2062)

  • bugfix: Fixed btn-group styles affecting children of its children (#2043)

@​skeletonlabs/tw-plugin@​0.2.0

Minor Changes

  • feat: Enable disabled input styling for inputs within input groups (#2018)

Patch Changes

  • bugfix: Wintry theme on- color contrast accessability improved (#2016)
Commits
  • cb4574e Merge pull request #2131 from skeletonlabs/changeset-release/master
  • 8b2527f chore(release): version package
  • 3a30de2 Merge fore release 10/10 (#2130)
  • 5b9aab9 Merge pull request #2079 from skeletonlabs/changeset-release/master
  • fe5755d chore(release): version package
  • cfc4aad Merge pull request #2078 from niktek/bugfix/csa-postcss-extension
  • 6d50baf Changeset
  • 80fa905 Changed back to cjs file extension
  • 5bcf1da updated tw-settings.json
  • 1085dfe Merge pull request #2076 from skeletonlabs/changeset-release/master
  • Additional commits viewable in compare view


Updates @sveltejs/kit from 1.24.1 to 1.25.2

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​1.25.2

Patch Changes

  • fix: correctly update $page.url.hash when navigating history (#10843)

  • fix: strip virtual module prefix from error messages (#10776)

  • fix: cancel ongoing navigation when the browser back button is hit to prevent an incorrect page from being rendered (#10727)

  • fix: only remove Vite manifest when copying files (#10782)

@​sveltejs/kit@​1.25.1

Patch Changes

  • fix: correct line numbers in stack trace (#10769)

  • fix: correctly return 404 when navigating to a missing page and the root layout fetches a prerendered endpoint (#10565)

  • fix: allow optional param in middle of route (#10736)

  • chore: update undici (#10641)

@​sveltejs/kit@​1.25.0

Minor Changes

  • feat: add server endpoint catch-all method handler fallback (#9755)

Patch Changes

  • fix: allow calling fetch for any scheme (#10699)
Changelog

Sourced from @​sveltejs/kit's changelog.

1.25.2

Patch Changes

  • fix: correctly update $page.url.hash when navigating history (#10843)

  • fix: strip virtual module prefix from error messages (#10776)

  • fix: cancel ongoing navigation when the browser back button is hit to prevent an incorrect page from being rendered (#10727)

  • fix: only remove Vite manifest when copying files (#10782)

1.25.1

Patch Changes

  • fix: correct line numbers in stack trace (#10769)

  • fix: correctly return 404 when navigating to a missing page and the root layout fetches a prerendered endpoint (#10565)

  • fix: allow optional param in middle of route (#10736)

  • chore: update undici (#10641)

1.25.0

Minor Changes

  • feat: add server endpoint catch-all method handler fallback (#9755)

Patch Changes

  • fix: allow calling fetch for any scheme (#10699)
Commits


Updates @types/node from 20.5.9 to 20.8.5

Commits


Updates @typescript-eslint/eslint-plugin from 6.6.0 to 6.7.5

Release notes

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

v6.7.5

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

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

v6.7.4

6.7.4 (2023-10-02)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

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

v6.7.3

6.7.3 (2023-09-25)

Bug Fixes

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

v6.7.2

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

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

v6.7.1

6.7.1 (2023-09-18)

⚠️ Due to an npm registry server error, the packages at this version were partially published. Please use 6.7.2 instead.

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

v6.7.0

6.7.0 (2023-09-11)

... (truncated)

Changelog

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

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

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

6.7.4 (2023-10-02)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

6.7.3 (2023-09-25)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

6.7.1 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

... (truncated)

Commits
  • 36aecb6 chore: publish v6.7.5
  • db40a0a fix(eslint-plugin): [prefer-string-starts-ends-with] only report slice/substr...
  • 8f4d939 docs: fix prefer-optional-chain example for the unsafe fixes option (#7711)
  • d948dc4 chore: publish v6.7.4
  • 91a3e0c chore: publish v6.7.3
  • dec6cbe docs(eslint-plugin): replaced the Out-of-date TS error codes in eslint-recomm...
  • ddb8589 chore: publish v6.7.2
  • aefb268 chore: publish v6.7.1
  • 9cf757a chore(eslint-plugin): refactor getTypeFromNode to parserServices.getTypeAtLoc...
  • e0cb751 docs(eslint-plugin): add warning about superfluous rules with typescript (#7372)
  • Additional commits viewable in compare view


Updates @typescript-eslint/parser from 6.6.0 to 6.7.5

Release notes

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

v6.7.5

6.7.5 (2023-10-09)

Bug Fixes

  • eslint-plugin: [prefer-string-starts-ends-with] only report slice/substring with correct range (#7712) (db40a0a)

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

v6.7.4

6.7.4 (2023-10-02)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

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

v6.7.3

6.7.3 (2023-09-25)

Bug Fixes

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

v6.7.2

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

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

v6.7.1

6.7.1 (2023-09-18)

⚠️ Due to an npm registry server error, the packages at this version were partially published. Please use 6.7.2 instead.

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

v6.7.0

6.7.0 (2023-09-11)

... (truncated)

Changelog

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

6.7.5 (2023-10-09)

Note: Version bump only for package @​typescript-eslint/parser

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

6.7.4 (2023-10-02)

Note: Version bump only for package @​typescript-eslint/parser

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

6.7.3 (2023-09-25)

Note: Version bump only for package @​typescript-eslint/parser

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

6.7.2 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/parser

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

6.7.1 (2023-09-18)

Note: Version bump only for package @​typescript-eslint/parser

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

... (truncated)

Commits


Updates eslint from 8.48.0 to 8.51.0

Release notes

Sourced from eslint's releases.

v8.51.0

Features

  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)

Bug Fixes

  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)

Documentation

  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 1866da5 docs: Update README (GitHub Actions Bot)

Chores

  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624) (Milos Djermanovic)
  • f8c7403 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 2665552 test: fix flat config linter tests to use Linter in flat config mode (#17616) (Milos Djermanovic)
  • 7b77bcc chore: Refactor CodePathState (#17510) (Nicholas C. Zakas)
  • bc77c9a chore: Document and refactor ForkContext (#17566) (Nicholas C. Zakas)
  • 24e1f14 chore: Refactor and document CodePath (#17558) (Nicholas C. Zakas)

v8.50.0

Features

  • 27d5a9e feat: add suggestions to array-callback-return (#17590) (Tanuj Kanti)
  • f9082ff feat: flat-rule-tester make sure default config always matches (#17585) (fnx)
  • 83914ad feat: Implement SourceCode#applyInlineConfig() (#17351) (Nicholas C. Zakas)
  • 22a5582 feat: add rule no-object-constructor, deprecate no-new-object (#17576) (Francesco Trotta)
  • 85a3d9e feat: allowVoid option in array-callback-return (#17564) (Tanuj Kanti)

Bug Fixes

  • cc4d26b fix: Ensure deprecated context.parserServices warns (#17593) (Nicholas C. Zakas)
  • 1ea4cfb fix: Ensure all RuleTester tests all deprecated context methods (#17587) (Nicholas C. Zakas)
  • aa1b657 fix: wrong suggestion and message in no-misleading-character-class (#17571) (Yosuke Ota)

Documentation

  • 1800537 docs: Fix and standardize JSX code examples (#17591) (Francesco Trotta)
  • 48a44a7 docs: Add correct/incorrect tags to prefer-arrow-callback (#17589) (Francesco Trotta)
  • 20893d4 docs: fix incorrect tag's place (#17575) (Tanuj Kanti)
  • bd7a71f docs: Update README (GitHub Actions Bot)

Chores

  • f8a8a2d chore: upgrade @​eslint/js@​8.50.0 (#17599) (Milos Djermanovic)
  • 38ada6d chore: package.json update for @​eslint/js release (ESLint Jenkins)

v8.49.0

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.51.0 - October 6, 2023

  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624) (Milos Djermanovic)
  • f8c7403 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)
  • 2665552 test: fix flat config linter tests to use Linter in flat config mode (#17616) (Milos Djermanovic)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 1866da5 docs: Update README (GitHub Actions Bot)
  • 7b77bcc chore: Refactor CodePathState (#17510) (Nicholas C. Zakas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)
  • bc77c9a chore: Document and refactor ForkContext (#17566) (Nicholas C. Zakas)
  • 24e1f14 chore: Refactor and document CodePath (#17558) (Nicholas C. Zakas)

v8.50.0 - September 22, 2023

  • f8a8a2d chore: upgrade @​eslint/js@​8.50.0 (#17599) (Milos Djermanovic)
  • 38ada6d chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 27d5a9e feat: add suggestions to array-callback-return (#17590) (Tanuj Kanti)
  • f9082ff feat: flat-rule-tester make sure default config always matches (#17585) (fnx)
  • 83914ad feat: Implement SourceCode#applyInlineConfig() (#17351) (Nicholas C. Zakas)
  • cc4d26b fix: Ensure deprecated context.parserServices warns (#17593) (Nicholas C. Zakas)
  • 1ea4cfb fix: Ensure all RuleTester tests all deprecated context methods (#17587) (Nicholas C. Zakas)
  • 1800537 docs: Fix and standardize JSX code examples (#17591) (Francesco Trotta)
  • 22a5582 feat: add rule no-object-constructor, deprecate no-new-object (#17576) (Francesco Trotta)
  • 48a44a7 docs: Add correct/incorrect tags to prefer-arrow-callback (#17589) (Francesco Trotta)
  • aa1b657 fix: wrong suggestion and message in no-misleading-character-class (#17571) (Yosuke Ota)
  • 20893d4 docs: fix incorrect tag's place (#17575) (Tanuj Kanti)
  • 85a3d9e feat: allowVoid option in array-callback-return (#17564) (Tanuj Kanti)
  • bd7a71f docs: Update README (GitHub Actions Bot)

v8.49.0 - September 8, 2023

  • b7621c3 chore: remove browser test from npm test (#17550) (Milos Djermanovic)
  • cac45d0 chore: upgrade @​eslint/js@​8.49.0 (#17549) (Milos Djermanovic)
  • cd39508 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • ecfb54f docs: Update README (GitHub Actions Bot)
  • da09f4e feat: Implement onUnreachableCodePathStart/End (#17511) (Nicholas C. Zakas)
  • de86b3b docs: update no-promise-executor-return examples (#17529) (Nitin Kumar)
  • 203a971 ci: bump actions/checkout from 3 to 4 (#17530) (dependabot[bot])
  • 32b2327 feat: Emit deprecation warnings in RuleTester (#17527) (Nicholas C. Zakas)
  • acb7df3 feat: add new enforce option to lines-between-class-members (#17462) (Nitin Kumar)
  • 032c4b1 docs: add typescript template (#17500) (James)
  • cd7da5c docs: Update README (GitHub Actions Bot)

... (truncated)

Commits
  • f079382 8.51.0
  • e8235e5 Build: changelog update for 8.51.0
  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624)
  • f8c7403 chore: package.json update for @​eslint/js release
  • f976b2f fix: make rule severity case-sensitive in flat config (#17619)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584)
  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618)
  • 2665552 test: fix flat config linter tests to use Linter in flat config mode (#17616)
  • Additional commits viewable in compare view


Updates eslint-plugin-svelte from 2.33.0 to 2.34.0

Release notes

Sourced from eslint-plugin-svelte's releases.

v2.34.0

Minor Changes

v2.33.2

Patch Changes

  • #585 d9866a1 Thanks @​ota-meshi! - fix: false positives for bind: with member in svelte/no-immutable-reactive-statements rule

v2.33.1

Patch Changes

  • #581 1645a9e Thanks @​ota-meshi! - fix: false positives for mutable member in svelte/no-immutable-reactive-statements rule
Changelog

Sourced from eslint-plugin-svelte's changelog.

2.34.0

Minor Changes

2.33.2

Patch Changes

  • #585 d9866a1 Thanks @​ota-meshi! - fix: false positives for bind: with member in svelte/no-immutable-reactive-statements rule

2.33.1

Patch Changes