s3igo / blog

個人ブログ
https://blog.tsuki-yo.net
MIT License
3 stars 1 forks source link

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

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 4 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@astrojs/solid-js (source) 4.2.0 -> 4.3.0 age adoption passing confidence
astro (source) 4.9.3 -> 4.10.1 age adoption passing confidence
wrangler (source) 3.59.0 -> 3.60.0 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/solid-js) ### [`v4.3.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/solid/CHANGELOG.md#430) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/solid-js@4.2.0...@astrojs/solid-js@4.3.0) ##### Minor Changes - [#​11144](https://togithub.com/withastro/astro/pull/11144) [`803dd80`](https://togithub.com/withastro/astro/commit/803dd8061df02138b4928442bcb76e77dcf6f5e7) Thanks [@​ematipico](https://togithub.com/ematipico)! - The integration now exposes a function called `getContainerRenderer`, that can be used inside the Container APIs to load the relative renderer. ```js import { experimental_AstroContainer as AstroContainer } from 'astro/container'; import ReactWrapper from '../src/components/ReactWrapper.astro'; import { loadRenderers } from 'astro:container'; import { getContainerRenderer } from '@​astrojs/react'; test('ReactWrapper with react renderer', async () => { const renderers = await loadRenderers([getContainerRenderer()]); const container = await AstroContainer.create({ renderers, }); const result = await container.renderToString(ReactWrapper); expect(result).toContain('Counter'); expect(result).toContain('Count: 5'); }); ```
withastro/astro (astro) ### [`v4.10.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4101) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.10.0...astro@4.10.1) ##### Patch Changes - [#​11198](https://togithub.com/withastro/astro/pull/11198) [`8b9a499`](https://togithub.com/withastro/astro/commit/8b9a499d3733e9d0fc6a0bd067ece19bd36f4726) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Fixes a case where `astro:env` `getSecret` would not retrieve environment variables properly in dev and build modes - [#​11206](https://togithub.com/withastro/astro/pull/11206) [`734b98f`](https://togithub.com/withastro/astro/commit/734b98fecf0212cd76be3c935a49f84a9a7dab34) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - **BREAKING CHANGE to the experimental `astro:env` feature only** Updates the adapter `astro:env` entrypoint from `astro:env/setup` to `astro/env/setup` - [#​11205](https://togithub.com/withastro/astro/pull/11205) [`8c45391`](https://togithub.com/withastro/astro/commit/8c4539145f0b6a735b65852b2f2b1a7e9f5a9c3f) Thanks [@​Nin3lee](https://togithub.com/Nin3lee)! - Fixes a typo in the config reference ### [`v4.10.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4100) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.9.3...astro@4.10.0) ##### Minor Changes - [#​10974](https://togithub.com/withastro/astro/pull/10974) [`2668ef9`](https://togithub.com/withastro/astro/commit/2668ef984104574f25f29ef75e2572a0745d1666) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds experimental support for the `astro:env` API. The `astro:env` API lets you configure a type-safe schema for your environment variables, and indicate whether they should be available on the server or the client. Import and use your defined variables from the appropriate `/client` or `/server` module:
cloudflare/workers-sdk (wrangler) ### [`v3.60.0`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3600) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.59.0...wrangler@3.60.0) ##### Minor Changes - [#​5878](https://togithub.com/cloudflare/workers-sdk/pull/5878) [`1e68fe5`](https://togithub.com/cloudflare/workers-sdk/commit/1e68fe5448ffa4d0551dc7255405983c329235c8) Thanks [@​IgorMinar](https://togithub.com/IgorMinar)! - feat: add experimental support for hybrid Node.js compatibility *This feature is experimental and not yet available for general consumption.* Use a combination of workerd Node.js builtins (behind the `experimental:nodejs_compat_v2` flag) and Unenv polyfills (configured to only add those missing from the runtime) to provide a new more effective Node.js compatibility approach. - [#​5988](https://togithub.com/cloudflare/workers-sdk/pull/5988) [`e144f63`](https://togithub.com/cloudflare/workers-sdk/commit/e144f63f8c418c77a3b73d387f7e7d22e8f1f730) Thanks [@​RamIdeas](https://togithub.com/RamIdeas)! - feature: rename the `wrangler secret:bulk` command to `wrangler secret bulk` The old command is now deprecated (but still functional) and will be removed in a future release. The new command is now more consistent with the rest of the wrangler CLI commands. - [#​5989](https://togithub.com/cloudflare/workers-sdk/pull/5989) [`35b1a2f`](https://togithub.com/cloudflare/workers-sdk/commit/35b1a2f59bf0849e65782a278463cd0c3d294817) Thanks [@​RamIdeas](https://togithub.com/RamIdeas)! - feature: rename `wrangler kv:...` commands to `wrangler kv ...` The old commands are now deprecated (but still functional) and will be removed in a future release. The new commands are now more consistent with the rest of the wrangler CLI commands. - [#​5861](https://togithub.com/cloudflare/workers-sdk/pull/5861) [`1cc52f1`](https://togithub.com/cloudflare/workers-sdk/commit/1cc52f14c70112f5257263a4adee0c54add3a00d) Thanks [@​zebp](https://togithub.com/zebp)! - feat: allow for Pages projects to upload sourcemaps Pages projects can now upload sourcemaps for server bundles to enable remapped stacktraces in realtime logs when deployed with `upload_source_map` set to `true` in `wrangler.toml`. ##### Patch Changes - [#​5939](https://togithub.com/cloudflare/workers-sdk/pull/5939) [`21573f4`](https://togithub.com/cloudflare/workers-sdk/commit/21573f4fd3484145405c5666b4dc9f7338f56887) Thanks [@​penalosa](https://togithub.com/penalosa)! - refactor: Adds the experimental flag `--x-dev-env` which opts in to using an experimental code path for `wrangler dev` and `wrangler dev --remote`. There should be no observable behaviour changes when this flag is enabled. - [#​5934](https://togithub.com/cloudflare/workers-sdk/pull/5934) [`bac79fb`](https://togithub.com/cloudflare/workers-sdk/commit/bac79fb7379941cd70d3a99d0d2cdb23e2409e50) Thanks [@​dbenCF](https://togithub.com/dbenCF)! - fix: Update create KV namespace binding details message for easier implementation - [#​5927](https://togithub.com/cloudflare/workers-sdk/pull/5927) [`6f83641`](https://togithub.com/cloudflare/workers-sdk/commit/6f836416446e3c04656d17477bcbbd39386622b5) Thanks [@​CarmenPopoviciu](https://togithub.com/CarmenPopoviciu)! - fix: Clean `pages dev` terminal ouput This work includes a series of improvements to the `pages dev` terminal output, in an attempt to make this output more structured, organised, cleaner, easier to follow, and therefore more helpful for our users <3 - [#​5960](https://togithub.com/cloudflare/workers-sdk/pull/5960) [`e648825`](https://togithub.com/cloudflare/workers-sdk/commit/e6488257f9376d415d970b045d77f0223d2f7884) Thanks [@​petebacondarwin](https://togithub.com/petebacondarwin)! - fix: avoid injecting esbuild watch stubs into production Worker code When we added the ability to include additional modules in the deployed bundle of a Worker, we inadvertently also included some boiler plate code that is only needed at development time. This fix ensures that this code is only injected if we are running esbuild in watch mode (e.g. `wrangler dev`) and not when building for deployment. It is interesting to note that this boilerplate only gets included in the production code if there is an import of CommonJS code in the Worker, which esbuild needs to convert to an ESM import. Fixes [#​4269](https://togithub.com/cloudflare/workers-sdk/issues/4269) - Updated dependencies \[[`ab95473`](https://togithub.com/cloudflare/workers-sdk/commit/ab9547380fd6fbc1d20c8dd4211faedbe94e5b33)]: - miniflare@3.20240605.0

Configuration

📅 Schedule: Branch creation - "before 4am" in timezone Asia/Tokyo, 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.



This PR has been generated by Mend Renovate. View repository job log here.

cloudflare-workers-and-pages[bot] commented 4 months ago

Deploying blog with  Cloudflare Pages  Cloudflare Pages

Latest commit: 81a20e1
Status: ✅  Deploy successful!
Preview URL: https://9af48584.blog-5fi.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.blog-5fi.pages.dev

View logs