Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

fix(deps): update all non-major dependencies #32

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@floating-ui/dom (source) 1.5.3 -> 1.6.3 age adoption passing confidence dependencies minor
@fontsource/roboto (source) 5.0.8 -> 5.0.12 age adoption passing confidence dependencies patch
@playwright/test (source) 1.40.1 -> 1.42.1 age adoption passing confidence devDependencies minor
@sveltejs/kit (source) 1.27.6 -> 1.30.4 age adoption passing confidence devDependencies minor
@sveltejs/package (source) 2.2.3 -> 2.3.0 age adoption passing confidence devDependencies minor
@testing-library/svelte 4.0.5 -> 4.1.0 age adoption passing confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 6.13.1 -> 6.21.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 6.13.1 -> 6.21.0 age adoption passing confidence devDependencies minor
actions/setup-node v4.0.0 -> v4.0.2 age adoption passing confidence action patch
anchore/sbom-action v0.15.0 -> v0.15.9 age adoption passing confidence action patch
eslint (source) 8.54.0 -> 8.57.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 9.0.0 -> 9.1.0 age adoption passing confidence devDependencies minor
github.com/defenseunicorns/zarf v0.31.3 -> v0.32.4 age adoption passing confidence require minor
github.com/go-chi/chi/v5 v5.0.10 -> v5.0.12 age adoption passing confidence require patch
github.com/goccy/go-yaml v1.11.2 -> v1.11.3 age adoption passing confidence require patch
github.com/pterm/pterm v0.12.71 -> v0.12.79 age adoption passing confidence require patch
github/codeql-action v2.22.8 -> v2.24.6 age adoption passing confidence action minor
go (source) 1.21.4 -> 1.22.1 age adoption passing confidence golang minor
k8s.io/client-go v0.28.4 -> v0.29.2 age adoption passing confidence require minor
material-symbols (source) 0.14.1 -> 0.16.0 age adoption passing confidence dependencies minor
nodemon (source) 3.0.1 -> 3.1.0 age adoption passing confidence devDependencies minor
playwright (source) 1.40.1 -> 1.42.1 age adoption passing confidence devDependencies minor
prettier (source) 3.1.0 -> 3.2.5 age adoption passing confidence devDependencies minor
prettier-plugin-svelte 3.1.2 -> 3.2.2 age adoption passing confidence devDependencies minor
quicktype 23.0.80 -> 23.0.106 age adoption passing confidence devDependencies patch
sass 1.69.5 -> 1.71.1 age adoption passing confidence devDependencies minor
slackapi/slack-github-action v1.24.0 -> v1.25.0 age adoption passing confidence action minor
svelte (source) 4.2.8 -> 4.2.12 age adoption passing confidence devDependencies patch
svelte-check 3.6.2 -> 3.6.7 age adoption passing confidence devDependencies patch
svelte-preprocess 5.1.1 -> 5.1.3 age adoption passing confidence devDependencies patch
typescript (source) 5.3.2 -> 5.4.2 age adoption passing confidence devDependencies minor
yaml (source) 2.3.4 -> 2.4.1 age adoption passing confidence dependencies minor

Release Notes

floating-ui/floating-ui (@​floating-ui/dom)

v1.6.3

Compare Source

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>

v1.6.2

Compare Source

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

v1.6.1

Compare Source

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

v1.6.0

Compare Source

Minor Changes
Patch Changes
  • Update dependencies: @floating-ui/core@1.6.0

v1.5.4

Compare Source

Patch Changes
fontsource/font-files (@​fontsource/roboto)

v5.0.12

Compare Source

microsoft/playwright (@​playwright/test)

v1.42.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29732 - [Regression]: HEAD requests to webServer.url since v1.42.0https://github.com/microsoft/playwright/issues/297466 - [Regression]: Playwright CT CLI scripts fail due to broken initializePlugin imporhttps://github.com/microsoft/playwright/issues/2973939 - [Bug]: Component tests fails when imported a module with a dot in a nahttps://github.com/microsoft/playwright/issues/29731731 - [Regression]: 1.42.0 breaks some import statemehttps://github.com/microsoft/playwright/issues/297609760 - [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

