s3igo / blog

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

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

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/partytown (source) 2.1.0 -> 2.1.1 age adoption passing confidence
@astrojs/solid-js (source) 4.2.0 -> 4.3.0 age adoption passing confidence
@biomejs/biome (source) 1.8.0 -> 1.8.1 age adoption passing confidence
astro (source) 4.9.3 -> 4.10.2 age adoption passing confidence
wrangler (source) 3.59.0 -> 3.60.1 age adoption passing confidence

Release Notes

withastro/astro (@​astrojs/partytown) ### [`v2.1.1`](https://togithub.com/withastro/astro/blob/HEAD/packages/integrations/partytown/CHANGELOG.md#211) ##### Patch Changes - [#​11083](https://togithub.com/withastro/astro/pull/11083) [`416c4ac`](https://togithub.com/withastro/astro/commit/416c4ac66d432d4c5abd13a4c7ecd20defb4fc30) Thanks [@​V3RON](https://togithub.com/V3RON)! - Prevent Partytown from crashing when View Transitions are enabled When View Transitions are turned on, Partytown executes on every transition. It's not meant to be like that, and therefore it breaks the integration completely. Starting from now, Partytown will be executed only once.
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'); }); ```
biomejs/biome (@​biomejs/biome) ### [`v1.8.1`](https://togithub.com/biomejs/biome/blob/HEAD/CHANGELOG.md#v181-2024-06-10) [Compare Source](https://togithub.com/biomejs/biome/compare/378c05edd47608a1b8cba725564c807b2e772bd6...39db99b1cd087d6aa46ecfecba6adbfa0d45a303) ##### Analyzer ##### CLI ##### Bug fixes - Fix [#​3069](https://togithub.com/biomejs/biome/issues/3069), prevent overwriting paths when using `--staged` or `--changed` options. Contributed by [@​unvalley](https://togithub.com/unvalley) - Fix a case where the file link inside a diagnostic wasn't correctly displayed inside a terminal run by VSCode. Contributed by [@​uncenter](https://togithub.com/uncenter) ##### Configuration ##### Bug fixes - Fix [#​3067](https://togithub.com/biomejs/biome/issues/3067), by assigning the correct default value to `indentWidth`. Contributed by [@​ematipico](https://togithub.com/ematipico) ##### Editors ##### Formatter ##### Bug fixes - Fix the bug where whitespace after the & character in CSS nesting was incorrectly trimmed, ensuring proper targeting of child classes [#​3061](https://togithub.com/biomejs/biome/issues/3061). Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix [#​3068](https://togithub.com/biomejs/biome/issues/3068) where the CSS formatter was inadvertently converting variable declarations and function calls to lowercase. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix the formatting of CSS grid layout properties. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) ##### JavaScript APIs ##### Linter ##### Bug fixes - The `noEmptyBlock` css lint rule now treats empty blocks containing comments as valid ones. Contributed by [@​Sec-ant](https://togithub.com/Sec-ant) - [useLiteralKeys](https://biomejs.dev/linter/rules/use-literal-keys/) no longer reports quoted member names ([#​3085](https://togithub.com/biomejs/biome/issues/3085)). Previously [useLiteralKeys](https://biomejs.dev/linter/rules/use-literal-keys/) reported quoted member names that can be unquoted. For example, the rule suggested the following fix: ```diff - const x = { "prop": 0 }; + const x = { prop: 0 }; ``` This conflicted with the option [quoteProperties](https://biomejs.dev/reference/configuration/#javascriptformatterquoteproperties) of our formatter. The rule now ignores quoted member names. Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noEmptyInterface](https://biomejs.dev/linter/rules/no-empty-interface/) now ignores empty interfaces in ambient modules ([#​3110](https://togithub.com/biomejs/biome/issues/3110)). Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noUnusedVariables](https://biomejs.dev/linter/rules/no-unused-variables/) and [noUnusedFunctionParameters](https://biomejs.dev/linter/rules/no-unused-function-parameters/) no longer report the parameters of a constructor type ([#​3135](https://togithub.com/biomejs/biome/issues/3135)). Previously, `arg` was reported as unused in a constructor type like: ```ts export type Classlike = new (arg: unknown) => string; ``` Contributed by [@​Conaclos](https://togithub.com/Conaclos) - [noStringCaseMismatch](https://biomejs.dev/linter/rules/no-string-case-mismatch/) now ignores escape sequences ([#​3134](https://togithub.com/biomejs/biome/issues/3134)). The following code is no longer reported by the rule: ```js s.toUpperCase() === "\u001b"; ``` Contributed by [@​Conaclos](https://togithub.com/Conaclos) ##### Parser ##### New features - Implemented CSS Unknown At-Rule parsing, allowing the parser to gracefully handle unsupported or unrecognized CSS at-rules. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) ##### Bug fixes - Fix [#​3055](https://togithub.com/biomejs/biome/issues/3055) CSS: Layout using named grid lines is now correctly parsed. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov) - Fix [#​3091](https://togithub.com/biomejs/biome/issues/3091). Allows the parser to handle nested style rules and at-rules properly, enhancing the parser's compatibility with the CSS Nesting Module. Contributed by [@​denbezrukov](https://togithub.com/denbezrukov)
withastro/astro (astro) ### [`v4.10.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4102) ##### Patch Changes - [#​11231](https://togithub.com/withastro/astro/pull/11231) [`58d7dbb`](https://togithub.com/withastro/astro/commit/58d7dbb5e0cabea1ac7a35af5b46685fce50d723) Thanks [@​ematipico](https://togithub.com/ematipico)! - Fixes a regression for `getViteConfig`, where the inline config wasn't merged in the final config. - [#​11228](https://togithub.com/withastro/astro/pull/11228) [`1e293a1`](https://togithub.com/withastro/astro/commit/1e293a1b819024f16bfe482f272df0678cdd7874) Thanks [@​ascorbic](https://togithub.com/ascorbic)! - Updates `getCollection()` to always return a cloned array - [#​11207](https://togithub.com/withastro/astro/pull/11207) [`7d9aac3`](https://togithub.com/withastro/astro/commit/7d9aac376c4b8844917901f7f566f7259d7f66c8) Thanks [@​ematipico](https://togithub.com/ematipico)! - Fixes an issue in the rewriting logic where old data was not purged during the rewrite flow. This caused some false positives when checking the validity of URL path names during the rendering phase. - [#​11189](https://togithub.com/withastro/astro/pull/11189) [`75a8fe7`](https://togithub.com/withastro/astro/commit/75a8fe7e72b95f20c36f034de2b51b6a9550e27e) Thanks [@​ematipico](https://togithub.com/ematipico)! - Improve error message when using `getLocaleByPath` on path that doesn't contain any locales. - [#​11195](https://togithub.com/withastro/astro/pull/11195) [`0a6ab6f`](https://togithub.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds support for enums to `astro:env` You can now call `envField.enum`: ```js import { defineConfig, envField } from 'astro/config'; export default defineConfig({ experimental: { env: { schema: { API_VERSION: envField.enum({ context: 'server', access: 'secret', values: ['v1', 'v2'], }), }, }, }, }); ``` - [#​11210](https://togithub.com/withastro/astro/pull/11210) [`66fc028`](https://togithub.com/withastro/astro/commit/66fc0283d3f1d1a4f17d7db65ca3521a01fb5bec) Thanks [@​matthewp](https://togithub.com/matthewp)! - Close the iterator only after rendering is complete - [#​11195](https://togithub.com/withastro/astro/pull/11195) [`0a6ab6f`](https://togithub.com/withastro/astro/commit/0a6ab6f562651b558ca90761feed5c07f54f2633) Thanks [@​florian-lefebvre](https://togithub.com/florian-lefebvre)! - Adds additional validation options to `astro:env` `astro:env` schema datatypes `string` and `number` now have new optional validation rules: ```js import { defineConfig, envField } from 'astro/config'; export default defineConfig({ experimental: { env: { schema: { FOO: envField.string({ // ... max: 32, min: 3, length: 12, url: true, includes: 'foo', startsWith: 'bar', endsWith: 'baz', }), BAR: envField.number({ // ... gt: 2, min: 3, lt: 10, max: 9, int: true, }), }, }, }, }); ``` - [#​11211](https://togithub.com/withastro/astro/pull/11211) [`97724da`](https://togithub.com/withastro/astro/commit/97724da93ed7b1db19632c0cdb4b3aab1ff84812) Thanks [@​matthewp](https://togithub.com/matthewp)! - Let middleware handle the original request URL - [#​10607](https://togithub.com/withastro/astro/pull/10607) [`7327c6a`](https://togithub.com/withastro/astro/commit/7327c6acb197e1f2ea6cf94cfbc5700bc755f982) Thanks [@​frankbits](https://togithub.com/frankbits)! - Fixes an issue where a leading slash created incorrect conflict resolution between pages generated from static routes and catch-all dynamic routes ### [`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.1`](https://togithub.com/cloudflare/workers-sdk/blob/HEAD/packages/wrangler/CHANGELOG.md#3601) [Compare Source](https://togithub.com/cloudflare/workers-sdk/compare/wrangler@3.60.0...wrangler@3.60.1) ##### Patch Changes - [#​6002](https://togithub.com/cloudflare/workers-sdk/pull/6002) [`f1f1834`](https://togithub.com/cloudflare/workers-sdk/commit/f1f18347ddfff509a58acea2a815c40fe86fd56c) Thanks [@​GregBrimble](https://togithub.com/GregBrimble)! - Revert a change in 3.60.0 which incorrectly batched assets for Pages uploads ([https://github.com/cloudflare/workers-sdk/pull/5632](https://togithub.com/cloudflare/workers-sdk/pull/5632)). ### [`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: 35a479d
Status: ✅  Deploy successful!
Preview URL: https://7d66516c.blog-5fi.pages.dev
Branch Preview URL: https://renovate-all-minor-patch.blog-5fi.pages.dev

View logs

renovate[bot] commented 4 months ago

Edited/Blocked Notification

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.