jellydn / elysia-demo-app

A Real-World Example Using Bun, Docker, and Fly.io 🚀
https://elysia-demo-app.fly.dev/swagger
66 stars 3 forks source link

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

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 5 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@elysiajs/cors 0.7.2 -> 0.8.0 age adoption passing confidence dependencies minor
@elysiajs/eden 0.7.7 -> 0.8.1 age adoption passing confidence dependencies minor
@elysiajs/static 0.7.1 -> 0.8.1 age adoption passing confidence dependencies minor
@elysiajs/swagger 1.0.5 -> 1.1.0 age adoption passing confidence dependencies minor
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence devDependencies minor
prettier-plugin-svelte 3.2.3 -> 3.2.5 age adoption passing confidence devDependencies patch
styfle/cancel-workflow-action 0.12.0 -> 0.12.1 age adoption passing confidence action patch
traefik 3.0 -> v3.1 age adoption passing confidence minor

Release Notes

elysiajs/elysia-cors (@​elysiajs/cors) ### [`v0.8.0`](https://togithub.com/elysiajs/elysia-cors/blob/HEAD/CHANGELOG.md#080---23-Dec-2023) [Compare Source](https://togithub.com/elysiajs/elysia-cors/compare/b0010456ef879cfadc116010f2df65eb31bee1fc...7ce6d9a64ff5df81d9be5b38c512c38b61fdb179) Change: - Add support for Elysia 0.8
elysiajs/eden (@​elysiajs/eden) ### [`v0.8.1`](https://togithub.com/elysiajs/eden/blob/HEAD/CHANGELOG.md#081---8-Jan-2024) [Compare Source](https://togithub.com/elysiajs/eden/compare/60b6e3be0fe13461def0b78fc7151ea3c8c4a4cd...f936e007f51a4ff51e62d03bbfc410b9e784799e) Bug fix: - [#​41](https://togithub.com/elysiajs/eden/pull/41) params now optional for paramless routes in edenFetch - [#​39](https://togithub.com/elysiajs/eden/pull/39) transform entire object returned by execute ### [`v0.8.0`](https://togithub.com/elysiajs/eden/blob/HEAD/CHANGELOG.md#080---23-Dec-2023) [Compare Source](https://togithub.com/elysiajs/eden/compare/b20daa8e69a616b78215aec793e9414cad95763b...60b6e3be0fe13461def0b78fc7151ea3c8c4a4cd) Feature: - Support Elysia 0.8
elysiajs/elysia-static (@​elysiajs/static) ### [`v0.8.1`](https://togithub.com/elysiajs/elysia-static/blob/HEAD/CHANGELOG.md#081---25-Dec-2023) [Compare Source](https://togithub.com/elysiajs/elysia-static/compare/83caff573e7db7857731e7b3976b9e3440f63d58...a889adb2f881c1c50afa51d285dc6a5ac64ea4cc) Feature: - `indexHTML` support - [#​16](https://togithub.com/elysiajs/elysia-static/pull/16) implement enableDecodeURI - [#​13](https://togithub.com/elysiajs/elysia-static/pull/13) prettier and eslint Bug fix: - [#​18](https://togithub.com/elysiajs/elysia-static/pull/18) 404 navigate to folder - [#​14](https://togithub.com/elysiajs/elysia-static/pull/14) browser cache - [#​12](https://togithub.com/elysiajs/elysia-static/pull/12) always static with assets on an absolute path ### [`v0.8.0`](https://togithub.com/elysiajs/elysia-static/blob/HEAD/CHANGELOG.md#080---23-Dec-2023) [Compare Source](https://togithub.com/elysiajs/elysia-static/compare/57cbb4f91f42c168b5810567bf081f7bfb1ec4e9...83caff573e7db7857731e7b3976b9e3440f63d58) Change: - Add support for Elysia 0.8
elysiajs/elysia-swagger (@​elysiajs/swagger) ### [`v1.1.0`](https://togithub.com/elysiajs/elysia-swagger/blob/HEAD/CHANGELOG.md#110---16-Jul-2024) [Compare Source](https://togithub.com/elysiajs/elysia-swagger/compare/ff6e88ec2971d9a95bfbbda98cdd2c2d396cad49...8e928acf5cc9c8e10c102a4e7fdf6d08e945774c) Change: - Add support for Elysia 1.1
prettier/prettier (prettier) ### [`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) [diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3) ##### Add parentheses for nullish coalescing in ternary ([#​16391](https://togithub.com/prettier/prettier/pull/16391) by [@​cdignam-segment](https://togithub.com/cdignam-segment)) This change adds clarity to operator precedence. ```js // Input foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.2 foo ? bar ?? foo : baz; foo ?? bar ? a : b; a ? b : foo ?? bar; // Prettier 3.3.3 foo ? (bar ?? foo) : baz; (foo ?? bar) ? a : b; a ? b : (foo ?? bar); ``` ##### Add parentheses for decorator expressions ([#​16458](https://togithub.com/prettier/prettier/pull/16458) by [@​y-schneider](https://togithub.com/y-schneider)) Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5. ```ts // Input @​(foo`tagged template`) class X {} // Prettier 3.3.2 @​foo`tagged template` class X {} // Prettier 3.3.3 @​(foo`tagged template`) class X {} ``` ##### Support `@let` declaration syntax ([#​16474](https://togithub.com/prettier/prettier/pull/16474) by [@​sosukesuzuki](https://togithub.com/sosukesuzuki)) Adds support for Angular v18 `@let` declaration syntax. Please see the following code example. The `@let` declaration allows you to define local variables within the template: ```html @​let name = 'Frodo';

Dashboard for {{name}}

Hello, {{name}} ``` For more details, please refer to the excellent blog post by the Angular Team: [Introducing @​let in Angular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f). We also appreciate the Angular Team for kindly answering our questions to implement this feature. ### [`v3.3.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#332) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) [diff](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) ##### Fix handlebars path expressions starts with `@` ([#​16358](https://togithub.com/prettier/prettier/pull/16358) by [@​Princeyadav05](https://togithub.com/Princeyadav05)) ```hbs {{! Input }}
{{@​x.y.z}}
{{! Prettier 3.3.1 }}
{{@​x}}
{{! Prettier 3.3.2 }}
{{@​x.y.z}}
``` ### [`v3.3.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#331) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.0...3.3.1) [diff](https://togithub.com/prettier/prettier/compare/3.3.0...3.3.1) ##### Preserve empty lines in front matter ([#​16347](https://togithub.com/prettier/prettier/pull/16347) by [@​fisker](https://togithub.com/fisker)) ```markdown --- foo: - bar1 - bar2 - bar3 --- Markdown --- foo: - bar1 - bar2 - bar3 --- Markdown --- foo: - bar1 - bar2 - bar3 --- Markdown ``` ##### Preserve explicit language in front matter ([#​16348](https://togithub.com/prettier/prettier/pull/16348) by [@​fisker](https://togithub.com/fisker)) ```markdown ---yaml title: Hello slug: home --- --- title: Hello slug: home --- ---yaml title: Hello slug: home --- ``` ##### Avoid line breaks in import attributes ([#​16349](https://togithub.com/prettier/prettier/pull/16349) by [@​fisker](https://togithub.com/fisker)) ```jsx // Input import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.0 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; // Prettier 3.3.1 import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" }; ``` ### [`v3.3.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#330) [Compare Source](https://togithub.com/prettier/prettier/compare/3.2.5...3.3.0) [diff](https://togithub.com/prettier/prettier/compare/3.2.5...3.3.0) 🔗 [Release Notes](https://prettier.io/blog/2024/06/01/3.3.0.html)
sveltejs/prettier-plugin-svelte (prettier-plugin-svelte) ### [`v3.2.5`](https://togithub.com/sveltejs/prettier-plugin-svelte/blob/HEAD/CHANGELOG.md#325) [Compare Source](https://togithub.com/sveltejs/prettier-plugin-svelte/compare/v3.2.4...v3.2.5) - (fix) Svelte 5: format TypeScript in the template ### [`v3.2.4`](https://togithub.com/sveltejs/prettier-plugin-svelte/blob/HEAD/CHANGELOG.md#324) [Compare Source](https://togithub.com/sveltejs/prettier-plugin-svelte/compare/v3.2.3...v3.2.4) - (fix) speed up regex
styfle/cancel-workflow-action (styfle/cancel-workflow-action) ### [`v0.12.1`](https://togithub.com/styfle/cancel-workflow-action/releases/tag/0.12.1) [Compare Source](https://togithub.com/styfle/cancel-workflow-action/compare/0.12.0...0.12.1) ##### Patches - Fix: bump to node20: [#​212](https://togithub.com/styfle/cancel-workflow-action/issues/212)
containous/traefik (traefik) ### [`v3.1`](https://togithub.com/containous/traefik/blob/HEAD/CHANGELOG.md#v310-2024-07-15) [All Commits](https://togithub.com/traefik/traefik/compare/v3.1.0-rc1...v3.1.0) **Enhancements:** - **\[k8s,k8s/gatewayapi]** Support invalid HTTPRoute status ([#​10714](https://togithub.com/traefik/traefik/pull/10714) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** KubernetesGateway provider is no longer experimental ([#​10840](https://togithub.com/traefik/traefik/pull/10840) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Bump Gateway API to v1.1.0 ([#​10835](https://togithub.com/traefik/traefik/pull/10835) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Fix route attachments to gateways ([#​10761](https://togithub.com/traefik/traefik/pull/10761) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support HTTPRoute method and query param matching ([#​10815](https://togithub.com/traefik/traefik/pull/10815) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support HTTPURLRewrite filter ([#​10571](https://togithub.com/traefik/traefik/pull/10571) by [SantoDE](https://togithub.com/SantoDE)) - **\[k8s,k8s/gatewayapi]** Set Gateway HTTPRoute status ([#​10667](https://togithub.com/traefik/traefik/pull/10667) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support ReferenceGrant for HTTPRoute backends ([#​10771](https://togithub.com/traefik/traefik/pull/10771) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Compute HTTPRoute priorities ([#​10766](https://togithub.com/traefik/traefik/pull/10766) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support RegularExpression for path matching ([#​10717](https://togithub.com/traefik/traefik/pull/10717) by [dmavrommatis](https://togithub.com/dmavrommatis)) - **\[k8s/crd,k8s]** Support HealthCheck for ExternalName services ([#​10467](https://togithub.com/traefik/traefik/pull/10467) by [marcmognol](https://togithub.com/marcmognol)) - **\[k8s/ingress,k8s/crd,k8s,k8s/gatewayapi]** Migrate to EndpointSlices API ([#​10664](https://togithub.com/traefik/traefik/pull/10664) by [jnoordsij](https://togithub.com/jnoordsij)) - **\[k8s/ingress,k8s/crd,k8s]** Change log level from Warning to Info when ExternalName services is enabled ([#​10682](https://togithub.com/traefik/traefik/pull/10682) by [marcmognol](https://togithub.com/marcmognol)) - **\[k8s/ingress,k8s/crd,k8s]** Allow to use internal Node IPs for NodePort services ([#​10278](https://togithub.com/traefik/traefik/pull/10278) by [jorisvergeer](https://togithub.com/jorisvergeer)) - **\[middleware,k8s,k8s/gatewayapi]** Improve HTTPRoute Redirect Filter with port and scheme ([#​10784](https://togithub.com/traefik/traefik/pull/10784) by [rtribotte](https://togithub.com/rtribotte)) - **\[middleware,k8s,k8s/gatewayapi]** Support HTTPRoute redirect port and scheme ([#​10802](https://togithub.com/traefik/traefik/pull/10802) by [rtribotte](https://togithub.com/rtribotte)) - **\[middleware]** Support Content-Security-Policy-Report-Only in the headers middleware ([#​10709](https://togithub.com/traefik/traefik/pull/10709) by [SpecLad](https://togithub.com/SpecLad)) - **\[middleware]** Add support for Zstandard to the compression middleware ([#​10660](https://togithub.com/traefik/traefik/pull/10660) by [Belphemur](https://togithub.com/Belphemur)) - **\[plugins]** Enhance wasm plugins ([#​10829](https://togithub.com/traefik/traefik/pull/10829) by [juliens](https://togithub.com/juliens)) - **\[plugins]** Add logs for plugins load ([#​10848](https://togithub.com/traefik/traefik/pull/10848) by [mmatur](https://togithub.com/mmatur)) - **\[server]** Support systemd socket-activation ([#​10399](https://togithub.com/traefik/traefik/pull/10399) by [juliens](https://togithub.com/juliens)) **Bug fixes:** - **\[k8s,k8s/gatewayapi]** Retry on Gateway API resource status update ([#​10881](https://togithub.com/traefik/traefik/pull/10881) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Do not disable Gateway API provider if not enabled in experimental ([#​10862](https://togithub.com/traefik/traefik/pull/10862) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[otel]** Bump opentelemetry-go to v1.28 ([#​10876](https://togithub.com/traefik/traefik/pull/10876) by [arukiidou](https://togithub.com/arukiidou)) - **\[plugins]** Fix build only linux and darwin support wazergo ([#​10857](https://togithub.com/traefik/traefik/pull/10857) by [juliens](https://togithub.com/juliens)) - **\[healthcheck,k8s/crd,k8s]** Fix Healthcheck default value for ExternalName services ([#​10778](https://togithub.com/traefik/traefik/pull/10778) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[middleware,metrics,tracing]** Upgrade to OpenTelemetry Semantic Conventions v1.26.0 ([#​10850](https://togithub.com/traefik/traefik/pull/10850) by [mmatur](https://togithub.com/mmatur)) **Documentation:** - **\[k8s,k8s/gatewayapi]** Fix the Kubernetes Gateway API documentation ([#​10844](https://togithub.com/traefik/traefik/pull/10844) by [nmengin](https://togithub.com/nmengin)) - **\[k8s,k8s/gatewayapi]** Rework Kubernetes Gateway API documentation ([#​10897](https://togithub.com/traefik/traefik/pull/10897) by [kevinpollet](https://togithub.com/kevinpollet)) - Prepare release v3.1.0-rc3 ([#​10872](https://togithub.com/traefik/traefik/pull/10872) by [rtribotte](https://togithub.com/rtribotte)) - Prepare release v3.1.0-rc2 ([#​10860](https://togithub.com/traefik/traefik/pull/10860) by [kevinpollet](https://togithub.com/kevinpollet)) - Prepare release v3.1.0-rc1 ([#​10856](https://togithub.com/traefik/traefik/pull/10856) by [rtribotte](https://togithub.com/rtribotte)) **Misc:** - Merge current v3.0 into v3.1 ([#​10902](https://togithub.com/traefik/traefik/pull/10902) by [rtribotte](https://togithub.com/rtribotte)) - Merge current v3.0 into v3.1 ([#​10871](https://togithub.com/traefik/traefik/pull/10871) by [rtribotte](https://togithub.com/rtribotte)) - Merge current v3.0 into master ([#​10853](https://togithub.com/traefik/traefik/pull/10853) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10811](https://togithub.com/traefik/traefik/pull/10811) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10789](https://togithub.com/traefik/traefik/pull/10789) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10750](https://togithub.com/traefik/traefik/pull/10750) by [kevinpollet](https://togithub.com/kevinpollet)) - Merge current v3.0 into master ([#​10655](https://togithub.com/traefik/traefik/pull/10655) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10567](https://togithub.com/traefik/traefik/pull/10567) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10418](https://togithub.com/traefik/traefik/pull/10418) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10040](https://togithub.com/traefik/traefik/pull/10040) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​9933](https://togithub.com/traefik/traefik/pull/9933) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9897](https://togithub.com/traefik/traefik/pull/9897) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9871](https://togithub.com/traefik/traefik/pull/9871) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9807](https://togithub.com/traefik/traefik/pull/9807) by [ldez](https://togithub.com/ldez)) ### [`v3.1`](https://togithub.com/containous/traefik/blob/HEAD/CHANGELOG.md#v310-2024-07-15) [All Commits](https://togithub.com/traefik/traefik/compare/v3.1.0-rc1...v3.1.0) **Enhancements:** - **\[k8s,k8s/gatewayapi]** Support invalid HTTPRoute status ([#​10714](https://togithub.com/traefik/traefik/pull/10714) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** KubernetesGateway provider is no longer experimental ([#​10840](https://togithub.com/traefik/traefik/pull/10840) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Bump Gateway API to v1.1.0 ([#​10835](https://togithub.com/traefik/traefik/pull/10835) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Fix route attachments to gateways ([#​10761](https://togithub.com/traefik/traefik/pull/10761) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support HTTPRoute method and query param matching ([#​10815](https://togithub.com/traefik/traefik/pull/10815) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support HTTPURLRewrite filter ([#​10571](https://togithub.com/traefik/traefik/pull/10571) by [SantoDE](https://togithub.com/SantoDE)) - **\[k8s,k8s/gatewayapi]** Set Gateway HTTPRoute status ([#​10667](https://togithub.com/traefik/traefik/pull/10667) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support ReferenceGrant for HTTPRoute backends ([#​10771](https://togithub.com/traefik/traefik/pull/10771) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Compute HTTPRoute priorities ([#​10766](https://togithub.com/traefik/traefik/pull/10766) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[k8s,k8s/gatewayapi]** Support RegularExpression for path matching ([#​10717](https://togithub.com/traefik/traefik/pull/10717) by [dmavrommatis](https://togithub.com/dmavrommatis)) - **\[k8s/crd,k8s]** Support HealthCheck for ExternalName services ([#​10467](https://togithub.com/traefik/traefik/pull/10467) by [marcmognol](https://togithub.com/marcmognol)) - **\[k8s/ingress,k8s/crd,k8s,k8s/gatewayapi]** Migrate to EndpointSlices API ([#​10664](https://togithub.com/traefik/traefik/pull/10664) by [jnoordsij](https://togithub.com/jnoordsij)) - **\[k8s/ingress,k8s/crd,k8s]** Change log level from Warning to Info when ExternalName services is enabled ([#​10682](https://togithub.com/traefik/traefik/pull/10682) by [marcmognol](https://togithub.com/marcmognol)) - **\[k8s/ingress,k8s/crd,k8s]** Allow to use internal Node IPs for NodePort services ([#​10278](https://togithub.com/traefik/traefik/pull/10278) by [jorisvergeer](https://togithub.com/jorisvergeer)) - **\[middleware,k8s,k8s/gatewayapi]** Improve HTTPRoute Redirect Filter with port and scheme ([#​10784](https://togithub.com/traefik/traefik/pull/10784) by [rtribotte](https://togithub.com/rtribotte)) - **\[middleware,k8s,k8s/gatewayapi]** Support HTTPRoute redirect port and scheme ([#​10802](https://togithub.com/traefik/traefik/pull/10802) by [rtribotte](https://togithub.com/rtribotte)) - **\[middleware]** Support Content-Security-Policy-Report-Only in the headers middleware ([#​10709](https://togithub.com/traefik/traefik/pull/10709) by [SpecLad](https://togithub.com/SpecLad)) - **\[middleware]** Add support for Zstandard to the compression middleware ([#​10660](https://togithub.com/traefik/traefik/pull/10660) by [Belphemur](https://togithub.com/Belphemur)) - **\[plugins]** Enhance wasm plugins ([#​10829](https://togithub.com/traefik/traefik/pull/10829) by [juliens](https://togithub.com/juliens)) - **\[plugins]** Add logs for plugins load ([#​10848](https://togithub.com/traefik/traefik/pull/10848) by [mmatur](https://togithub.com/mmatur)) - **\[server]** Support systemd socket-activation ([#​10399](https://togithub.com/traefik/traefik/pull/10399) by [juliens](https://togithub.com/juliens)) **Bug fixes:** - **\[k8s,k8s/gatewayapi]** Retry on Gateway API resource status update ([#​10881](https://togithub.com/traefik/traefik/pull/10881) by [rtribotte](https://togithub.com/rtribotte)) - **\[k8s,k8s/gatewayapi]** Do not disable Gateway API provider if not enabled in experimental ([#​10862](https://togithub.com/traefik/traefik/pull/10862) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[otel]** Bump opentelemetry-go to v1.28 ([#​10876](https://togithub.com/traefik/traefik/pull/10876) by [arukiidou](https://togithub.com/arukiidou)) - **\[plugins]** Fix build only linux and darwin support wazergo ([#​10857](https://togithub.com/traefik/traefik/pull/10857) by [juliens](https://togithub.com/juliens)) - **\[healthcheck,k8s/crd,k8s]** Fix Healthcheck default value for ExternalName services ([#​10778](https://togithub.com/traefik/traefik/pull/10778) by [kevinpollet](https://togithub.com/kevinpollet)) - **\[middleware,metrics,tracing]** Upgrade to OpenTelemetry Semantic Conventions v1.26.0 ([#​10850](https://togithub.com/traefik/traefik/pull/10850) by [mmatur](https://togithub.com/mmatur)) **Documentation:** - **\[k8s,k8s/gatewayapi]** Fix the Kubernetes Gateway API documentation ([#​10844](https://togithub.com/traefik/traefik/pull/10844) by [nmengin](https://togithub.com/nmengin)) - **\[k8s,k8s/gatewayapi]** Rework Kubernetes Gateway API documentation ([#​10897](https://togithub.com/traefik/traefik/pull/10897) by [kevinpollet](https://togithub.com/kevinpollet)) - Prepare release v3.1.0-rc3 ([#​10872](https://togithub.com/traefik/traefik/pull/10872) by [rtribotte](https://togithub.com/rtribotte)) - Prepare release v3.1.0-rc2 ([#​10860](https://togithub.com/traefik/traefik/pull/10860) by [kevinpollet](https://togithub.com/kevinpollet)) - Prepare release v3.1.0-rc1 ([#​10856](https://togithub.com/traefik/traefik/pull/10856) by [rtribotte](https://togithub.com/rtribotte)) **Misc:** - Merge current v3.0 into v3.1 ([#​10902](https://togithub.com/traefik/traefik/pull/10902) by [rtribotte](https://togithub.com/rtribotte)) - Merge current v3.0 into v3.1 ([#​10871](https://togithub.com/traefik/traefik/pull/10871) by [rtribotte](https://togithub.com/rtribotte)) - Merge current v3.0 into master ([#​10853](https://togithub.com/traefik/traefik/pull/10853) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10811](https://togithub.com/traefik/traefik/pull/10811) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10789](https://togithub.com/traefik/traefik/pull/10789) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10750](https://togithub.com/traefik/traefik/pull/10750) by [kevinpollet](https://togithub.com/kevinpollet)) - Merge current v3.0 into master ([#​10655](https://togithub.com/traefik/traefik/pull/10655) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10567](https://togithub.com/traefik/traefik/pull/10567) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​10418](https://togithub.com/traefik/traefik/pull/10418) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​10040](https://togithub.com/traefik/traefik/pull/10040) by [mmatur](https://togithub.com/mmatur)) - Merge current v3.0 into master ([#​9933](https://togithub.com/traefik/traefik/pull/9933) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9897](https://togithub.com/traefik/traefik/pull/9897) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9871](https://togithub.com/traefik/traefik/pull/9871) by [ldez](https://togithub.com/ldez)) - Merge current v3.0 into master ([#​9807](https://togithub.com/traefik/traefik/pull/9807) by [ldez](https://togithub.com/ldez))

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 Mend Renovate. View repository job log here.

changeset-bot[bot] commented 5 months ago

⚠️ No Changeset found

Latest commit: fe54c335fa0b72b7ddeb0435a1a99f6d4978bb00

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

sweep-ai[bot] commented 5 months ago

Apply Sweep Rules to your PR?

This is an automated message generated by Sweep AI.

socket-security[bot] commented 5 months ago

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@elysiajs/cors@0.8.0 None 0 26.7 kB aomkirby123
npm/@elysiajs/eden@0.8.1 network 0 85.2 kB aomkirby123
npm/@elysiajs/static@0.8.1 environment, filesystem +2 111 kB aomkirby123
npm/@elysiajs/swagger@1.1.0 None +2 237 kB aomkirby123
npm/prettier-plugin-svelte@3.2.5 environment 0 1.5 MB dummdidumm
npm/prettier@3.3.3 environment, filesystem, unsafe 0 7.7 MB prettier-bot

🚮 Removed packages: npm/@elysiajs/cors@0.7.2, npm/@elysiajs/eden@0.7.7, npm/@elysiajs/static@0.7.1, npm/@elysiajs/swagger@1.0.5, npm/prettier-plugin-svelte@3.2.3, npm/prettier@3.2.5

View full report↗︎

coderabbitai[bot] commented 4 months ago

[!IMPORTANT]

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share - [X](https://twitter.com/intent/tweet?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A&url=https%3A//coderabbit.ai) - [Mastodon](https://mastodon.social/share?text=I%20just%20used%20%40coderabbitai%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20the%20proprietary%20code.%20Check%20it%20out%3A%20https%3A%2F%2Fcoderabbit.ai) - [Reddit](https://www.reddit.com/submit?title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&text=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code.%20Check%20it%20out%3A%20https%3A//coderabbit.ai) - [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fcoderabbit.ai&mini=true&title=Great%20tool%20for%20code%20review%20-%20CodeRabbit&summary=I%20just%20used%20CodeRabbit%20for%20my%20code%20review%2C%20and%20it%27s%20fantastic%21%20It%27s%20free%20for%20OSS%20and%20offers%20a%20free%20trial%20for%20proprietary%20code)
Tips ### Chat There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai): - Review comments: Directly reply to a review comment made by CodeRabbit. Example: - `I pushed a fix in commit .` - `Generate unit testing code for this file.` - `Open a follow-up GitHub issue for this discussion.` - Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples: - `@coderabbitai generate unit testing code for this file.` - `@coderabbitai modularize this function.` - PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples: - `@coderabbitai generate interesting stats about this repository and render them as a table.` - `@coderabbitai show all the console.log statements in this repository.` - `@coderabbitai read src/utils.ts and generate unit testing code.` - `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.` - `@coderabbitai help me debug CodeRabbit configuration file.` Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. ### CodeRabbit Commands (invoked as PR comments) - `@coderabbitai pause` to pause the reviews on a PR. - `@coderabbitai resume` to resume the paused reviews. - `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository. - `@coderabbitai full review` to do a full review from scratch and review all the files again. - `@coderabbitai summary` to regenerate the summary of the PR. - `@coderabbitai resolve` resolve all the CodeRabbit review comments. - `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository. - `@coderabbitai help` to get help. Additionally, you can add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed. ### CodeRabbit Configuration File (`.coderabbit.yaml`) - You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository. - Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information. - If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json` ### Documentation and Community - Visit our [Documentation](https://coderabbit.ai/docs) for detailed information on how to use CodeRabbit. - Join our [Discord Community](https://discord.com/invite/GsXnASn26c) to get help, request features, and share feedback. - Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.
socket-security[bot] commented 3 months ago

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