Compare Source

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: ['@&#8203;fast', '@&#8203;login'] }, async ({ page }) => {
      // ...
    });

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

    npx playwright test --grep @&#8203;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 }) => {
      // ...
    });
  • page.addLocatorHandler()

    New method page.addLocatorHandler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.

    // Setup the handler.
    await page.addLocatorHandler(
        page.getByRole('heading', { name: 'Hej! You are in control of your cookies.' }),
        async () => {
          await page.getByRole('button', { name: 'Accept all' }).click();
        });
    // Write the test as usual.
    await page.goto('https://www.ikea.com/');
    await page.getByRole('link', { name: 'Collection of blue and white' }).click();
    await expect(page.getByRole('heading', { name: 'Light and easy' })).toBeVisible();
  • Project wildcard filter
    Playwright command line flag now supports '*' wildcard when filtering by project.

    npx playwright test --project='*mobile*'
  • Other APIs

    • expect(callback).toPass({ timeout })
      The timeout can now be configured by expect.toPass.timeout option globally or in project config

    • electronApplication.on('console')
      electronApplication.on('console') event is emitted when Electron main process calls console API methods.

      electronApp.on('console', async msg => {
        const values = [];
        for (const arg of msg.args())
          values.push(await arg.jsonValue());
        console.log(...values);
      });
      await electronApp.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
    • page.pdf() accepts two new options tagged and outline.

Breaking changes

Mixing the test instances in the same suite is no longer supported. Allowing it was an oversight as it makes reasoning about the semantics unnecessarily hard.

const test = baseTest.extend({ item: async ({}, use) => {} });
baseTest.describe('Admin user', () => {
  test('1', async ({ page, item }) => {});
  test('2', async ({ page, item }) => {});
});

Announcements

  • ⚠️ Ubuntu 18 is not supported anymore.

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.41.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/29067 - [REGRESSION] Codegen/Recorder: not all clicks are being actioned nor recordedhttps://github.com/microsoft/playwright/issues/290288 - [REGRESSION] React component tests throw type error when passing null/undefined to componenhttps://github.com/microsoft/playwright/issues/2902727 - [REGRESSION] React component tests not passing Date prop valuhttps://github.com/microsoft/playwright/issues/29023023 - [REGRESSION] React component tests not rendering children phttps://github.com/microsoft/playwright/issues/290199019 - [REGRESSION] trace.playwright.dev does not currently support the loading from URL

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120

v1.41.0

Compare Source

New APIs

Browser Versions

  • Chromium 121.0.6167.57
  • Mozilla Firefox 121.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 120
  • Microsoft Edge 120
sveltejs/kit (@​sveltejs/kit)

v1.30.4

Compare Source

