s3igo / blog

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

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

Closed renovate[bot] closed 2 months ago

renovate[bot] commented 2 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
astro (source) 4.12.3 -> 4.13.0 age adoption passing confidence dependencies minor
astro-expressive-code (source) 0.35.3 -> 0.35.4 age adoption passing confidence dependencies patch
crate-ci/typos v1.23.5 -> v1.23.6 age adoption passing confidence action patch
lost-pixel 3.17.0 -> 3.18.0 age adoption passing confidence devDependencies minor
lost-pixel/lost-pixel v3.17.0 -> v3.18.0 age adoption passing confidence action minor

Release Notes

withastro/astro (astro) ### [`v4.13.0`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4130) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.12.3...astro@4.13.0) ##### Minor Changes - [#​11507](https://togithub.com/withastro/astro/pull/11507) [`a62345f`](https://togithub.com/withastro/astro/commit/a62345fd182ae4886d586c8406ed8f3e5f942730) Thanks [@​ematipico](https://togithub.com/ematipico)! - Adds color-coding to the console output during the build to highlight slow pages. Pages that take more than 500 milliseconds to render will have their build time logged in red. This change can help you discover pages of your site that are not performant and may need attention. - [#​11379](https://togithub.com/withastro/astro/pull/11379) [`e5e2d3e`](https://togithub.com/withastro/astro/commit/e5e2d3ed3076f10b4645f011b13888d5fa16e92e) Thanks [@​alexanderniebuhr](https://togithub.com/alexanderniebuhr)! - The `experimental.contentCollectionJsonSchema` feature introduced behind a flag in [v4.5.0](https://togithub.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#450) is no longer experimental and is available for general use. If you are working with collections of type `data`, Astro will now auto-generate JSON schema files for your editor to get IntelliSense and type-checking. A separate file will be created for each data collection in your project based on your collections defined in `src/content/config.ts` using a library called [`zod-to-json-schema`](https://togithub.com/StefanTerdell/zod-to-json-schema). This feature requires you to manually set your schema's file path as the value for `$schema` in each data entry file of the collection: ```json title="src/content/authors/armand.json" ins={2} { "$schema": "../../../.astro/collections/authors.schema.json", "name": "Armand", "skills": ["Astro", "Starlight"] } ``` Alternatively, you can set this value in your editor settings. For example, to set this value in [VSCode's `json.schemas` setting](https://code.visualstudio.com/docs/languages/json#\_json-schemas-and-settings), provide the path of files to match and the location of your JSON schema: ```json { "json.schemas": [ { "fileMatch": ["/src/content/authors/**"], "url": "./.astro/collections/authors.schema.json" } ] } ``` If you were previously using this feature, please remove the experimental flag from your Astro config: ```diff import { defineConfig } from 'astro' export default defineConfig({ - experimental: { - contentCollectionJsonSchema: true - } }) ``` If you have been waiting for stabilization before using JSON Schema generation for content collections, you can now do so. Please see [the content collections guide](https://docs.astro.build/en/guides/content-collections/#enabling-json-schema-generation) for more about this feature. - [#​11542](https://togithub.com/withastro/astro/pull/11542) [`45ad326`](https://togithub.com/withastro/astro/commit/45ad326932971b44630a32d9092c9505f24f42f8) Thanks [@​ematipico](https://togithub.com/ematipico)! - The `experimental.rewriting` feature introduced behind a flag in [v4.8.0](https://togithub.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md#480) is no longer experimental and is available for general use. `Astro.rewrite()` and `context.rewrite()` allow you to render a different page without changing the URL in the browser. Unlike using a redirect, your visitor is kept on the original page they visited. Rewrites can be useful for showing the same content at multiple paths (e.g. /products/shoes/men/ and /products/men/shoes/) without needing to maintain two identical source files. Rewrites are supported in Astro pages, endpoints, and middleware. Return `Astro.rewrite()` in the frontmatter of a `.astro` page component to display a different page's content, such as fallback localized content:
expressive-code/expressive-code (astro-expressive-code) ### [`v0.35.4`](https://togithub.com/expressive-code/expressive-code/blob/HEAD/packages/astro-expressive-code/CHANGELOG.md#0354) [Compare Source](https://togithub.com/expressive-code/expressive-code/compare/astro-expressive-code@0.35.3...astro-expressive-code@0.35.4) ##### Patch Changes - [`876d24c`](https://togithub.com/expressive-code/expressive-code/commit/876d24c): Improves performance of client script managing `tabindex` on code samples. Thanks [@​delucis](https://togithub.com/delucis)! - Updated dependencies \[[`876d24c`](https://togithub.com/expressive-code/expressive-code/commit/876d24c)] - rehype-expressive-code@0.35.4
crate-ci/typos (crate-ci/typos) ### [`v1.23.6`](https://togithub.com/crate-ci/typos/releases/tag/v1.23.6) [Compare Source](https://togithub.com/crate-ci/typos/compare/v1.23.5...v1.23.6) #### \[1.23.6] - 2024-07-31 ##### Fixes - Updated the dictionary with the [July 2024](https://togithub.com/crate-ci/typos/issues/1051) changes
lost-pixel/lost-pixel (lost-pixel) ### [`v3.18.0`](https://togithub.com/lost-pixel/lost-pixel/releases/tag/v3.18.0) [Compare Source](https://togithub.com/lost-pixel/lost-pixel/compare/v3.17.0...v3.18.0) - Merge pull request [#​393](https://togithub.com/lost-pixel/lost-pixel/issues/393) from lost-pixel/feat/wait-for-selector [`18f4b62`](https://togithub.com/lost-pixel/lost-pixel/commit/18f4b62) - update explaination [`1d41653`](https://togithub.com/lost-pixel/lost-pixel/commit/1d41653) - update snapshots [`ecc6461`](https://togithub.com/lost-pixel/lost-pixel/commit/ecc6461) - implement wait for selector [`361ee8f`](https://togithub.com/lost-pixel/lost-pixel/commit/361ee8f)

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 was generated by Mend Renovate. View the repository job log.

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

Deploying blog with  Cloudflare Pages  Cloudflare Pages

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

View logs

lost-pixel-signals commented 2 months ago
Shot Type Count Status
Added 0 🟡
Deleted 0
Regression 0
lost-pixel-signals commented 2 months ago
Shot Type Count Status
Added 0 🟡
Deleted 0
Regression 0
lost-pixel-signals commented 2 months ago
Shot Type Count Status
Added 0 🟡
Deleted 0
Regression 0