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

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

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
@babel/core (source) ^7.24.3 -> ^7.24.4 age adoption passing confidence
@babel/parser (source) ^7.24.1 -> ^7.24.4 age adoption passing confidence
@babel/preset-env (source) ^7.24.3 -> ^7.24.4 age adoption passing confidence
@babel/runtime (source) ^7.24.1 -> ^7.24.4 age adoption passing confidence
@eslint-types/typescript-eslint (source) ^7.2.0 -> ^7.5.0 age adoption passing confidence
@types/node (source) ^20.12.3 -> ^20.12.5 age adoption passing confidence
@types/react-dom (source) ^18.2.23 -> ^18.2.24 age adoption passing confidence
eslint-plugin-regexp ^2.4.0 -> ^2.5.0 age adoption passing confidence
magic-string ^0.30.8 -> ^0.30.9 age adoption passing confidence
miniflare (source) ^3.20240329.0 -> ^3.20240404.0 age adoption passing confidence
playwright-chromium (source) ^1.42.1 -> ^1.43.0 age adoption passing confidence
sass ^1.72.0 -> ^1.74.1 age adoption passing confidence
terser (source) ^5.30.2 -> ^5.30.3 age adoption passing confidence
tsx ^4.7.1 -> ^4.7.2 age adoption passing confidence
vite (source) ^5.2.7 -> ^5.2.8 age adoption passing confidence
vue-tsc (source) ^2.0.7 -> ^2.0.11 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.24.4

Compare Source

👓 Spec Compliance
🐛 Bug Fix
babel/babel (@​babel/parser)

v7.24.4

Compare Source

v7.24.4 (2024-04-03)

Thanks @​Dunqing, @​luiscubal, and @​samualtnorman for your first PRs!

👓 Spec Compliance
🐛 Bug Fix
Committers: 7
ota-meshi/eslint-plugin-regexp (eslint-plugin-regexp)

v2.5.0

Compare Source