Patch Changes
  • chore(deps): upgrade and unpin undici (#​11860)

v1.30.3

Compare Source

Patch Changes
  • fix: correct documentation for beforeNavigate (#​11300)

v1.30.2

Compare Source

Patch Changes
  • fix: revert recent 'correctly return 415' and 'correctly return 404' changes (#​11295)

v1.30.1

Compare Source

Patch Changes
  • fix: prerendered root page with paths.base config uses correct trailing slash option (#​10763)

  • fix: correctly return 404 when a form action is not found (#​11278)

v1.30.0

Compare Source

Minor Changes
  • feat: inline response.arrayBuffer() during ssr (#​10535)
Patch Changes
  • fix: allow "false" value for preload link options (#​10555)

  • fix: call worker unref instead of terminate (#​10120)

  • fix: correctly analyse exported server API methods during build (#​11019)

  • fix: avoid error when back navigating before page is initialized (#​10636)

  • fix: allow service-worker.js to import assets (#​9285)

  • fix: distinguish better between not-found and internal-error (#​11131)

v1.29.1

Compare Source

Patch Changes
  • fix: correctly return 415 when unexpected content types are submitted to actions (#​11255)

  • chore: deprecate preloadCode calls with multiple arguments (#​11266)

v1.29.0

Compare Source

Minor Changes
  • feat: add resolveRoute to $app/paths, deprecate resolvePath (#​11261)

v1.28.0

Compare Source

Minor Changes
  • chore: deprecate top level promise await behaviour (#​11175)
Patch Changes
  • fix: resolve relative cookie paths before storing (#​11253)

  • chore: deprecate cookies.set/delete without path option (#​11237)

  • fix: make sure promises from fetch handle errors (#​11228)

v1.27.7

Compare Source

Patch Changes
  • fix: set runes option in generated root (#​11111)

  • fix: retain URL query string for trailing slash redirects to prerendered pages (#​11142)

sveltejs/kit (@​sveltejs/package)

v2.3.0

Compare Source

Minor Changes
  • feat: add option to specify the tsconfig/jsconfig (#​11698)

v2.2.7

Compare Source

Patch Changes
  • chore: update chokidar to 3.6.0 (#​11811)

v2.2.6

Compare Source

Patch Changes
  • chore: bump svelte2tsx dependency to support generating types for .svelte.js/ts files (#​11619)

v2.2.5

Compare Source

Patch Changes
  • fix: improve warning when encountering import.meta.env (#​11440)

v2.2.4

Compare Source

Patch Changes
testing-library/svelte-testing-library (@​testing-library/svelte)

v4.1.0

Compare Source

Features

v4.0.6

Compare Source

Bug Fixes
  • types: correct type annotation for act (38f7518)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.21.0

Compare Source

🚀 Features
  • export plugin metadata

  • allow parserOptions.project: false

  • eslint-plugin: add rule prefer-find

🩹 Fixes
  • eslint-plugin: [no-unused-vars] don't report on types referenced in export assignment expression

  • eslint-plugin: [switch-exhaustiveness-check] better support for intersections, infinite types, non-union values

  • eslint-plugin: [consistent-type-imports] dont report on types used in export assignment expressions

  • eslint-plugin: [no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option

  • eslint-plugin: [class-literal-property-style] allow getter when same key setter exists

  • eslint-plugin: [no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before as keyword

❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

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

v6.20.0

Compare Source

🚀 Features
  • eslint-plugin: [member-ordering] allow easy reuse of the default ordering
🩹 Fixes
  • eslint-plugin: [no-useless-template-literals] incorrect bigint autofix result

  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as non-nullable

  • eslint-plugin: [no-useless-template-literals] report Infinity & NaN

  • eslint-plugin: [prefer-readonly] disable checking accessors

❤️ Thank You
  • Alex Parloti
  • auvred
  • James Browning
  • StyleShit
  • YeonJuan

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

v6.19.1

Compare Source

🩹 Fixes
  • type-utils: preventing isUnsafeAssignment infinite recursive calls

  • eslint-plugin: [no-unnecessary-condition] fix false positive for type variable

❤️ Thank You
  • YeonJuan

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

v6.19.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] add rule

  • eslint-plugin: [no-array-delete] add new rule

  • eslint-plugin: [no-useless-template-literals] add fix suggestions

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression

  • eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

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

v6.18.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line

  • eslint-plugin: [no-unnecessary-condition] improve checking optional callee

  • eslint-plugin: [prefer-readonly] support modifiers of unions and intersections

  • eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option

❤️ Thank You
  • auvred
  • James
  • Josh Goldberg ✨
  • YeonJuan

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

v6.18.0

Compare Source

🚀 Features
  • typescript-estree: throw on invalid update expressions

  • eslint-plugin: [no-var-requires, no-require-imports] allow option

❤️ Thank You
  • auvred
  • Joshua Chen

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

v6.17.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#​8108) (675e987)
Features
  • eslint-plugin: [no-floating-promises] flag result of .map(async) (#​7897) (5857356)
  • eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#​7539) (6a219bd)

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

v6.16.0

Compare Source

Bug Fixes
  • eslint-plugin: [unbound-method] exempt all non-Promise built-in statics (#​8096) (3182959)
Features
  • eslint-plugin: deprecate formatting (meta.type: layout) rules (#​8073) (04dea84)
  • eslint-plugin: deprecate no-extra-semi in favor of ESLint Stylistic equivalent (#​8123) (9368bf3)

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

v6.15.0

Compare Source

Features

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

v6.14.0

Compare Source

Bug Fixes
  • eslint-plugin: add no-unsafe-unary-minus, prefer-destructuring to disable-type-checked (#​8038) (431cd15)
  • eslint-plugin: correct message for no-unsafe-unary-minus (#​7998) (705370a)
Features
  • eslint-plugin: [explicit-function-return-type] add support for typed class property definitions (#​8027) (bff47d7)
  • eslint-plugin: [require-await] allow yielding Promise in async generators (#​8003) (4c3e704)

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

6.13.2 (2023-12-04)

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

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

6.13.1 (2023-11-28)

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

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

v6.13.2

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.13.1...


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency nodemon to v3.0.2 chore(deps): update all non-major dependencies Dec 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 577073c to 8bd3870 Compare December 8, 2023 03:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from eac49d2 to 8e27033 Compare December 17, 2023 01:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c9990d9 to 073d1da Compare February 22, 2024 15:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 66a79b7 to 0a66d1d Compare February 29, 2024 15:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from f4c5308 to 24731f3 Compare March 6, 2024 18:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from a448063 to dca25f1 Compare March 12, 2024 12:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dca25f1 to c2cc2bd Compare March 12, 2024 15:50
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants