1ee55bea25
fix(deps): update dependency astro to v5.17.1 ( #145 )
...
test-build / build (push) Successful in 55s
renovate / renovate (push) Successful in 2m6s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [astro](https://astro.build ) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro )) | [`5.16.16` → `5.17.1`](https://renovatebot.com/diffs/npm/astro/5.16.16/5.17.1 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>withastro/astro (astro)</summary>
### [`v5.17.1`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5171 )
[Compare Source](https://github.com/withastro/astro/compare/astro@5.17.0...astro@5.17.1 )
##### Patch Changes
- [#​15334](https://github.com/withastro/astro/pull/15334 ) [`d715f1f`](d715f1f887 ) Thanks [@​florian-lefebvre](https://github.com/florian-lefebvre )! - **BREAKING CHANGE to the experimental Fonts API only**
Removes the `getFontBuffer()` helper function exported from `astro:assets` when using the experimental Fonts API
This experimental feature introduced in v15.6.13 ended up causing significant memory usage during build. This feature has been removed and will be reintroduced after further exploration and testing.
If you were relying on this function, you can replicate the previous behavior manually:
- On prerendered routes, read the file using `node:fs`
- On server rendered routes, fetch files using URLs from `fontData` and `context.url`
### [`v5.17.0`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5170 )
[Compare Source](https://github.com/withastro/astro/compare/astro@5.16.16...astro@5.17.0 )
##### Minor Changes
- [#​14932](https://github.com/withastro/astro/pull/14932 ) [`b19d816`](b19d816c91 ) Thanks [@​patrickarlt](https://github.com/patrickarlt )! - Adds support for returning a Promise from the `parser()` option of the `file()` loader
This enables you to run asynchronous code such as fetching remote data or using async parsers when loading files with the Content Layer API.
For example:
```js
import { defineCollection } from 'astro:content';
import { file } from 'astro/loaders';
const blog = defineCollection({
loader: file('src/data/blog.json', {
parser: async (text) => {
const data = JSON.parse(text);
// Perform async operations like fetching additional data
const enrichedData = await fetch(`https://api.example.com/enrich `, {
method: 'POST',
body: JSON.stringify(data),
}).then((res) => res.json());
return enrichedData;
},
}),
});
export const collections = { blog };
```
See [the `parser()` reference documentation](https://docs.astro.build/en/reference/content-loader-reference/#parser ) for more information.
- [#​15171](https://github.com/withastro/astro/pull/15171 ) [`f220726`](f22072607c ) Thanks [@​mark-ignacio](https://github.com/mark-ignacio )! - Adds a new, optional `kernel` configuration option to select a resize algorithm in the Sharp image service
By default, Sharp resizes images with the `lanczos3` kernel. This new config option allows you to set the default resizing algorithm to any resizing option supported by [Sharp](https://sharp.pixelplumbing.com/api-resize/#resize ) (e.g. `linear`, `mks2021`).
Kernel selection can produce quite noticeable differences depending on various characteristics of the source image - especially drawn art - so changing the kernel gives you more control over the appearance of images on your site:
```js
export default defineConfig({
image: {
service: {
entrypoint: 'astro/assets/services/sharp',
config: {
kernel: "mks2021"
}
}
})
```
This selection will apply to all images on your site, and is not yet configurable on a per-image basis. For more information, see [Sharps documentation on resizing images](https://sharp.pixelplumbing.com/api-resize/#resize ).
- [#​15063](https://github.com/withastro/astro/pull/15063 ) [`08e0fd7`](08e0fd7237 ) Thanks [@​jmortlock](https://github.com/jmortlock )! - Adds a new `partitioned` option when setting a cookie to allow creating partitioned cookies.
[Partitioned cookies](https://developer.mozilla.org/en-US/docs/Web/Privacy/Guides/Privacy_sandbox/Partitioned_cookies ) can only be read within the context of the top-level site on which they were set. This allows cross-site tracking to be blocked, while still enabling legitimate uses of third-party cookies.
You can create a partitioned cookie by passing `partitioned: true` when setting a cookie. Note that partitioned cookies must also be set with `secure: true`:
```js
Astro.cookies.set('my-cookie', 'value', {
partitioned: true,
secure: true,
});
```
For more information, see the [`AstroCookieSetOptions` API reference](https://docs.astro.build/en/reference/api-reference/#astrocookiesetoptions ).
- [#​15022](https://github.com/withastro/astro/pull/15022 ) [`f1fce0e`](f1fce0e7cc ) Thanks [@​ascorbic](https://github.com/ascorbic )! - Adds a new `retainBody` option to the `glob()` loader to allow reducing the size of the data store.
Currently, the `glob()` loader stores the raw body of each content file in the entry, in addition to the rendered HTML.
The `retainBody` option defaults to `true`, but you can set it to `false` to prevent the raw body of content files from being stored in the data store. This significantly reduces the deployed size of the data store and helps avoid hitting size limits for sites with very large collections.
The rendered body will still be available in the `entry.rendered.html` property for markdown files, and the `entry.filePath` property will still point to the original file.
```js
import { defineCollection } from 'astro:content';
import { glob } from 'astro/loaders';
const blog = defineCollection({
loader: glob({
pattern: '**/*.md',
base: './src/content/blog',
retainBody: false,
}),
});
```
When `retainBody` is `false`, `entry.body` will be `undefined` instead of containing the raw file contents.
- [#​15153](https://github.com/withastro/astro/pull/15153 ) [`928529f`](928529f824 ) Thanks [@​jcayzac](https://github.com/jcayzac )! - Adds a new `background` property to the `<Image />` component.
This optional property lets you pass a background color to flatten the image with. By default, Sharp uses a black background when flattening an image that is being converted to a format that does not support transparency (e.g. `jpeg`). Providing a value for `background` on an `<Image />` component, or passing it to the `getImage()` helper, will flatten images using that color instead.
This is especially useful when the requested output format doesn't support an alpha channel (e.g. `jpeg`) and can't support transparent backgrounds.
```astro
---
import { Image } from 'astro:assets';
---
<Image
src="/transparent.png"
alt="A JPEG with a white background!"
format="jpeg"
background="#ffffff"
/>
```
See more about this new property in [the image reference docs](https://docs.astro.build/en/reference/modules/astro-assets/#background )
- [#​15015](https://github.com/withastro/astro/pull/15015 ) [`54f6006`](54f6006c3d ) Thanks [@​tony](https://github.com/tony )! - Adds optional `placement` config option for the dev toolbar.
You can now configure the default toolbar position (`'bottom-left'`, `'bottom-center'`, or `'bottom-right'`) via `devToolbar.placement` in your Astro config. This option is helpful for sites with UI elements (chat widgets, cookie banners) that are consistently obscured by the toolbar in the dev environment.
You can set a project default that is consistent across environments (e.g. dev machines, browser instances, team members):
```js
// astro.config.mjs
export default defineConfig({
devToolbar: {
placement: 'bottom-left',
},
});
```
User preferences from the toolbar UI (stored in `localStorage`) still take priority, so this setting can be overridden in individual situations as necessary.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjIiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->
Reviewed-on: #145
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-02-02 22:30:37 +00:00
20b5ed4950
fix(deps): update dependency astro to v5.16.16 ( #144 )
test-build / build (push) Successful in 56s
renovate / renovate (push) Successful in 1m37s
2026-01-29 18:17:51 +00:00
3e99430b70
chore(deps): update typescript-eslint monorepo to v8.54.0 ( #143 )
...
test-build / build (push) Successful in 1m38s
renovate / renovate (push) Successful in 1m5s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.53.1` → `8.54.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.53.1/8.54.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.53.1` → `8.54.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.53.1/8.54.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.54.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8540-2026-01-26 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.53.1...v8.54.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.54.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8540-2026-01-26 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.53.1...v8.54.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #143
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-28 01:23:11 +00:00
19ce82a0e9
fix(deps): update dependency @catppuccin/starlight to v1.1.1 ( #141 )
...
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@catppuccin/starlight](https://starlight.catppuccin.com/ ) ([source](https://github.com/catppuccin/starlight/tree/HEAD/packages/catppuccin-starlight )) | [`1.0.2` → `1.1.1`](https://renovatebot.com/diffs/npm/@catppuccin%2fstarlight/1.0.2/1.1.1 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>catppuccin/starlight (@​catppuccin/starlight)</summary>
### [`v1.1.1`](https://github.com/catppuccin/starlight/blob/HEAD/packages/catppuccin-starlight/CHANGELOG.md#111-2026-01-25 )
[Compare Source](https://github.com/catppuccin/starlight/compare/v1.1.0...v1.1.1 )
##### Bug Fixes
- use green for tip callouts/asides ([#​66](https://github.com/catppuccin/starlight/issues/66 )) ([190f4fd](190f4fd7b0 ))
### [`v1.1.0`](https://github.com/catppuccin/starlight/blob/HEAD/packages/catppuccin-starlight/CHANGELOG.md#110-2025-09-14 )
[Compare Source](https://github.com/catppuccin/starlight/compare/v1.0.2...v1.1.0 )
##### Features
- define styles in `catppuccin` cascade layer ([#​50](https://github.com/catppuccin/starlight/issues/50 )) ([e7d22c8](e7d22c851c ))
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #141
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-28 01:22:26 +00:00
0f6e45a2d3
ci: release 0.0.9
release-image-harbor / build (push) Successful in 41s
release-image-harbor / release (push) Successful in 2m31s
test-build / build (push) Successful in 4m16s
release-image-gitea / build (push) Successful in 28s
release-image-gitea / release (push) Successful in 3m14s
renovate / renovate (push) Successful in 4m54s
2026-01-23 17:29:49 -06:00
99a10a8e53
chore(deps): update astro
renovate / renovate (push) Successful in 32s
test-build / build (push) Has been cancelled
2026-01-23 17:28:09 -06:00
2d1a8959ba
chore(deps): update node
test-build / build (push) Successful in 37s
renovate / renovate (push) Has been cancelled
release-image / release (push) Has been cancelled
2026-01-23 17:11:37 -06:00
f43be9e190
Update dependency astro to v5.16.14 ( #137 )
test-build / build (push) Successful in 44s
renovate / renovate (push) Successful in 1m34s
2026-01-23 22:05:25 +00:00
f09b17fd20
Update dependency astro to v5.16.12 ( #134 )
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2026-01-23 00:05:31 +00:00
076997742c
Update typescript-eslint monorepo to v8.53.1 ( #132 )
test-build / build (push) Successful in 1m49s
renovate / renovate (push) Successful in 2m5s
2026-01-20 17:49:42 +00:00
d7a00e0523
Update astro monorepo ( #130 )
test-build / build (push) Successful in 2m46s
renovate / renovate (push) Successful in 2m57s
2026-01-18 00:02:22 +00:00
f9c135563b
Update typescript-eslint monorepo to v8.53.0 ( #124 )
...
test-build / build (push) Successful in 37s
renovate / renovate (push) Successful in 2m0s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.52.0` → `8.53.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.52.0/8.53.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.52.0` → `8.53.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.52.0/8.53.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.53.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8530-2026-01-12 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.52.0...v8.53.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.53.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8530-2026-01-12 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.52.0...v8.53.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #124
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-14 21:55:12 +00:00
925e70f6cc
Update dependency astro to v5.16.9 ( #122 )
test-build / build (push) Successful in 1m5s
renovate / renovate (push) Successful in 3m2s
2026-01-14 00:03:16 +00:00
d384ca7368
Update dependency astro to v5.16.8 ( #120 )
test-build / build (push) Successful in 2m37s
renovate / renovate (push) Successful in 2m41s
2026-01-11 00:02:10 +00:00
a0ec0d4f8f
Update dependency astro to v5.16.7 ( #117 )
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2026-01-09 00:02:47 +00:00
2168a69497
Update typescript-eslint monorepo to v8.52.0 ( #114 )
...
test-build / build (push) Successful in 2m26s
renovate / renovate (push) Successful in 2m36s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.51.0` → `8.52.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.51.0/8.52.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.51.0` → `8.52.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.51.0/8.52.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.52.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8520-2026-01-05 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.51.0...v8.52.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.52.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8520-2026-01-05 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.51.0...v8.52.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4yIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #114
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-07 01:48:33 +00:00
68eb24ebad
Update typescript-eslint monorepo to v8.51.0 ( #112 )
...
test-build / build (push) Successful in 4m7s
renovate / renovate (push) Successful in 2m52s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.50.1` → `8.51.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.50.1/8.51.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.50.1` → `8.51.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.50.1/8.51.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.51.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8510-2025-12-29 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.50.1...v8.51.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.51.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8510-2025-12-29 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.50.1...v8.51.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42Ni4xMyIsInVwZGF0ZWRJblZlciI6IjQyLjY2LjEzIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmN5Il19-->
Reviewed-on: #112
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2026-01-02 01:56:09 +00:00
56fb8f5573
bump version
test-build / build (push) Successful in 2m3s
release-image / release (push) Successful in 1m59s
renovate / renovate (push) Successful in 1m32s
2025-12-29 22:04:46 -06:00
c1ac56fea8
bump deps
renovate / renovate (push) Successful in 34s
test-build / build (push) Successful in 1m57s
release-image / release (push) Successful in 1m54s
2025-12-29 22:00:14 -06:00
a022d1e8fa
Update typescript-eslint monorepo to v8.50.1 ( #111 )
test-build / build (push) Successful in 41s
renovate / renovate (push) Successful in 1m17s
2025-12-24 00:01:52 +00:00
0bf40ca1e8
Update dependency astro to v5.16.6 ( #110 )
test-build / build (push) Successful in 1m1s
renovate / renovate (push) Successful in 1m35s
2025-12-18 00:02:43 +00:00
6175351b37
Update typescript-eslint monorepo to v8.50.0 ( #109 )
...
test-build / build (push) Successful in 35s
renovate / renovate (push) Successful in 1m37s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.49.0` -> `8.50.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.49.0/8.50.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.49.0` -> `8.50.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.49.0/8.50.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.50.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8500-2025-12-15 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.49.0...v8.50.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.50.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8500-2025-12-15 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.49.0...v8.50.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #109
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-17 03:15:16 +00:00
c848eb4555
Update dependency eslint to v9.39.2 ( #108 )
test-build / build (push) Successful in 1m48s
renovate / renovate (push) Successful in 1m14s
2025-12-14 00:01:51 +00:00
12bcc13092
Update astro monorepo ( #104 )
test-build / build (push) Successful in 44s
renovate / renovate (push) Successful in 1m35s
2025-12-12 00:02:42 +00:00
d8c084acb3
release 0.0.5
test-build / build (push) Successful in 28s
release-image / release (push) Successful in 4m32s
renovate / renovate (push) Successful in 2m28s
2025-12-10 22:07:22 -06:00
10e33029c3
update dependencies
2025-12-10 22:06:58 -06:00
a467446e06
Update typescript-eslint monorepo to v8.49.0 ( #102 )
...
test-build / build (push) Successful in 31s
renovate / renovate (push) Successful in 2m21s
This PR contains the following updates:
| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/ ) | [Adoption](https://docs.renovatebot.com/merge-confidence/ ) | [Passing](https://docs.renovatebot.com/merge-confidence/ ) | [Confidence](https://docs.renovatebot.com/merge-confidence/ ) |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.48.1` -> `8.49.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.48.1/8.49.0 ) |  |  |  |  |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.48.1` -> `8.49.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.48.1/8.49.0 ) |  |  |  |  |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.49.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8490-2025-12-08 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.48.1...v8.49.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.49.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8490-2025-12-08 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.48.1...v8.49.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4zOS4xIiwidXBkYXRlZEluVmVyIjoiNDIuMzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeSJdfQ==-->
Reviewed-on: #102
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-10 00:22:10 +00:00
4880a4bb64
Update dependency astro to v5.16.4 ( #100 )
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2025-12-05 00:01:51 +00:00
891bc4714d
Update typescript-eslint monorepo to v8.48.1 ( #99 )
test-build / build (push) Successful in 37s
renovate / renovate (push) Successful in 2m1s
2025-12-04 00:02:16 +00:00
aba76a60b7
update image
test-build / build (push) Successful in 4m50s
release-image / release (push) Successful in 5m45s
renovate / renovate (push) Successful in 2m2s
2025-12-01 15:01:46 -06:00
491e86f07d
update package
2025-12-01 15:01:28 -06:00
4e201142ee
Update dependency @astrojs/starlight to ^0.37.0 ( #97 )
...
test-build / build (push) Successful in 33s
renovate / renovate (push) Has been cancelled
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@astrojs/starlight](https://starlight.astro.build ) ([source](https://github.com/withastro/starlight/tree/HEAD/packages/starlight )) | [`^0.36.2` -> `^0.37.0`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight/0.36.3/0.37.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>withastro/starlight (@​astrojs/starlight)</summary>
### [`v0.37.0`](https://github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0370 )
[Compare Source](https://github.com/withastro/starlight/compare/@astrojs/starlight@0.36.3...@astrojs/starlight@0.37.0 )
##### Minor Changes
- [#​3491](https://github.com/withastro/starlight/pull/3491 ) [`28810f0`](28810f085f ) Thanks [@​JusticeMatthew](https://github.com/JusticeMatthew )! - Changes text overflow styling in Markdown content
⚠️ **Potentially breaking change:** This release switches the [`overflow-wrap`](https://developer.mozilla.org/en-US/docs/Web/CSS/overflow-wrap ) CSS style for common elements to `break-word`. In most cases, there should be little visual impact, but this change can impact how layouts with implicit sizing (such as tables) look, improving legibility in how words wrap.
If you want to preserve the previous styling, you can add the following [custom CSS](https://starlight.astro.build/guides/css-and-tailwind/#custom-css-styles ) to your site:
```css
p,
h1,
h2,
h3,
h4,
h5,
h6,
code {
overflow-wrap: anywhere;
}
```
- [#​3351](https://github.com/withastro/starlight/pull/3351 ) [`239698c`](239698c536 ) Thanks [@​HiDeoo](https://github.com/HiDeoo )! - Ensures that Starlight CSS layer order is predictable in custom pages using the `<StarlightPage>` component.
Previously, due to how [import order](https://docs.astro.build/en/guides/styling/#import-order ) works in Astro, the `<StarlightPage>` component had to be the first import in custom pages to set up [cascade layers](https://starlight.astro.build/guides/css-and-tailwind/#cascade-layers ) used internally by Starlight to manage the order of its styles.
With this change, this restriction no longer applies and Starlight’s styles will be applied correctly regardless of the import order of the `<StarlightPage>` component.
- [#​3521](https://github.com/withastro/starlight/pull/3521 ) [`ca7b771`](ca7b771e5b ) Thanks [@​shubham-padia](https://github.com/shubham-padia )! - Fixes an issue where a vertical scrollbar could be displayed on the Starlight `<Tabs>` component when zooming the page
⚠️ **Potentially breaking change:** The `<Tabs>` component no longer uses `margin-bottom` and `border-bottom` to highlight the current tab. This is now done with a `box-shadow`. If you have custom styling for your tabs, you may need to update it.
If you want to preserve the previous styling, you can add the following custom CSS to your site:
```css
starlight-tabs .tab {
margin-bottom: -2px;
}
starlight-tabs .tab > [role='tab'] {
border-bottom: 2px solid var(--sl-color-gray-5);
box-shadow: none;
}
starlight-tabs .tab [role='tab'][aria-selected='true'] {
border-color: var(--sl-color-text-accent);
}
```
- [#​3549](https://github.com/withastro/starlight/pull/3549 ) [`1cf50eb`](1cf50ebb18 ) Thanks [@​jacobdalamb](https://github.com/jacobdalamb )! - Updates the default sans-serif system font stack, dropping support for the `-apple-system` and `BlinkMacSystemFont` font names used in older browsers. These are no longer needed in [browsers officially supported by Starlight](https://browsersl.ist/#q=%3E+0.5%25%2C+not+dead%2C+Chrome+%3E%3D+105%2C+Edge+%3E%3D+105%2C+Firefox+%3E%3D+121%2C+Safari+%3E%3D+15.4%2C+iOS+%3E%3D+15.4%2C+not+op_mini+all ).
If you still need to support older browsers, you can add the following custom CSS to your site:
```css
:root {
--sl-font-system: ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol', 'Noto Color Emoji';
}
```
- [#​3332](https://github.com/withastro/starlight/pull/3332 ) [`f61f99d`](f61f99dc09 ) Thanks [@​HiDeoo](https://github.com/HiDeoo )! - Adds a new [`markdown.processedDirs`](https://starlight.astro.build/reference/configuration/#processeddirs ) configuration option to specify additional directories where files should be processed by Starlight’s Markdown pipeline.
By default, Starlight’s processing only applies to Markdown and MDX content loaded using Starlight’s `docsLoader()`. This new option allows to extend this processing to other directories, which can be useful if you are rendering content from a custom content collection using the `<StarlightPage>` component and expect Starlight’s Markdown processing to be applied to that content as well.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41LjEiLCJ1cGRhdGVkSW5WZXIiOiI0Mi41LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->
Reviewed-on: #97
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-01 21:00:31 +00:00
10e6ec2885
Update typescript-eslint monorepo to v8.48.0 ( #93 )
...
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.47.0` -> `8.48.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.47.0/8.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.47.0` -> `8.48.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.47.0/8.48.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.48.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8480-2025-11-24 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.47.0...v8.48.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.48.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8480-2025-11-24 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.47.0...v8.48.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41LjAiLCJ1cGRhdGVkSW5WZXIiOiI0Mi41LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->
Reviewed-on: #93
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-12-01 21:00:06 +00:00
22b63ae90a
Update dependency astro to v5.16.3 ( #98 )
test-build / build (push) Successful in 31s
renovate / renovate (push) Successful in 1m55s
2025-12-01 00:01:48 +00:00
4813872631
Update dependency astro to v5.16.2 ( #95 )
test-build / build (push) Successful in 45s
renovate / renovate (push) Successful in 2m22s
2025-11-29 00:02:01 +00:00
08b6efe4f7
Update dependency astro to v5.16.1 ( #94 )
test-build / build (push) Successful in 1m19s
renovate / renovate (push) Successful in 2m3s
2025-11-28 00:02:25 +00:00
c5bb9e242e
Update astro monorepo ( #91 )
...
test-build / build (push) Successful in 35s
renovate / renovate (push) Successful in 2m15s
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@astrojs/mdx](https://docs.astro.build/en/guides/integrations-guide/mdx/ ) ([source](https://github.com/withastro/astro/tree/HEAD/packages/integrations/mdx )) | [`4.3.11` -> `4.3.12`](https://renovatebot.com/diffs/npm/@astrojs%2fmdx/4.3.11/4.3.12 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [astro](https://astro.build ) ([source](https://github.com/withastro/astro/tree/HEAD/packages/astro )) | [`5.15.9` -> `5.16.0`](https://renovatebot.com/diffs/npm/astro/5.15.9/5.16.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>withastro/astro (@​astrojs/mdx)</summary>
### [`v4.3.12`](https://github.com/withastro/astro/blob/HEAD/packages/integrations/mdx/CHANGELOG.md#4312 )
[Compare Source](https://github.com/withastro/astro/compare/@astrojs/mdx@4.3.11...@astrojs/mdx@4.3.12 )
##### Patch Changes
- [#​14813](https://github.com/withastro/astro/pull/14813 ) [`e1dd377`](e1dd377398 ) Thanks [@​ematipico](https://github.com/ematipico )! - Removes `picocolors` as dependency in favor of the fork `piccolore`.
</details>
<details>
<summary>withastro/astro (astro)</summary>
### [`v5.16.0`](https://github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5160 )
[Compare Source](https://github.com/withastro/astro/compare/astro@5.15.9...astro@5.16.0 )
##### Minor Changes
- [#​13880](https://github.com/withastro/astro/pull/13880 ) [`1a2ed01`](1a2ed01c92 ) Thanks [@​azat-io](https://github.com/azat-io )! - Adds experimental SVGO optimization support for SVG assets
Astro now supports automatic SVG optimization using SVGO during build time. This experimental feature helps reduce SVG file sizes while maintaining visual quality, improving your site's performance.
To enable SVG optimization with default settings, add the following to your `astro.config.mjs`:
```js
import { defineConfig } from 'astro/config';
export default defineConfig({
experimental: {
svgo: true,
},
});
```
To customize optimization, pass a [SVGO configuration object](https://svgo.dev/docs/plugins/ ):
```js
export default defineConfig({
experimental: {
svgo: {
plugins: [
'preset-default',
{
name: 'removeViewBox',
active: false,
},
],
},
},
});
```
For more information on enabling and using this feature in your project, see the [experimental SVG optimization docs](https://docs.astro.build/en/reference/experimental-flags/svg-optimization/ ).
- [#​14810](https://github.com/withastro/astro/pull/14810 ) [`2e845fe`](2e845fe56d ) Thanks [@​ascorbic](https://github.com/ascorbic )! - Adds a hint for code agents to use the `--yes` flag to skip prompts when running `astro add`
- [#​14698](https://github.com/withastro/astro/pull/14698 ) [`f42ff9b`](f42ff9bd5b ) Thanks [@​mauriciabad](https://github.com/mauriciabad )! - Adds the `ActionInputSchema` utility type to automatically infer the TypeScript type of an action's input based on its Zod schema
For example, this type can be used to retrieve the input type of a form action:
```ts
import { type ActionInputSchema, defineAction } from 'astro:actions';
import { z } from 'astro/zod';
const action = defineAction({
accept: 'form',
input: z.object({ name: z.string() }),
handler: ({ name }) => ({ message: `Welcome, ${name}!` }),
});
type Schema = ActionInputSchema<typeof action>;
// typeof z.object({ name: z.string() })
type Input = z.input<Schema>;
// { name: string }
```
- [#​14574](https://github.com/withastro/astro/pull/14574 ) [`4356485`](4356485b0f ) Thanks [@​jacobdalamb](https://github.com/jacobdalamb )! - Adds new CLI shortcuts available when running `astro preview`:
- `o` + `enter`: open the site in your browser
- `q` + `enter`: quit the preview
- `h` + `enter`: print all available shortcuts
##### Patch Changes
- [#​14813](https://github.com/withastro/astro/pull/14813 ) [`e1dd377`](e1dd377398 ) Thanks [@​ematipico](https://github.com/ematipico )! - Removes `picocolors` as dependency in favor of the fork `piccolore`.
- [#​14609](https://github.com/withastro/astro/pull/14609 ) [`d774306`](d774306c51 ) Thanks [@​florian-lefebvre](https://github.com/florian-lefebvre )! - Improves `astro info`
- [#​14796](https://github.com/withastro/astro/pull/14796 ) [`c29a785`](c29a785d57 ) Thanks [@​florian-lefebvre](https://github.com/florian-lefebvre )! - **BREAKING CHANGE to the experimental Fonts API only**
Updates the default `subsets` to `["latin"]`
Subsets have been a common source of confusion: they caused a lot of files to be downloaded by default. You now have to manually pick extra subsets.
Review your Astro config and update subsets if you need, for example if you need greek characters:
```diff
import { defineConfig, fontProviders } from "astro/config"
export default defineConfig({
experimental: {
fonts: [{
name: "Roboto",
cssVariable: "--font-roboto",
provider: fontProviders.google(),
+ subsets: ["latin", "greek"]
}]
}
})
```
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions ) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41LjAiLCJ1cGRhdGVkSW5WZXIiOiI0Mi41LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImRlcGVuZGVuY3kiXX0=-->
Reviewed-on: #91
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-11-23 03:37:09 +00:00
de7a63abe4
Update typescript-eslint monorepo to v8.47.0 ( #89 )
...
test-build / build (push) Successful in 34s
renovate / renovate (push) Successful in 28s
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser )) | [`8.46.4` -> `8.47.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.46.4/8.47.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
| [typescript-eslint](https://typescript-eslint.io/packages/typescript-eslint ) ([source](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint )) | [`8.46.4` -> `8.47.0`](https://renovatebot.com/diffs/npm/typescript-eslint/8.46.4/8.47.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary>
### [`v8.47.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#8470-2025-11-17 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.46.4...v8.47.0 )
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
<details>
<summary>typescript-eslint/typescript-eslint (typescript-eslint)</summary>
### [`v8.47.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#8470-2025-11-17 )
[Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v8.46.4...v8.47.0 )
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://typescript-eslint.io/users/versioning ) and [releases](https://typescript-eslint.io/users/releases ) on our website.
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41LjAiLCJ1cGRhdGVkSW5WZXIiOiI0Mi41LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->
Reviewed-on: #89
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-11-19 02:15:38 +00:00
dea2dda1cb
Update astro monorepo ( #88 )
test-build / build (push) Successful in 40s
renovate / renovate (push) Successful in 1m13s
2025-11-19 00:02:22 +00:00
773d5d9e10
Update dependency astro to v5.15.8 ( #87 )
test-build / build (push) Successful in 32s
renovate / renovate (push) Successful in 1m55s
2025-11-17 00:02:14 +00:00
fa50ff221a
Update dependency astro to v5.15.7 ( #86 )
test-build / build (push) Successful in 28s
renovate / renovate (push) Successful in 1m28s
2025-11-16 00:03:26 +00:00
cc78541b26
Update dependency astro to v5.15.6 ( #85 )
test-build / build (push) Successful in 50s
renovate / renovate (push) Successful in 1m7s
2025-11-15 00:04:45 +00:00
877a84c8ff
Update typescript-eslint monorepo to v8.46.4 ( #82 )
test-build / build (push) Successful in 43s
renovate / renovate (push) Successful in 3m52s
2025-11-12 00:02:48 +00:00
39bacdb270
Update dependency astro to v5.15.5 ( #81 )
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2025-11-12 00:02:21 +00:00
2f3e3c88cb
migrate motion
test-build / build (push) Successful in 2m30s
renovate / renovate (push) Successful in 45s
2025-11-10 17:10:06 -06:00
6b8ea1c474
update to node 24
test-build / build (push) Failing after 12s
renovate / renovate (push) Has been cancelled
2025-11-10 17:07:29 -06:00
4c4d0c3359
Update dependency eslint-plugin-astro to v1.5.0 ( #76 )
...
renovate / renovate (push) Successful in 1m21s
test-build / build (push) Successful in 1m40s
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-plugin-astro](https://ota-meshi.github.io/eslint-plugin-astro/ ) ([source](https://github.com/ota-meshi/eslint-plugin-astro )) | [`1.4.0` -> `1.5.0`](https://renovatebot.com/diffs/npm/eslint-plugin-astro/1.4.0/1.5.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>ota-meshi/eslint-plugin-astro (eslint-plugin-astro)</summary>
### [`v1.5.0`](https://github.com/ota-meshi/eslint-plugin-astro/blob/HEAD/CHANGELOG.md#150 )
[Compare Source](https://github.com/ota-meshi/eslint-plugin-astro/compare/v1.4.0...v1.5.0 )
##### Minor Changes
- [#​509](https://github.com/ota-meshi/eslint-plugin-astro/pull/509 ) [`ffee791`](ffee7910d4 ) Thanks [@​ota-meshi](https://github.com/ota-meshi )! - chore: use tsdown and isolatedDeclarations
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzEuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE3MS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmN5Il19-->
Reviewed-on: #76
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-11-10 22:42:49 +00:00
3c1c637aee
Update astro monorepo ( #78 )
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2025-11-08 00:02:22 +00:00
522055ece0
Update dependency eslint to v9.39.1 ( #75 )
renovate / renovate (push) Successful in 42s
test-build / build (push) Successful in 53s
2025-11-04 22:26:20 +00:00
02f7439356
Update dependency eslint to v9.39.0 ( #73 )
...
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint](https://eslint.org ) ([source](https://github.com/eslint/eslint )) | [`9.38.0` -> `9.39.0`](https://renovatebot.com/diffs/npm/eslint/9.38.0/9.39.0 ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) | [](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>eslint/eslint (eslint)</summary>
### [`v9.39.0`](https://github.com/eslint/eslint/releases/tag/v9.39.0 )
[Compare Source](https://github.com/eslint/eslint/compare/v9.38.0...v9.39.0 )
#### Features
- [`cc57d87`](cc57d87a3f ) feat: update error loc to key in `no-dupe-class-members` ([#​20259](https://github.com/eslint/eslint/issues/20259 )) (Tanuj Kanti)
- [`126552f`](126552fcf3 ) feat: update error location in `for-direction` and `no-dupe-args` ([#​20258](https://github.com/eslint/eslint/issues/20258 )) (Tanuj Kanti)
- [`167d097`](167d0970d3 ) feat: update `complexity` rule to highlight only static block header ([#​20245](https://github.com/eslint/eslint/issues/20245 )) (jaymarvelz)
#### Bug Fixes
- [`15f5c7c`](15f5c7c168 ) fix: forward traversal `step.args` to visitors ([#​20253](https://github.com/eslint/eslint/issues/20253 )) (jaymarvelz)
- [`5a1a534`](5a1a534e87 ) fix: allow JSDoc comments in object-shorthand rule ([#​20167](https://github.com/eslint/eslint/issues/20167 )) (Nitin Kumar)
- [`e86b813`](e86b813eb6 ) fix: Use more types from [@​eslint/core](https://github.com/eslint/core ) ([#​20257](https://github.com/eslint/eslint/issues/20257 )) (Nicholas C. Zakas)
- [`927272d`](927272d1f0 ) fix: correct `Scope` typings ([#​20198](https://github.com/eslint/eslint/issues/20198 )) (jaymarvelz)
- [`37f76d9`](37f76d9c53 ) fix: use `AST.Program` type for Program node ([#​20244](https://github.com/eslint/eslint/issues/20244 )) (Francesco Trotta)
- [`ae07f0b`](ae07f0b333 ) fix: unify timing report for concurrent linting ([#​20188](https://github.com/eslint/eslint/issues/20188 )) (jaymarvelz)
- [`b165d47`](b165d471be ) fix: correct `Rule` typings ([#​20199](https://github.com/eslint/eslint/issues/20199 )) (jaymarvelz)
- [`fb97cda`](fb97cda70d ) fix: improve error message for missing fix function in suggestions ([#​20218](https://github.com/eslint/eslint/issues/20218 )) (jaymarvelz)
#### Documentation
- [`d3e81e3`](d3e81e30ee ) docs: Always recommend to include a files property ([#​20158](https://github.com/eslint/eslint/issues/20158 )) (Percy Ma)
- [`0f0385f`](0f0385f140 ) docs: use consistent naming recommendation ([#​20250](https://github.com/eslint/eslint/issues/20250 )) (Alex M. Spieslechner)
- [`a3b1456`](a3b145609a ) docs: Update README (GitHub Actions Bot)
- [`cf5f2dd`](cf5f2dd58d ) docs: fix correct tag of `no-useless-constructor` ([#​20255](https://github.com/eslint/eslint/issues/20255 )) (Tanuj Kanti)
- [`10b995c`](10b995c8e5 ) docs: add TS options and examples for `nofunc` in `no-use-before-define` ([#​20249](https://github.com/eslint/eslint/issues/20249 )) (Tanuj Kanti)
- [`2584187`](2584187e4a ) docs: remove repetitive word in comment ([#​20242](https://github.com/eslint/eslint/issues/20242 )) (reddaisyy)
- [`637216b`](637216bd4f ) docs: update CLI flags migration instructions ([#​20238](https://github.com/eslint/eslint/issues/20238 )) (jaymarvelz)
- [`e7cda3b`](e7cda3bdf1 ) docs: Update README (GitHub Actions Bot)
- [`7b9446f`](7b9446f7cc ) docs: handle empty flags sections on the feature flags page ([#​20222](https://github.com/eslint/eslint/issues/20222 )) (sethamus)
#### Chores
- [`dfe3c1b`](dfe3c1b203 ) chore: update `@eslint/js` version to 9.39.0 ([#​20270](https://github.com/eslint/eslint/issues/20270 )) (Francesco Trotta)
- [`2375a6d`](2375a6de82 ) chore: package.json update for [@​eslint/js](https://github.com/eslint/js ) release (Jenkins)
- [`a1f4e52`](a1f4e52d67 ) chore: update `@eslint` dependencies ([#​20265](https://github.com/eslint/eslint/issues/20265 )) (Francesco Trotta)
- [`c7d3229`](c7d3229848 ) chore: update dependency [@​eslint/core](https://github.com/eslint/core ) to ^0.17.0 ([#​20256](https://github.com/eslint/eslint/issues/20256 )) (renovate\[bot])
- [`27549bc`](27549bc774 ) chore: update fuzz testing to not error if code sample minimizer fails ([#​20252](https://github.com/eslint/eslint/issues/20252 )) (Milos Djermanovic)
- [`a1370ee`](a1370ee40e ) ci: bump actions/setup-node from 5 to 6 ([#​20230](https://github.com/eslint/eslint/issues/20230 )) (dependabot\[bot])
- [`9e7fad4`](9e7fad4a18 ) chore: add script to auto-generate eslint:recommended configuration ([#​20208](https://github.com/eslint/eslint/issues/20208 )) (唯然)
</details>
---
### Configuration
📅 **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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTUuNSIsInVwZGF0ZWRJblZlciI6IjQxLjE1NS41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmN5Il19-->
Reviewed-on: https://gitea.alexlebens.dev/alexlebens/site-documentation/pulls/73
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net >
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net >
2025-11-04 22:25:02 +00:00