Closed nissy-renovate-bot[bot] closed 2 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
blog | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Aug 19, 2024 0:38am |
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.
This PR contains the following updates:
4.20240725.0
->4.20240815.0
1.45.2
->1.46.0
1.46.1
5.2.1
->5.3.0
4.16.2
->4.17.0
5.5.2
->5.5.4
3.68.0
->3.71.0
3.72.0
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
### [`v4.20240815.0`](https://togithub.com/cloudflare/workerd/compare/2b3012bf2eb08c18f6f745884ff5a81c0270d09d...2f36bf5c96ba9e17debb421d4985b689640a7b23) [Compare Source](https://togithub.com/cloudflare/workerd/compare/2b3012bf2eb08c18f6f745884ff5a81c0270d09d...2f36bf5c96ba9e17debb421d4985b689640a7b23) ### [`v4.20240806.0`](https://togithub.com/cloudflare/workerd/compare/ce15e0b82e6408c49ec3e980f23640bd25d6c675...2b3012bf2eb08c18f6f745884ff5a81c0270d09d) [Compare Source](https://togithub.com/cloudflare/workerd/compare/ce15e0b82e6408c49ec3e980f23640bd25d6c675...2b3012bf2eb08c18f6f745884ff5a81c0270d09d) ### [`v4.20240729.0`](https://togithub.com/cloudflare/workerd/compare/b5b2329b385637fb14f24cefb792ce3204b51dd6...ce15e0b82e6408c49ec3e980f23640bd25d6c675) [Compare Source](https://togithub.com/cloudflare/workerd/compare/b5b2329b385637fb14f24cefb792ce3204b51dd6...ce15e0b82e6408c49ec3e980f23640bd25d6c675)microsoft/playwright (playwright)
### [`v1.46.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.46.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.45.3...v1.46.0) #### TLS Client Certificates Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication. When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates. The following snippet sets up a client certificate for `https://example.com`: ```ts import { defineConfig } from '@playwright/test'; export default defineConfig({ // ... use: { clientCertificates: [{ origin: 'https://example.com', certPath: './cert.pem', keyPath: './key.pem', passphrase: 'mysecretpassword', }], }, // ... }); ``` You can also provide client certificates to a particular [test project](https://playwright.dev/docs/api/class-testproject#test-project-use) or as a parameter of [browser.newContext()](https://playwright.dev/docs/api/class-browser#browser-new-context) and [apiRequest.newContext()](https://playwright.dev/docs/api/class-apirequest#api-request-new-context). #### `--only-changed` cli option New CLI option `--only-changed` allows to only run test files that have been changed since the last git commit or from a specific git "ref". ```sh ### Only run test files with uncommitted changes npx playwright test --only-changed ### Only run test files changed relative to the "main" branch npx playwright test --only-changed=main ``` #### Component Testing: New `router` fixture This release introduces an experimental `router` fixture to intercept and handle network requests in component testing. There are two ways to use the router fixture: - Call `router.route(url, handler)` that behaves similarly to [page.route()](https://playwright.dev/docs/api/class-page#page-route). - Call `router.use(handlers)` and pass [MSW library](https://mswjs.io) request handlers to it. Here is an example of reusing your existing MSW handlers in the test. ```ts import { handlers } from '@src/mocks/handlers'; test.beforeEach(async ({ router }) => { // install common handlers before each test await router.use(...handlers); }); test('example test', async ({ mount }) => { // test as usual, your handlers are active // ... }); ``` This fixture is only available in [component tests](https://playwright.dev/docs/test-components#handling-network-requests). #### UI Mode / Trace Viewer Updates - Test annotations are now shown in UI mode. - Content of text attachments is now rendered inline in the attachments pane. - New setting to show/hide routing actions like [route.continue()](https://playwright.dev/docs/api/class-route#route-continue). - Request method and status are shown in the network details tab. - New button to copy source file location to clipboard. - Metadata pane now displays the `baseURL`. #### Miscellaneous - New `maxRetries` option in [apiRequestContext.fetch()](https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-fetch) which retries on the `ECONNRESET` network error. - New option to [box a fixture](https://playwright.dev/docs/test-fixtures#box-fixtures) to minimize the fixture exposure in test reports and error messages. - New option to provide a [custom fixture title](https://playwright.dev/docs/test-fixtures#custom-fixture-title) to be used in test reports and error messages. #### Possibly breaking change Fixture values that are array of objects, when specified in the `test.use()` block, may require being wrapped into a fixture tuple. This is best seen on the example: ```ts import { test as base } from '@playwright/test'; // Define an option fixture that has an "array of objects" value type User = { name: string, password: string }; const test = base.extend<{ users: User[] }>({ users: [ [], { option: true } ], }); // Specify option value in the test.use block. test.use({ // WRONG: this syntax may not work for you users: [ { name: 'John Doe', password: 'secret' }, { name: 'John Smith', password: 's3cr3t' }, ], // CORRECT: this syntax will work. Note extra [] around the value, and the "scope" property. users: [[ { name: 'John Doe', password: 'secret' }, { name: 'John Smith', password: 's3cr3t' }, ], { scope: 'test' }], }); test('example test', async () => { // ... }); ``` #### Browser Versions - Chromium 128.0.6613.18 - Mozilla Firefox 128.0 - WebKit 18.0 This version was also tested against the following stable channels: - Google Chrome 127 - Microsoft Edge 127 ### [`v1.45.3`](https://togithub.com/microsoft/playwright/releases/tag/v1.45.3) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.45.2...v1.45.3) ##### Highlights [https://github.com/microsoft/playwright/issues/31764](https://togithub.com/microsoft/playwright/issues/31764) - \[Bug]: some actions do not appear in the trace file[https://github.com/microsoft/playwright-java/issues/1617](https://togithub.com/microsoft/playwright-java/issues/1617)7 - \[Bug]: Traceviewer not reporting all actions #### Browser Versions - Chromium 127.0.6533.5 - Mozilla Firefox 127.0 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 126 - Microsoft Edge 126react-icons/react-icons (react-icons)
### [`v5.3.0`](https://togithub.com/react-icons/react-icons/releases/tag/v5.3.0) [Compare Source](https://togithub.com/react-icons/react-icons/compare/v5.2.1...v5.3.0) #### What's Changed - Bump ejs from 3.1.9 to 3.1.10 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/react-icons/react-icons/pull/942](https://togithub.com/react-icons/react-icons/pull/942) - Bump braces from 3.0.2 to 3.0.3 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/react-icons/react-icons/pull/953](https://togithub.com/react-icons/react-icons/pull/953) - Bump ws from 7.5.9 to 7.5.10 by [@dependabot](https://togithub.com/dependabot) in [https://github.com/react-icons/react-icons/pull/954](https://togithub.com/react-icons/react-icons/pull/954) - feat: update simple icons to 12.4.0 by [@sdabhi23](https://togithub.com/sdabhi23) in [https://github.com/react-icons/react-icons/pull/956](https://togithub.com/react-icons/react-icons/pull/956) - update bootstrap, tabler icons by [@kamijin-fanta](https://togithub.com/kamijin-fanta) in [https://github.com/react-icons/react-icons/pull/968](https://togithub.com/react-icons/react-icons/pull/968) #### New Contributors - [@sdabhi23](https://togithub.com/sdabhi23) made their first contribution in [https://github.com/react-icons/react-icons/pull/956](https://togithub.com/react-icons/react-icons/pull/956) **Full Changelog**: https://github.com/react-icons/react-icons/compare/v5.2.1...v5.3.0 | Icon Library | License | Version | Count | | --- | --- | --- | ---: | | [Circum Icons](https://circumicons.com/) | [MPL-2.0 license](https://togithub.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE) | 1.0.0 | 288 | | [Font Awesome 5](https://fontawesome.com/) | [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/) | 5.15.4-3-gafecf2a | 1612 | | [Font Awesome 6](https://fontawesome.com/) | [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/) | 6.5.2 | 2045 | | [Ionicons 4](https://ionicons.com/) | [MIT](https://togithub.com/ionic-team/ionicons/blob/master/LICENSE) | 4.6.3 | 696 | | [Ionicons 5](https://ionicons.com/) | [MIT](https://togithub.com/ionic-team/ionicons/blob/master/LICENSE) | 5.5.4 | 1332 | | [Material Design icons](http://google.github.io/material-design-icons/) | [Apache License Version 2.0](https://togithub.com/google/material-design-icons/blob/master/LICENSE) | 4.0.0-98-g9beae745bb | 4341 | | [Typicons](http://s-ings.com/typicons/) | [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) | 2.1.2 | 336 | | [Github Octicons icons](https://octicons.github.com/) | [MIT](https://togithub.com/primer/octicons/blob/master/LICENSE) | 18.3.0 | 264 | | [Feather](https://feathericons.com/) | [MIT](https://togithub.com/feathericons/feather/blob/master/LICENSE) | 4.29.1 | 287 | | [Lucide](https://lucide.dev/) | [ISC](https://togithub.com/lucide-icons/lucide/blob/main/LICENSE) | v5.3.0 | 1215 | | [Game Icons](https://game-icons.net/) | [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/) | [`12920d6`](https://togithub.com/react-icons/react-icons/commit/12920d6565588f0512542a3cb0cdfd36a497f910) | 4040 | | [Weather Icons](https://erikflowers.github.io/weather-icons/) | [SIL OFL 1.1](http://scripts.sil.org/OFL) | 2.0.12 | 219 | | [Devicons](https://vorillaz.github.io/devicons/) | [MIT](https://opensource.org/licenses/MIT) | 1.8.0 | 192 | | [Ant Design Icons](https://togithub.com/ant-design/ant-design-icons) | [MIT](https://opensource.org/licenses/MIT) | 4.4.2 | 831 | | [Bootstrap Icons](https://togithub.com/twbs/icons) | [MIT](https://opensource.org/licenses/MIT) | 1.11.3 | 2716 | | [Remix Icon](https://togithub.com/Remix-Design/RemixIcon) | [Apache License Version 2.0](http://www.apache.org/licenses/) | 4.2.0 | 2860 | | [Flat Color Icons](https://togithub.com/icons8/flat-color-icons) | [MIT](https://opensource.org/licenses/MIT) | 1.0.2 | 329 | | [Grommet-Icons](https://togithub.com/grommet/grommet-icons) | [Apache License Version 2.0](http://www.apache.org/licenses/) | 4.12.1 | 635 | | [Heroicons](https://togithub.com/tailwindlabs/heroicons) | [MIT](https://opensource.org/licenses/MIT) | 1.0.6 | 460 | | [Heroicons 2](https://togithub.com/tailwindlabs/heroicons) | [MIT](https://opensource.org/licenses/MIT) | 2.1.3 | 888 | | [Simple Icons](https://simpleicons.org/) | [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/) | 12.4.0 | 3209 | | [Simple Line Icons](https://thesabbir.github.io/simple-line-icons/) | [MIT](https://opensource.org/licenses/MIT) | 2.5.5 | 189 | | [IcoMoon Free](https://togithub.com/Keyamoon/IcoMoon-Free) | [CC BY 4.0 License](https://togithub.com/Keyamoon/IcoMoon-Free/blob/master/License.txt) | [`d006795`](https://togithub.com/react-icons/react-icons/commit/d006795ede82361e1bac1ee76f215cf1dc51e4ca) | 491 | | [BoxIcons](https://togithub.com/atisawd/boxicons) | [MIT](https://togithub.com/atisawd/boxicons/blob/master/LICENSE) | 2.1.4 | 1634 | | [css.gg](https://togithub.com/astrit/css.gg) | [MIT](https://opensource.org/licenses/MIT) | 2.1.1 | 704 | | [VS Code Icons](https://togithub.com/microsoft/vscode-codicons) | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | 0.0.35 | 461 | | [Tabler Icons](https://togithub.com/tabler/tabler-icons) | [MIT](https://opensource.org/licenses/MIT) | 3.3.0 | 5256 | | [Themify Icons](https://togithub.com/lykmapipo/themify-icons) | [MIT](https://togithub.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE) | v0.1.2-2-g9600186 | 352 | | [Radix Icons](https://icons.radix-ui.com) | [MIT](https://togithub.com/radix-ui/icons/blob/master/LICENSE) | [@radix-ui/react-icons](https://togithub.com/radix-ui/react-icons)[@1](https://togithub.com/1).3.0-1-g94b3fcf | 318 | | [Phosphor Icons](https://togithub.com/phosphor-icons/core) | [MIT](https://togithub.com/phosphor-icons/core/blob/main/LICENSE) | 2.1.1 | 9072 | | [Icons8 Line Awesome](https://icons8.com/line-awesome) | [MIT](https://togithub.com/icons8/line-awesome/blob/master/LICENSE.md) | 1.3.1 | 1544 |privatenumber/tsx (tsx)
### [`v4.17.0`](https://togithub.com/privatenumber/tsx/releases/tag/v4.17.0) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.16.5...v4.17.0) ##### Features - upgrade esbuild to 0.23 ([#615](https://togithub.com/privatenumber/tsx/issues/615)) ([bd83d3b](https://togithub.com/privatenumber/tsx/commit/bd83d3bf59e39767ec64eec86fe5b48a8e50b991)) *** This release is also available on: - [npm package (@latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.17.0) ### [`v4.16.5`](https://togithub.com/privatenumber/tsx/releases/tag/v4.16.5) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.16.4...v4.16.5) ##### Bug Fixes - **resolver:** directory import nested ".." ([2fada74](https://togithub.com/privatenumber/tsx/commit/2fada74ad363655890695716f762f89276800a46)) *** This release is also available on: - [npm package (@latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.16.5) ### [`v4.16.4`](https://togithub.com/privatenumber/tsx/releases/tag/v4.16.4) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.16.3...v4.16.4) ##### Bug Fixes - **resolver:** handle importing ".." ([3cf0b6a](https://togithub.com/privatenumber/tsx/commit/3cf0b6acb9041b782d46345c23f3f48160e05f49)), closes [#626](https://togithub.com/privatenumber/tsx/issues/626) *** This release is also available on: - [npm package (@latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.16.4) ### [`v4.16.3`](https://togithub.com/privatenumber/tsx/releases/tag/v4.16.3) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.16.2...v4.16.3) ##### Bug Fixes - **resolver:** prioritize requested path in dependencies ([3df00f4](https://togithub.com/privatenumber/tsx/commit/3df00f4e64fd013ef8bc789b0be0496a033f4d3d)), closes [privatenumber/tsx#617](https://togithub.com/privatenumber/tsx/issues/617) *** This release is also available on: - [npm package (@latest dist-tag)](https://www.npmjs.com/package/tsx/v/4.16.3)Microsoft/TypeScript (typescript)
### [`v5.5.4`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.5.4): TypeScript 5.5.4 [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.5.3...v5.5.4) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.4 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.4%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.3 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.2 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild) (soon!) ### [`v5.5.3`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.5.3): TypeScript 5.5.3 [Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3) For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5/). For the complete list of fixed issues, check out the - [fixed issues query for TypeScript v5.5.3 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.3%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.2 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.2%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.1 (RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.1%22+is%3Aclosed+). - [fixed issues query for TypeScript v5.5.0 (Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=is%3Aissue+milestone%3A%22TypeScript+5.5.0%22+is%3Aclosed+). Downloads are available on: - [npm](https://www.npmjs.com/package/typescript) - [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)cloudflare/workers-sdk (wrangler)
### [`v3.71.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3710) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.70.0...wrangler@3.71.0) ##### Minor Changes - [#6464](https://togithub.com/cloudflare/workers-sdk/pull/6464) [`da9106c`](https://togithub.com/cloudflare/workers-sdk/commit/da9106c7c1d2734c04b6aa357ba0d4f054871466) Thanks [@AnantharamanSI](https://togithub.com/AnantharamanSI)! - feat: rename `--count` to `--limit` in `wrangler d1 insights` This PR renames `wrangler d1 insight`'s `--count` flag to `--limit` to improve clarity and conform to naming conventions. To avoid a breaking change, we have kept `--count` as an alias to `--limit`. - [#6451](https://togithub.com/cloudflare/workers-sdk/pull/6451) [`515de6a`](https://togithub.com/cloudflare/workers-sdk/commit/515de6ab40ed6154a2e6579ff90b14b304809609) Thanks [@danielrs](https://togithub.com/danielrs)! - feat: `whoami` shows membership information when available - [#6463](https://togithub.com/cloudflare/workers-sdk/pull/6463) [`dbc6782`](https://togithub.com/cloudflare/workers-sdk/commit/dbc678218a0ec9c42201da1300c610068c3d7dcb) Thanks [@AnantharamanSI](https://togithub.com/AnantharamanSI)! - feat: add queryEfficiency to `wrangler d1 insights` output - [#6252](https://togithub.com/cloudflare/workers-sdk/pull/6252) [`a2a144c`](https://togithub.com/cloudflare/workers-sdk/commit/a2a144ca1bcdf83118bf1d61427ffd0ae265c1a2) Thanks [@garvit-gupta](https://togithub.com/garvit-gupta)! - feat: Enable Wrangler to operate on Vectorize V2 indexes ##### Patch Changes - [#6424](https://togithub.com/cloudflare/workers-sdk/pull/6424) [`3402ab9`](https://togithub.com/cloudflare/workers-sdk/commit/3402ab9d517553fe0a602669e8e151a82555a72c) Thanks [@RamIdeas](https://togithub.com/RamIdeas)! - fix: using a debugger sometimes disconnected with "Message is too large" error ### [`v3.70.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3700) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.69.1...wrangler@3.70.0) ##### Minor Changes - [#6383](https://togithub.com/cloudflare/workers-sdk/pull/6383) [`05082ad`](https://togithub.com/cloudflare/workers-sdk/commit/05082adae40c9b30a72b6b6b31f466803f5eab5d) Thanks [@petebacondarwin](https://togithub.com/petebacondarwin)! - feat: support outputting ND-JSON files via an environment variable ##### Patch Changes - [#6440](https://togithub.com/cloudflare/workers-sdk/pull/6440) [`09b5092`](https://togithub.com/cloudflare/workers-sdk/commit/09b50927a62731f8aa621b9d872d10d1900a60a5) Thanks [@petebacondarwin](https://togithub.com/petebacondarwin)! - fix: tweak the properties of the new Wrangler output file entries for better consistency - Updated dependencies \[[`d55eeca`](https://togithub.com/cloudflare/workers-sdk/commit/d55eeca878b68bd10ddcc5ef3b1b4d820b037684)]: - miniflare@3.20240806.0 ### [`v3.69.1`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3691) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.69.0...wrangler@3.69.1) ##### Patch Changes - [#6432](https://togithub.com/cloudflare/workers-sdk/pull/6432) [`cba2e25`](https://togithub.com/cloudflare/workers-sdk/commit/cba2e25ec3f4a8402c6960ac84651b7dfe2f11ff) Thanks [@petebacondarwin](https://togithub.com/petebacondarwin)! - fix: prevent crash when running wrangler dev due to missing dependency ### [`v3.69.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3690) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.68.0...wrangler@3.69.0) ##### Minor Changes - [#6392](https://togithub.com/cloudflare/workers-sdk/pull/6392) [`c3e19b7`](https://togithub.com/cloudflare/workers-sdk/commit/c3e19b790bb597b78e0109a162ca8049b5eaf973) Thanks [@taylorlee](https://togithub.com/taylorlee)! - feat: log Worker startup time in the `version upload` command - [#6370](https://togithub.com/cloudflare/workers-sdk/pull/6370) [`8a3c6c0`](https://togithub.com/cloudflare/workers-sdk/commit/8a3c6c00105a3420e46da660bd3f317b26f1c6d4) Thanks [@CarmenPopoviciu](https://togithub.com/CarmenPopoviciu)! - feat: Create very basic Asset Server Worker and plumb it into `wrangler dev` These changes do the ground work needed in order to add Assets support for Workers in `wrangler dev`. They implement the following: - it creates a new package called `workers-shared` that hosts the `Asset Server Worker`, and the `Router Worker`in the future - it scaffolds the `Asset Server Worker` in some very basic form, with basic configuration. Further behaviour implementation will follow in a subsequent PR - it does the ground work of plumbing ASW into Miniflare ##### Patch Changes - [#6392](https://togithub.com/cloudflare/workers-sdk/pull/6392) [`c3e19b7`](https://togithub.com/cloudflare/workers-sdk/commit/c3e19b790bb597b78e0109a162ca8049b5eaf973) Thanks [@taylorlee](https://togithub.com/taylorlee)! - fix: remove bundle size warning from Worker deploy commands Bundle size was a proxy for startup time. Now that we have startup time reported, focus on bundle size is less relevant.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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.
This PR has been generated by Renovate Bot.