Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies #17

Merged
merged 3 commits into from
Aug 18, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 10, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.42.1 -> ^1.46.1 age adoption passing confidence
@sveltejs/adapter-auto (source) ^3.1.1 -> ^3.2.4 age adoption passing confidence
@sveltejs/adapter-cloudflare (source) ^4.1.0 -> ^4.7.2 age adoption passing confidence
@sveltejs/adapter-netlify (source) ^4.1.0 -> ^4.3.3 age adoption passing confidence
@sveltejs/adapter-node (source) ^5.0.1 -> ^5.2.2 age adoption passing confidence
@sveltejs/adapter-vercel (source) ^5.1.0 -> ^5.4.3 age adoption passing confidence
@sveltejs/kit (source) ^2.5.2 -> ^2.5.22 age adoption passing confidence
@sveltejs/package (source) ^2.2.7 -> ^2.3.4 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) ^3.0.2 -> ^3.1.1 age adoption passing confidence
@types/lodash (source) ^4.14.202 -> ^4.17.7 age adoption passing confidence
@types/node (source) ^20.11.24 -> ^20.15.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^7.1.0 -> ^7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) ^7.1.0 -> ^7.18.0 age adoption passing confidence
@vitest/coverage-v8 (source) ^2.0.4 -> ^2.0.5 age adoption passing confidence
eslint-plugin-svelte (source) ^2.35.1 -> ^2.43.0 age adoption passing confidence
luxon ^3.4.4 -> ^3.5.0 age adoption passing confidence
prettier (source) ^3.2.5 -> ^3.3.3 age adoption passing confidence
prettier-plugin-svelte ^3.2.2 -> ^3.2.6 age adoption passing confidence
publint (source) ^0.2.7 -> ^0.2.10 age adoption passing confidence
svelte (source) ^4.2.12 -> ^4.2.18 age adoption passing confidence
svelte-check ^3.6.6 -> ^3.8.5 age adoption passing confidence
tslib (source) ^2.6.2 -> ^2.6.3 age adoption passing confidence
typescript (source) ^5.3.3 -> ^5.5.4 age adoption passing confidence
vitest (source) ^2.0.4 -> ^2.0.5 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.46.1

Compare Source

v1.46.0

Compare Source

v1.45.3

Compare Source

v1.45.2

Compare Source

v1.45.1

Compare Source

v1.45.0

Compare Source

v1.44.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30779 - [REGRESSION]: When using video: 'on' with VSCode extension the browser got closed
https://github.com/microsoft/playwright/issues/30755 - [REGRESSION]: Electron launch with spaces inside executablePath didn't workhttps://github.com/microsoft/playwright/issues/307700 - [REGRESSION]: Mask elements outside of viewport when creating fullscreen screenshots didn't worhttps://github.com/microsoft/playwright/issues/3085858 - [REGRESSION]: ipv6 got shown instead of localhost in show-trace/show-report

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

v1.44.0

Compare Source

New APIs

Accessibility assertions

  • expect(locator).toHaveAccessibleName() checks if the element has the specified accessible name:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleName('Submit');
  • expect(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:

    const locator = page.getByRole('button');
    await expect(locator).toHaveAccessibleDescription('Upload a photo');
  • expect(locator).toHaveRole() checks if the element has the specified ARIA role:

    const locator = page.getByTestId('save-button');
    await expect(locator).toHaveRole('button');

Locator handler

  • After executing the handler added with page.addLocatorHandler(), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new noWaitAfter option.
  • You can use new times option in page.addLocatorHandler() to specify maximum number of times the handler should be run.
  • The handler in page.addLocatorHandler() now accepts the locator as argument.
  • New page.removeLocatorHandler() method for removing previously added locator handlers.
const locator = page.getByText('This interstitial covers the button');
await page.addLocatorHandler(locator, async overlay => {
  await overlay.locator('#close').click();
}, { times: 3, noWaitAfter: true });
// Run your tests that can be interrupted by the overlay.
// ...
await page.removeLocatorHandler(locator);

Miscellaneous options

  • multipart option in apiRequestContext.fetch() now accepts FormData and supports repeating fields with the same name.

    const formData = new FormData();
    formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' }));
    formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' }));
    context.request.post('https://example.com/uploadFiles', {
      multipart: formData
    });
  • expect(callback).toPass({ intervals }) can now be configured by expect.toPass.inervals option globally in testConfig.expect or per project in testProject.expect.

  • expect(page).toHaveURL(url) now supports ignoreCase option.

  • testProject.ignoreSnapshots allows to configure per project whether to skip screenshot expectations.

Reporter API

  • New method suite.entries() returns child test suites and test cases in their declaration order. suite.type and testCase.type can be used to tell apart test cases and suites in the list.
  • Blob reporter now allows overriding report file path with a single option outputFile. The same option can also be specified as PLAYWRIGHT_BLOB_OUTPUT_FILE environment variable that might be more convenient on CI/CD.
  • JUnit reporter now supports includeProjectInTestName option.

Command line

  • --last-failed CLI option for running only tests that failed in the previous run.

    First run all tests:

    $ npx playwright test
    
    Running 103 tests using 5 workers
    ...
    2 failed
      [chromium] › my-test.spec.ts:8:5 › two ─────────────────────────────────────────────────────────
      [chromium] › my-test.spec.ts:13:5 › three ──────────────────────────────────────────────────────
    101 passed (30.0s)

    Now fix the failing tests and run Playwright again with --last-failed option:

    $ npx playwright test --last-failed
    
    Running 2 tests using 2 workers
      2 passed (1.2s)

Browser Versions

  • Chromium 125.0.6422.14
  • Mozilla Firefox 125.0.1
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 124
  • Microsoft Edge 124

v1.43.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/30300 - [REGRESSION]: UI mode restarts if keep storage statehttps://github.com/microsoft/playwright/issues/303399 - [REGRESSION]: Brand new install of playwright, unable to run chromium with show browser using vscode

Browser Versions
  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123

v1.43.0

Compare Source

New APIs

  • Method browserContext.clearCookies() now supports filters to remove only some cookies.

    // Clear all cookies.
    await context.clearCookies();
    // New: clear cookies with a particular name.
    await context.clearCookies({ name: 'session-id' });
    // New: clear cookies for a particular domain.
    await context.clearCookies({ domain: 'my-origin.com' });
  • New mode retain-on-first-failure for testOptions.trace. In this mode, trace is recorded for the first run of each test, but not for retires. When test run fails, the trace file is retained, otherwise it is removed.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      use: {
        trace: 'retain-on-first-failure',
      },
    });
  • New property testInfo.tags exposes test tags during test execution.

    test('example', async ({ page }) => {
      console.log(test.info().tags);
    });
  • New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.

    const locator = page.locator('iframe[name="embedded"]');
    // ...
    const frameLocator = locator.contentFrame();
    await frameLocator.getByRole('button').click();
  • New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the iframe element.

    const frameLocator = page.frameLocator('iframe[name="embedded"]');
    // ...
    const locator = frameLocator.owner();
    await expect(locator).toBeVisible();

UI Mode Updates

Playwright UI Mode

  • See tags in the test list.
  • Filter by tags by typing @fast or clicking on the tag itself.
  • New shortcuts:
    • F5 to run tests.
    • Shift F5 to stop running tests.
    • Ctrl ` to toggle test output.

Browser Versions

  • Chromium 124.0.6367.29
  • Mozilla Firefox 124.0
  • WebKit 17.4

This version was also tested against the following stable channels:

  • Google Chrome 123
  • Microsoft Edge 123
sveltejs/kit (@​sveltejs/adapter-auto)

v3.2.4

Compare Source

Patch Changes

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes

v3.2.1

Compare Source

Patch Changes

v3.2.0

Compare Source

Minor Changes
  • feat: add support for Google Cloud Run (#​12015)
sveltejs/kit (@​sveltejs/adapter-cloudflare)

v4.7.2

Compare Source

Patch Changes

v4.7.1

Compare Source

Patch Changes

v4.7.0

Compare Source

Minor Changes
  • feat: generate static _redirects for Cloudflare Pages (#​12199)
Patch Changes
  • fix: correctly return static assets if base path is set (#​12075)

v4.6.1

Compare Source

Patch Changes
  • fix: copy .eot, .otf, .ttf, .woff, and woff2 font files when bundling (#​12439)

v4.6.0

Compare Source

Minor Changes
  • chore(deps): upgrade to esbuild 0.21 (#​12415)
Patch Changes

v4.5.0

Compare Source

Minor Changes
  • feat: validate that no _routes.json is present to avoid overwriting it (#​12360)
Patch Changes

v4.4.1

Compare Source

Patch Changes

v4.4.0

Compare Source

Minor Changes
Patch Changes

v4.3.0

Compare Source

Minor Changes
  • feat: support platform emulation configuration via the platformProxy adapter option (#​12011)

v4.2.1

Compare Source

Patch Changes
  • fix: add workerd to esbuild conditions (#​12069)

v4.2.0

Compare Source

Minor Changes
  • feat: emulate Cloudflare Workers bindings and incoming request properties in event.platform for dev and preview (#​11974)
Patch Changes
sveltejs/kit (@​sveltejs/adapter-netlify)

v4.3.3

Compare Source

Patch Changes

v4.3.2

Compare Source

Patch Changes

v4.3.1

Compare Source

Patch Changes
  • fix: copy .eot, .otf, .ttf, .woff, and woff2 font files when bundling (#​12439)

v4.3.0

Compare Source

Minor Changes
  • chore(deps): upgrade to esbuild 0.21 (#​12415)
Patch Changes

v4.2.1

Compare Source

Patch Changes

v4.2.0

Compare Source

Minor Changes
Patch Changes
sveltejs/kit (@​sveltejs/adapter-node)

v5.2.2

Compare Source

Patch Changes

v5.2.1

Compare Source

Patch Changes

v5.2.0

Compare Source

Minor Changes
  • feat: add unit suffixes to the BODY_SIZE_LIMIT environment variable (#​11680)
Patch Changes

v5.1.1

Compare Source

Patch Changes

v5.1.0

Compare Source

Minor Changes
Patch Changes
  • fix: close keep-alive connections as soon as possible during graceful shutdown rather than accepting new requests (#​12153)

v5.0.2

Compare Source

Patch Changes
sveltejs/kit (@​sveltejs/adapter-vercel)

v5.4.3

Compare Source

Patch Changes

v5.4.2

Compare Source

Patch Changes

v5.4.1

Compare Source

Patch Changes
  • fix: copy .eot, .otf, .ttf, .woff, and woff2 font files when bundling (#​12439)

v5.4.0

Compare Source

Minor Changes
  • chore(deps): upgrade to esbuild 0.21 (#​12415)
Patch Changes

v5.3.2

Compare Source

Patch Changes

v5.3.1

Compare Source

Patch Changes
  • chore(deps): upgrade to @vercel/nft version 0.27.1 (#​12274)

v5.3.0

Compare Source

Minor Changes
Patch Changes

v5.2.0

Compare Source

Minor Changes
  • feat: add framework metadata in Vercel build output files (#​11800)

  • feat: implement version skew protection (#​11987)

v5.1.1

Compare Source

Patch Changes
  • fix: handle optional and rest routes for incremental static regeneration (ISR) correctly (#​11928)
sveltejs/kit (@​sveltejs/kit)

v2.5.22

Compare Source

Patch Changes
  • chore: configure provenance in a simpler manner (#​12570)

v2.5.21

Compare Source

Patch Changes

v2.5.20

Compare Source

Patch Changes
  • fix: set revalidate cache header on 404'd static assets (#​12530)

v2.5.19

Compare Source

Patch Changes
  • fix: Svelte 5 - ignore binding_non_reactive warning in generated root component (you also need to update to svelte@5.0.0-next.204) (#​12524)

v2.5.18

Compare Source

Patch Changes
  • fix: respect HTML attributes enctype and formenctype for forms with use:enhance (#​12198)

  • fix: prevent client import error when a hooks.server file imports a private environment variable (#​12195)

  • fix: set default Content-Type header to application/x-www-form-urlencoded for POST form submissions with use:enhance to align with native form behaviour (#​12198)

v2.5.17

[Compare Source](https://togithub.com/sveltejs/kit/compar


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone Asia/Tokyo, Automerge - "before 4am" in timezone Asia/Tokyo.

🚦 Automerge: Enabled.

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Mar 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 3bc9bf9 to c055e13 Compare March 17, 2024 04:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 7bd9cff to b0de59e Compare March 25, 2024 18:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from a1befa2 to 0472c69 Compare March 30, 2024 08:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 08dc5da to 1020eec Compare July 25, 2024 11:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from e232975 to 5975859 Compare August 3, 2024 21:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 19d3953 to 3195aee Compare August 12, 2024 18:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f95b0e8 to 9a36391 Compare August 16, 2024 18:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9a36391 to e0eb302 Compare August 16, 2024 23:23
Copy link
Contributor Author

renovate bot commented Aug 18, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@yutak23 yutak23 merged commit 1e9b9a6 into main Aug 18, 2024
13 checks passed
@yutak23 yutak23 deleted the renovate/all-minor-patch branch August 18, 2024 02:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant