Commit Graph

35722 Commits

Author SHA1 Message Date
TrueCharts Bot 2fae50be1b chore(flux): update helm release longhorn 1.7.1 → 1.7.2 by renovate (#27973)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [longhorn](https://redirect.github.com/longhorn/longhorn)
([source](https://redirect.github.com/longhorn/charts)) | patch |
`1.7.1` -> `1.7.2` |

---

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

---

### Release Notes

<details>
<summary>longhorn/charts (longhorn)</summary>

###
[`v1.7.2`](https://redirect.github.com/longhorn/charts/releases/tag/longhorn-1.7.2)

[Compare
Source](https://redirect.github.com/longhorn/charts/compare/longhorn-1.7.1...longhorn-1.7.2)

Longhorn is a distributed block storage system for Kubernetes.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2024-10-18 20:21:49 +02:00
Kjeld Schouten 4b8267e231 fix helm stuff for clustertool 2024-10-18 18:41:00 +02:00
TrueCharts Bot 5e14cb1e46 fix(website): update astro 4.15.4 → 4.16.1 [security] (#27893)
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 | [`4.15.4` ->
`4.16.1`](https://renovatebot.com/diffs/npm/astro/4.15.4/4.16.1) |

---

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

### GitHub Vulnerability Alerts

####
[CVE-2024-47885](https://redirect.github.com/withastro/astro/security/advisories/GHSA-m85w-3h95-hcf9)

### Summary

A DOM Clobbering gadget has been discoverd in Astro's client-side
router. It can lead to cross-site scripting (XSS) in websites enables
Astro's client-side routing and has *stored* attacker-controlled
scriptless HTML elements (i.e., `iframe` tags with unsanitized `name`
attributes) on the destination pages.

### Details

#### Backgrounds

DOM Clobbering is a type of code-reuse attack where the attacker first
embeds a piece of non-script, seemingly benign HTML markups in the
webpage (e.g. through a post or comment) and leverages the gadgets
(pieces of js code) living in the existing javascript code to transform
it into executable code. More for information about DOM Clobbering, here
are some references:

[1] https://scnps.co/papers/sp23_domclob.pdf
[2] https://research.securitum.com/xss-in-amp4email-dom-clobbering/

#### Gadgets found in Astro

We identified a DOM Clobbering gadget in Astro's client-side routing
module, specifically in the `<ViewTransitions />` component. When
integrated, this component introduces the following vulnerable code,
which is executed during page transitions (e.g., clicking an `<a>`
link):


https://github.com/withastro/astro/blob/7814a6cad15f06931f963580176d9b38aa7819f2/packages/astro/src/transitions/router.ts#L135-L156

However, this implementation is vulnerable to a DOM Clobbering attack.
The `document.scripts` lookup can be shadowed by an attacker injected
non-script HTML elements (e.g., `<img name="scripts"><img
name="scripts">`) via the browser's named DOM access mechanism. This
manipulation allows an attacker to replace the intended script elements
with an array of attacker-controlled scriptless HTML elements.

The condition `script.dataset.astroExec === ''` on line 138 can be
bypassed because the attacker-controlled element does not have a
data-astroExec attribute. Similarly, the check on line 134 can be
bypassed as the element does not require a `type` attribute.

Finally, the `innerHTML` of an attacker-injected non-script HTML
elements, which is plain text content before, will be set to the
`.innerHTML` of an script element that leads to XSS.

### PoC

Consider a web application using Astro as the framework with client-side
routing enabled and allowing users to embed certain scriptless HTML
elements (e.g., `form` or `iframe`). This can be done through a bunch of
website's feature that allows users to embed certain script-less HTML
(e.g., markdown renderers, web email clients, forums) or via an HTML
injection vulnerability in third-party JavaScript loaded on the page.

For PoC website, please refer to:
`https://stackblitz.com/edit/github-4xgj2d`. Clicking the "about" button
in the menu will trigger an `alert(1)` from an attacker-injected `form`
element.

```
---
import Header from "../components/Header.astro";
import Footer from "../components/Footer.astro";
import { ViewTransitions } from "astro:transitions";
import "../styles/global.css";
const { pageTitle } = Astro.props;
---
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
    <meta name="viewport" content="width=device-width" />
    <meta name="generator" content={Astro.generator} />
    <title>{pageTitle}</title>
    <ViewTransitions />
  </head>
  <body>
    <!--USER INPUT-->
    <iframe name="scripts">alert(1)</iframe>
    <iframe name="scripts">alert(1)</iframe>
    <!--USER INPUT-->
    
    <Header />
    <h1>{pageTitle}</h1>
    <slot />
    <Footer />
    <script>
      import "../scripts/menu.js";
    </script>
  </body>
</html>
```

### Impact

This vulnerability can result in cross-site scripting (XSS) attacks on
websites that built with Astro that enable the client-side routing with
`ViewTransitions` and store the user-inserted scriptless HTML tags
without properly sanitizing the `name` attributes on the page.

### Patch

We recommend replacing `document.scripts` with
`document.getElementsByTagName('script')` for referring to script
elements. This will mitigate the possibility of DOM Clobbering attacks
leveraging the `name` attribute.

### Reference

Similar issues for reference:
+ Webpack
([CVE-2024-43788](https://redirect.github.com/webpack/webpack/security/advisories/GHSA-4vvj-4cpr-p986))
+ Vite
([CVE-2024-45812](https://redirect.github.com/vitejs/vite/security/advisories/GHSA-64vr-g452-qvp3))
+ layui
([CVE-2024-47075](https://redirect.github.com/layui/layui/security/advisories/GHSA-j827-6rgf-9629))

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

---

### Release Notes

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

###
[`v4.16.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4161)

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

##### Patch Changes

-
[#&#8203;12177](https://redirect.github.com/withastro/astro/pull/12177)
[`a4ffbfa`](https://redirect.github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e)
Thanks [@&#8203;matthewp](https://redirect.github.com/matthewp)! -
Ensure we target scripts for execution in the router

Using `document.scripts` is unsafe because if the application has a
`name="scripts"` this will shadow the built-in `document.scripts`. Fix
is to use `getElementsByTagName` to ensure we're only grabbing real
scripts.

-
[#&#8203;12173](https://redirect.github.com/withastro/astro/pull/12173)
[`2d10de5`](https://redirect.github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where Astro Actions couldn't redirect to the correct
pathname when there was a rewrite involved.

###
[`v4.16.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4160)

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

##### Minor Changes

-
[#&#8203;12039](https://redirect.github.com/withastro/astro/pull/12039)
[`710a1a1`](https://redirect.github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds a `markdown.shikiConfig.langAlias` option that allows [aliasing a
non-supported code language to a known
language](https://shiki.style/guide/load-lang#custom-language-aliases).
This is useful when the language of your code samples is not [a built-in
Shiki language](https://shiki.style/languages), but you want your
Markdown source to contain an accurate language while also displaying
syntax highlighting.

The following example configures Shiki to highlight `cjs` code blocks
using the `javascript` syntax highlighter:

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

    export default defineConfig({
      markdown: {
        shikiConfig: {
          langAlias: {
            cjs: 'javascript',
          },
        },
      },
    });
    ```

Then in your Markdown, you can use the alias as the language for a code
block for syntax highlighting:

    ````md
    ```cjs
    'use strict';

    function commonJs() {
      return 'I am a commonjs file';
    }
    ```
    ````

-
[#&#8203;11984](https://redirect.github.com/withastro/astro/pull/11984)
[`3ac2263`](https://redirect.github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe)
Thanks [@&#8203;chaegumi](https://redirect.github.com/chaegumi)! - Adds
a new `build.concurreny` configuration option to specify the number of
pages to build in parallel

    **In most cases, you should not change the default value of `1`.**

Use this option only when other attempts to reduce the overall rendering
time (e.g. batch or cache long running tasks like fetch calls or data
access) are not possible or are insufficient.

Use this option only if the refactors are not possible. If the number is
set too high, the page rendering may slow down due to insufficient
memory resources and because JS is single-threaded.

    > \[!WARNING]
> This feature is stable and is not considered experimental. However,
this feature is only intended to address difficult performance issues,
and breaking changes may occur in a [minor
release](https://docs.astro.build/en/upgrade-astro/#semantic-versioning)
to keep this option as performant as possible.

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

    export default defineConfig({
      build: {
        concurrency: 2,
      },
    });
    ```

##### Patch Changes

-
[#&#8203;12160](https://redirect.github.com/withastro/astro/pull/12160)
[`c6fd1df`](https://redirect.github.com/withastro/astro/commit/c6fd1df695d0f2a24bb49e6954064f92664ccf67)
Thanks [@&#8203;louisescher](https://redirect.github.com/louisescher)! -
Fixes a bug where `astro.config.mts` and `astro.config.cts` weren't
reloading the dev server upon modifications.

-
[#&#8203;12130](https://redirect.github.com/withastro/astro/pull/12130)
[`e96bcae`](https://redirect.github.com/withastro/astro/commit/e96bcae535ef2f0661f539c1d49690c531df2d4e)
Thanks [@&#8203;thehansys](https://redirect.github.com/thehansys)! -
Fixes a bug in the parsing of `x-forwarded-\*` `Request` headers, where
multiple values assigned to those headers were not correctly parsed.

Now, headers like `x-forwarded-proto: https,http` are correctly parsed.

-
[#&#8203;12147](https://redirect.github.com/withastro/astro/pull/12147)
[`9db755a`](https://redirect.github.com/withastro/astro/commit/9db755ab7cfe658ec426387e297bdcd32c4bc8de)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Skips
setting statusMessage header for HTTP/2 response

HTTP/2 doesn't support status message, so setting this was logging a
warning.

-
[#&#8203;12151](https://redirect.github.com/withastro/astro/pull/12151)
[`bb6d37f`](https://redirect.github.com/withastro/astro/commit/bb6d37f94a283433994f9243189cb4386df0e11a)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where `Astro.currentLocale` wasn't incorrectly computed
when the `defaultLocale` belonged to a custom locale path.

- Updated dependencies
\[[`710a1a1`](https://redirect.github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b)]:
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;5](https://redirect.github.com/5).3.0

###
[`v4.15.12`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#41512)

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

##### Patch Changes

-
[#&#8203;12121](https://redirect.github.com/withastro/astro/pull/12121)
[`2490ceb`](https://redirect.github.com/withastro/astro/commit/2490cebdb93f13ee552cffa72b2e274d64e6b4a7)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Support passing the values `Infinity` and `-Infinity` as island props.

-
[#&#8203;12118](https://redirect.github.com/withastro/astro/pull/12118)
[`f47b347`](https://redirect.github.com/withastro/astro/commit/f47b347da899c6e1dcd0b2e7887f7fce6ec8e270)
Thanks [@&#8203;Namchee](https://redirect.github.com/Namchee)! - Removes
the `strip-ansi` dependency in favor of the native Node API

-
[#&#8203;12126](https://redirect.github.com/withastro/astro/pull/12126)
[`6e1dfeb`](https://redirect.github.com/withastro/astro/commit/6e1dfeb76bec09d24928bab798c6ad3280f42e84)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Clear
content layer cache when astro version changes

-
[#&#8203;12117](https://redirect.github.com/withastro/astro/pull/12117)
[`a46839a`](https://redirect.github.com/withastro/astro/commit/a46839a5c818b7de63c36d0c7e27f1a8f3b773dc)
Thanks
[@&#8203;ArmandPhilippot](https://redirect.github.com/ArmandPhilippot)!
- Updates Vite links to use their new domain

-
[#&#8203;12124](https://redirect.github.com/withastro/astro/pull/12124)
[`499fbc9`](https://redirect.github.com/withastro/astro/commit/499fbc91a6bdad8c86ff13a8caf1fa09433796b9)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Allows special characters in Action names

-
[#&#8203;12123](https://redirect.github.com/withastro/astro/pull/12123)
[`b8673df`](https://redirect.github.com/withastro/astro/commit/b8673df51c6cc4ce6a288f8eb609b7a438a07d82)
Thanks [@&#8203;Princesseuh](https://redirect.github.com/Princesseuh)! -
Fixes missing `body` property on CollectionEntry types for content layer
entries

-
[#&#8203;12132](https://redirect.github.com/withastro/astro/pull/12132)
[`de35daa`](https://redirect.github.com/withastro/astro/commit/de35daa8517555c1b9c72bc7fe9cc955c4997a83)
Thanks [@&#8203;jcayzac](https://redirect.github.com/jcayzac)! - Updates
the [`cookie`](https://npmjs.com/package/cookie) dependency to avoid the
[CVE 2024-47764](https://nvd.nist.gov/vuln/detail/CVE-2024-47764)
vulnerability.

-
[#&#8203;12113](https://redirect.github.com/withastro/astro/pull/12113)
[`a54e520`](https://redirect.github.com/withastro/astro/commit/a54e520d3c139fa123e7029c5933951b5c7f5a39)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Adds
a helpful error when attempting to render an undefined collection entry

###
[`v4.15.11`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#41511)

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

##### Patch Changes

-
[#&#8203;12097](https://redirect.github.com/withastro/astro/pull/12097)
[`11d447f`](https://redirect.github.com/withastro/astro/commit/11d447f66b1a0f39489c2600139ebfb565336ce7)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
error where references in content layer schemas sometimes incorrectly
report as missing

-
[#&#8203;12108](https://redirect.github.com/withastro/astro/pull/12108)
[`918953b`](https://redirect.github.com/withastro/astro/commit/918953bd09f057131dfe029e810019c0909345cf)
Thanks [@&#8203;lameuler](https://redirect.github.com/lameuler)! - Fixes
a bug where [data URL
images](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data)
were not correctly handled. The bug resulted in an `ENAMETOOLONG` error.

-
[#&#8203;12105](https://redirect.github.com/withastro/astro/pull/12105)
[`42037f3`](https://redirect.github.com/withastro/astro/commit/42037f33e644d5a2bfba71377697fc7336ecb15b)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Returns custom statusText that has been set in a Response

-
[#&#8203;12109](https://redirect.github.com/withastro/astro/pull/12109)
[`ea22558`](https://redirect.github.com/withastro/astro/commit/ea225585fd12d27006434266163512ca66ad572b)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a regression that was introduced by an internal refactor of how
the middleware is loaded by the Astro application. The regression was
introduced by
[#&#8203;11550](https://redirect.github.com/withastro/astro/pull/11550).

When the edge middleware feature is opted in, Astro removes the
middleware function from the SSR manifest, and this wasn't taken into
account during the refactor.

-
[#&#8203;12106](https://redirect.github.com/withastro/astro/pull/12106)
[`d3a74da`](https://redirect.github.com/withastro/astro/commit/d3a74da19644477ffc81acf2a3efb26ad3335a5e)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Handles case where an immutable Response object is returned from an
endpoint

-
[#&#8203;12090](https://redirect.github.com/withastro/astro/pull/12090)
[`d49a537`](https://redirect.github.com/withastro/astro/commit/d49a537f2aaccd132154a15f1da4db471272ee90)
Thanks [@&#8203;markjaquith](https://redirect.github.com/markjaquith)! -
Server islands: changes the server island HTML placeholder comment so
that it is much less likely to get removed by HTML minifiers.

###
[`v4.15.10`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#41510)

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

##### Patch Changes

-
[#&#8203;12084](https://redirect.github.com/withastro/astro/pull/12084)
[`12dae50`](https://redirect.github.com/withastro/astro/commit/12dae50c776474748a80cb65c8bf1c67f0825cb0)
Thanks [@&#8203;Princesseuh](https://redirect.github.com/Princesseuh)! -
Adds missing filePath property on content layer entries

-
[#&#8203;12046](https://redirect.github.com/withastro/astro/pull/12046)
[`d7779df`](https://redirect.github.com/withastro/astro/commit/d7779dfae7bc00ff94b1e4596ff5b4897f65aabe)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - View
transitions: Fixes Astro's fade animation to prevent flashing during
morph transitions.

-
[#&#8203;12043](https://redirect.github.com/withastro/astro/pull/12043)
[`1720c5b`](https://redirect.github.com/withastro/astro/commit/1720c5b1d2bfd106ad065833823aed622bee09bc)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Fixes
injected endpoint `prerender` option detection

-
[#&#8203;12095](https://redirect.github.com/withastro/astro/pull/12095)
[`76c5fbd`](https://redirect.github.com/withastro/astro/commit/76c5fbd6f3a8d41367f1d7033278d133d518213b)
Thanks [@&#8203;TheOtterlord](https://redirect.github.com/TheOtterlord)!
- Fix installing non-stable versions of integrations with `astro add`

###
[`v4.15.9`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4159)

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

##### Patch Changes

-
[#&#8203;12034](https://redirect.github.com/withastro/astro/pull/12034)
[`5b3ddfa`](https://redirect.github.com/withastro/astro/commit/5b3ddfadcb2d09b6cbd9cd42641f30ca565d0f58)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where the middleware wasn't called when a project uses
`404.astro`.

-
[#&#8203;12042](https://redirect.github.com/withastro/astro/pull/12042)
[`243ecb6`](https://redirect.github.com/withastro/astro/commit/243ecb6d6146dc483b4726d0e76142fb25e56243)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a problem in the Container API, where a polyfill wasn't correctly
applied. This caused an issue in some environments where `crypto` isn't
supported.

-
[#&#8203;12038](https://redirect.github.com/withastro/astro/pull/12038)
[`26ea5e8`](https://redirect.github.com/withastro/astro/commit/26ea5e814ab8c973e683fff62389fda28c180940)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Resolves image paths in content layer with initial slash as
project-relative

When using the `image()` schema helper, previously paths with an initial
slash were treated as public URLs. This was to match the behavior of
markdown images. However this is a change from before, where paths with
an initial slash were treated as project-relative. This change restores
the previous behavior, so that paths with an initial slash are treated
as project-relative.

###
[`v4.15.8`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4158)

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

##### Patch Changes

-
[#&#8203;12014](https://redirect.github.com/withastro/astro/pull/12014)
[`53cb41e`](https://redirect.github.com/withastro/astro/commit/53cb41e30ea5768bf33d9f6be608fb57d31b7b9e)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
an issue where component styles were not correctly included in rendered
MDX

-
[#&#8203;12031](https://redirect.github.com/withastro/astro/pull/12031)
[`8c0cae6`](https://redirect.github.com/withastro/astro/commit/8c0cae6d1bd70b332286d83d0f01cfce5272fbbe)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where the rewrite via `next(/*..*/)` inside a middleware
didn't compute the new `APIContext.params`

-
[#&#8203;12026](https://redirect.github.com/withastro/astro/pull/12026)
[`40e7a1b`](https://redirect.github.com/withastro/astro/commit/40e7a1b05d9e5ea3fcda176c9663bbcff86edb63)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Initializes
the Markdown processor only when there's `.md` files

-
[#&#8203;12028](https://redirect.github.com/withastro/astro/pull/12028)
[`d3bd673`](https://redirect.github.com/withastro/astro/commit/d3bd673392e63720e241d6a002a131a3564c169c)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Handles
route collision detection only if it matches `getStaticPaths`

-
[#&#8203;12027](https://redirect.github.com/withastro/astro/pull/12027)
[`dd3b753`](https://redirect.github.com/withastro/astro/commit/dd3b753aba6400558671d85214e27b8e4fb1654b)
Thanks [@&#8203;fviolette](https://redirect.github.com/fviolette)! - Add
`selected` to the list of boolean attributes

-
[#&#8203;12001](https://redirect.github.com/withastro/astro/pull/12001)
[`9be3e1b`](https://redirect.github.com/withastro/astro/commit/9be3e1bba789af96d8b21d9c8eca8542cfb4ff77)
Thanks [@&#8203;uwej711](https://redirect.github.com/uwej711)! - Remove
dependency on path-to-regexp

###
[`v4.15.7`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4157)

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

##### Patch Changes

-
[#&#8203;12000](https://redirect.github.com/withastro/astro/pull/12000)
[`a2f8c5d`](https://redirect.github.com/withastro/astro/commit/a2f8c5d85ff15803f5cedf9148cd70ffc138ddef)
Thanks
[@&#8203;ArmandPhilippot](https://redirect.github.com/ArmandPhilippot)!
- Fixes an outdated link used to document Content Layer API

-
[#&#8203;11915](https://redirect.github.com/withastro/astro/pull/11915)
[`0b59fe7`](https://redirect.github.com/withastro/astro/commit/0b59fe74d5922c572007572ddca8d11482e2fb5c)
Thanks [@&#8203;azhirov](https://redirect.github.com/azhirov)! - Fix:
prevent island from re-rendering when using transition:persist
([#&#8203;11854](https://redirect.github.com/withastro/astro/issues/11854))

###
[`v4.15.6`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4156)

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

##### Patch Changes

-
[#&#8203;11993](https://redirect.github.com/withastro/astro/pull/11993)
[`ffba5d7`](https://redirect.github.com/withastro/astro/commit/ffba5d716edcdfc42899afaa4188b7a4cd0c91eb)
Thanks [@&#8203;matthewp](https://redirect.github.com/matthewp)! - Fix
getStaticPaths regression

This reverts a previous change meant to remove a dependency, to fix a
regression with multiple nested spread routes.

-
[#&#8203;11964](https://redirect.github.com/withastro/astro/pull/11964)
[`06eff60`](https://redirect.github.com/withastro/astro/commit/06eff60cabb55d91fe4075421b1693b1ab33225c)
Thanks [@&#8203;TheOtterlord](https://redirect.github.com/TheOtterlord)!
- Add wayland (wl-copy) support to `astro info`

###
[`v4.15.5`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4155)

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

##### Patch Changes

-
[#&#8203;11939](https://redirect.github.com/withastro/astro/pull/11939)
[`7b09c62`](https://redirect.github.com/withastro/astro/commit/7b09c62b565cd7b50c35fb68d390729f936a43fb)
Thanks [@&#8203;bholmesdev](https://redirect.github.com/bholmesdev)! -
Adds support for Zod discriminated unions on Action form inputs. This
allows forms with different inputs to be submitted to the same action,
using a given input to decide which object should be used for
validation.

This example accepts either a `create` or `update` form submission, and
uses the `type` field to determine which object to validate against.

    ```ts
    import { defineAction } from 'astro:actions';
    import { z } from 'astro:schema';

    export const server = {
      changeUser: defineAction({
        accept: 'form',
        input: z.discriminatedUnion('type', [
          z.object({
            type: z.literal('create'),
            name: z.string(),
            email: z.string().email(),
          }),
          z.object({
            type: z.literal('update'),
            id: z.number(),
            name: z.string(),
            email: z.string().email(),
          }),
        ]),
        async handler(input) {
          if (input.type === 'create') {
            // input is { type: 'create', name: string, email: string }
          } else {
// input is { type: 'update', id: number, name: string, email: string }
          }
        },
      }),
    };
    ```

    The corresponding `create` and `update` forms may look like this:

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "" (UTC), 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 18:27:36 +02:00
TrueCharts Bot 39242bf39a chore(helm): update image ghcr.io/kiwix/kiwix-serve → by renovate (#27967)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/kiwix/kiwix-serve](https://redirect.github.com/openzim/kiwix-tools)
| digest | `355dcce` -> `ebf9b93` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-10-18 18:22:08 +02:00
TrueCharts Bot 911f101bc6 chore(helm): update image yacy/yacy_search_server → by renovate (#27954)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| yacy/yacy_search_server | digest | `93a0949` -> `194027c` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-10-18 09:14:37 -07:00
TrueCharts Bot 20f0335e41 chore(helm): update image pepperlabs/peppermint → by renovate (#27952)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| pepperlabs/peppermint | digest | `0466dfc` -> `a10de84` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-10-18 09:14:10 -07:00
TrueCharts Bot b1b73c2458 chore(helm): update image homeassistant/home-assistant 2024.10.2 → 2024.10.3 by renovate (#27965)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [homeassistant/home-assistant](https://www.home-assistant.io/)
([source](https://redirect.github.com/home-assistant/core)) | patch |
`a6b2a25` -> `a880ef8` |

---

> [!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>home-assistant/core (homeassistant/home-assistant)</summary>

###
[`v2024.10.3`](https://redirect.github.com/home-assistant/core/releases/tag/2024.10.3)

[Compare
Source](https://redirect.github.com/home-assistant/core/compare/2024.10.2...2024.10.3)

- Update home-assistant-bluetooth to 1.13.0 ([@&#8203;cdce8p] -
[#&#8203;127691]) (dependency)
- Fix printer uptime fluctuations in IPP ([@&#8203;mib1185] -
[#&#8203;127725]) ([ipp docs])
- Improve discovery of WMS WebControl pro by updating IP address
([@&#8203;mback2k] - [#&#8203;128007]) ([wmspro docs])
- Use the same ZHA database path during startup and when loading device
triggers ([@&#8203;puddly] - [#&#8203;128130]) ([zha docs])
- Fix playing media via roku ([@&#8203;ctalkington] - [#&#8203;128133])
([roku docs])
- Bump yt-dlp to 2024.10.07 ([@&#8203;joostlek] - [#&#8203;128182])
([media_extractor docs]) (dependency)
- Fix daikin entities not refreshing quickly ([@&#8203;adampetrovic] -
[#&#8203;128230]) ([daikin docs])
- Keep the provided name when creating a tag ([@&#8203;silamon] -
[#&#8203;128240]) ([tag docs])
- Update aioairzone to v0.9.4 ([@&#8203;Noltari] - [#&#8203;127792])
([airzone docs]) (dependency)
- Update aioairzone to v0.9.5 ([@&#8203;Noltari] - [#&#8203;128265])
([airzone docs]) (dependency)
- Bump gcal_sync to 6.1.6 ([@&#8203;allenporter] - [#&#8203;128270])
([google docs]) (dependency)
- Bump solarlog_cli to 0.3.2 ([@&#8203;dontinelli] - [#&#8203;128293])
([solarlog docs]) (dependency)
- Bump pyblu to 1.0.4 ([@&#8203;LouisChrist] - [#&#8203;128482])
([bluesound docs])
- Increase Z-Wave fallback thermostat range to 0-50 C
([@&#8203;MindFreeze] - [#&#8203;128543]) ([zwave_js docs])
- Bump pyotgw to 2.2.2 ([@&#8203;mvn23] - [#&#8203;128594])
([opentherm_gw docs]) (dependency)

[#&#8203;126782]:
https://redirect.github.com/home-assistant/core/pull/126782

[#&#8203;127566]:
https://redirect.github.com/home-assistant/core/pull/127566

[#&#8203;127691]:
https://redirect.github.com/home-assistant/core/pull/127691

[#&#8203;127725]:
https://redirect.github.com/home-assistant/core/pull/127725

[#&#8203;127792]:
https://redirect.github.com/home-assistant/core/pull/127792

[#&#8203;128007]:
https://redirect.github.com/home-assistant/core/pull/128007

[#&#8203;128130]:
https://redirect.github.com/home-assistant/core/pull/128130

[#&#8203;128133]:
https://redirect.github.com/home-assistant/core/pull/128133

[#&#8203;128176]:
https://redirect.github.com/home-assistant/core/pull/128176

[#&#8203;128182]:
https://redirect.github.com/home-assistant/core/pull/128182

[#&#8203;128230]:
https://redirect.github.com/home-assistant/core/pull/128230

[#&#8203;128240]:
https://redirect.github.com/home-assistant/core/pull/128240

[#&#8203;128265]:
https://redirect.github.com/home-assistant/core/pull/128265

[#&#8203;128270]:
https://redirect.github.com/home-assistant/core/pull/128270

[#&#8203;128293]:
https://redirect.github.com/home-assistant/core/pull/128293

[#&#8203;128482]:
https://redirect.github.com/home-assistant/core/pull/128482

[#&#8203;128543]:
https://redirect.github.com/home-assistant/core/pull/128543

[#&#8203;128594]:
https://redirect.github.com/home-assistant/core/pull/128594

[@&#8203;LouisChrist]: https://redirect.github.com/LouisChrist

[@&#8203;MindFreeze]: https://redirect.github.com/MindFreeze

[@&#8203;Noltari]: https://redirect.github.com/Noltari

[@&#8203;adampetrovic]: https://redirect.github.com/adampetrovic

[@&#8203;allenporter]: https://redirect.github.com/allenporter

[@&#8203;cdce8p]: https://redirect.github.com/cdce8p

[@&#8203;ctalkington]: https://redirect.github.com/ctalkington

[@&#8203;dontinelli]: https://redirect.github.com/dontinelli

[@&#8203;frenck]: https://redirect.github.com/frenck

[@&#8203;joostlek]: https://redirect.github.com/joostlek

[@&#8203;mback2k]: https://redirect.github.com/mback2k

[@&#8203;mib1185]: https://redirect.github.com/mib1185

[@&#8203;mvn23]: https://redirect.github.com/mvn23

[@&#8203;puddly]: https://redirect.github.com/puddly

[@&#8203;silamon]: https://redirect.github.com/silamon

[abode docs]: https://www.home-assistant.io/integrations/abode/

[accuweather docs]:
https://www.home-assistant.io/integrations/accuweather/

[acmeda docs]: https://www.home-assistant.io/integrations/acmeda/

[actiontec docs]: https://www.home-assistant.io/integrations/actiontec/

[adax docs]: https://www.home-assistant.io/integrations/adax/

[ads docs]: https://www.home-assistant.io/integrations/ads/

[airzone docs]: https://www.home-assistant.io/integrations/airzone/

[bluesound docs]: https://www.home-assistant.io/integrations/bluesound/

[daikin docs]: https://www.home-assistant.io/integrations/daikin/

[google docs]: https://www.home-assistant.io/integrations/google/

[ipp docs]: https://www.home-assistant.io/integrations/ipp/

[media_extractor docs]:
https://www.home-assistant.io/integrations/media_extractor/

[opentherm_gw docs]:
https://www.home-assistant.io/integrations/opentherm_gw/

[roku docs]: https://www.home-assistant.io/integrations/roku/

[solarlog docs]: https://www.home-assistant.io/integrations/solarlog/

[tag docs]: https://www.home-assistant.io/integrations/tag/

[wmspro docs]: https://www.home-assistant.io/integrations/wmspro/

[zha docs]: https://www.home-assistant.io/integrations/zha/

[zwave_js docs]: https://www.home-assistant.io/integrations/zwave_js/

</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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2024-10-18 17:54:21 +02:00
TrueCharts Bot b8a4a9a05c chore(helm): update image diygod/rsshub → by renovate (#27964)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| diygod/rsshub | digest | `ebd6627` -> `e1ab083` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-10-18 17:53:53 +02:00
kqmaverick 3dcd1f9ded feat(archive): move deprecated to archive (#27963)
**Description**
Moves deprecated charts to archive.

⚒️ Fixes  # 

**⚙️ 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?**

**📃 Notes:**

**✔️ 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
- [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._
2024-10-18 17:40:15 +02:00
Kjeld Schouten c77402fb98 loose meshroom versioning 2024-10-18 17:32:52 +02:00
kqmaverick 21e3e6d2d3 fix(convos): fix image (#27961)
**Description**
Fix convos image

⚒️ Fixes  # 

**⚙️ 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?**

**📃 Notes:**

**✔️ 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
- [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._
2024-10-18 15:28:38 +00:00
Kjeld Schouten 47942bb38d Delete charts/stable/promcord/ci directory
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:22:02 +02:00
Kjeld Schouten 2cedee76fd Update values.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:21:21 +02:00
Kjeld Schouten 5c7f88afd1 Update values.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:19:59 +02:00
Kjeld Schouten 9a9b758330 chore(shaarli): fix version
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:18:36 +02:00
Kjeld Schouten dd7c6bfe09 chore(xmrig): fix version
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:17:32 +02:00
Kjeld Schouten b40974beda chore(csr-approver): bump chart version (#27962)
**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: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:16:17 +02:00
Kjeld Schouten ca98530dfa chore(csr-approver): fix version of container
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:14:59 +02:00
Kjeld Schouten 1a1a84221b chore(freeradius): deprecate due to broken image
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 17:12:24 +02:00
kqmaverick 2f68713cb6 fix(anki-sync-server): fix image (#27959)
**Description**
Fix anki-sync-server image

⚒️ 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?**

**📃 Notes:**

**✔️ 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
- [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._
2024-10-18 17:10:31 +02:00
kqmaverick 50e0c521b3 feat(automatic-music-downloader): deprecate (#27960)
**Description**
Project is dead and image has been removed.

⚒️ Fixes  #

**⚙️ 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?**

**📃 Notes:**

**✔️ 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
- [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._
2024-10-18 17:10:17 +02:00
kqmaverick f3a84e03ce fix(semaphore): fix image (#27957)
**Description**
Fix the semaphore image.

⚒️ Fixes  # 

**⚙️ 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?**

**📃 Notes:**

**✔️ 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
- [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._
2024-10-18 17:09:31 +02:00
TrueCharts Bot ba44de98ab chore(helm): update image ghcr.io/manyfold3d/manyfold 0.84.0 → 0.84.1 by renovate (#27955)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/manyfold3d/manyfold](https://redirect.github.com/manyfold3d/manyfold)
| patch | `66d0785` -> `3fc3dc6` |

---

> [!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>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary>

###
[`v0.84.1`](https://redirect.github.com/manyfold3d/manyfold/releases/tag/v0.84.1)

[Compare
Source](https://redirect.github.com/manyfold3d/manyfold/compare/v0.84.0...v0.84.1)

A small fix for data migration when upgrading very outdated instances.

#### What's Changed

##### 🐛 Bug Fixes 🐛

- Skip validations while attaching files in migration by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/2986](https://redirect.github.com/manyfold3d/manyfold/pull/2986)

**Full Changelog**:
https://github.com/manyfold3d/manyfold/compare/v0.84.0...v0.84.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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2024-10-18 08:09:18 -07:00
TrueCharts Bot e561dd7d9b chore(helm): update image stonith404/pingvin-share v1.2.1 → v1.2.2 by renovate (#27958)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| stonith404/pingvin-share | patch | `2639387` -> `5a0b36f` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2024-10-18 17:01:51 +02:00
Kjeld Schouten f5ae9cdb52 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:47:11 +02:00
TrueCharts Bot 0e2a6aa50f chore(helm): update image victoriametrics/victoria-metrics v1.104.0 → v1.105.0 by renovate (#27956)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| victoriametrics/victoria-metrics | minor | `4a03f28` -> `e2ad596` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 16:46:44 +02:00
Kjeld Schouten 2240622942 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:46:08 +02:00
Kjeld Schouten e7a015fc18 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:42:56 +02:00
Kjeld Schouten 0b12f274aa Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:40:52 +02:00
Kjeld Schouten ec942fd3cb Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:33:50 +02:00
Kjeld Schouten 69af7b0390 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:32:36 +02:00
Kjeld Schouten f405a59e95 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:28:15 +02:00
Kjeld Schouten accd12e33c Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 16:17:48 +02:00
Kjeld Schouten 7290a08fe1 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 15:29:24 +02:00
TrueCharts Bot d6f9d01f8b fix(website): update @astrojs/starlight 0.27.1 → 0.28.3 by renovate (#27911)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@astrojs/starlight](https://starlight.astro.build)
([source](https://redirect.github.com/withastro/starlight/tree/HEAD/packages/starlight))
| dependencies | minor | [`0.27.1` ->
`0.28.3`](https://renovatebot.com/diffs/npm/@astrojs%2fstarlight/0.27.1/0.28.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/starlight (@&#8203;astrojs/starlight)</summary>

###
[`v0.28.3`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0283)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.28.2...@astrojs/starlight@0.28.3)

##### Patch Changes

-
[#&#8203;2408](https://redirect.github.com/withastro/starlight/pull/2408)
[`0b4823d`](https://redirect.github.com/withastro/starlight/commit/0b4823d534abe517fac5efd97f6febb5965714fe)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes a
link formatting issue when using the Astro `build.format` option set to
`file` with a `base`.

-
[#&#8203;2380](https://redirect.github.com/withastro/starlight/pull/2380)
[`7b451cf`](https://redirect.github.com/withastro/starlight/commit/7b451cff6979bef1c817f3a84392221ac884ba3d)
Thanks [@&#8203;delucis](https://redirect.github.com/delucis)! - Loosen
Starlight’s i18n schema to pass through unknown keys

-
[#&#8203;2388](https://redirect.github.com/withastro/starlight/pull/2388)
[`6bba3d8`](https://redirect.github.com/withastro/starlight/commit/6bba3d8e02b95ecee7f9c945b6ee33b4c4ba755d)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes a
potential type-checking issue in Starlight projects.

-
[#&#8203;2443](https://redirect.github.com/withastro/starlight/pull/2443)
[`a0f40b3`](https://redirect.github.com/withastro/starlight/commit/a0f40b3c3c7ab0cb9f0f5f11b94e3679547f6ab4)
Thanks
[@&#8203;kevinzunigacuellar](https://redirect.github.com/kevinzunigacuellar)!
- Fixes CSS issue where bottom padding is not applied in the search
dialog.

###
[`v0.28.2`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0282)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.28.1...@astrojs/starlight@0.28.2)

##### Patch Changes

-
[#&#8203;2377](https://redirect.github.com/withastro/starlight/pull/2377)
[`a257b83`](https://redirect.github.com/withastro/starlight/commit/a257b83f1e5704ff41bcbe85482ac81a1a61ce1f)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue with synced `<Tabs>` components containing nested `<Tabs>` causing
tab panels to not render correctly.

###
[`v0.28.1`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0281)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.28.0...@astrojs/starlight@0.28.1)

##### Patch Changes

-
[#&#8203;2334](https://redirect.github.com/withastro/starlight/pull/2334)
[`79b9ade`](https://redirect.github.com/withastro/starlight/commit/79b9ade194cf704dad79267715a6970e0d7a7277)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Fixes an
issue with Expressive Code UI labels not displaying correctly.

###
[`v0.28.0`](https://redirect.github.com/withastro/starlight/blob/HEAD/packages/starlight/CHANGELOG.md#0280)

[Compare
Source](https://redirect.github.com/withastro/starlight/compare/@astrojs/starlight@0.27.1...@astrojs/starlight@0.28.0)

##### Minor Changes

-
[#&#8203;1923](https://redirect.github.com/withastro/starlight/pull/1923)
[`5269aad`](https://redirect.github.com/withastro/starlight/commit/5269aad928773ae08b35ba8e19c0f2832d0d2c89)
Thanks [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)! - Overhauls
the built-in localization system which is now powered by the
[`i18next`](https://www.i18next.com/) library and available to use
anywhere in your documentation website.

See the [“Using UI
translations”](https://starlight.astro.build/guides/i18n/#using-ui-translations)
guide to learn more about how to access built-in UI labels or your own
custom strings in your project. Plugin authors can also use the new
[`injectTranslations()`](https://starlight.astro.build/reference/plugins/#injecttranslations)
helper to add or update translation strings.

⚠️ **BREAKING CHANGE:** The `Astro.props.labels` props has been removed
from the props passed down to custom component overrides.

If you are relying on `Astro.props.labels` (for example to read a
built-in UI label), you will need to update your code to use the new
[`Astro.locals.t()`](https://starlight.astro.build/guides/i18n/#using-ui-translations)
helper instead.

</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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 13:24:03 +00:00
Kjeld Schouten be31786ba9 Update automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 15:12:09 +02:00
Kjeld Schouten 9596d4763c Create automerge.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 14:49:31 +02:00
TrueCharts Bot f7e3d01c44 chore(helm): update image quay.io/pussthecatorg/rimgo → by renovate (#27951) 2024-10-18 14:48:39 +02:00
Kjeld Schouten 0e0fade093 Update pr-validate.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 14:48:09 +02:00
TrueCharts Bot f16325acca chore(helm): update image pepperlabs/peppermint → by renovate (#27950)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| pepperlabs/peppermint | digest | `b495aab` -> `0466dfc` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2024-10-18 14:29:40 +02:00
Kjeld Schouten 7d38a4fd62 Update pr-validate.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 14:25:20 +02:00
TrueCharts Bot e56ac14c44 fix(website): update starlight-links-validator 0.11.0 → 0.12.3 by renovate (#27913)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[starlight-links-validator](https://redirect.github.com/HiDeoo/starlight-links-validator)
| dependencies | minor | [`0.11.0` ->
`0.12.3`](https://renovatebot.com/diffs/npm/starlight-links-validator/0.11.0/0.12.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.12.3`](https://redirect.github.com/HiDeoo/starlight-links-validator/releases/tag/v0.12.3)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.2...v0.12.3)

#####    🐞 Bug Fixes

- Fixes validation issues with links containing query strings  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(47b38)</samp>](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/47b384d)

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.2...v0.12.3)

###
[`v0.12.2`](https://redirect.github.com/HiDeoo/starlight-links-validator/releases/tag/v0.12.2)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.1...v0.12.2)

#####    🐞 Bug Fixes

- Fixes validation issue with the Astro `base` option and a custom slug
 -  by [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(fe3d2)</samp>](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/fe3d254)

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.1...v0.12.2)

###
[`v0.12.1`](https://redirect.github.com/HiDeoo/starlight-links-validator/releases/tag/v0.12.1)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.0...v0.12.1)

#####    🐞 Bug Fixes

- Fixes a potential type-checking issue in user projects  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(09012)</samp>](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/090122e)

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.0...v0.12.1)

###
[`v0.12.0`](https://redirect.github.com/HiDeoo/starlight-links-validator/releases/tag/v0.12.0)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.11.0...v0.12.0)

#####    🚀 Features

- Adds a new `errorOnInvalidHashes` option defaulting to `true` to
disable
[hash](https://developer.mozilla.org/en-US/docs/Web/API/URL/hash)
validation  -  by [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(32a92)</samp>](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/32a92f8)
    The default validation behavior remains unchanged.

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.11.0...v0.12.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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:18:21 +00:00
TrueCharts Bot cdfbefee21 fix(website): update starlight-blog 0.12.0 → 0.14.0 by renovate (#27912)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [starlight-blog](https://redirect.github.com/HiDeoo/starlight-blog) |
dependencies | minor | [`0.12.0` ->
`0.14.0`](https://renovatebot.com/diffs/npm/starlight-blog/0.12.0/0.14.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>HiDeoo/starlight-blog (starlight-blog)</summary>

###
[`v0.14.0`](https://redirect.github.com/HiDeoo/starlight-blog/releases/tag/v0.14.0)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-blog/compare/v0.13.0...v0.14.0)

#####    🚨 Breaking Changes

- Bumps minimum required Starlight version to 0.28.3  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(ec996)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/ec996d1)

#####    🚀 Features

- Adds support for multilingual blogs with routing and fallback content
 -  by [@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(d2d7f)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/d2d7f3b)
- Adds support for translating the blog title  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(59462)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/59462eb)
- Adds support for Starlight UI translations API  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(a9150)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/a91502e)
- Adds French UI translations  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(fa4c3)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/fa4c3a5)

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-blog/compare/v0.13.0...v0.14.0)

###
[`v0.13.0`](https://redirect.github.com/HiDeoo/starlight-blog/releases/tag/v0.13.0)

[Compare
Source](https://redirect.github.com/HiDeoo/starlight-blog/compare/v0.12.0...v0.13.0)

#####    🚀 Features

- Adds author pages listing all posts by author  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(b7bab)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/b7babfe)
- Lists authors in the sidebar if there are multiple authors  -  by
[@&#8203;HiDeoo](https://redirect.github.com/HiDeoo)
[<samp>(c22d7)</samp>](https://redirect.github.com/HiDeoo/starlight-blog/commit/c22d7b0)

#####     [View changes on
GitHub](https://redirect.github.com/HiDeoo/starlight-blog/compare/v0.12.0...v0.13.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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:17:17 +00:00
TrueCharts Bot d88fb54d1d fix(website): update @astrojs/sitemap 3.1.6 → 3.2.1 by renovate (#27910)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[@astrojs/sitemap](https://docs.astro.build/en/guides/integrations-guide/sitemap/)
([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap))
| dependencies | minor | [`3.1.6` ->
`3.2.1`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.1.6/3.2.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 (@&#8203;astrojs/sitemap)</summary>

###
[`v3.2.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#321)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.2.0...@astrojs/sitemap@3.2.1)

##### Patch Changes

-
[#&#8203;12156](https://redirect.github.com/withastro/astro/pull/12156)
[`07754f5`](https://redirect.github.com/withastro/astro/commit/07754f5873b05ab4dae31ded7264fe4056c2dfc8)
Thanks [@&#8203;mingjunlu](https://redirect.github.com/mingjunlu)! -
Adds missing `xslURL` property to `SitemapOptions` type.

###
[`v3.2.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#320)

[Compare
Source](https://redirect.github.com/withastro/astro/compare/@astrojs/sitemap@3.1.6...@astrojs/sitemap@3.2.0)

##### Minor Changes

-
[#&#8203;11485](https://redirect.github.com/withastro/astro/pull/11485)
[`fbe1bc5`](https://redirect.github.com/withastro/astro/commit/fbe1bc51d89994c4919c12768908658604513bd3)
Thanks [@&#8203;sondr3](https://redirect.github.com/sondr3)! - Adds new
`xslURL` option to enable styling of sitemaps

</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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:16:25 +00:00
TrueCharts Bot 432961f78e chore(helm): update chart common 25.0.0 → 25.1.0 by renovate (#27939)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [common](https://truecharts.org/charts/library/common)
([source](https://ghcr.io/cloudnative-pg/postgis)) | minor | `25.0.0` ->
`25.1.0` |

---

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

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21pbm9yIl19-->
2024-10-18 14:14:57 +02:00
Kjeld Schouten 6c76e6d714 Update pr-validate.yaml
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
2024-10-18 14:13:44 +02:00
TrueCharts Bot 37bd2b67d5 chore(helm): update chart common 25.0.0 → 25.1.0 by renovate (#27948)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [common](https://truecharts.org/charts/library/common)
([source](https://ghcr.io/cloudnative-pg/postgis)) | minor | `25.0.0` ->
`25.1.0` |

---

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

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL21pbm9yIl19-->
2024-10-18 14:11:39 +02:00
TrueCharts Bot 8905a64d8a chore(helm): update image naskio/strapi 4.16.2 → 4.25.11 by renovate (#27886)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| naskio/strapi | minor | `84690f6` -> `3e8d576` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjUuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:06:19 +00:00
TrueCharts Bot ab50fc64e6 chore(helm): update image vstavrinov/acestream-service 2.0.2.8 → 2.1.1.1 by renovate (#27879)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| vstavrinov/acestream-service | minor | `f70398e` -> `17025a0` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjUuMCIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:06:17 +00:00
TrueCharts Bot 1022be4b39 chore(helm): update image koush/scrypted v0.119.3 → v0.121.0 by renovate (#27917)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| koush/scrypted | minor | `85ac7b4` -> `25d413d` |
| koush/scrypted | minor | `694a2b9` -> `e129b30` |
| koush/scrypted | minor | `71bdffc` -> `21b998e` |

---

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

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

---

### Configuration

📅 **Schedule**: Branch creation - At 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 these
updates again.

---

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

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMjYuMSIsInVwZGF0ZWRJblZlciI6IjM4LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2024-10-18 12:06:04 +00:00