Skip to content

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

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

Merged
merged 1 commit into from
Apr 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@sveltejs/package (source) ^2.3.0 -> ^2.3.1 age adoption passing confidence
@types/node (source) ^20.12.4 -> ^20.12.5 age adoption passing confidence
dts-buddy ^0.4.5 -> ^0.4.6 age adoption passing confidence
eslint-plugin-svelte (source) ^2.35.1 -> ^2.36.0 age adoption passing confidence
magic-string ^0.30.8 -> ^0.30.9 age adoption passing confidence
playwright-core (source) ~1.42.1 -> ~1.43.0 age adoption passing confidence
sass ^1.72.0 -> ^1.74.1 age adoption passing confidence
typescript (source) ^5.4.3 -> ^5.4.4 age adoption passing confidence

Release Notes

sveltejs/kit (@​sveltejs/package)

v2.3.1

Compare Source

Patch Changes
  • fix: don't strip lang="ts" tag in Svelte 5 (#​12080)
Rich-Harris/dts-buddy (dts-buddy)

v0.4.6

Compare Source

sveltejs/eslint-plugin-svelte (eslint-plugin-svelte)

v2.36.0

Compare Source

Minor Changes
Patch Changes
rich-harris/magic-string (magic-string)

v0.30.9

Compare Source

Performance Improvements
  • avoid create uncessary overrides for replace (a1b857c)
microsoft/playwright (playwright-core)

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
sass/dart-sass (sass)

v1.74.1

Compare Source

  • No user-visible changes.
Microsoft/TypeScript (typescript)

v5.4.4: TypeScript 5.4.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 added the dependencies label Apr 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a81d7c1 to cdfb2f0 Compare April 8, 2024 03:05
@bluwy bluwy merged commit 826dfc6 into main Apr 8, 2024
@bluwy bluwy deleted the renovate/all-minor-patch branch April 8, 2024 05:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant