21 Commits

Author SHA1 Message Date
0b8d54db12 chore(deps): update dependency motion to v12.30.0 (#148)
All checks were successful
renovate / renovate (push) Successful in 1m33s
test-build / build (push) Successful in 1m27s
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/) |
|---|---|---|---|---|---|
| [motion](https://github.com/motiondivision/motion) | [`12.29.2` → `12.30.0`](https://renovatebot.com/diffs/npm/motion/12.29.2/12.30.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/motion/12.30.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/motion/12.30.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/motion/12.29.2/12.30.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/motion/12.29.2/12.30.0?slim=true) |

---

### Release Notes

<details>
<summary>motiondivision/motion (motion)</summary>

### [`v12.30.0`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12300-2026-02-02)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.29.3...v12.30.0)

##### Added

- `MotionConfig`: Add `skipAnimations` option.

##### Fixed

- `animate`: Prevent error when calling `stop()` on removed elements.
- `animateLayout`: Fixing shared element animations when `animate` called before `animateLayout`.

### [`v12.29.3`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12293-2026-02-02)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.29.2...v12.29.3)

##### Fixed

- `Reorder`: Fixed viewport autoscroll.

</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:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjMiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->

Reviewed-on: #148
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-02-03 00:18:34 +00:00
e603bb0ec6 chore(deps): update dependency @astrojs/starlight to v0.37.6 (#147)
Some checks failed
renovate / renovate (push) Successful in 56s
test-build / build (push) Has been cancelled
2026-02-03 00:17:10 +00:00
1ee55bea25 fix(deps): update dependency astro to v5.17.1 (#145)
All checks were successful
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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/astro/5.17.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/astro/5.17.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/astro/5.16.16/5.17.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/astro/5.16.16/5.17.1?slim=true) |

---

### 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

- [#&#8203;15334](https://github.com/withastro/astro/pull/15334) [`d715f1f`](d715f1f887) Thanks [@&#8203;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

- [#&#8203;14932](https://github.com/withastro/astro/pull/14932) [`b19d816`](b19d816c91) Thanks [@&#8203;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.

- [#&#8203;15171](https://github.com/withastro/astro/pull/15171) [`f220726`](f22072607c) Thanks [@&#8203;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).

- [#&#8203;15063](https://github.com/withastro/astro/pull/15063) [`08e0fd7`](08e0fd7237) Thanks [@&#8203;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).

- [#&#8203;15022](https://github.com/withastro/astro/pull/15022) [`f1fce0e`](f1fce0e7cc) Thanks [@&#8203;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.

- [#&#8203;15153](https://github.com/withastro/astro/pull/15153) [`928529f`](928529f824) Thanks [@&#8203;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)

- [#&#8203;15015](https://github.com/withastro/astro/pull/15015) [`54f6006`](54f6006c3d) Thanks [@&#8203;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
e44cf5c273 chore(deps): update dependency @astrojs/starlight to v0.37.5 (#146)
All checks were successful
test-build / build (push) Successful in 59s
renovate / renovate (push) Successful in 2m1s
2026-02-01 00:02:08 +00:00
20b5ed4950 fix(deps): update dependency astro to v5.16.16 (#144)
All checks were successful
test-build / build (push) Successful in 56s
renovate / renovate (push) Successful in 1m37s
2026-01-29 18:17:51 +00:00
89ade69719 ci: update renovate image
All checks were successful
test-build / build (push) Successful in 1m7s
renovate / renovate (push) Successful in 4m49s
2026-01-29 12:12:58 -06:00
3e99430b70 chore(deps): update typescript-eslint monorepo to v8.54.0 (#143)
All checks were successful
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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.54.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/8.54.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/8.53.1/8.54.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.53.1/8.54.0?slim=true) |
| [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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/typescript-eslint/8.54.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typescript-eslint/8.54.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/typescript-eslint/8.53.1/8.54.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript-eslint/8.53.1/8.54.0?slim=true) |

---

### Release Notes

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;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)
Some checks failed
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) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@catppuccin%2fstarlight/1.1.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@catppuccin%2fstarlight/1.1.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@catppuccin%2fstarlight/1.0.2/1.1.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@catppuccin%2fstarlight/1.0.2/1.1.1?slim=true) |

---

### Release Notes

<details>
<summary>catppuccin/starlight (@&#8203;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 ([#&#8203;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 ([#&#8203;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
df6bfe452e chore(deps): update dependency motion to v12.29.2 (#142)
All checks were successful
renovate / renovate (push) Successful in 3m34s
test-build / build (push) Successful in 3m0s
2026-01-28 00:03:39 +00:00
0f6e45a2d3 ci: release 0.0.9
All checks were successful
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
Some checks failed
renovate / renovate (push) Successful in 32s
test-build / build (push) Has been cancelled
2026-01-23 17:28:09 -06:00
2be2d76f18 chore(deps): update dependency @astrojs/starlight to v0.37.4 (#139)
All checks were successful
renovate / renovate (push) Successful in 2m12s
test-build / build (push) Successful in 3m15s
2026-01-23 23:19:46 +00:00
079025c028 ci: split release workflows
All checks were successful
test-build / build (push) Successful in 37s
renovate / renovate (push) Successful in 2m26s
2026-01-23 17:15:27 -06:00
2d1a8959ba chore(deps): update node
Some checks failed
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
4c1ab0576b Update dependency motion to v12.29.0 (#138)
All checks were successful
renovate / renovate (push) Successful in 43s
test-build / build (push) Successful in 42s
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/) |
|---|---|---|---|---|---|
| [motion](https://github.com/motiondivision/motion) | [`12.28.1` → `12.29.0`](https://renovatebot.com/diffs/npm/motion/12.28.1/12.29.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/motion/12.29.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/motion/12.29.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/motion/12.28.1/12.29.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/motion/12.28.1/12.29.0?slim=true) |

---

### Release Notes

<details>
<summary>motiondivision/motion (motion)</summary>

### [`v12.29.0`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12290-2026-01-22)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.28.2...v12.29.0)

##### Added

- `transformViewBoxPoint`: Scale drag gestures within `<svg>` elements where `viewBox` and rendered `width`/`height` are mismatched.
- `trackContentSize`: New `scroll` and `useScroll` option for tracking changes to content size.

##### Fixed

- Add React 19 test suite to CI.
- Fix types with `motion.create()`.
- Shared element animations now respect `layoutDependency`.

### [`v12.28.2`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12282-2026-01-22)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.28.1...v12.28.2)

##### Added

- Add default value type `px` for `fontSize`.

##### Fixed

- Removed default value type from `radius`.
- Ensure `LazyMotion` animates initial state even when state has changed before Motion is loaded.

</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: #138
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-01-23 23:06:36 +00:00
f43be9e190 Update dependency astro to v5.16.14 (#137)
All checks were successful
test-build / build (push) Successful in 44s
renovate / renovate (push) Successful in 1m34s
2026-01-23 22:05:25 +00:00
7f4701fcf8 Update dependency motion to v12.28.1 (#136)
Some checks failed
test-build / build (push) Successful in 36s
renovate / renovate (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/) |
|---|---|---|---|---|---|
| [motion](https://github.com/motiondivision/motion) | [`12.27.5` → `12.28.1`](https://renovatebot.com/diffs/npm/motion/12.27.5/12.28.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/motion/12.28.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/motion/12.28.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/motion/12.27.5/12.28.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/motion/12.27.5/12.28.1?slim=true) |

---

### Release Notes

<details>
<summary>motiondivision/motion (motion)</summary>

### [`v12.28.1`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12281-2026-01-21)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.27.5...v12.28.1)

##### Fixed

- Ensure `scale: "0%"` isn't treated as default value.

</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: #136
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-01-23 22:04:07 +00:00
2f0763ed1f Update dependency prettier to v3.8.1 (#135)
All checks were successful
test-build / build (push) Successful in 1m9s
renovate / renovate (push) Successful in 3m47s
2026-01-23 00:06:30 +00:00
f09b17fd20 Update dependency astro to v5.16.12 (#134)
Some checks failed
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
2026-01-23 00:05:31 +00:00
0fa78b3961 Update dependency motion to v12.27.5 (#133)
All checks were successful
test-build / build (push) Successful in 2m46s
renovate / renovate (push) Successful in 7m7s
2026-01-22 00:02:18 +00:00
fb84ac9cb1 Update dependency motion to v12.27.1 (#131)
All checks were successful
test-build / build (push) Successful in 2m36s
renovate / renovate (push) Successful in 1m58s
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/) |
|---|---|---|---|---|---|
| [motion](https://github.com/motiondivision/motion) | [`12.26.2` → `12.27.1`](https://renovatebot.com/diffs/npm/motion/12.26.2/12.27.1) | ![age](https://developer.mend.io/api/mc/badges/age/npm/motion/12.27.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/motion/12.27.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/motion/12.26.2/12.27.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/motion/12.26.2/12.27.1?slim=true) |

---

### Release Notes

<details>
<summary>motiondivision/motion (motion)</summary>

### [`v12.27.1`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12271-2026-01-19)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.27.0...v12.27.1)

##### Fixed

- Improving projection node cleanup.

### [`v12.27.0`](https://github.com/motiondivision/motion/blob/HEAD/CHANGELOG.md#12270-2026-01-18)

[Compare Source](https://github.com/motiondivision/motion/compare/v12.26.2...v12.27.0)

##### Added

- Adding new exports for internal use.

</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: #131
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-01-20 20:55:21 +00:00
7 changed files with 442 additions and 223 deletions

View File

@@ -0,0 +1,136 @@
name: release-image-gitea
on:
push:
tags:
- 0.*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 10.x
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.13.0
cache: pnpm
- name: Install Dependencies
run: pnpm install
# - name: Lint Code
# run: pnpm lint
- name: Build Project
run: pnpm build
release:
runs-on: ubuntu-js
needs: build
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.REPOSITORY_HOST }}
username: ${{ gitea.actor }}
password: ${{ secrets.REPOSITORY_TOKEN }}
- name: Create Kubeconfig
run: |
mkdir $HOME/.kube
echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
driver: kubernetes
driver-opts: |
namespace=gitea
qemu.install=true
buildkitd-config-inline: |
[registry."docker.io"]
mirrors = ["harbor.alexlebens.net/proxy-hub.docker/"]
- name: Available Platforms
run: echo ${{ steps.buildx.outputs.platforms }}
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v5
with:
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha,format=long
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
images: |
${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }}
- name: Get Version Info
id: version
run: |
echo "version=$(git describe --tags --always)" >> $GITHUB_OUTPUT
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
if git describe --tags --exact-match HEAD 2>/dev/null; then
echo "is_release=true" >> $GITHUB_OUTPUT
else
echo "is_release=false" >> $GITHUB_OUTPUT
fi
- name: Build and Push Image
uses: docker/build-push-action@v6
with:
context: .
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ steps.version.outputs.version }}
COMMIT_SHA=${{ steps.version.outputs.commit }}
IS_RELEASE=${{ steps.version.outputs.is_release }}
file: ./Dockerfile
- name: ntfy Success
uses: niniyas/ntfy-action@master
if: success()
with:
url: '${{ secrets.NTFY_URL }}'
topic: '${{ secrets.NTFY_TOPIC }}'
title: 'Release Success - Site Documentation'
priority: 3
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
tags: action,successfully,completed
details: 'Image for Site Documentation has been released!'
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
- name: ntfy Failed
uses: niniyas/ntfy-action@master
if: failure()
with:
url: '${{ secrets.NTFY_URL }}'
topic: '${{ secrets.NTFY_TOPIC }}'
title: 'Release Failure - Site Documentation'
priority: 4
headers: '{"Authorization": "Bearer ${{ secrets.NTFY_CRED }}"}'
tags: action,failed
details: 'Image for Site Documentation has failed to be released.'
icon: 'https://cdn.jsdelivr.net/gh/selfhst/icons/png/gitea.png'
actions: '[{"action": "view", "label": "Open Gitea", "url": "https://gitea.alexlebens.dev/alexlebens/site-documentation/actions?workflow=release-image.yml", "clear": true}]'
image: true

View File

@@ -1,4 +1,4 @@
name: release-image
name: release-image-harbor
on:
push:
@@ -8,18 +8,38 @@ on:
workflow_dispatch:
jobs:
release:
build:
runs-on: ubuntu-js
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to Registry
uses: docker/login-action@v3
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
registry: ${{ vars.REPOSITORY_HOST }}
username: ${{ gitea.actor }}
password: ${{ secrets.REPOSITORY_TOKEN }}
version: 10.x
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.13.0
cache: pnpm
- name: Install Dependencies
run: pnpm install
# - name: Lint Code
# run: pnpm lint
- name: Build Project
run: pnpm build
release:
runs-on: ubuntu-js
needs: build
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Login to Registry
uses: docker/login-action@v3
@@ -55,10 +75,24 @@ jobs:
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha,format=long
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
images: |
${{ vars.REPOSITORY_HOST }}/${{ gitea.repository }}
${{ vars.REGISTRY_HOST }}/images/site-documentation
- name: Get Version Info
id: version
run: |
echo "version=$(git describe --tags --always)" >> $GITHUB_OUTPUT
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
if git describe --tags --exact-match HEAD 2>/dev/null; then
echo "is_release=true" >> $GITHUB_OUTPUT
else
echo "is_release=false" >> $GITHUB_OUTPUT
fi
- name: Build and Push Image
uses: docker/build-push-action@v6
with:
@@ -67,6 +101,10 @@ jobs:
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ steps.version.outputs.version }}
COMMIT_SHA=${{ steps.version.outputs.commit }}
IS_RELEASE=${{ steps.version.outputs.is_release }}
file: ./Dockerfile
- name: ntfy Success

View File

@@ -13,7 +13,7 @@ on:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:42
container: ghcr.io/renovatebot/renovate:43
steps:
- name: Checkout
uses: actions/checkout@v6

View File

@@ -24,7 +24,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.12.0
node-version: 24.13.0
cache: pnpm
- name: Install Dependencies

View File

@@ -1,8 +1,5 @@
ARG REGISTRY=docker.io
FROM ${REGISTRY}/node:24.12.0-alpine3.22 AS base
LABEL version="0.0.7"
LABEL description="Astro based documentation website"
FROM ${REGISTRY}/node:24.13.0-alpine3.22 AS base
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
@@ -31,5 +28,8 @@ ENV HOST=0.0.0.0
ENV SITE_URL=https://docs.alexlebens.dev
ENV PORT=4321
LABEL version="0.0.9"
LABEL description="Astro based documentation website"
EXPOSE $PORT
CMD ["node", "./dist/server/entry.mjs"]

View File

@@ -1,7 +1,7 @@
{
"name": "site-documentation",
"type": "module",
"version": "0.0.7",
"version": "0.0.9",
"scripts": {
"dev": "astro dev",
"build": "astro build",
@@ -15,10 +15,10 @@
"@astrojs/mdx": "4.3.13",
"@astrojs/node": "9.5.2",
"@astrojs/starlight": "^0.37.1",
"@catppuccin/starlight": "1.0.2",
"@catppuccin/starlight": "1.1.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"astro": "5.16.11",
"astro": "5.17.1",
"motion": "^12.23.26",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.5",
@@ -26,13 +26,13 @@
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@typescript-eslint/parser": "8.53.1",
"@typescript-eslint/parser": "8.54.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-astro": "1.5.0",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript-eslint": "8.53.1"
"typescript-eslint": "8.54.0"
}
}

453
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff