Closed renovate[bot] closed 5 months ago
Total time: 34s | Comparison time: 49.9s | Estimated savings: 15.9s (31.9% faster) | Action | Time | Status | Info | |
---|---|---|---|---|---|---|---|
🟩 | SyncWorkspace |
229.6ms | Passed | ||||
⬛️ | SetupNodeTool(20.14.0) |
1.7s | Skipped | ||||
🟩 | InstallNodeDeps(20.14.0) |
15.5s | Passed | ||||
🟩 | SyncNodeProject(site) |
488.7ms | Passed | ||||
🟩 | RunTask(site:imports) |
800.4ms | Passed | ||||
🟩 | RunTask(site:sync) |
3.9s | Passed | ||||
🟩 | RunTask(site:format) |
761.7ms | Passed | ||||
🟩 | RunTask(site:check) |
9.5s | Passed | ||||
🟩 | RunTask(site:lint) |
552.6ms | Passed | ||||
🟦 | RunTask(site:build) |
2.3s | Cached |
This PR contains the following updates:
0.11.4
->0.11.5
4.10.1
->4.10.2
Release Notes
withastro/astro (@astrojs/db)
### [`v0.11.5`](https://togithub.com/withastro/astro/blob/HEAD/packages/db/CHANGELOG.md#0115) [Compare Source](https://togithub.com/withastro/astro/compare/@astrojs/db@0.11.4...@astrojs/db@0.11.5) ##### Patch Changes - [#11216](https://togithub.com/withastro/astro/pull/11216) [`29463df`](https://togithub.com/withastro/astro/commit/29463dff52f2e74d0d522168afe6faf70ff2fabb) Thanks [@OliverSpeir](https://togithub.com/OliverSpeir)! - Export type `Database` from `@astrojs/db/runtime` - Updated dependencies \[]: - [@astrojs/studio](https://togithub.com/astrojs/studio)[@0](https://togithub.com/0).1.0withastro/astro (astro)
### [`v4.10.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4102) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.10.1...astro@4.10.2) ##### 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 routesConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.