Commit Graph

230 Commits

Author SHA1 Message Date
TrueCharts Bot ef61ff9cab fix(website): update astro 5.2.6 → 5.3.1 (#32544)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.3.0` ->
`5.3.1`](https://renovatebot.com/diffs/npm/astro/5.2.6/5.3.1) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.3.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#531)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.3.0...astro@5.3.1)

##### Patch Changes

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures consistent behaviour of `Astro.rewrite`/`ctx.rewrite` when
using `base` and `trailingSlash` options.

-
[#&#8203;13003](https://redirect.github.com/withastro/astro/pull/13003)
[`ea79054`](https://redirect.github.com/withastro/astro/commit/ea790542e186b0d2d2e828cb3ebd23bde4d04879)
Thanks [@&#8203;chaegumi](https://redirect.github.com/chaegumi)! - Fixes
a bug that caused the `vite.base` value to be ignored when running
`astro dev`

-
[#&#8203;13299](https://redirect.github.com/withastro/astro/pull/13299)
[`2e1321e`](https://redirect.github.com/withastro/astro/commit/2e1321e9d5b27da3e86bc4021e4136661a8055aa)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Uses
`tinyglobby` for globbing files

-
[#&#8203;13233](https://redirect.github.com/withastro/astro/pull/13233)
[`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Ensures that `Astro.url`/`ctx.url` is correctly updated with the
`base` path after rewrites.

This change fixes an issue where `Astro.url`/`ctx.url` did not include
the configured base path after Astro.rewrite was called. Now, the base
path is correctly reflected in Astro.url.

Previously, any rewrites performed through `Astro.rewrite`/`ctx.rewrite`
failed to append the base path to `Astro.url`/`ctx.rewrite`, which could
lead to incorrect URL handling in downstream logic. By fixing this, we
ensure that all routes remain consistent and predictable after a
rewrite.

If you were relying on the work around of including the base path in
astro.rewrite you can now remove it from the path.

###
[`v5.3.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#530)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.6...astro@5.3.0)

##### Minor Changes

-
[#&#8203;13210](https://redirect.github.com/withastro/astro/pull/13210)
[`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da)
Thanks [@&#8203;VitaliyR](https://redirect.github.com/VitaliyR)! -
Handle `HEAD` requests to an endpoint when a handler is not defined.

If an endpoint defines a handler for `GET`, but does not define a
handler for `HEAD`, Astro will call the `GET` handler and return the
headers and status but an empty body.

-
[#&#8203;13195](https://redirect.github.com/withastro/astro/pull/13195)
[`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536)
Thanks [@&#8203;MatthewLymer](https://redirect.github.com/MatthewLymer)!
- Improves SSR performance for synchronous components by avoiding the
use of Promises. With this change, SSR rendering of on-demand pages can
be up to 4x faster.

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
support for adapters auto-configuring experimental session storage
drivers.

Adapters can now configure a default session storage driver when the
`experimental.session` flag is enabled. If a hosting platform has a
storage primitive that can be used for session storage, the adapter can
automatically configure the session storage using that driver. This
allows Astro to provide a more seamless experience for users who want to
use sessions without needing to manually configure the session storage.

##### Patch Changes

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
⚠️ **BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY** ⚠️

Changes the `experimental.session` option to a boolean flag and moves
session config to a top-level value. This change is to allow the new
automatic session driver support. You now need to separately enable the
`experimental.session` flag, and then configure the session driver using
the top-level `session` key if providing manual configuration.

    ```diff
    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });
    ```

You no longer need to configure a session driver if you are using an
adapter that supports automatic session driver configuration and wish to
use its default settings.

    ```diff
    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });
    ```

However, you can still manually configure additional driver options or
choose a non-default driver to use with your adapter with the new
top-level `session` config option. For more information, see the
[experimental session
docs](https://docs.astro.build/en/reference/experimental-flags/sessions/).

-
[#&#8203;13101](https://redirect.github.com/withastro/astro/pull/13101)
[`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2)
Thanks
[@&#8203;corneliusroemer](https://redirect.github.com/corneliusroemer)!
- Fixes a bug where `HEAD` and `OPTIONS` requests for non-prerendered
pages were incorrectly rejected with 403 FORBIDDEN

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni40IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-25 02:04:53 +01:00
Aspen c5b724d69f feat(common): Allow configuring default topologyKey (#32461)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
This PR adds a global option to control the default topologyKey used for
topologySpreadConstraints

⚒️ Fixes  #32457

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [ ] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->
Ran the common library unit tests, added one to verify the usage of the
field

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [x] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made changes to the documentation
- [x] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-24 13:09:20 +01:00
Alfred Göppel 126d6cdc48 fix(docs): update clustertool section (#32469)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  https://github.com/truecharts/public/issues/32176

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-23 17:47:52 -05:00
TrueCharts Bot c8f1ca1219 fix(website): update astro 5.2.5 → 5.3.0 (#32136)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.2.6` ->
`5.3.0`](https://renovatebot.com/diffs/npm/astro/5.2.5/5.3.0) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.3.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#530)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.6...astro@5.3.0)

##### Minor Changes

-
[#&#8203;13210](https://redirect.github.com/withastro/astro/pull/13210)
[`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da)
Thanks [@&#8203;VitaliyR](https://redirect.github.com/VitaliyR)! -
Handle `HEAD` requests to an endpoint when a handler is not defined.

If an endpoint defines a handler for `GET`, but does not define a
handler for `HEAD`, Astro will call the `GET` handler and return the
headers and status but an empty body.

-
[#&#8203;13195](https://redirect.github.com/withastro/astro/pull/13195)
[`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536)
Thanks [@&#8203;MatthewLymer](https://redirect.github.com/MatthewLymer)!
- Improves SSR performance for synchronous components by avoiding the
use of Promises. With this change, SSR rendering of on-demand pages can
be up to 4x faster.

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
support for adapters auto-configuring experimental session storage
drivers.

Adapters can now configure a default session storage driver when the
`experimental.session` flag is enabled. If a hosting platform has a
storage primitive that can be used for session storage, the adapter can
automatically configure the session storage using that driver. This
allows Astro to provide a more seamless experience for users who want to
use sessions without needing to manually configure the session storage.

##### Patch Changes

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
⚠️ **BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY** ⚠️

Changes the `experimental.session` option to a boolean flag and moves
session config to a top-level value. This change is to allow the new
automatic session driver support. You now need to separately enable the
`experimental.session` flag, and then configure the session driver using
the top-level `session` key if providing manual configuration.

    ```diff
    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });
    ```

You no longer need to configure a session driver if you are using an
adapter that supports automatic session driver configuration and wish to
use its default settings.

    ```diff
    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });
    ```

However, you can still manually configure additional driver options or
choose a non-default driver to use with your adapter with the new
top-level `session` config option. For more information, see the
[experimental session
docs](https://docs.astro.build/en/reference/experimental-flags/sessions/).

-
[#&#8203;13101](https://redirect.github.com/withastro/astro/pull/13101)
[`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2)
Thanks
[@&#8203;corneliusroemer](https://redirect.github.com/corneliusroemer)!
- Fixes a bug where `HEAD` and `OPTIONS` requests for non-prerendered
pages were incorrectly rejected with 403 FORBIDDEN

###
[`v5.2.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#526)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.5...astro@5.2.6)

##### Patch Changes

-
[#&#8203;13188](https://redirect.github.com/withastro/astro/pull/13188)
[`7bc8256`](https://redirect.github.com/withastro/astro/commit/7bc825649bfb790a0206abd31df1676513a03b22)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes the wording of the an error message

-
[#&#8203;13205](https://redirect.github.com/withastro/astro/pull/13205)
[`9d56602`](https://redirect.github.com/withastro/astro/commit/9d5660223b46e024b4e8c8eafead8a4e20e28ec5)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes and issue where a server island component returns 404 when `base`
is configured in i18n project.

-
[#&#8203;13212](https://redirect.github.com/withastro/astro/pull/13212)
[`fb38840`](https://redirect.github.com/withastro/astro/commit/fb3884074f261523cd89fe6e1745a0e9c01198f2)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- An additional has been added during the build command to add clarity
around output and buildOutput.

-
[#&#8203;13213](https://redirect.github.com/withastro/astro/pull/13213)
[`6bac644`](https://redirect.github.com/withastro/astro/commit/6bac644241bc42bb565730955ffd575878a0e41b)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Allows readonly arrays to be passed to the `paginate()` function

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled because a matching PR was automerged
previously.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-18 21:20:45 +01:00
Alfred Göppel 9ddcf832f7 fix(docs): Move guides around (#32224)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-18 21:07:40 +01:00
Alfred Göppel 1271d21f84 fix(docs): update nvidia guide (#32226)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-18 14:27:10 -05:00
Alfred Göppel 74226a7e50 fix(docs): Update Ingress Guide (#32223)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-18 20:26:22 +01:00
Alfred Göppel 8edd0eaceb fix(docs): Redo Quick-Start Guide (#32225)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-18 14:26:05 -05:00
Alfred Göppel b8f1b08c97 fix(docs): add talos stuff (#32227)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-18 14:24:41 -05:00
Alfred Göppel c7c0ae8101 fix(docs): first changes (#32228)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code
- [x] 📜 Documentation Changes

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made changes to the documentation
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):`, `chore(chart-name):`, `docs(chart-name):` or
`fix(docs):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-02-18 14:24:18 -05:00
Oreste Sciacqualegni 98ee88bd02 Add documentation for clustertool talos kubeconfig command (#32159)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
Added the documentation to the `clustertool talos kubeconfig`, I needed
to use this command and I saw it in the help page `clustertool talos -h`
and source code, but not in the documentation online that I was using as
reference. I tried to add the required page
⚒️ Fixes  # <!--(issue)-->
No fixes made
**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->
I checked the help page of the command `clustertool talos kubeconfig`

**📃 Notes:**
<!-- Please enter any other relevant information here -->
I never programmed in Go, but i wanted to check in the source code to be
sure to not write a bad documentation. It seems to me that this command
is just a wrapper around the `talosctl kubeconfig -n <NodeIP>`, but it
seams to use a function called `gencmd.GenPlain(...)` that seems to wrap
the talosctl command verbatim. If it does it the help page should be
different and also the section related to the option in my
documentation.

![250216-152545_screenshot-area](https://github.com/user-attachments/assets/9a768f3e-4219-4953-8c90-91f2993be385)

![250216-152442_screenshot-area](https://github.com/user-attachments/assets/5d3e4557-4585-4219-9d0d-31b54fec3acb)

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-16 19:57:54 +00:00
TrueCharts Bot 45f4b56675 fix(website): update astro 5.2.5 → 5.2.6 (#32122) 2025-02-15 20:28:12 +01:00
TrueCharts Bot 2301667441 fix(website): update astro 5.2.5 → 5.3.0 (#32111) 2025-02-15 09:28:18 +01:00
TrueCharts Bot 38cc89be4a fix(website): update astro 5.2.5 → 5.2.6 (#32045) 2025-02-15 01:18:46 +01:00
TrueCharts Bot 048d64cf1d fix(website): update starlight-links-validator 0.14.2 → 0.14.3 (#32039)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[starlight-links-validator](https://redirect.github.com/HiDeoo/starlight-links-validator)
([source](https://redirect.github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator))
| dependencies | patch | [`0.14.2` ->
`0.14.3`](https://renovatebot.com/diffs/npm/starlight-links-validator/0.14.2/0.14.3)
|

---

> [!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.

---

### Release Notes

<details>
<summary>HiDeoo/starlight-links-validator
(starlight-links-validator)</summary>

###
[`v0.14.3`](https://redirect.github.com/HiDeoo/starlight-links-validator/blob/HEAD/packages/starlight-links-validator/CHANGELOG.md#0143)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/starlight-links-validator@0.14.2...starlight-links-validator@0.14.3)

##### Patch Changes

-
[#&#8203;91](https://redirect.github.com/HiDeoo/starlight-links-validator/pull/91)
[`1ef31b8`](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/1ef31b81e7c5321a7481df6111d9161c4608fd4e)
Thanks [@&#8203;DaniFoldi](https://redirect.github.com/DaniFoldi)! -
Moves `mdast-util-mdx-jsx` package to non-dev dependencies to prevent
issues in monorepos with hoisting disabled.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-14 19:18:16 +01:00
TrueCharts Bot 6e370efb58 fix(website): update astro 5.2.5 → 5.3.0 (#32042) 2025-02-14 19:17:24 +01:00
TrueCharts Bot 56c2e8eca5 fix(website): update astro 5.2.5 → 5.2.6 (#32035) 2025-02-14 13:16:36 +01:00
gismo2004 8ffc6bf94f feat(website) add longhorn snapshot-delete/cleanup task info (#32031)
**Description**

add longhorn snapshot-delete/cleanup task info

⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-14 09:15:57 +01:00
TrueCharts Bot 8138b1677b fix(website): update astro 5.2.5 → 5.3.0 (#32030) 2025-02-14 07:16:01 +01:00
TrueCharts Bot 4e335a03a0 fix(website): update astro 5.2.5 → 5.2.6 (#32025) 2025-02-14 01:17:26 +01:00
TrueCharts Bot 1cfd002f1c fix(website): update prettier 3.4.2 → 3.5.1 (#32022)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | dependencies
| minor | [`3.5.0` ->
`3.5.1`](https://renovatebot.com/diffs/npm/prettier/3.4.2/3.5.1) |

---

> [!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.

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

###
[`v3.5.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#351)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.5.0...3.5.1)


[diff](https://redirect.github.com/prettier/prettier/compare/3.5.0...3.5.1)

##### Fix CLI crash when cache for old version exists
([#&#8203;17100](https://redirect.github.com/prettier/prettier/pull/17100)
by [@&#8203;sosukesuzuki](https://redirect.github.com/sosukesuzuki))

Prettier 3.5 uses a different cache format than previous versions,
Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1
fixed the problem.

##### Support dockercompose and github-actions-workflow in VSCode
([#&#8203;17101](https://redirect.github.com/prettier/prettier/pull/17101)
by [@&#8203;remcohaszing](https://redirect.github.com/remcohaszing))

Prettier now supports the `dockercompose` and `github-actions-workflow`
languages in Visual Studio Code.

###
[`v3.5.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#350)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0)


[diff](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0)

🔗 [Release Notes](https://prettier.io/blog/2025/02/09/3.5.0.html)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-13 19:19:13 +01:00
TrueCharts Bot 960730ad67 fix(website): update astro 5.2.5 → 5.3.0 (#32021)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.2.6` ->
`5.3.0`](https://renovatebot.com/diffs/npm/astro/5.2.5/5.3.0) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.3.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#530)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.6...astro@5.3.0)

##### Minor Changes

-
[#&#8203;13210](https://redirect.github.com/withastro/astro/pull/13210)
[`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da)
Thanks [@&#8203;VitaliyR](https://redirect.github.com/VitaliyR)! -
Handle `HEAD` requests to an endpoint when a handler is not defined.

If an endpoint defines a handler for `GET`, but does not define a
handler for `HEAD`, Astro will call the `GET` handler and return the
headers and status but an empty body.

-
[#&#8203;13195](https://redirect.github.com/withastro/astro/pull/13195)
[`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536)
Thanks [@&#8203;MatthewLymer](https://redirect.github.com/MatthewLymer)!
- Improves SSR performance for synchronous components by avoiding the
use of Promises. With this change, SSR rendering of on-demand pages can
be up to 4x faster.

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
support for adapters auto-configuring experimental session storage
drivers.

Adapters can now configure a default session storage driver when the
`experimental.session` flag is enabled. If a hosting platform has a
storage primitive that can be used for session storage, the adapter can
automatically configure the session storage using that driver. This
allows Astro to provide a more seamless experience for users who want to
use sessions without needing to manually configure the session storage.

##### Patch Changes

-
[#&#8203;13145](https://redirect.github.com/withastro/astro/pull/13145)
[`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
⚠️ **BREAKING CHANGE FOR EXPERIMENTAL SESSIONS ONLY** ⚠️

Changes the `experimental.session` option to a boolean flag and moves
session config to a top-level value. This change is to allow the new
automatic session driver support. You now need to separately enable the
`experimental.session` flag, and then configure the session driver using
the top-level `session` key if providing manual configuration.

    ```diff
    defineConfig({
      // ...
      experimental: {
    -    session: {
    -      driver: 'upstash',
    -    },
    +    session: true,
      },
    +  session: {
    +    driver: 'upstash',
    +  },
    });
    ```

You no longer need to configure a session driver if you are using an
adapter that supports automatic session driver configuration and wish to
use its default settings.

    ```diff
    defineConfig({
      adapter: node({
        mode: "standalone",
      }),
      experimental: {
    -    session: {
    -      driver: 'fs',
    -      cookie: 'astro-cookie',
    -    },
    +    session: true,
      },
    +  session: {
    +    cookie: 'astro-cookie',
    +  },
    });
    ```

However, you can still manually configure additional driver options or
choose a non-default driver to use with your adapter with the new
top-level `session` config option. For more information, see the
[experimental session
docs](https://docs.astro.build/en/reference/experimental-flags/sessions/).

-
[#&#8203;13101](https://redirect.github.com/withastro/astro/pull/13101)
[`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2)
Thanks
[@&#8203;corneliusroemer](https://redirect.github.com/corneliusroemer)!
- Fixes a bug where `HEAD` and `OPTIONS` requests for non-prerendered
pages were incorrectly rejected with 403 FORBIDDEN

###
[`v5.2.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#526)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.5...astro@5.2.6)

##### Patch Changes

-
[#&#8203;13188](https://redirect.github.com/withastro/astro/pull/13188)
[`7bc8256`](https://redirect.github.com/withastro/astro/commit/7bc825649bfb790a0206abd31df1676513a03b22)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes the wording of the an error message

-
[#&#8203;13205](https://redirect.github.com/withastro/astro/pull/13205)
[`9d56602`](https://redirect.github.com/withastro/astro/commit/9d5660223b46e024b4e8c8eafead8a4e20e28ec5)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes and issue where a server island component returns 404 when `base`
is configured in i18n project.

-
[#&#8203;13212](https://redirect.github.com/withastro/astro/pull/13212)
[`fb38840`](https://redirect.github.com/withastro/astro/commit/fb3884074f261523cd89fe6e1745a0e9c01198f2)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- An additional has been added during the build command to add clarity
around output and buildOutput.

-
[#&#8203;13213](https://redirect.github.com/withastro/astro/pull/13213)
[`6bac644`](https://redirect.github.com/withastro/astro/commit/6bac644241bc42bb565730955ffd575878a0e41b)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Allows readonly arrays to be passed to the `paginate()` function

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-13 19:17:59 +01:00
TrueCharts Bot 40d22f2271 fix(website): update astro 5.2.5 → 5.2.6 (#32003)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.2.5` ->
`5.2.6`](https://renovatebot.com/diffs/npm/astro/5.2.5/5.2.6) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.2.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#526)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.5...astro@5.2.6)

##### Patch Changes

-
[#&#8203;13188](https://redirect.github.com/withastro/astro/pull/13188)
[`7bc8256`](https://redirect.github.com/withastro/astro/commit/7bc825649bfb790a0206abd31df1676513a03b22)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes the wording of the an error message

-
[#&#8203;13205](https://redirect.github.com/withastro/astro/pull/13205)
[`9d56602`](https://redirect.github.com/withastro/astro/commit/9d5660223b46e024b4e8c8eafead8a4e20e28ec5)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes and issue where a server island component returns 404 when `base`
is configured in i18n project.

-
[#&#8203;13212](https://redirect.github.com/withastro/astro/pull/13212)
[`fb38840`](https://redirect.github.com/withastro/astro/commit/fb3884074f261523cd89fe6e1745a0e9c01198f2)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- An additional has been added during the build command to add clarity
around output and buildOutput.

-
[#&#8203;13213](https://redirect.github.com/withastro/astro/pull/13213)
[`6bac644`](https://redirect.github.com/withastro/astro/commit/6bac644241bc42bb565730955ffd575878a0e41b)
Thanks [@&#8203;joshmkennedy](https://redirect.github.com/joshmkennedy)!
- Allows readonly arrays to be passed to the `paginate()` function

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-02-12 19:22:53 +01:00
TrueCharts Bot df6ff38b78 chore(deps): update node.js v22.13.1 → v22.14.0 (#31903) 2025-02-11 13:24:18 +01:00
Stavros Kois 41e5d6258f feat(traefik-integration): actually default to false (#31868)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [x] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made corresponding changes to the documentation
- [x] ⚠️ My changes generate no new warnings
- [x] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-09 20:04:03 +01:00
TrueCharts Bot 56fb82e404 fix(website): update prettier 3.4.2 → 3.5.0 (#31872)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [prettier](https://prettier.io)
([source](https://redirect.github.com/prettier/prettier)) | dependencies
| minor | [`3.4.2` ->
`3.5.0`](https://renovatebot.com/diffs/npm/prettier/3.4.2/3.5.0) |

---

> [!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.

---

### Release Notes

<details>
<summary>prettier/prettier (prettier)</summary>

###
[`v3.5.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#350)

[Compare
Source](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0)


[diff](https://redirect.github.com/prettier/prettier/compare/3.4.2...3.5.0)

🔗 [Release Notes](https://prettier.io/blog/2025/02/09/3.5.0.html)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-02-09 18:24:43 +00:00
Kjeld Schouten 5fd65bb3d5 feat(common): enable middlewares when referenced on ingress and add chart+common middlewares (#31535)
**Description**

Currently users have to enable the ingressMiddleware AND reference said
middleware under their ingress.
This adds additional work and is confusion when, for example, we include
our own middleware.

This PR checks if a disabled middleware, is referenced anywhere on an
enabled ingress with traefik-integration enabled.
It does so by excluding any external middlewares (with namespace
explicitly defined)

If it finds any that are not enabled, it will still enable/create them
regardless.

This PR also increases the places ingress-middleware can be referenced
on the ingress:

1. common-middlewares (.Values.global.traefik.commonMiddlewares)
Special bare-bones middlewares that are applied to all ingresses by
default, unless very explicitly overridden

2. chart-middlewares
($ingress.integrations.traefik.chartMiddlewares)
Special middlewares that are defined by the chart creator and should
always be loaded regardless of user middlewares, for example: nextcloud

3. user-middlewares
what we had already

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2025-02-09 11:24:43 +01:00
Kjeld Schouten b63677e322 fix(website): fix news sidebar 2025-02-09 11:21:31 +01:00
TrueCharts-Bot cbc7daf7d1 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2025-02-08 00:13:21 +00:00
TJ 4717e501df chore(documentation): added additional context in the talos gpu guide. (#31730)
Added a placement example of the gpu patch placement on the node as well
as a short explanation of the context around when it's placed in certain
places.

**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [x] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [x] ⚖️ My code follows the style guidelines of this project
- [x] 👀 I have performed a self-review of my own code
- [x] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [x] 📄 I have made corresponding changes to the documentation
- [x] ⚠️ My changes generate no new warnings
- [x] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [x] ⬆️ I increased versions for any altered app according to semantic
versioning
- [x] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: TJ <55514551+nerddotdad@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-02-07 21:23:08 +01:00
TrueCharts Bot 12c63f5c34 fix(website): update astro 5.2.3 → 5.2.5 (#31652)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | patch | [`5.2.3` ->
`5.2.5`](https://renovatebot.com/diffs/npm/astro/5.2.3/5.2.5) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.2.5`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#525)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.4...astro@5.2.5)

##### Patch Changes

-
[#&#8203;13133](https://redirect.github.com/withastro/astro/pull/13133)
[`e76aa83`](https://redirect.github.com/withastro/astro/commit/e76aa8391eb9d81c1a52fb2f9f21ede4790bd793)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where Astro was failing to build an external redirect when
the middleware was triggered

-
[#&#8203;13119](https://redirect.github.com/withastro/astro/pull/13119)
[`ac43580`](https://redirect.github.com/withastro/astro/commit/ac4358052af2c1817dec999598bc4e3d8fd0bdaf)
Thanks [@&#8203;Hacksore](https://redirect.github.com/Hacksore)! - Adds
extra guidance in the terminal when using the `astro add tailwind` CLI
command

Now, users are given a friendly reminder to import the stylesheet
containing their Tailwind classes into any pages where they want to use
Tailwind. Commonly, this is a shared layout component so that Tailwind
styling can be used on multiple pages.

###
[`v5.2.4`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#524)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.3...astro@5.2.4)

##### Patch Changes

-
[#&#8203;13130](https://redirect.github.com/withastro/astro/pull/13130)
[`b71bd10`](https://redirect.github.com/withastro/astro/commit/b71bd10989c0070847cecb101afb8278d5ef7091)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused duplicate slashes inside query params to be collapsed

-
[#&#8203;13131](https://redirect.github.com/withastro/astro/pull/13131)
[`d60c742`](https://redirect.github.com/withastro/astro/commit/d60c74243f639761ad735d66d814e627f8f847a2)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Ignores trailing slashes for endpoints with file extensions in the route

- Updated dependencies
\[[`b71bd10`](https://redirect.github.com/withastro/astro/commit/b71bd10989c0070847cecb101afb8278d5ef7091)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@&#8203;0](https://redirect.github.com/0).5.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-05 03:16:54 +01:00
TrueCharts Bot cb17d7b1e6 chore(website): lock file maintenance (#31575)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

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

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (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.

👻 **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=-->
2025-02-03 19:19:42 +01:00
Alfred Göppel c5ef2e91b7 fix(docs): traefik link fixes (#31593)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2025-02-03 15:31:17 +01:00
Stavros Kois c2d57917e0 regen lock file 2025-02-02 10:54:22 +02:00
Stavros Kois 53ca726d21 chore(docs,tests): remove references to fixedMiddlewares and allowCors(middlewares) 2025-02-02 10:51:07 +02:00
Kjeld Schouten 5ef1dd6055 feat(common): BREAKING CHANGE change traefik middleware logic (#31498)
**Description**
This PR changes how ingress handles traefik integration middlewares


Should finally complete: #28999

Fixes: #28999

Also Fixes: #28996 
Due to removing fixed middlewares completely

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [x] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2025-02-01 23:33:59 +01:00
Kjeld Schouten a759873bf5 feat(common): add existing secret support for pullsecret (#31500)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  #31324

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Co-authored-by: Stavros Kois <s.kois@outlook.com>
2025-02-01 22:52:32 +01:00
Kjeld Schouten a27d735b9d feat(common): restructure traefik/ingress middlewares (#31171)
**Description**

moves the middlewares around and adds unit tests

**⚙️ Type of change**

- [x] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [x] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [x] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Stavros Kois <s.kois@outlook.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2025-02-01 21:49:53 +01:00
Kjeld Schouten 427d8f5c32 Update 2025-01-30-2025-start.md
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-02-01 14:03:49 +01:00
TrueCharts Bot be14e2f11f fix(website): update astro 5.1.10 → 5.2.3 (#31461)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [astro](https://astro.build)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro))
| dependencies | minor | [`5.1.10` ->
`5.2.3`](https://renovatebot.com/diffs/npm/astro/5.1.10/5.2.3) |

---

> [!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.

---

### Release Notes

<details>
<summary>withastro/astro (astro)</summary>

###
[`v5.2.3`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#523)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.2...astro@5.2.3)

##### Patch Changes

-
[#&#8203;13113](https://redirect.github.com/withastro/astro/pull/13113)
[`3a26e45`](https://redirect.github.com/withastro/astro/commit/3a26e4541764085faa499bc63549b24d194146a6)
Thanks
[@&#8203;unprintable123](https://redirect.github.com/unprintable123)! -
Fixes the bug that rewrite will pass encoded url to the dynamic routing
and cause params mismatch.

-
[#&#8203;13111](https://redirect.github.com/withastro/astro/pull/13111)
[`23978dd`](https://redirect.github.com/withastro/astro/commit/23978ddfe127bbc3762b6209b42d049588e52a14)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused injected endpoint routes to return not found when
trailingSlash was set to always

-
[#&#8203;13112](https://redirect.github.com/withastro/astro/pull/13112)
[`0fa5c82`](https://redirect.github.com/withastro/astro/commit/0fa5c82977de73872ddeffffea48fddafba47398)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where the i18n middleware was blocking a server island
request when the `prefixDefaultLocale` option is set to `true`

###
[`v5.2.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#522)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.1...astro@5.2.2)

##### Patch Changes

-
[#&#8203;13106](https://redirect.github.com/withastro/astro/pull/13106)
[`187c4d3`](https://redirect.github.com/withastro/astro/commit/187c4d3244a27c9b4e7e3cbe6307b01161140ca1)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused peer dependency errors when running `astro add
tailwind`

###
[`v5.2.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#521)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.2.0...astro@5.2.1)

##### Patch Changes

-
[#&#8203;13095](https://redirect.github.com/withastro/astro/pull/13095)
[`740eb60`](https://redirect.github.com/withastro/astro/commit/740eb6019f405781a3918941d3bfb34a7bda1a3d)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused some dev server asset requests to return 404 when
trailingSlash was set to "always"

###
[`v5.2.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#520)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/astro@5.1.10...astro@5.2.0)

##### Minor Changes

-
[#&#8203;12994](https://redirect.github.com/withastro/astro/pull/12994)
[`5361755`](https://redirect.github.com/withastro/astro/commit/536175528dbbe75aa978d615ba2517b64bad7879)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Redirects trailing slashes for on-demand pages

When the `trailingSlash` option is set to `always` or `never`, on-demand
rendered pages will now redirect to the correct URL when the trailing
slash doesn't match the configuration option. This was previously the
case for static pages, but now works for on-demand pages as well.

Now, it doesn't matter whether your visitor navigates to `/about/`,
`/about`, or even `/about///`. In production, they'll always end up on
the correct page. For GET requests, the redirect will be a 301
(permanent) redirect, and for all other request methods, it will be a
308 (permanent, and preserve the request method) redirect.

In development, you'll see a helpful 404 page to alert you of a trailing
slash mismatch so you can troubleshoot routes.

-
[#&#8203;12979](https://redirect.github.com/withastro/astro/pull/12979)
[`e621712`](https://redirect.github.com/withastro/astro/commit/e621712109b79313b24924ec4f0ba4f8ab6201c2)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds support for redirecting to external sites with the
[`redirects`](https://docs.astro.build/en/reference/configuration-reference/#redirects)
configuration option.

Now, you can redirect routes either internally to another path or
externally by providing a URL beginning with `http` or `https`:

    ```js
    // astro.config.mjs
    import { defineConfig } from 'astro/config';

    export default defineConfig({
      redirects: {
        '/blog': 'https://example.com/blog',
        '/news': {
          status: 302,
          destination: 'https://example.com/news',
        },
      },
    });
    ```

-
[#&#8203;13084](https://redirect.github.com/withastro/astro/pull/13084)
[`0f3be31`](https://redirect.github.com/withastro/astro/commit/0f3be3104e62d5b50dabfb15023f97954a160b8e)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds a new experimental virtual module `astro:config` that exposes a
type-safe subset of your `astro.config.mjs` configuration

The virtual module exposes two sub-paths for controlled access to your
configuration:

- `astro:config/client`: exposes config information that is safe to
expose to the client.
- `astro:config/server`: exposes additional information that is safe to
expose to the server, such as file/dir paths.

To enable this new virtual module, add the
`experimental.serializeManifest` feature flag to your Astro config:

    ```js
    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    export default defineConfig({
      experimental: {
        serializeManifest: true,
      },
    });
    ```

Then, you can access the module in any file inside your project to
import and use values from your Astro config:

    ```js
    // src/utils.js
    import { trailingSlash } from 'astro:config/client';

    function addForwardSlash(path) {
      if (trailingSlash === 'always') {
        return path.endsWith('/') ? path : path + '/';
      } else {
        return path;
      }
    }
    ```

For a complete overview, and to give feedback on this experimental API,
see the [Serialized Manifest
RFC](https://redirect.github.com/withastro/roadmap/blob/feat/serialised-config/proposals/0051-serialized-manifest.md).

##### Patch Changes

-
[#&#8203;13049](https://redirect.github.com/withastro/astro/pull/13049)
[`2ed4bd9`](https://redirect.github.com/withastro/astro/commit/2ed4bd90f25a3e5a183d0bc862e3b359b8289b93)
Thanks
[@&#8203;florian-lefebvre](https://redirect.github.com/florian-lefebvre)!
- Updates `astro add tailwind` to add the `@tailwindcss/vite` plugin
instead of the `@astrojs/tailwind` integration

-
[#&#8203;12994](https://redirect.github.com/withastro/astro/pull/12994)
[`5361755`](https://redirect.github.com/withastro/astro/commit/536175528dbbe75aa978d615ba2517b64bad7879)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Returns a more helpful 404 page in dev if there is a trailing slash
mismatch between the route requested and the `trailingSlash`
configuration

-
[#&#8203;12666](https://redirect.github.com/withastro/astro/pull/12666)
[`037495d`](https://redirect.github.com/withastro/astro/commit/037495d437d2328bf10ffadc22cc114ccf474c65)
Thanks [@&#8203;Thodor12](https://redirect.github.com/Thodor12)! - Added
additional generated typings for the content layer

- Updated dependencies
\[[`5361755`](https://redirect.github.com/withastro/astro/commit/536175528dbbe75aa978d615ba2517b64bad7879),
[`db252e0`](https://redirect.github.com/withastro/astro/commit/db252e0692a0addf7239bfefc0220c525d63337d)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@&#8203;0](https://redirect.github.com/0).5.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;6](https://redirect.github.com/6).1.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
2025-02-01 04:19:25 +01:00
TrueCharts Bot 8f09e73569 fix(website): update starlight-links-validator 0.14.1 → 0.14.2 (#31450)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[starlight-links-validator](https://redirect.github.com/HiDeoo/starlight-links-validator)
([source](https://redirect.github.com/HiDeoo/starlight-links-validator/tree/HEAD/packages/starlight-links-validator))
| dependencies | patch | [`0.14.1` ->
`0.14.2`](https://renovatebot.com/diffs/npm/starlight-links-validator/0.14.1/0.14.2)
|

---

> [!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.

---

### Release Notes

<details>
<summary>HiDeoo/starlight-links-validator
(starlight-links-validator)</summary>

###
[`v0.14.2`](https://redirect.github.com/HiDeoo/starlight-links-validator/blob/HEAD/packages/starlight-links-validator/CHANGELOG.md#0142)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/starlight-links-validator@0.14.1...starlight-links-validator@0.14.2)

##### Patch Changes

-
[#&#8203;85](https://redirect.github.com/HiDeoo/starlight-links-validator/pull/85)
[`57fdb1b`](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/57fdb1b2f85f023e4b053480fd9ea5adb69a9e2a)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Improves
error message for invalid links to custom pages.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-02-01 04:09:23 +01:00
Kjeld Schouten 3ecbaf65f3 Update astro.config.mjs
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-01-30 15:03:14 +01:00
Kjeld Schouten a56d2f36f2 Update authors.ts
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-01-30 14:07:15 +01:00
Kjeld Schouten 62189ebb34 Update astro.config.mjs
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-01-30 13:22:30 +01:00
Kjeld Schouten 204fbfff5d Update and rename _2025-01-05-2025-start.md to 2025-01-30-2025-start.md
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2025-01-30 12:46:52 +01:00
TrueCharts Bot 0a1a3a1d09 fix(website): update astro 5.1.9 → 5.1.10 (#31318) 2025-01-28 02:54:23 +01:00
TrueCharts Bot 46515e8782 chore(website): lock file maintenance (#31263)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

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

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (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.

👻 **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJyZW5vdmF0ZS9jb250YWluZXIiXX0=-->
2025-01-27 11:28:57 +01:00
TrueCharts Bot 671d425ff1 chore(website): lock file maintenance (#29530)
This PR contains the following updates:

| Update | Change |
|---|---|
| lockFileMaintenance | All locks refreshed |

---

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

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" (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.

👻 **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNyIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==-->
2025-01-25 09:05:46 +01:00
TrueCharts Bot 106a23369f fix(website): update @playform/compress 0.1.1 → 0.1.7 (#31148)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@playform/compress](https://redirect.github.com/PlayForm/Compress) |
dependencies | patch | [`0.1.1` ->
`0.1.7`](https://renovatebot.com/diffs/npm/@playform%2fcompress/0.1.1/0.1.7)
|

---

> [!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.

---

### Release Notes

<details>
<summary>PlayForm/Compress (@&#8203;playform/compress)</summary>

###
[`v0.1.7`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#017)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/043ced67e7e6ab4fc8594edf2702e834887ed015...c7d77c36f9704d08bb729c8fa5587aa807c3ef3f)

##### Added

-   Dependents stats for PlayForm/Compress badge to `README.md`.
- `DEPENDENTS.md` file containing a list of repositories that depend on
this
    package.

##### Changed

- Updated `package.json` to include updated contact information and
package
    dependencies.
- Updated `README.md` to reflect the updated organization name in the
URLs and
    images.

##### Fixed

- Corrected a bug in `Source/Function/Integration.ts` where
`Cache.Search` was
    not being set correctly.

###
[`v0.1.6`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#016)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/a521ab429adf5c90f5b2f052eab191f0af144b3e...043ced67e7e6ab4fc8594edf2702e834887ed015)

##### Added

-   New Configuration folder with ESBuild.js and ESBuild.ts files
-   Added browserslist as a development dependency

##### Changed

-   Updated .npmignore to exclude the Configuration/ directory
-   Modified package.json scripts to use the new ESBuild configuration
-   Updated version to 0.1.6
- Enhanced error handling in CSS compression in
Source/Function/Integration.ts
- Updated Source/Interface/CSS/lightningcss.ts to set default value for
    unusedSymbols
-   Added targets to Source/Variable/CSS/lightningcss.ts

###
[`v0.1.5`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#015)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/1267d3c7f8124b9da1567a27ee5755a81e7535a9...a521ab429adf5c90f5b2f052eab191f0af144b3e)

##### Changed

-   Updated dependencies
-   Typings update

###
[`v0.1.4`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#014)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/661bc5bc86b65a7d5a70d057676cf6ee1a328eba...1267d3c7f8124b9da1567a27ee5755a81e7535a9)

##### Fixed

-   Fixes missing `Pipe.js`

###
[`v0.1.3`](https://redirect.github.com/PlayForm/Compress/compare/2b9713fb8097bcddf384e3abba15d8fbccd4cdba...661bc5bc86b65a7d5a70d057676cf6ee1a328eba)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/2b9713fb8097bcddf384e3abba15d8fbccd4cdba...661bc5bc86b65a7d5a70d057676cf6ee1a328eba)

###
[`v0.1.2`](https://redirect.github.com/PlayForm/Compress/blob/HEAD/CHANGELOG.md#012)

[Compare
Source](https://redirect.github.com/PlayForm/Compress/compare/102cf84f487bbfc848632c07bf48291b7ea6559f...2b9713fb8097bcddf384e3abba15d8fbccd4cdba)

##### Added

-   New CLI functionality with `Compress` command
- New `CLI.ts` and `Pipe.ts` functions for improved command-line
operations
-   Added `commander` dependency for CLI support
-   Added `fast-glob` dependency for file pattern matching

##### Changed

-   Updated package name from `astro-compress` to `@playform/compress`
-   Updated various dependencies to their latest versions:
    -   `@playform/pipe` from 0.1.0 to 0.1.1
    -   `deepmerge-ts` from 7.1.0 to 7.1.1
    -   `lightningcss` from 1.25.1 to 1.27.0
    -   `sharp` from 0.33.4 to 0.33.5
    -   `svgo` from 4.0.0-rc.0 to 3.3.2
    -   `terser` from 5.31.3 to 5.34.1
    -   `@playform/build` from 0.1.3 to 0.1.7
-   Refactored and improved various TypeScript interfaces and types
-   Updated README with new installation instructions and badge styling
-   Updated README badges to use HTTPS URLs
-   Updated README table layout for better visual presentation
-   Updated dependency badges in README to use correct package name
    (`@playform/compress` instead of `@playform/inline`)
-   Updated README to remove unnecessary line breaks and improve spacing
- Updated `Source/Function/Image/Writesharp.ts` to simplify an import
statement
- Added `Source/Function/CLI.ts` for command-line interface
functionality
-   Added `Source/Interface/CLI.ts` to define the command-line interface
-   Updated `package.json` to include necessary CLI dependencies

##### Removed

-   Removed `Documentation/` directory (replaced with `docs/`)
-   Removed `Summary.md` file

##### Fixed

-   Various code improvements and refactoring for better type safety and
    performance
-   Fixed broken links in README badges
-   Fixed alignment and spacing issues in README table
-   Fixed incorrect package name in dependency badges

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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 has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44Ni4xIiwidXBkYXRlZEluVmVyIjoiMzkuODYuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL3BhdGNoIl19-->
2025-01-25 02:46:13 +01:00
Kjeld Schouten 015a2cbb3b more astro updates 2025-01-24 20:00:03 +01:00