Skip to content

Tags: settlemint/docs

Tags

v8.0.7

Toggle v8.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update asset-tokenization-kit image version

v8.0.6

Toggle v8.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): update dependency @ai-sdk/react to v2.0.117 (#1026)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@ai-sdk/react](https://ai-sdk.dev/docs)
([source](https://redirect.github.com/vercel/ai)) | dependencies | patch
| [`2.0.116` ->
`2.0.117`](https://renovatebot.com/diffs/npm/@ai-sdk%2freact/2.0.116/2.0.117)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/ai/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/ai)
|

---

### Release Notes

<details>
<summary>vercel/ai (@&#8203;ai-sdk/react)</summary>

###
[`v2.0.117`](https://redirect.github.com/vercel/ai/releases/tag/%40ai-sdk/react%402.0.117)

[Compare
Source](https://redirect.github.com/vercel/ai/compare/@ai-sdk/react@2.0.116...@ai-sdk/react@2.0.117)

##### Patch Changes

- ai\@&#8203;5.0.115

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00
PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only
on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/settlemint/docs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNTkuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v8.0.5

Toggle v8.0.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(mdx): add remark plugin for automatic link transformation (#1003)

## What

Adds automatic link transformation for aggregated documentation from
multiple sources. Internal links are transformed based on content
section:
- `/docs/...` in ATK content → `/asset-tokenization-kit/...`
- `/docs/...` in SDK content → `/sdk/...`
- `/docs/...` in blockchain-platform content →
`/blockchain-platform/...`

Also adds a link validation script that runs in CI to catch broken
internal links.

## Why

Documentation is aggregated from multiple sources (ATK via Docker, SDK
from npm packages, blockchain-platform static content). Each source may
use different link conventions (e.g., `/docs/...`) that need to be
normalized for the unified documentation site.

## How

- **remark-transform-links.ts**: A remark plugin that detects the
content section from file path and applies section-specific URL
transformations. Handles both standard markdown links and MDX JSX
component `href` attributes.
- **check-links.ts**: Script to validate internal links at build time
- **migrate-links.ts**: Utility script to assist with link format
migration

## Files Changed

- `src/lib/remark-transform-links.ts` - Core remark plugin (new)
- `source.config.ts` - Plugin integration
- `scripts/check-links.ts` - Link validation script (new)
- `scripts/migrate-links.ts` - Link migration utility (new)
- `.github/workflows/qa.yml` - Added link checking step
- `package.json` - Added dependencies and script
- `.gitignore` - Ignore generated directories

## Breaking Changes

None

## Testing

- [x] Type checking passes
- [x] Link transformation working in dev server
- [x] Glossary links correctly resolve to
`/documentation/asset-tokenization-kit/executive-overview/glossary`

## Related Linear Issues

None

## Summary by Sourcery

Introduce automatic link transformation and validation for aggregated
documentation content and update content sourcing configuration.

New Features:
- Add a remark plugin to normalize internal documentation links based on
their content section.
- Add a link validation script to check internal links across MDX
documentation files at build/CI time.
- Add a link migration utility to bulk-update legacy internal links to
the new base path format.

Enhancements:
- Wire the new remark link transformation plugin into the MDX
configuration so all docs content uses normalized URLs.
- Adjust Docker content sourcing for the asset tokenization kit to use
the updated content image and export additional docs assets.

Build:
- Add package scripts and dependencies required for link checking and
migration, and update the Bun lockfile accordingly.

CI:
- Extend the QA GitHub Actions workflow to run internal link validation
on pushes and pull requests.

Chores:
- Update docker-compose service configuration for asset-tokenization-kit
content handling and adjust .gitignore entries.









<!-- This is an auto-generated description by cubic. -->
---
## Summary by cubic
Adds a remark plugin that rewrites internal links per content section
and a CI link checker to catch broken URLs across aggregated docs.

- **New Features**
- Remark plugin transforms internal links (/docs, /api) to section paths
(/asset-tokenization-kit, /sdk, /blockchain-platform,
/asset-tokenization-kit-legacy) for both Markdown links and MDX hrefs.
- Link validation script (bun run check-links) scans MDX files and runs
in the QA workflow.
- Integrated plugin in MDX config so all sourced docs use normalized
URLs.

- **Migration**
  - Preview changes: bun scripts/migrate-links.ts --dry-run
  - Apply changes: bun scripts/migrate-links.ts

<sup>Written for commit 768afcc.
Summary will update automatically on new commits.</sup>

<!-- End of auto-generated description by cubic. -->

---------

Co-authored-by: Claude <noreply@anthropic.com>

v8.0.4

Toggle v8.0.4's commit message

Verified

This commit was signed with the committer’s verified signature.
roderik Roderik van der Veer
feat: update atk docs

v8.0.3

Toggle v8.0.3's commit message

Verified

This commit was signed with the committer’s verified signature.
roderik Roderik van der Veer
fix: update QA workflow to use bun for build command

This commit modifies the `.github/workflows/qa.yml` file to replace the `bunx next typegen` command with `bun run build`, ensuring the build process aligns with the latest tooling and maintains the existing environment variables.

v8.0.2

Toggle v8.0.2's commit message

Verified

This commit was signed with the committer’s verified signature.
roderik Roderik van der Veer
chore(deps): update @ai-sdk/openai to version 2.0.65

This commit updates the @ai-sdk/openai dependency to version 2.0.65 in package.json, ensuring the project uses the latest features and fixes from the SDK.

v8.0.1

Toggle v8.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): update ghcr.io/settlemint/codestudio-asset-tokenization-…

…kit docker tag to v2.0.0-main.128861 (#862)

This PR contains the following updates:

| Package | Update | Change | OpenSSF |
|---|---|---|---|
|
[ghcr.io/settlemint/codestudio-asset-tokenization-kit](https://redirect.github.com/settlemint/asset-tokenization-kit)
| patch | `2.0.0-main.128231` -> `2.0.0-main.128861` | [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/settlemint/asset-tokenization-kit/badge)](https://securityscorecards.dev/viewer/?uri=github.com/settlemint/asset-tokenization-kit)
|

---

### Configuration

📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00
PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only
on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/settlemint/docs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->


<!-- This is an auto-generated description by cubic. -->
---
## Summary by cubic
Update docker-compose to use
ghcr.io/settlemint/codestudio-asset-tokenization-kit:2.0.0-main.128861.
Ensures local runs use the latest 2.0.0-main patch.

<sup>Written for commit cbd1d9a.
Summary will update automatically on new commits.</sup>

<!-- End of auto-generated description by cubic. -->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v8.0.0

Toggle v8.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): pin dependencies (#858)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@ai-sdk/openai](https://ai-sdk.dev/docs)
([source](https://redirect.github.com/vercel/ai)) | dependencies | pin |
[`^2.0.65` ->
`2.0.65`](https://renovatebot.com/diffs/npm/@ai-sdk%2fopenai/2.0.65/2.0.65)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/ai/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/ai)
|
| [@ai-sdk/react](https://ai-sdk.dev/docs)
([source](https://redirect.github.com/vercel/ai)) | dependencies | pin |
[`^2.0.87` ->
`2.0.92`](https://renovatebot.com/diffs/npm/@ai-sdk%2freact/2.0.92/2.0.92)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/ai/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/ai)
|
| [@eslint/eslintrc](https://redirect.github.com/eslint/eslintrc) |
devDependencies | pin | [`^3.3.1` ->
`3.3.1`](https://renovatebot.com/diffs/npm/@eslint%2feslintrc/3.3.1/3.3.1)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/eslint/eslintrc/badge)](https://securityscorecards.dev/viewer/?uri=github.com/eslint/eslintrc)
|
| [@next/third-parties](https://redirect.github.com/vercel/next.js)
([source](https://redirect.github.com/vercel/next.js/tree/HEAD/packages/third-parties))
| dependencies | pin | [`^16.0.1` ->
`16.0.1`](https://renovatebot.com/diffs/npm/@next%2fthird-parties/16.0.1/16.0.1)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/next.js/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/next.js)
|
| [@radix-ui/react-accordion](https://radix-ui.com/primitives)
([source](https://redirect.github.com/radix-ui/primitives)) |
dependencies | pin | [`^1.2.12` ->
`1.2.12`](https://renovatebot.com/diffs/npm/@radix-ui%2freact-accordion/1.2.12/1.2.12)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/radix-ui/primitives/badge)](https://securityscorecards.dev/viewer/?uri=github.com/radix-ui/primitives)
|
| [@radix-ui/react-collapsible](https://radix-ui.com/primitives)
([source](https://redirect.github.com/radix-ui/primitives)) |
dependencies | pin | [`^1.1.12` ->
`1.1.12`](https://renovatebot.com/diffs/npm/@radix-ui%2freact-collapsible/1.1.12/1.1.12)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/radix-ui/primitives/badge)](https://securityscorecards.dev/viewer/?uri=github.com/radix-ui/primitives)
|
| [@radix-ui/react-presence](https://radix-ui.com/primitives)
([source](https://redirect.github.com/radix-ui/primitives)) |
dependencies | pin | [`^1.1.5` ->
`1.1.5`](https://renovatebot.com/diffs/npm/@radix-ui%2freact-presence/1.1.5/1.1.5)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/radix-ui/primitives/badge)](https://securityscorecards.dev/viewer/?uri=github.com/radix-ui/primitives)
|
| [@radix-ui/react-tabs](https://radix-ui.com/primitives)
([source](https://redirect.github.com/radix-ui/primitives)) |
dependencies | pin | [`^1.1.13` ->
`1.1.13`](https://renovatebot.com/diffs/npm/@radix-ui%2freact-tabs/1.1.13/1.1.13)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/radix-ui/primitives/badge)](https://securityscorecards.dev/viewer/?uri=github.com/radix-ui/primitives)
|
| [@tailwindcss/postcss](https://tailwindcss.com)
([source](https://redirect.github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-postcss))
| devDependencies | pin | [`^4.1.16` ->
`4.1.17`](https://renovatebot.com/diffs/npm/@tailwindcss%2fpostcss/4.1.17/4.1.17)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/tailwindlabs/tailwindcss/badge)](https://securityscorecards.dev/viewer/?uri=github.com/tailwindlabs/tailwindcss)
|
|
[@types/mdx](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdx)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mdx))
| devDependencies | pin | [`^2.0.13` ->
`2.0.13`](https://renovatebot.com/diffs/npm/@types%2fmdx/2.0.13/2.0.13)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped)
|
|
[@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| devDependencies | pin | [`^24.10.0` ->
`24.10.0`](https://renovatebot.com/diffs/npm/@types%2fnode/24.10.0/24.10.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped)
|
| [ai](https://ai-sdk.dev/docs)
([source](https://redirect.github.com/vercel/ai)) | dependencies | pin |
[`^5.0.87` ->
`5.0.92`](https://renovatebot.com/diffs/npm/ai/5.0.92/5.0.92) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/ai/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/ai)
|
| [class-variance-authority](https://redirect.github.com/joe-bell/cva) |
dependencies | pin | [`^0.7.1` ->
`0.7.1`](https://renovatebot.com/diffs/npm/class-variance-authority/0.7.1/0.7.1)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/joe-bell/cva/badge)](https://securityscorecards.dev/viewer/?uri=github.com/joe-bell/cva)
|
| [eslint](https://eslint.org)
([source](https://redirect.github.com/eslint/eslint)) | devDependencies
| pin | [`^9.39.1` ->
`9.39.1`](https://renovatebot.com/diffs/npm/eslint/9.39.1/9.39.1) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/eslint/eslint/badge)](https://securityscorecards.dev/viewer/?uri=github.com/eslint/eslint)
|
|
[hast-util-to-jsx-runtime](https://redirect.github.com/syntax-tree/hast-util-to-jsx-runtime)
| dependencies | pin | [`^2.3.6` ->
`2.3.6`](https://renovatebot.com/diffs/npm/hast-util-to-jsx-runtime/2.3.6/2.3.6)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/syntax-tree/hast-util-to-jsx-runtime/badge)](https://securityscorecards.dev/viewer/?uri=github.com/syntax-tree/hast-util-to-jsx-runtime)
|
| [lucide-react](https://lucide.dev)
([source](https://redirect.github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react))
| dependencies | pin | [`^0.553.0` ->
`0.553.0`](https://renovatebot.com/diffs/npm/lucide-react/0.553.0/0.553.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/lucide-icons/lucide/badge)](https://securityscorecards.dev/viewer/?uri=github.com/lucide-icons/lucide)
|
| [mermaid](https://redirect.github.com/mermaid-js/mermaid) |
dependencies | pin | [`^11.12.1` ->
`11.12.1`](https://renovatebot.com/diffs/npm/mermaid/11.12.1/11.12.1) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/mermaid-js/mermaid/badge)](https://securityscorecards.dev/viewer/?uri=github.com/mermaid-js/mermaid)
|
| [postcss](https://postcss.org/)
([source](https://redirect.github.com/postcss/postcss)) |
devDependencies | pin | [`^8.5.6` ->
`8.5.6`](https://renovatebot.com/diffs/npm/postcss/8.5.6/8.5.6) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/postcss/postcss/badge)](https://securityscorecards.dev/viewer/?uri=github.com/postcss/postcss)
|
| [posthog-js](https://posthog.com/docs/libraries/js)
([source](https://redirect.github.com/PostHog/posthog-js)) |
dependencies | pin | [`^1.290.0` ->
`1.290.0`](https://renovatebot.com/diffs/npm/posthog-js/1.290.0/1.290.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/PostHog/posthog-js/badge)](https://securityscorecards.dev/viewer/?uri=github.com/PostHog/posthog-js)
|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) |
devDependencies | pin | [`^3.6.2` ->
`3.6.2`](https://renovatebot.com/diffs/npm/prettier/3.6.2/3.6.2) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/prettier/prettier/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prettier/prettier)
|
| [react](https://react.dev/)
([source](https://redirect.github.com/facebook/react/tree/HEAD/packages/react))
| dependencies | pin | [`^19.2.0` ->
`19.2.0`](https://renovatebot.com/diffs/npm/react/19.2.0/19.2.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/facebook/react/badge)](https://securityscorecards.dev/viewer/?uri=github.com/facebook/react)
|
| [react-dom](https://react.dev/)
([source](https://redirect.github.com/facebook/react/tree/HEAD/packages/react-dom))
| dependencies | pin | [`^19.2.0` ->
`19.2.0`](https://renovatebot.com/diffs/npm/react-dom/19.2.0/19.2.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/facebook/react/badge)](https://securityscorecards.dev/viewer/?uri=github.com/facebook/react)
|
|
[react-medium-image-zoom](https://redirect.github.com/rpearce/react-medium-image-zoom)
| dependencies | pin | [`^5.4.0` ->
`5.4.0`](https://renovatebot.com/diffs/npm/react-medium-image-zoom/5.4.0/5.4.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/rpearce/react-medium-image-zoom/badge)](https://securityscorecards.dev/viewer/?uri=github.com/rpearce/react-medium-image-zoom)
|
| [tailwind-merge](https://redirect.github.com/dcastil/tailwind-merge) |
dependencies | pin | [`^3.3.1` ->
`3.4.0`](https://renovatebot.com/diffs/npm/tailwind-merge/3.4.0/3.4.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/dcastil/tailwind-merge/badge)](https://securityscorecards.dev/viewer/?uri=github.com/dcastil/tailwind-merge)
|
| [tailwindcss](https://tailwindcss.com)
([source](https://redirect.github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss))
| devDependencies | pin | [`^4.1.16` ->
`4.1.17`](https://renovatebot.com/diffs/npm/tailwindcss/4.1.17/4.1.17) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/tailwindlabs/tailwindcss/badge)](https://securityscorecards.dev/viewer/?uri=github.com/tailwindlabs/tailwindcss)
|
| [typescript](https://www.typescriptlang.org/)
([source](https://redirect.github.com/microsoft/TypeScript)) |
devDependencies | pin | [`^5.9.3` ->
`5.9.3`](https://renovatebot.com/diffs/npm/typescript/5.9.3/5.9.3) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/microsoft/TypeScript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/microsoft/TypeScript)
|
|
[unist-util-visit](https://redirect.github.com/syntax-tree/unist-util-visit)
| dependencies | pin | [`^5.0.0` ->
`5.0.0`](https://renovatebot.com/diffs/npm/unist-util-visit/5.0.0/5.0.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/syntax-tree/unist-util-visit/badge)](https://securityscorecards.dev/viewer/?uri=github.com/syntax-tree/unist-util-visit)
|
| [zod](https://zod.dev)
([source](https://redirect.github.com/colinhacks/zod)) | dependencies |
pin | [`^4.1.12` ->
`4.1.12`](https://renovatebot.com/diffs/npm/zod/4.1.12/4.1.12) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/colinhacks/zod/badge)](https://securityscorecards.dev/viewer/?uri=github.com/colinhacks/zod)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Configuration

📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00
PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only
on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/settlemint/docs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNzMuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE3My4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v7.9.9

Toggle v7.9.9's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): update dependency ultracite to v6 (#831)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [ultracite](https://www.ultracite.ai/)
([source](https://redirect.github.com/haydenbleasel/ultracite)) |
dependencies | major | [`5.6.4` ->
`6.2.1`](https://renovatebot.com/diffs/npm/ultracite/5.6.4/6.2.1) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/haydenbleasel/ultracite/badge)](https://securityscorecards.dev/viewer/?uri=github.com/haydenbleasel/ultracite)
|

---

### Release Notes

<details>
<summary>haydenbleasel/ultracite (ultracite)</summary>

###
[`v6.2.1`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.2.1)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.2.0...ultracite@6.2.1)

##### Patch Changes

-
[`527e737`](https://redirect.github.com/haydenbleasel/ultracite/commit/527e737):
Update to Biome 2.3.3
-
[`d5f9d64`](https://redirect.github.com/haydenbleasel/ultracite/commit/d5f9d64):
Disable useAwait on page.tsx and layout.tsx files in Next.js
-
[`eb77e3f`](https://redirect.github.com/haydenbleasel/ultracite/commit/eb77e3f):
add allowForLoopAfterthoughts to noIncrementDecrement

###
[`v6.2.0`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.2.0)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.1.0...ultracite@6.2.0)

##### Minor Changes

-
[`4035389`](https://redirect.github.com/haydenbleasel/ultracite/commit/4035389):
add cursor hooks functionality
-
[`18ed1f3`](https://redirect.github.com/haydenbleasel/ultracite/commit/18ed1f3):
Refactor rules based on hooks and feedback from Cursor team

##### Patch Changes

-
[`7aa5fd8`](https://redirect.github.com/haydenbleasel/ultracite/commit/7aa5fd8):
pass diagnostic-level filter option (stop-gap)
-
[`f9e2141`](https://redirect.github.com/haydenbleasel/ultracite/commit/f9e2141):
Update existing tsconfig files instead of creating a new root one

###
[`v6.1.0`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.1.0)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.5...ultracite@6.1.0)

##### Minor Changes

-
[`b6bdc8e`](https://redirect.github.com/haydenbleasel/ultracite/commit/b6bdc8e):
Introduce Warp agentic terminal support

##### Patch Changes

-
[`ba72503`](https://redirect.github.com/haydenbleasel/ultracite/commit/ba72503):
Fix husky initialization
-
[`b038a60`](https://redirect.github.com/haydenbleasel/ultracite/commit/b038a60):
Fix overrides in Astro, Svelte, Vue presets having no effect
-
[`b7451ee`](https://redirect.github.com/haydenbleasel/ultracite/commit/b7451ee):
Improve core glob
-
[`f7ebeb8`](https://redirect.github.com/haydenbleasel/ultracite/commit/f7ebeb8):
Improve test coverage for agents

###
[`v6.0.5`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.5)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.4...ultracite@6.0.5)

##### Patch Changes

-
[`5f00bd3`](https://redirect.github.com/haydenbleasel/ultracite/commit/5f00bd3):
Use overrides in presets
-
[`30f488e`](https://redirect.github.com/haydenbleasel/ultracite/commit/30f488e):
Upgrade Biome to 2.3.2, add "noIncrementDecrement"

###
[`v6.0.4`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.4)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.3...ultracite@6.0.4)

##### Patch Changes

-
[`b0a7281`](https://redirect.github.com/haydenbleasel/ultracite/commit/b0a7281):
setting cursor rule context to glob pattern instead of always apply

###
[`v6.0.3`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.3)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.2...ultracite@6.0.3)

##### Patch Changes

-
[`82e5353`](https://redirect.github.com/haydenbleasel/ultracite/commit/82e5353):
Drop legacy ultracite preset

###
[`v6.0.2`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.2)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.1...ultracite@6.0.2)

##### Patch Changes

-
[`9566f79`](https://redirect.github.com/haydenbleasel/ultracite/commit/9566f79):
Upgrade to Biome 2.3.1

###
[`v6.0.1`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.1)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@6.0.0...ultracite@6.0.1)

##### Patch Changes

-
[`5848800`](https://redirect.github.com/haydenbleasel/ultracite/commit/5848800):
Fix legacy ultracite config

###
[`v6.0.0`](https://redirect.github.com/haydenbleasel/ultracite/releases/tag/ultracite%406.0.0)

[Compare
Source](https://redirect.github.com/haydenbleasel/ultracite/compare/ultracite@5.6.4...ultracite@6.0.0)

##### Major Changes

-
[`86ee61e`](https://redirect.github.com/haydenbleasel/ultracite/commit/86ee61e):
Add specific Ultracite configurations

##### Minor Changes

-
[`d704b5c`](https://redirect.github.com/haydenbleasel/ultracite/commit/d704b5c):
Add first-class support for Astro

##### Patch Changes

-
[`c5c7ca1`](https://redirect.github.com/haydenbleasel/ultracite/commit/c5c7ca1):
Disable project rules
-
[`ff83b52`](https://redirect.github.com/haydenbleasel/ultracite/commit/ff83b52):
Compress Ultracite agent rules
-
[`8987c58`](https://redirect.github.com/haydenbleasel/ultracite/commit/8987c58):
Upgrade to Biome 2.3.0
-
[`acd8c42`](https://redirect.github.com/haydenbleasel/ultracite/commit/acd8c42):
Brand and docs update
-
[`ed1bcb6`](https://redirect.github.com/haydenbleasel/ultracite/commit/ed1bcb6):
Docs updates and bump deps
-
[`d0ba90b`](https://redirect.github.com/haydenbleasel/ultracite/commit/d0ba90b):
Tie framework selection to agent context

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00
PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only
on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **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 was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/settlemint/docs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

v7.9.8

Toggle v7.9.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: update helm values for deployment (#836)

## Summary by Sourcery

Update self-hosted on-prem installation docs and example values to
introduce licensing, registry credentials, SMTP login, secret manager
integrations, observability settings, and bump the Helm chart version.

New Features:
- Add `license` section in values.yaml to configure SettleMint license
and entitlements
- Introduce `imagePullCredentials` block for container registry
authentication
- Support SMTP‐based passwordless email login under
`auth.providers.passwordless`
- Add integrations for Vault, Google Secret Manager, AWS Secret Manager,
and Azure Key Vault

Enhancements:
- Restructure example values: ingress annotations/TLS placeholders,
resource requests, replica counts, observability components
(metrics-server, Grafana, Loki, Tempo, VictoriaMetrics), and advanced
deployment config (mixedLoadBalancers, nodePorts)
- Update prerequisites overview and checklist to include SMTP server and
license registry credentials

Build:
- Bump Helm chart version from v7.31.11 to v7.33.0 in install
instructions

Documentation:
- Add new license prerequisite document (`license.mdx`) with
instructions to obtain and validate SettleMint license
- Revise platform installation guide with extended Helm values examples
and prerequisites overviews