Minor Changes
  • Add regexp/unicode-property rule to enforce consistent naming of unicode properties (#​722)
Patch Changes
  • Publish type declarations (#​724)
rich-harris/magic-string (magic-string)

v0.30.9

Compare Source

Performance Improvements
  • avoid create uncessary overrides for replace (a1b857c)
cloudflare/workers-sdk (miniflare)

v3.20240404.0

Compare Source

Patch Changes

v3.20240403.0

Compare Source

Minor Changes
  • #​5215 cd03d1d Thanks @​GregBrimble! - feature: customisable unsafe direct sockets entrypoints

    Previously, Miniflare provided experimental unsafeDirectHost and unsafeDirectPort options for starting an HTTP server that pointed directly to a specific Worker. This change replaces these options with a single unsafeDirectSockets option that accepts an array of socket objects of the form { host?: string, port?: number, entrypoint?: string, proxy?: boolean }. host defaults to 127.0.0.1, port defaults to 0, entrypoint defaults to default, and proxy defaults to false. This allows you to start HTTP servers for specific entrypoints of specific Workers. proxy controls the Style of the socket.

    Note these sockets set the capnpConnectHost workerd option to "miniflare-unsafe-internal-capnp-connect". external serviceBindings will set their capnpConnectHost option to the same value allowing RPC over multiple Miniflare instances. Refer to https://github.com/cloudflare/workerd/pull/1757 for more information.

  • #​5215 cd03d1d Thanks @​GregBrimble! - feature: support named entrypoints for serviceBindings

    This change allows service bindings to bind to a named export of another Worker using designators of the form { name: string | typeof kCurrentWorker, entrypoint?: string }. Previously, you could only bind to the default entrypoint. With this change, you can bind to any exported entrypoint.

    import { kCurrentWorker, Miniflare } from "miniflare";
    
    const mf = new Miniflare({
    	workers: [
    		{
    			name: "a",
    			serviceBindings: {
    				A_RPC_SERVICE: { name: kCurrentWorker, entrypoint: "RpcEntrypoint" },
    				A_NAMED_SERVICE: { name: "a", entrypoint: "namedEntrypoint" },
    				B_NAMED_SERVICE: { name: "b", entrypoint: "anotherNamedEntrypoint" },
    			},
    			compatibilityFlags: ["rpc"],
    			modules: true,
    			script: `
    			import { WorkerEntrypoint } from "cloudflare:workers";
    
    			export class RpcEntrypoint extends WorkerEntrypoint {
    				ping() { return "a:rpc:pong"; }
    			}
    
    			export const namedEntrypoint = {
    				fetch(request, env, ctx) { return new Response("a:named:pong"); }
    			};
    
    			...
    			`,
    		},
    		{
    			name: "b",
    			modules: true,
    			script: `
    			export const anotherNamedEntrypoint = {
    				fetch(request, env, ctx) { return new Response("b:named:pong"); }
    			};
    			`,
    		},
    	],
    });
Patch Changes
  • #​5499 6c3be5b Thanks @​GregBrimble! - chore: Bump workerd@1.20240403.0

  • #​5215 cd03d1d Thanks @​GregBrimble! - fix: allow scripts without scriptPaths to import built-in modules

    Previously, if a string script option was specified with modules: true but without a corresponding scriptPath, all imports were forbidden. This change relaxes that restriction to allow imports of built-in node:*, cloudflare:* and workerd:* modules without a scriptPath.

v3.20240329.1

Compare Source

Patch Changes
  • #​5491 940ad89 Thanks @​dario-piotrowicz! - fix: make sure the magic proxy can handle multiple parallel r2 stream reads

    Currently trying to read multiple R2 streams in parallel (via Promise.all for example) leads to deadlock which prevents any of the target streams from being read. This is caused by the underlying implementation only allowing a single HTTP connection to the Workers runtime at a time. This change fixes the issue by allowing multiple parallel HTTP connections.

microsoft/playwright (playwright-chromium)

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.
terser/terser (terser)

v5.30.3

Compare Source

  • Fix precedence of #private in ... operator
privatenumber/tsx (tsx)

v4.7.2

Compare Source

vitejs/vite (vite)

v5.2.8

Compare Source

vuejs/language-tools (vue-tsc)

v2.0.11

Compare Source

Features
  • vscode: support for enabling/disabling typescript plugin (#​4226)
    • Added typeScriptPluginOnly option for vue.server.hybridMode setting.
    • When Hybrid Mode is disabled, the Vue TypeScript Plugin will be disabled by default.
  • vscode: support for vue.format.wrapAttributes setting (#​4212)
  • vscode: add vue.codeActions.askNewComponentName setting (#​4217)
Bug Fixes
  • vscode: Find File References not working when hybrid mode is disabled (#​4221)
  • language-core: type narrowing not working for inline event handlers (#​4209)
  • language-core: @vue-ignore, @vue-expect-error not working for interpolations
  • language-core: improve reliability for @vue-ignore, @vue-expect-error (#​4203)
  • language-core: duplicated items in suggestion list for prop values (#​3922)
  • language-server: vueCompilerOptions not working with hybrid mode (#​4211) (#​3959)
Other Changes

v2.0.10

Compare Source

Features
  • vscode: enable vue.updateImportsOnFileMove.enabled by default (#​3646)
  • vscode: re-add restart server command (#​4174)
  • vscode: automatically enable Hybrid Mode if possible (#​4206)
  • component-meta: add typing resolution for defineModel modifiers (#​4175) - Thanks @​stafyniaksacha
  • language-service: drag and drop import respects tsconfig path aliases (#​4184)
  • language-service: supports auto insertion of multiple cursors (#​4140)
Bug Fixes
  • language-server: additionalExtensions option not working for inferred project
  • language-core: avoid interpolation indentation affecting each other
  • language-core: generate each interpolation into separate virtual code (#​4165)
  • language-service: ignore html wrapAttributes format settings for vue document (#​3987)
  • vscode: remove duplicate ts version status (#​4167)
  • language-server: .html, .md file language id incorrect
  • typescript-plugin: formatting settings not working for ts completion
  • tsc: remove fake global types holder for composite projects compatibility (#​4196) - Thanks @​blake-newman
Performance
  • language-core: cache canonical root file names with string Set
Other Changes
  • Upgrade Volar from v2.1.3 to v2.2.0-alpha.5 for a few bug fixes and performance improves, please refer to CHANGELOG.md for details.
  • vscode: update required VSCode version to ^1.88.0
  • docs: update readme with neovim lspconfig setup (#​4134) - Thanks @​RayGuo-ergou
  • language-core: split inline css codegen into separate plugin
  • language-core: move global types codegen into separate script
  • language-core: resolve virtual code features before push code
  • test: added simple tests for vue-tsc and custom SFC extensions. (#​4181) - Thanks @​cabal95

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 Pull requests that update a dependency file label Apr 8, 2024
Copy link

stackblitz bot commented Apr 8, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3bde2f4 to a5ba8bf Compare April 8, 2024 03:10
@patak-dev patak-dev merged commit 58a2938 into main Apr 8, 2024
11 checks passed
@patak-dev patak-dev deleted the renovate/all-minor-patch branch April 8, 2024 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants