dc156243c6fb9db6b5aa9eb93a1ba71187842b76
100
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
dc156243c6 |
fix(website): update astro monorepo (minor) (#33412)
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.2.1` -> `3.3.0`](https://renovatebot.com/diffs/npm/@astrojs%2fsitemap/3.2.1/3.3.0) | | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | dependencies | minor | [`5.5.2` -> `5.5.3`](https://renovatebot.com/diffs/npm/astro/5.2.6/5.5.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 (@​astrojs/sitemap)</summary> ### [`v3.3.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/integrations/sitemap/CHANGELOG.md#330) ##### Minor Changes - [#​13448](https://redirect.github.com/withastro/astro/pull/13448) [`91c9503`](https://redirect.github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Add support for XSL in sitemap-index.xml </details> <details> <summary>withastro/astro (astro)</summary> ### [`v5.5.3`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#553) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.5.2...astro@5.5.3) ##### Patch Changes - [#​13437](https://redirect.github.com/withastro/astro/pull/13437) [`013fa87`](https://redirect.github.com/withastro/astro/commit/013fa87982ea92675e899d2f71a200e5298db608) Thanks [@​Vardhaman619](https://redirect.github.com/Vardhaman619)! - Handle server.allowedHosts when the value is true without attempting to push it into an array. - [#​13324](https://redirect.github.com/withastro/astro/pull/13324) [`ea74336`](https://redirect.github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Upgrade to shiki v3 - [#​13372](https://redirect.github.com/withastro/astro/pull/13372) [`7783dbf`](https://redirect.github.com/withastro/astro/commit/7783dbf8117650c60d7633b43f0d42da487aa2b1) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that caused some very large data stores to save incomplete data. - [#​13358](https://redirect.github.com/withastro/astro/pull/13358) [`8c21663`](https://redirect.github.com/withastro/astro/commit/8c21663c4a6363765f2caa5705a93a41492a95c9) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Adds a new function called `insertPageRoute` to the Astro Container API. The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`. For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this: ```js import Post from '../src/pages/Post.astro'; import GenericError from '../src/pages/GenericError.astro'; import { experimental_AstroContainer as AstroContainer } from 'astro/container'; const container = await AstroContainer.create(); container.insertPageRoute('/generic-error', GenericError); const result = await container.renderToString(Post); console.log(result); // this should print the response from GenericError.astro ``` This new method only works for page routes, which means that endpoints aren't supported. - [#​13426](https://redirect.github.com/withastro/astro/pull/13426) [`565583b`](https://redirect.github.com/withastro/astro/commit/565583bd6c99163ce5d9475b26075149cc8c155b) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations - [#​13428](https://redirect.github.com/withastro/astro/pull/13428) [`9cac9f3`](https://redirect.github.com/withastro/astro/commit/9cac9f314277def0ee584e45d4937bac0235738a) Thanks [@​matthewp](https://redirect.github.com/matthewp)! - Prevent bad value in x-forwarded-host from crashing request - [#​13432](https://redirect.github.com/withastro/astro/pull/13432) [`defad33`](https://redirect.github.com/withastro/astro/commit/defad33140dccde324b9357bc6331f7e5cdec266) Thanks [@​P4tt4te](https://redirect.github.com/P4tt4te)! - Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components. - Updated dependencies \[[`ea74336`](https://redirect.github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1)]: - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@​6](https://redirect.github.com/6).3.1 ### [`v5.5.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#552) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.5.1...astro@5.5.2) ##### Patch Changes - [#​13415](https://redirect.github.com/withastro/astro/pull/13415) [`be866a1`](https://redirect.github.com/withastro/astro/commit/be866a1d1db12793e0953b228d0b2dc1c00929e2) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Reuses experimental session storage object between requests. This prevents memory leaks and improves performance for drivers that open persistent connections to a database. - [#​13420](https://redirect.github.com/withastro/astro/pull/13420) [`2f039b9`](https://redirect.github.com/withastro/astro/commit/2f039b927a3a1334948adc7788b1f24c074dfac7) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - It fixes an issue that caused some regressions in how styles are bundled. ### [`v5.5.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#551) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.5.0...astro@5.5.1) ##### Patch Changes - [#​13413](https://redirect.github.com/withastro/astro/pull/13413) [`65903c9`](https://redirect.github.com/withastro/astro/commit/65903c995408397c63c911e184218c0206e5853f) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Makes experimental flag optional ### [`v5.5.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#550) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.4.3...astro@5.5.0) ##### Minor Changes - [#​13402](https://redirect.github.com/withastro/astro/pull/13402) [`3e7b498`](https://redirect.github.com/withastro/astro/commit/3e7b498dce52648484bb4deb04bf9e960c3d08e3) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Adds a new experimental flag called `experimental.preserveScriptOrder` that renders `<script>` and `<style>` tags in the same order as they are defined. When rendering multiple `<style>` and `<script>` tags on the same page, Astro currently reverses their order in your generated HTML output. This can give unexpected results, for example CSS styles being overridden by earlier defined style tags when your site is built. With the new `preserveScriptOrder` flag enabled, Astro will generate the styles in the order they are defined: ```js title="astro.config.mjs" import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { preserveScriptOrder: true, }, }); ``` For example, the following component has two `<style>` tags, and both define the same style for the `body` tag: ```html <p>I am a component</p> <style> body { background: red; } </style> <style> body { background: yellow; } </style> ``` Once the project is compiled, Astro will create an inline style where `yellow` appears first, and then `red`. Ultimately, the `red` background is applied: ```css body { background: #ff0; } body { background: red; } ``` When `experimental.preserveScriptOrder` is set to `true`, the order of the two styles is kept as it is, and in the style generated `red` appears first, and then `yellow`: ```css body { background: red; } body { background: #ff0; } ``` This is a breaking change to how Astro renders project code that contains multiple `<style>` and `<script>` tags in the same component. If you were previously compensating for Astro's behavior by writing these out of order, you will need to update your code. This will eventually become the new default Astro behavior, so we encourage you to add this experimental style and script ordering as soon as you are able! This will help us test the new behavior and ensure your code is ready when this becomes the new normal. For more information as this feature develops, please see the [experimental script order docs](https://docs.astro.build/en/reference/experimental-flags/preserve-script-order/). - [#​13352](https://redirect.github.com/withastro/astro/pull/13352) [`cb886dc`](https://redirect.github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7) Thanks [@​delucis](https://redirect.github.com/delucis)! - Adds support for a new `experimental.headingIdCompat` flag By default, Astro removes a trailing `-` from the end of IDs it generates for headings ending with special characters. This differs from the behavior of common Markdown processors. You can now disable this behavior with a new configuration flag: ```js // astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ experimental: { headingIdCompat: true, }, }); ``` This can be useful when heading IDs and anchor links need to behave consistently across your site and other platforms such as GitHub and npm. If you are [using the `rehypeHeadingIds` plugin directly](https://docs.astro.build/en/guides/markdown-content/#heading-ids-and-plugins), you can also pass this new option: ```js // astro.config.mjs import { defineConfig } from 'astro/config'; import { rehypeHeadingIds } from '@​astrojs/markdown-remark'; import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source'; export default defineConfig({ markdown: { rehypePlugins: [ [rehypeHeadingIds, { experimentalHeadingIdCompat: true }], otherPluginThatReliesOnHeadingIDs, ], }, }); ``` - [#​13311](https://redirect.github.com/withastro/astro/pull/13311) [`a3327ff`](https://redirect.github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e) Thanks [@​chrisirhc](https://redirect.github.com/chrisirhc)! - Adds a new configuration option for Markdown syntax highlighting `excludeLangs` This option provides better support for diagramming tools that rely on Markdown code blocks, such as Mermaid.js and D2 by allowing you to exclude specific languages from Astro's default syntax highlighting. This option allows you to avoid rendering conflicts with tools that depend on the code not being highlighted without forcing you to disable syntax highlighting for other code blocks. The following example configuration will exclude highlighting for `mermaid` and `math` code blocks: ```js import { defineConfig } from 'astro/config'; export default defineConfig({ markdown: { syntaxHighlight: { type: 'shiki', excludeLangs: ['mermaid', 'math'], }, }, }); ``` Read more about this new option in the [Markdown syntax highlighting configuration docs](https://docs.astro.build/en/reference/configuration-reference/#markdownsyntaxhighlight). ##### Patch Changes - [#​13404](https://redirect.github.com/withastro/astro/pull/13404) [`4e78b4d`](https://redirect.github.com/withastro/astro/commit/4e78b4d10d2214c94752a1fef74db325053cf071) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes a bug in error handling that saving a content file with a schema error would display an "unhandled rejection" error instead of the correct schema error - [#​13379](https://redirect.github.com/withastro/astro/pull/13379) [`d59eb22`](https://redirect.github.com/withastro/astro/commit/d59eb227334b788289533bac41f015b498179a2f) Thanks [@​martrapp](https://redirect.github.com/martrapp)! - Fixes an edge case where the client router executed scripts twice when used with a custom swap function that only swaps parts of the DOM. - [#​13393](https://redirect.github.com/withastro/astro/pull/13393) [`6b8fdb8`](https://redirect.github.com/withastro/astro/commit/6b8fdb8a113b6f76448b41beb990c33fafb09b3e) Thanks [@​renovate](https://redirect.github.com/apps/renovate)! - Updates `primsjs` to version 1.30.0, which adds support for more languages and fixes a security advisory which does not affect Astro. - [#​13374](https://redirect.github.com/withastro/astro/pull/13374) [`7b75bc5`](https://redirect.github.com/withastro/astro/commit/7b75bc5c36bc338bcef5ef41502e87c184c117ec) Thanks [@​ArmandPhilippot](https://redirect.github.com/ArmandPhilippot)! - Fixes the documentation of the i18n configuration where `manual` was presented as a key of `routing` instead of an available value. - [#​13380](https://redirect.github.com/withastro/astro/pull/13380) [`9bfa6e6`](https://redirect.github.com/withastro/astro/commit/9bfa6e6d8b95424436be405a80d5df3f2e2e72df) Thanks [@​martrapp](https://redirect.github.com/martrapp)! - Fixes an issue where astro:page-load fires before all scripts are executed - [#​13407](https://redirect.github.com/withastro/astro/pull/13407) [`0efdc22`](https://redirect.github.com/withastro/astro/commit/0efdc22b182f6cec4155a972f0dde1da686c5453) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Displays correct error message when sharp isn't installed - Updated dependencies \[[`cb886dc`](https://redirect.github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7), [`a3327ff`](https://redirect.github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e)]: - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@​6](https://redirect.github.com/6).3.0 ### [`v5.4.3`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#543) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.4.2...astro@5.4.3) ##### Patch Changes - [#​13381](https://redirect.github.com/withastro/astro/pull/13381) [`249d52a`](https://redirect.github.com/withastro/astro/commit/249d52a3ff17f792c451ea0e42b97a209667290c) Thanks [@​martrapp](https://redirect.github.com/martrapp)! - Adds the `types` property to the viewTransition object when the ClientRouter simulates parts of the View Transition API on browsers w/o native support. - [#​13367](https://redirect.github.com/withastro/astro/pull/13367) [`3ce4ad9`](https://redirect.github.com/withastro/astro/commit/3ce4ad965f576f2f4c53b5f2b876d449ed60c023) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Adds documentation to various utility functions used for remote image services - [#​13347](https://redirect.github.com/withastro/astro/pull/13347) [`d83f92a`](https://redirect.github.com/withastro/astro/commit/d83f92a20403ffc8d088cfd13d2806e0f4f1a11e) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Updates internal CSS chunking behavior for Astro components' scoped styles. This may result in slightly more CSS chunks created, but should allow the scoped styles to only be included on pages that use them. - [#​13388](https://redirect.github.com/withastro/astro/pull/13388) [`afadc70`](https://redirect.github.com/withastro/astro/commit/afadc702d7d928e7b650d3c071cca3d21e14333f) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes a bug where `astro:config/server` and `astro:config/client` had incorrect types. - [#​13355](https://redirect.github.com/withastro/astro/pull/13355) [`042d1de`](https://redirect.github.com/withastro/astro/commit/042d1de901fd9aa66157ce078b28bcd9786e1373) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Adds documentation to the assets utilities for remote service images. - [#​13395](https://redirect.github.com/withastro/astro/pull/13395) [`6d1c63f`](https://redirect.github.com/withastro/astro/commit/6d1c63fa46a624b1c4981d4324ebabf37cc2b958) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Uses `package-manager-detector` to detect the package manager used in the project - [#​13363](https://redirect.github.com/withastro/astro/pull/13363) [`a793636`](https://redirect.github.com/withastro/astro/commit/a793636928d0014a7faa4431afdfb9404e9ea819) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes an issue where the internal function `makeSvgComponent` was incorrectly exposed as a public API. - Updated dependencies \[[`042d1de`](https://redirect.github.com/withastro/astro/commit/042d1de901fd9aa66157ce078b28bcd9786e1373)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@​0](https://redirect.github.com/0).6.1 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@​6](https://redirect.github.com/6).2.1 ### [`v5.4.2`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#542) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.4.1...astro@5.4.2) ##### Patch Changes - [#​12985](https://redirect.github.com/withastro/astro/pull/12985) [`84e94cc`](https://redirect.github.com/withastro/astro/commit/84e94cc85cc0f4ea9b5dba2009dc89e83a798f59) Thanks [@​matthewp](https://redirect.github.com/matthewp)! - Prevent re-executing scripts in client router - [#​13349](https://redirect.github.com/withastro/astro/pull/13349) [`50e2e0b`](https://redirect.github.com/withastro/astro/commit/50e2e0b3749d6dba3d301ea1a0a3a33a273e7a81) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Correctly escapes attributes in Markdown images - [#​13262](https://redirect.github.com/withastro/astro/pull/13262) [`0025df3`](https://redirect.github.com/withastro/astro/commit/0025df37af4dcd390d41c9b175fbdb3edd87edf7) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Refactor Astro Actions to not use a middleware. Doing so should avoid unexpected issues when using the Astro middleware at the edge. ### [`v5.4.1`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#541) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.4.0...astro@5.4.1) ##### Patch Changes - [#​13336](https://redirect.github.com/withastro/astro/pull/13336) [`8f632ef`](https://redirect.github.com/withastro/astro/commit/8f632efe9934fbe7547d890fd01b3892d14c8189) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes a regression where some asset utilities were move across monorepo, and not re-exported anymore. - [#​13320](https://redirect.github.com/withastro/astro/pull/13320) [`b5dabe9`](https://redirect.github.com/withastro/astro/commit/b5dabe9878510237ceb603ebd3e004da6e965a26) Thanks [@​{](https://redirect.github.com/{)! - Adds support for typing experimental session data You can add optional types to your session data by creating a `src/env.d.ts` file in your project that extends the global `App.SessionData` interface. For example: ```ts declare namespace App { interface SessionData { id: string; email: string; }; lastLogin: Date; } } ``` Any keys not defined in this interface will be treated as `any`. Then when you access `Astro.session` in your components, any defined keys will be typed correctly: ### [`v5.4.0`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#540) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.3.1...astro@5.4.0) ##### Minor Changes - [#​12052](https://redirect.github.com/withastro/astro/pull/12052) [`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f) Thanks [@​Fryuni](https://redirect.github.com/Fryuni)! - Exposes extra APIs for scripting and testing. ##### Config helpers Two new helper functions exported from `astro/config`: - `mergeConfig()` allows users to merge partially defined Astro configurations on top of a base config while following the merge rules of `updateConfig()` available for integrations. - `validateConfig()` allows users to validate that a given value is a valid Astro configuration and fills in default values as necessary. These helpers are particularly useful for integration authors and for developers writing scripts that need to manipulate Astro configurations programmatically. ##### Programmatic build The `build` API now receives a second optional `BuildOptions` argument where users can specify: - `devOutput` (default `false`): output a development-based build similar to code transformed in `astro dev`. - `teardownCompiler` (default `true`): teardown the compiler WASM instance after build. These options provide more control when running Astro builds programmatically, especially for testing scenarios or custom build pipelines. - [#​13278](https://redirect.github.com/withastro/astro/pull/13278) [`4a43c4b`](https://redirect.github.com/withastro/astro/commit/4a43c4b743affb78b1502801c797157b626c77a1) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Adds a new configuration option `server.allowedHosts` and CLI option `--allowed-hosts`. Now you can specify the hostnames that the dev and preview servers are allowed to respond to. This is useful for allowing additional subdomains, or running the dev server in a web container. `allowedHosts` checks the Host header on HTTP requests from browsers and if it doesn't match, it will reject the request to prevent CSRF and XSS attacks. ```shell astro dev --allowed-hosts=foo.bar.example.com,bar.example.com ``` ```shell astro preview --allowed-hosts=foo.bar.example.com,bar.example.com ``` ```js // astro.config.mjs import { defineConfig } from 'astro/config'; export default defineConfig({ server: { allowedHosts: ['foo.bar.example.com', 'bar.example.com'], }, }); ``` This feature is the same as [Vite's `server.allowHosts` configuration](https://vite.dev/config/server-options.html#server-allowedhosts). - [#​13254](https://redirect.github.com/withastro/astro/pull/13254) [`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b) Thanks [@​p0lyw0lf](https://redirect.github.com/p0lyw0lf)! - Adds the ability to process and optimize remote images in Markdown files Previously, Astro only allowed local images to be optimized when included using `![]()` syntax in plain Markdown files. Astro's image service could only display remote images without any processing. Now, Astro's image service can also optimize remote images written in standard Markdown syntax. This allows you to enjoy the benefits of Astro's image processing when your images are stored externally, for example in a CMS or digital asset manager. No additional configuration is required to use this feature! Any existing remote images written in Markdown will now automatically be optimized. To opt-out of this processing, write your images in Markdown using the HTML `<img>` tag instead. Note that images located in your `public/` folder are still never processed. ##### Patch Changes - [#​13256](https://redirect.github.com/withastro/astro/pull/13256) [`509fa67`](https://redirect.github.com/withastro/astro/commit/509fa671a137515bd1818c81ee78de439a27e5dc) Thanks [@​p0lyw0lf](https://redirect.github.com/p0lyw0lf)! - Adds experimental responsive image support in Markdown Previously, the `experimental.responsiveImages` feature could only provide responsive images when using the `<Image />` and `<Picture />` components. Now, images written with the `![]()` Markdown syntax in Markdown and MDX files will generate responsive images by default when using this experimental feature. To try this experimental feature, set `experimental.responsiveImages` to true in your `astro.config.mjs` file: ```js { experimental: { responsiveImages: true, }, } ``` Learn more about using this feature in the [experimental responsive images feature reference](https://docs.astro.build/en/reference/experimental-flags/responsive-images/). For a complete overview, and to give feedback on this experimental API, see the [Responsive Images RFC](https://redirect.github.com/withastro/roadmap/blob/responsive-images/proposals/0053-responsive-images.md). - [#​13323](https://redirect.github.com/withastro/astro/pull/13323) [`80926fa`](https://redirect.github.com/withastro/astro/commit/80926fadc06492fcae55f105582b9dc8279da6b3) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Updates `esbuild` and `vite` to the latest to avoid false positives audits warnings caused by `esbuild`. - [#​13313](https://redirect.github.com/withastro/astro/pull/13313) [`9e7c71d`](https://redirect.github.com/withastro/astro/commit/9e7c71d19c89407d9b27ded85d8c0fde238ce16c) Thanks [@​martrapp](https://redirect.github.com/martrapp)! - Fixes an issue where a form field named "attributes" shadows the form.attributes property. - [#​12052](https://redirect.github.com/withastro/astro/pull/12052) [`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f) Thanks [@​Fryuni](https://redirect.github.com/Fryuni)! - Fixes incorrect config update when calling `updateConfig` from `astro:build:setup` hook. The function previously called a custom update config function made for merging an Astro config. Now it calls the appropriate `mergeConfig()` utility exported by Vite that updates functional options correctly. - [#​13303](https://redirect.github.com/withastro/astro/pull/13303) [`5f72a58`](https://redirect.github.com/withastro/astro/commit/5f72a58935d9bdd5237bdf86d2e94bcdc544c7b3) Thanks [@​ematipico](https://redirect.github.com/ematipico)! - Fixes an issue where the dev server was applying second decoding of the URL of the incoming request, causing issues for certain URLs. - Updated dependencies \[[`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b), [`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b)]: - [@​astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@​0](https://redirect.github.com/0).6.0 - [@​astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@​6](https://redirect.github.com/6).2.0 ### [`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 - [#​13233](https://redirect.github.com/withastro/astro/pull/13233) [`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc) Thanks [@​joshmkennedy](https://redirect.github.com/joshmkennedy)! - Ensures consistent behaviour of `Astro.rewrite`/`ctx.rewrite` when using `base` and `trailingSlash` options. - [#​13003](https://redirect.github.com/withastro/astro/pull/13003) [`ea79054`](https://redirect.github.com/withastro/astro/commit/ea790542e186b0d2d2e828cb3ebd23bde4d04879) Thanks [@​chaegumi](https://redirect.github.com/chaegumi)! - Fixes a bug that caused the `vite.base` value to be ignored when running `astro dev` - [#​13299](https://redirect.github.com/withastro/astro/pull/13299) [`2e1321e`](https://redirect.github.com/withastro/astro/commit/2e1321e9d5b27da3e86bc4021e4136661a8055aa) Thanks [@​bluwy](https://redirect.github.com/bluwy)! - Uses `tinyglobby` for globbing files - [#​13233](https://redirect.github.com/withastro/astro/pull/13233) [`32fafeb`](https://redirect.github.com/withastro/astro/commit/32fafeb874cc4b6312eb50d54d9f0ca6b83aedbc) Thanks [@​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 - [#​13210](https://redirect.github.com/withastro/astro/pull/13210) [`344e9bc`](https://redirect.github.com/withastro/astro/commit/344e9bc480a075161a7811b7733593556e7560da) Thanks [@​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. - [#​13195](https://redirect.github.com/withastro/astro/pull/13195) [`3b66955`](https://redirect.github.com/withastro/astro/commit/3b669555d7ab9da5427e7b7037699d4f905d3536) Thanks [@​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. - [#​13145](https://redirect.github.com/withastro/astro/pull/13145) [`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37) Thanks [@​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 - [#​13145](https://redirect.github.com/withastro/astro/pull/13145) [`8d4e566`](https://redirect.github.com/withastro/astro/commit/8d4e566f5420c8a5406e1e40e8bae1c1f87cbe37) Thanks [@​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/). - [#​13101](https://redirect.github.com/withastro/astro/pull/13101) [`2ed67d5`](https://redirect.github.com/withastro/astro/commit/2ed67d5dc5c8056f9ab1e29e539bf086b93c60c2) Thanks [@​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. 👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
0d04884615 |
chore(helm): update image docker.io/bobokun/qbit_manage v4.2.0 → v4.2.1 (#33393)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/bobokun/qbit_manage | patch | `e7187b7` -> `e9e7888` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
6e3bb54b34 |
chore(helm): update image docker.io/metabase/metabase v0.53.6 → v0.53.7 (#33396)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/metabase/metabase | patch | `3287331` -> `fc667ef` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0589b6d605 |
chore(helm): update image ghcr.io/linuxserver/speedtest-tracker digest to 169eea5 (#33385)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/speedtest-tracker](https://redirect.github.com/linuxserver/docker-speedtest-tracker/packages) ([source](https://redirect.github.com/linuxserver/docker-speedtest-tracker)) | digest | `0837f76` -> `169eea5` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
8e001bef95 |
chore(helm): update image public.ecr.aws/bitnami/redis digest to 60c585e (#33388)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/redis](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/redis)) | digest | `66b3b67` -> `60c585e` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
4f9353998b | chore(helm): update image docker.io/accetto/ubuntu-vnc-xfce-chromium-g3 digest to d320985 (#33370) | ||
|
|
15c525ea93 |
chore(helm): update image docker.io/mbentley/omada-controller digest to 0c3b923 (#33379)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/mbentley/omada-controller](https://redirect.github.com/mbentley/docker-omada-controller) | digest | `1edfb54` -> `0c3b923` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
89b16a6e25 |
chore(helm): update image docker.io/accetto/ubuntu-vnc-xfce-opengl-g3 digest to bbc232a (#33373)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/accetto/ubuntu-vnc-xfce-opengl-g3 | digest | `63f0d45` -> `bbc232a` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
9e836bdf14 |
chore(helm): update image docker.io/whyour/qinglong digest to 14f8d54 (#33382)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/whyour/qinglong](https://redirect.github.com/whyour/qinglong) | digest | `e59e2ef` -> `14f8d54` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
420d9bd09f |
chore(helm): update image docker.io/renovate/renovate 39.202.0 → 39.207.2 (#33407)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/renovate/renovate](https://renovatebot.com) ([source](https://redirect.github.com/renovatebot/renovate)) | minor | -> | --- > [!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>renovatebot/renovate (docker.io/renovate/renovate)</summary> ### [`v39.207.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.207.2) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.207.1...39.207.2) ##### Bug Fixes - **nix:** urldecode gitlab subgroups ([#​34863](https://redirect.github.com/renovatebot/renovate/issues/34863)) ([7aa1e47](https://redirect.github.com/renovatebot/renovate/commit/7aa1e47bfb856c70d61ce32f479251c392abc4bd)) ### [`v39.207.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.207.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.207.0...39.207.1) ##### Bug Fixes - **deps:** update dependency mkdocs-material to v9.6.9 (main) ([#​34860](https://redirect.github.com/renovatebot/renovate/issues/34860)) ([1e8f437](https://redirect.github.com/renovatebot/renovate/commit/1e8f43798f1e0996429a57b8089829274489cd2f)) ### [`v39.207.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.207.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.206.0...39.207.0) ##### Features - **github-actions:** Use schema for dependency extraction ([#​33584](https://redirect.github.com/renovatebot/renovate/issues/33584)) ([19b04ca](https://redirect.github.com/renovatebot/renovate/commit/19b04caa6792c95b116d77e1850fa4d1af2cff33)) - **gitlabci:** Use schema for dep extraction ([#​33586](https://redirect.github.com/renovatebot/renovate/issues/33586)) ([6dc2b37](https://redirect.github.com/renovatebot/renovate/commit/6dc2b37be1c3a3f8924ecb45caa850a877cc5631)) ### [`v39.206.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.206.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.205.2...39.206.0) ##### Features - **presets:** group Puppeteer packages together ([#​34805](https://redirect.github.com/renovatebot/renovate/issues/34805)) ([4ab4116](https://redirect.github.com/renovatebot/renovate/commit/4ab41160c61e6ce6fc530a2b7e0f0a107522693e)) ##### Bug Fixes - **logging:** Use right setter for `withMeta` ([#​34839](https://redirect.github.com/renovatebot/renovate/issues/34839)) ([dbe8c6e](https://redirect.github.com/renovatebot/renovate/commit/dbe8c6e747e83fe3a048dbe58bd0d54fe193364a)) ##### Miscellaneous Chores - **label actions:** rewrite docs improvement label text ([#​34838](https://redirect.github.com/renovatebot/renovate/issues/34838)) ([65c7e29](https://redirect.github.com/renovatebot/renovate/commit/65c7e292bc19451d80ba6b00299fab1a3710e82d)) ### [`v39.205.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.205.2) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.205.1...39.205.2) ##### Bug Fixes - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.50.5 (main) ([#​34853](https://redirect.github.com/renovatebot/renovate/issues/34853)) ([b063499](https://redirect.github.com/renovatebot/renovate/commit/b0634998e4063bff5cb1866381cbd8f7904f068a)) ##### Documentation - update references to renovate/renovate to v39.205.1 (main) ([#​34847](https://redirect.github.com/renovatebot/renovate/issues/34847)) ([1f1d9fd](https://redirect.github.com/renovatebot/renovate/commit/1f1d9fd0a6c2af25c72d4d299c0090d4bf12399c)) ##### Miscellaneous Chores - **deps:** lock file maintenance (main) ([#​34843](https://redirect.github.com/renovatebot/renovate/issues/34843)) ([65a1ba6](https://redirect.github.com/renovatebot/renovate/commit/65a1ba693b63699a717655a5e3007accc1bcf868)) - **deps:** update actions/setup-node action to v4.3.0 (main) ([#​34848](https://redirect.github.com/renovatebot/renovate/issues/34848)) ([803a5f5](https://redirect.github.com/renovatebot/renovate/commit/803a5f5f48ae89e011e322e36f5de94ac70f7159)) - **deps:** update containerbase/internal-tools action to v3.10.10 (main) ([#​34845](https://redirect.github.com/renovatebot/renovate/issues/34845)) ([f4a67ec](https://redirect.github.com/renovatebot/renovate/commit/f4a67ecd90161818c5b317e7e25130ff44b06f9f)) - **deps:** update containerbase/internal-tools action to v3.10.11 (main) ([#​34849](https://redirect.github.com/renovatebot/renovate/issues/34849)) ([dcb6b2a](https://redirect.github.com/renovatebot/renovate/commit/dcb6b2ac66fd31f77c10e169e84719b35038c7cf)) - **deps:** update dependency esbuild to v0.25.1 (main) ([#​34850](https://redirect.github.com/renovatebot/renovate/issues/34850)) ([8825e74](https://redirect.github.com/renovatebot/renovate/commit/8825e7410f745ac2ab9dafb38b440a71e8f41f6a)) - **deps:** update dependency renovatebot/github-action to v41.0.16 (main) ([#​34851](https://redirect.github.com/renovatebot/renovate/issues/34851)) ([eb815a1](https://redirect.github.com/renovatebot/renovate/commit/eb815a164ac436189549bd50908c58a53ab99d47)) - **deps:** update ghcr.io/containerbase/devcontainer docker tag to v13.8.6 (main) ([#​34846](https://redirect.github.com/renovatebot/renovate/issues/34846)) ([6b556f2](https://redirect.github.com/renovatebot/renovate/commit/6b556f24026a42b510477cf0a2f5c5db6208d47f)) - **deps:** update ghcr.io/containerbase/devcontainer docker tag to v13.8.7 (main) ([#​34852](https://redirect.github.com/renovatebot/renovate/issues/34852)) ([44fe604](https://redirect.github.com/renovatebot/renovate/commit/44fe604fa8fe846467b14fed207074dc7568c09c)) ### [`v39.205.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.205.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.205.0...39.205.1) ##### Bug Fixes - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.50.4 (main) ([#​34841](https://redirect.github.com/renovatebot/renovate/issues/34841)) ([9076b48](https://redirect.github.com/renovatebot/renovate/commit/9076b48be2440ca46c146b62a0a8f64c73834dcb)) ##### Documentation - update references to renovate/renovate (main) ([#​34842](https://redirect.github.com/renovatebot/renovate/issues/34842)) ([5d51e72](https://redirect.github.com/renovatebot/renovate/commit/5d51e720fe29ca1cd012e4c67ba8a19a1b80fe63)) ##### Miscellaneous Chores - **deps:** update dependency renovatebot/github-action to v41.0.15 (main) ([#​34840](https://redirect.github.com/renovatebot/renovate/issues/34840)) ([9439c7b](https://redirect.github.com/renovatebot/renovate/commit/9439c7b5aee26190ab76485d8cf46821690d2093)) ### [`v39.205.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.205.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.204.0...39.205.0) ##### Features - **manager/asdf:** support opa ([#​34813](https://redirect.github.com/renovatebot/renovate/issues/34813)) ([f3c3f99](https://redirect.github.com/renovatebot/renovate/commit/f3c3f9985aba270ff5f50d7fd2337b1e0f606735)) ### [`v39.204.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.204.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.203.1...39.204.0) ##### Features - add transform template log ([#​34821](https://redirect.github.com/renovatebot/renovate/issues/34821)) ([fe36034](https://redirect.github.com/renovatebot/renovate/commit/fe360349c8c14aba929d6319dd68da3b06ada4fe)) ### [`v39.203.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/39.203.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/39.202.0...39.203.1) ##### Bug Fixes - **presets): Revert "feat(presets:** add workaround for TJ actions" ([#​34835](https://redirect.github.com/renovatebot/renovate/issues/34835)) ([19fef1c](https://redirect.github.com/renovatebot/renovate/commit/19fef1c160177958a7ef6c1e1859d33f7db7a64e)) ##### Miscellaneous Chores - **deps:** update dependency [@​types/node](https://redirect.github.com/types/node) to v22.13.10 (main) ([#​34828](https://redirect.github.com/renovatebot/renovate/issues/34828)) ([470f03c](https://redirect.github.com/renovatebot/renovate/commit/470f03ccfc9efbd3492a848c91ac8c8d2b0acf8d)) - **deps:** update pdm-project/setup-pdm action to v4.3 (main) ([#​34836](https://redirect.github.com/renovatebot/renovate/issues/34836)) ([9b3ac17](https://redirect.github.com/renovatebot/renovate/commit/9b3ac1757b0f9794dd07939440017e33ca5659b3)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
1241e83cee |
chore(helm): update image docker.io/jenkins/jenkins 2.501 → 2.502 (#33405)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jenkins/jenkins](https://www.jenkins.io/) ([source](https://redirect.github.com/jenkinsci/docker)) | minor | `83b68f4` -> `03263af` | --- > [!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>jenkinsci/docker (docker.io/jenkins/jenkins)</summary> ### [`v2.502`](https://redirect.github.com/jenkinsci/docker/compare/2.501...2.502) [Compare Source](https://redirect.github.com/jenkinsci/docker/compare/2.501...2.502) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
d3c2f2a45c |
chore(helm): update image docker.io/semaphoreui/semaphore v2.12.17 → v2.13.0 (#33408)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/semaphoreui/semaphore](https://redirect.github.com/semaphoreui/semaphore) | minor | `70d6442` -> `4a0b040` | --- > [!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>semaphoreui/semaphore (docker.io/semaphoreui/semaphore)</summary> ### [`v2.13.0`](https://redirect.github.com/semaphoreui/semaphore/releases/tag/v2.13.0) [Compare Source](https://redirect.github.com/semaphoreui/semaphore/compare/v2.12.17...v2.13.0) <a href="https://semaphoreui.com/releases/semaphore-v2_13"> <img src="https://github.com/user-attachments/assets/c4a980e6-83a3-4025-9b18-f54114c7ea6d"> </a> ##### [Semaphore 2.13 Release Details](https://semaphoreui.com/releases/semaphore-v2_13) #### Links - Create best docker container [](https://semaphoreui.com/install/docker/2\_13/) - Join our responsive community [](https://discord.gg/5R6k7hNGcH) - We're constantly improving—adding new features, fixing bugs, and supporting our amazing community. Your support helps us keep going and make things even better! 🚀 [](https://redirect.github.com/sponsors/semaphoreui) [](https://ko-fi.com/fiftin) [](https://www.patreon.com/semaphoreui) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
de26228e1d |
chore(helm): update image docker.io/nginxinc/nginx-unprivileged digest to 228360b (#33380)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/nginxinc/nginx-unprivileged](https://redirect.github.com/nginxinc/docker-nginx-unprivileged) | digest | `2370a1e` -> `228360b` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
9fca1d47ca |
chore(helm): update image friendica digest to f465295 (#33383)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | friendica | digest | `ce8c801` -> `f465295` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
4ec1f1dd86 |
chore(helm): update image docker.io/advplyr/audiobookshelf 2.19.5 → 2.20.0 (#33403)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/advplyr/audiobookshelf](https://redirect.github.com/advplyr/audiobookshelf) | minor | `4d383bf` -> `1065313` | --- > [!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>advplyr/audiobookshelf (docker.io/advplyr/audiobookshelf)</summary> ### [`v2.20.0`](https://redirect.github.com/advplyr/audiobookshelf/releases/tag/v2.20.0) [Compare Source](https://redirect.github.com/advplyr/audiobookshelf/compare/v2.19.5...v2.20.0) ##### Added - Podcast episode table sorting option for filename + show filename when sorting by it [#​3637](https://redirect.github.com/advplyr/audiobookshelf/issues/3637) by [@​4ch1m](https://redirect.github.com/4ch1m) in [#​4030](https://redirect.github.com/advplyr/audiobookshelf/issues/4030) ##### Fixed - Possible to queue multiple of the same episode for download [#​2672](https://redirect.github.com/advplyr/audiobookshelf/issues/2672) [#​4036](https://redirect.github.com/advplyr/audiobookshelf/issues/4036) by [@​nichwall](https://redirect.github.com/nichwall) in [#​4041](https://redirect.github.com/advplyr/audiobookshelf/issues/4041) - Scanning epub not using first image for cover in some cases [#​4105](https://redirect.github.com/advplyr/audiobookshelf/issues/4105) by [@​Roukanken42](https://redirect.github.com/Roukanken42) in [#​4106](https://redirect.github.com/advplyr/audiobookshelf/issues/4106) - Publish year not saving when matching with OpenLibrary [#​4114](https://redirect.github.com/advplyr/audiobookshelf/issues/4114) by [@​GabrielGavrilov](https://redirect.github.com/GabrielGavrilov) in [#​4118](https://redirect.github.com/advplyr/audiobookshelf/issues/4118) - UI/UX: Whitespace in custom metadata provider inputs not being trimmed [#​4069](https://redirect.github.com/advplyr/audiobookshelf/issues/4069) - UI/UX: RTL support on podcast episodes table rows by [@​mikiher](https://redirect.github.com/mikiher) in [#​4082](https://redirect.github.com/advplyr/audiobookshelf/issues/4082) ##### Changed - Improved book library page performance for author sort by [@​mikiher](https://redirect.github.com/mikiher) in [#​4080](https://redirect.github.com/advplyr/audiobookshelf/issues/4080) - Improved podcast latest episodes page performance [#​4043](https://redirect.github.com/advplyr/audiobookshelf/issues/4043) by [@​mikiher](https://redirect.github.com/mikiher) in [#​4080](https://redirect.github.com/advplyr/audiobookshelf/issues/4080) - Podcast page play button plays first incomplete episode in the table by [@​nichwall](https://redirect.github.com/nichwall) in [#​4035](https://redirect.github.com/advplyr/audiobookshelf/issues/4035) - Playing episodes from the podcast page populates the player queue based on the order in the table by [@​nichwall](https://redirect.github.com/nichwall) in [#​4035](https://redirect.github.com/advplyr/audiobookshelf/issues/4035) - Migration manager ignores non-js files [#​4042](https://redirect.github.com/advplyr/audiobookshelf/issues/4042) in [#​4078](https://redirect.github.com/advplyr/audiobookshelf/issues/4078) - Update OPF file parser to support OPF v3 refines meta elements [#​4109](https://redirect.github.com/advplyr/audiobookshelf/issues/4109) in [#​4113](https://redirect.github.com/advplyr/audiobookshelf/issues/4113) - UI/UX: Rename setting "Enable Watcher" to "Automatically scan libraries for changes" [#​4095](https://redirect.github.com/advplyr/audiobookshelf/issues/4095) - UI/UX: Rename setting "Enable automatic backups" to "Automatic backups" [#​4095](https://redirect.github.com/advplyr/audiobookshelf/issues/4095) - UI/UX: Search/download podcast episodes modal indicates episodes that are queued for download - UI/UX: Update native browser confirm prompts to use our custom confirm modal - UI/UX: Podcast page improvements for screen readers - UI/UX: Spelling by [@​gitting](https://redirect.github.com/gitting) in [#​4093](https://redirect.github.com/advplyr/audiobookshelf/issues/4093) - API: Support custom createdAt and finishedAt timestamps when creating media progress by [@​justcallmelarry](https://redirect.github.com/justcallmelarry) in [#​3546](https://redirect.github.com/advplyr/audiobookshelf/issues/3546) - API: Support custom finishedAt timestamp when updating media progress [#​4094](https://redirect.github.com/advplyr/audiobookshelf/issues/4094) by [@​Vito0912](https://redirect.github.com/Vito0912) in [#​4097](https://redirect.github.com/advplyr/audiobookshelf/issues/4097) - API: Custom metadata provider responses are sanitized and validated by [@​Vito0912](https://redirect.github.com/Vito0912) in [#​4075](https://redirect.github.com/advplyr/audiobookshelf/issues/4075) - More strings translated - Belarusian by [@​i-Nosferatu-i](https://redirect.github.com/i-Nosferatu-i) - Chinese (Simplified Han script) by [@​springsunx](https://redirect.github.com/springsunx) - Croatian by [@​biuklija](https://redirect.github.com/biuklija) - Danish by [@​MorellReng](https://redirect.github.com/MorellReng) - Dutch by [@​ranforingus](https://redirect.github.com/ranforingus) - Finnish by [@​Ricky-Tigg](https://redirect.github.com/Ricky-Tigg) [@​phewi](https://redirect.github.com/phewi) - German by [@​schoenfeldj](https://redirect.github.com/schoenfeldj) - Hindi by [@​prashant-mhatre](https://redirect.github.com/prashant-mhatre) - Japanese by [@​Xeratone](https://redirect.github.com/Xeratone) - Slovak by [@​pecer](https://redirect.github.com/pecer) - Slovenian by [@​thehijacker](https://redirect.github.com/thehijacker) - Swedish by [@​Krissse10](https://redirect.github.com/Krissse10) [@​Cotignac](https://redirect.github.com/Cotignac) [@​Landrash](https://redirect.github.com/Landrash) - Ukrainian by [@​Maksim2005UA](https://redirect.github.com/Maksim2005UA) ##### Internal - Fix 2.15.0 migration test by [@​nichwall](https://redirect.github.com/nichwall) in [#​4055](https://redirect.github.com/advplyr/audiobookshelf/issues/4055) - Cleanup Logger by [@​nichwall](https://redirect.github.com/nichwall) in [#​4089](https://redirect.github.com/advplyr/audiobookshelf/issues/4089) - Use transactions when removing empty series and authors with no books by [@​nichwall](https://redirect.github.com/nichwall) in [#​4088](https://redirect.github.com/advplyr/audiobookshelf/issues/4088) - ci: update actions by [@​jfrazx](https://redirect.github.com/jfrazx) in [#​4119](https://redirect.github.com/advplyr/audiobookshelf/issues/4119) #### New Contributors - [@​gitting](https://redirect.github.com/gitting) made their first contribution in [https://github.com/advplyr/audiobookshelf/pull/4093](https://redirect.github.com/advplyr/audiobookshelf/pull/4093) - [@​Roukanken42](https://redirect.github.com/Roukanken42) made their first contribution in [https://github.com/advplyr/audiobookshelf/pull/4106](https://redirect.github.com/advplyr/audiobookshelf/pull/4106) - [@​GabrielGavrilov](https://redirect.github.com/GabrielGavrilov) made their first contribution in [https://github.com/advplyr/audiobookshelf/pull/4118](https://redirect.github.com/advplyr/audiobookshelf/pull/4118) **Full Changelog**: https://github.com/advplyr/audiobookshelf/compare/v2.19.5...v2.20.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
749de98994 |
chore(helm): update image docker.io/tomsquest/docker-radicale 3.4.1.1 → 3.5.0.1 (#33409)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/tomsquest/docker-radicale](https://redirect.github.com/tomsquest/docker-radicale) | minor | `48e55c4` -> `904d0f6` | --- > [!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>tomsquest/docker-radicale (docker.io/tomsquest/docker-radicale)</summary> ### [`v3.5.0.1`](https://redirect.github.com/tomsquest/docker-radicale/blob/HEAD/CHANGELOG.md#3501---2025-03-16) [Compare Source](https://redirect.github.com/tomsquest/docker-radicale/compare/3.5.0.0...3.5.0.1) ### [`v3.5.0.0`](https://redirect.github.com/tomsquest/docker-radicale/blob/HEAD/CHANGELOG.md#3500---2025-03-16) [Compare Source](https://redirect.github.com/tomsquest/docker-radicale/compare/3.4.1.1...3.5.0.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
0b62d3ce73 |
chore(helm): update image docker.io/lmscommunity/lyrionmusicserver digest to 601f46d (#33378)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lmscommunity/lyrionmusicserver | digest | `8a50c14` -> `601f46d` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
30864744f5 | chore(helm): update image docker.io/accetto/ubuntu-vnc-xfce-freecad-g3 digest to 6bcec0e (#33371) | ||
|
|
16a5ab71f7 |
chore(helm): update image docker.io/linuxserver/transmission digest to c752163 (#33377)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/linuxserver/transmission](https://redirect.github.com/linuxserver/docker-transmission/packages) ([source](https://redirect.github.com/linuxserver/docker-transmission)) | digest | `5a8121c` -> `c752163` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
ac95e1c115 |
chore(helm): update image docker.io/vabene1111/recipes 1.5.32 → 1.5.33 (#33400)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/vabene1111/recipes](https://redirect.github.com/TandoorRecipes/recipes) | patch | `b2633b5` -> `e61e328` | --- > [!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>TandoorRecipes/recipes (docker.io/vabene1111/recipes)</summary> ### [`v1.5.33`](https://redirect.github.com/TandoorRecipes/recipes/releases/tag/1.5.33) [Compare Source](https://redirect.github.com/TandoorRecipes/recipes/compare/1.5.32...1.5.33) - **added** dependencies for django allauth common providers [#​3596](https://redirect.github.com/TandoorRecipes/recipes/issues/3596) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
9fa4eb96d2 |
chore(helm): update image docker.io/privoce/vocechat-server v0.4.1 → v0.4.2 (#33398)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/privoce/vocechat-server | patch | `a43d3df` -> `fb4c83c` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
6f840fe02b |
chore(helm): update image docker.io/zwavejs/zwave-js-ui 9.33.0 → 9.33.1 (#33401)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/zwavejs/zwave-js-ui](https://redirect.github.com/zwave-js/zwave-js-ui) | patch | `e2febae` -> `06c6a64` | --- > [!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>zwave-js/zwave-js-ui (docker.io/zwavejs/zwave-js-ui)</summary> ### [`v9.33.1`](https://redirect.github.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9331-2025-03-18) [Compare Source](https://redirect.github.com/zwave-js/zwave-js-ui/compare/v9.33.0...v9.33.1) ##### Bug Fixes - add type annotation for info parameter in customFormat logger ([24aca53](https://redirect.github.com/zwave-js/zwave-js-ui/commit/24aca5374d710663eb649f972efb58db9469aa49)) - explicitly add [@​zwave-js/core](https://redirect.github.com/zwave-js/core) and [@​zwave-js/shared](https://redirect.github.com/zwave-js/shared) deps ([7522c29](https://redirect.github.com/zwave-js/zwave-js-ui/commit/7522c293b38f35d906ec69e07b91509f113183c2)), closes [#​4145](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4145) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0f162007a9 |
chore(helm): update image docker.io/ollama/ollama 0.6.1 → 0.6.2 (#33397)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/ollama/ollama | patch | `f7f3bc1` -> `61f311a` | | docker.io/ollama/ollama | patch | `5592e1b` -> `74a0929` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
97241157d5 |
chore(helm): update image docker.io/fallenbagel/jellyseerr 2.5.0 → 2.5.1 (#33394)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/fallenbagel/jellyseerr](https://redirect.github.com/Fallenbagel/jellyseerr) | patch | `92dc0eb` -> `52ca0b1` | --- > [!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>Fallenbagel/jellyseerr (docker.io/fallenbagel/jellyseerr)</summary> ### [`v2.5.1`](https://redirect.github.com/fallenbagel/jellyseerr/releases/tag/v2.5.1) [Compare Source](https://redirect.github.com/Fallenbagel/jellyseerr/compare/v2.5.0...v2.5.1) ##### Bug Fixes - **auth:** Bitwarden autofill fix on local/Jellyfin login ([#​1459](https://redirect.github.com/fallenbagel/jellyseerr/issues/1459)) ([b085e12](https://redirect.github.com/fallenbagel/jellyseerr/commit/b085e12ff9df9f57d71ca1fe27fefa8319229a2a)) - **blacklist:** add back the blacklist button on TitleCard for Plex ([#​1463](https://redirect.github.com/fallenbagel/jellyseerr/issues/1463)) ([4d1163c](https://redirect.github.com/fallenbagel/jellyseerr/commit/4d1163c34384efa59fe9b5401c5bd42d7f0435fc)), closes [#​1398](https://redirect.github.com/fallenbagel/jellyseerr/issues/1398) - check if the file still exists in the service before deleting ([#​1476](https://redirect.github.com/fallenbagel/jellyseerr/issues/1476)) ([f773e0f](https://redirect.github.com/fallenbagel/jellyseerr/commit/f773e0fb2a62f4f316ca7f8fe3d8dabdebae2ab7)) - **job:** resolve edge case issue with season availability updates ([#​1483](https://redirect.github.com/fallenbagel/jellyseerr/issues/1483)) ([77a36f9](https://redirect.github.com/fallenbagel/jellyseerr/commit/77a36f971444ee5dc0d15b2d34a8daaf4e1f28b5)) - **mediarequest:** correct download sync for Radarr ([#​1484](https://redirect.github.com/fallenbagel/jellyseerr/issues/1484)) ([c2d9d00](https://redirect.github.com/fallenbagel/jellyseerr/commit/c2d9d00b415fecbb5a8d7ca28a6ed76ea3ba3c19)), closes [#​1376](https://redirect.github.com/fallenbagel/jellyseerr/issues/1376) - **proxy:** update http proxy to accept bypass list with undici v7 ([#​1456](https://redirect.github.com/fallenbagel/jellyseerr/issues/1456)) ([9891a75](https://redirect.github.com/fallenbagel/jellyseerr/commit/9891a7577cc0874f41c38ff0e6e5a6b4d8315281)), closes [#​1454](https://redirect.github.com/fallenbagel/jellyseerr/issues/1454) - **requestlist:** hide the remove from \*arr button when no service exists ([#​1457](https://redirect.github.com/fallenbagel/jellyseerr/issues/1457)) ([33e7a15](https://redirect.github.com/fallenbagel/jellyseerr/commit/33e7a153aa64461a715595d070fba53d52b34767)), closes [#​1449](https://redirect.github.com/fallenbagel/jellyseerr/issues/1449) - **smtp-notification-test:** missing allowSelfSigned option in test function ([#​1461](https://redirect.github.com/fallenbagel/jellyseerr/issues/1461)) ([b8425d6](https://redirect.github.com/fallenbagel/jellyseerr/commit/b8425d6388003322edd7b4b2473aeb24c06e4802)) - **ui:** correct seasons badge order ([#​1485](https://redirect.github.com/fallenbagel/jellyseerr/issues/1485)) ([f884ac9](https://redirect.github.com/fallenbagel/jellyseerr/commit/f884ac9c660d1931c8b3815dcaefd109da249f2a)) - **ui:** move watch trailer button above the 4k request button ([#​1465](https://redirect.github.com/fallenbagel/jellyseerr/issues/1465)) ([a6dd4a8](https://redirect.github.com/fallenbagel/jellyseerr/commit/a6dd4a8fedb9af9810581b1cc18cfea53b3cfd39)), closes [#​1462](https://redirect.github.com/fallenbagel/jellyseerr/issues/1462) - **ui:** resolve streaming region dropdown overlap ([#​1477](https://redirect.github.com/fallenbagel/jellyseerr/issues/1477)) ([767a241](https://redirect.github.com/fallenbagel/jellyseerr/commit/767a24164d6c9d101e613c53960985f4fbe2ce93)), closes [#​1475](https://redirect.github.com/fallenbagel/jellyseerr/issues/1475) ##### Reverts - **airdate:** reverts airdate offset & changes relative time to only display date (not time) ([#​1467](https://redirect.github.com/fallenbagel/jellyseerr/issues/1467)) ([8394eb5](https://redirect.github.com/fallenbagel/jellyseerr/commit/8394eb5ad405a90e840952d5977712e1ab890530)), closes [#​1390](https://redirect.github.com/fallenbagel/jellyseerr/issues/1390) *** This release is also available on: - `v2.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
a984d79db2 |
chore(helm): update image docker.io/sonatype/nexus3 3.78.1 → 3.78.2 (#33399)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/sonatype/nexus3 | patch | `af8e727` -> `bfd76c0` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
4ddb15e818 |
chore(flux): update image jackett 23.3.50 → 23.3.51 (#33391)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jackett](https://truecharts.org/charts/stable/jackett) ([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.50` -> `23.3.51` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
b007171418 |
chore(container): update public.ecr.aws/docker/library/nextcloud:31.0.1-fpm docker digest to f277ddd (#33368)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [public.ecr.aws/docker/library/nextcloud](https://hub.docker.com/_/nextcloud) ([source](https://redirect.github.com/nextcloud/docker)) | final | digest | `2b6ed30` -> `f277ddd` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
ea188438d3 |
chore(helm): update image ghcr.io/linuxserver/firefox 136.0.1 → 136.0.2 (#33402)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/firefox](https://redirect.github.com/linuxserver/docker-firefox/packages) ([source](https://redirect.github.com/linuxserver/docker-firefox)) | patch | `90efc72` -> `366065a` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
2387f35997 |
chore(helm): update image redmine digest to 420037b (#33390)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | redmine | digest | `93ebc40` -> `420037b` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
ef88a658e7 |
chore(helm): update image public.ecr.aws/bitnami/memcached digest to 59c6cef (#33387)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/memcached](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/memcached)) | digest | `8182e4b` -> `59c6cef` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
5dc3c75d21 |
chore(helm): update image docker.io/nodered/node-red digest to 0b295b3 (#33381)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/nodered/node-red](https://redirect.github.com/node-red/node-red-docker) | digest | `7a3e18f` -> `0b295b3` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
7a46b310eb |
chore(container): update golang:1.24.1 docker digest to af0bb30 (#33367)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | final | digest | `fa145a3` -> `af0bb30` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
0dfb8ec1ac |
chore(helm): update image ghcr.io/elfhosted/riven v0.21.9 → v0.21.10 (#33365)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/riven | patch | `7da8c94` -> `62d09a9` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
fa7e73ce21 |
chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1646 → 0.22.1660 (#33364)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | patch | `055eff4` -> `8633cc7` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
1918eece1b |
chore(helm): update image ghcr.io/elfhosted/emby digest to b21825c (#33363)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/emby | digest | `556d537` -> `b21825c` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
2a49c35806 |
chore(helm): update image ghcr.io/elfhosted/nzbget 24.7 → 24.8 (#33366)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/elfhosted/nzbget](https://redirect.github.com/nzbgetcom/nzbget) | minor | `899d25a` -> `3f049d4` | --- > [!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>nzbgetcom/nzbget (ghcr.io/elfhosted/nzbget)</summary> ### [`v24.8`](https://redirect.github.com/nzbgetcom/nzbget/releases/tag/v24.8) [Compare Source](https://redirect.github.com/nzbgetcom/nzbget/compare/v24.7...v24.8) #### What's Changed - Features: - TrueNAS Scale support [#​494](https://redirect.github.com/nzbgetcom/nzbget/issues/494) - Bug fixes: - Fixed application updates on Windows [#​528](https://redirect.github.com/nzbgetcom/nzbget/pull/528) - Fixed `DirectUnpack` cancellation [#​530](https://redirect.github.com/nzbgetcom/nzbget/pull/530) > \[!NOTE]\ > For Windows users: > Due to a bug affecting updates on Windows, direct upgrades from v24.7 to v24.8 are currently unavailable. To upgrade, please manually install version 24.8. > After the manual installation, the updater should start working correctly. </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
9b8d072a44 |
chore(container): update public.ecr.aws/docker/library/nextcloud:31.0.1-fpm docker digest to 2b6ed30 (#33362)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [public.ecr.aws/docker/library/nextcloud](https://hub.docker.com/_/nextcloud) ([source](https://redirect.github.com/nextcloud/docker)) | final | digest | `6854c03` -> `2b6ed30` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
c1fcb0bc78 |
chore(helm): update authentik 2025.2.1 → 2025.2.2 (patch) (#33357)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/goauthentik/ldap](https://goauthentik.io) ([source](https://redirect.github.com/goauthentik/authentik)) | patch | `74e7457` -> `cc9ba19` | | [ghcr.io/goauthentik/proxy](https://goauthentik.io) ([source](https://redirect.github.com/goauthentik/authentik)) | patch | `007250c` -> `846b742` | | [ghcr.io/goauthentik/radius](https://goauthentik.io) ([source](https://redirect.github.com/goauthentik/authentik)) | patch | `a822748` -> `ba639f5` | | [ghcr.io/goauthentik/server](https://goauthentik.io) ([source](https://redirect.github.com/goauthentik/authentik)) | patch | `dc07e81` -> `d9bcd96` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c114d22199 | chore(helm): update image tccr.io/tccr/code-server v4.98.0 → v4.98.2 (#33361) | ||
|
|
6f2b8d0b9d |
chore(helm): update image public.ecr.aws/bitnami/wordpress digest to 326d12f (#33356)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/wordpress](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/wordpress)) | digest | `c781f8a` -> `326d12f` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
61868afef6 |
chore(helm): update image ghcr.io/authelia/authelia 4.39.0 → 4.39.1 (#33359)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/authelia/authelia](https://redirect.github.com/authelia/authelia/pkgs/container/authelia) ([source](https://redirect.github.com/authelia/authelia)) | patch | `45cb4ea` -> `e325963` | --- > [!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>authelia/authelia (ghcr.io/authelia/authelia)</summary> ### [`v4.39.1`](https://redirect.github.com/authelia/authelia/releases/tag/v4.39.1) [Compare Source](https://redirect.github.com/authelia/authelia/compare/v4.39.0...v4.39.1) ##### Bug Fixes - **configuration:** cache lifespan scheme case ([#​8983](https://redirect.github.com/authelia/authelia/issues/8983)) ([16a447b](https://redirect.github.com/authelia/authelia/commit/16a447bdcd09a04a06f0c845fd465fa5d60add6c)), closes [#​8981](https://redirect.github.com/authelia/authelia/issues/8981) - notifier startup check ignored ([#​8977](https://redirect.github.com/authelia/authelia/issues/8977)) ([212b1b5](https://redirect.github.com/authelia/authelia/commit/212b1b59a9921fab56e2affe151d61aad8a231ee)), closes [#​8975](https://redirect.github.com/authelia/authelia/issues/8975) - **oidc:** claims nil value not checked ([#​8982](https://redirect.github.com/authelia/authelia/issues/8982)) ([6cc1909](https://redirect.github.com/authelia/authelia/commit/6cc1909e58f3789de8554e2d0e78347ea09eb8df)), closes [#​8979](https://redirect.github.com/authelia/authelia/issues/8979) - **oidc:** multiple subject matching regression ([#​8998](https://redirect.github.com/authelia/authelia/issues/8998)) ([377ddd1](https://redirect.github.com/authelia/authelia/commit/377ddd1a9296f9d22a9041e16878a9d2d938c943)) - session retrieval failure with in-built memory provider ([#​9004](https://redirect.github.com/authelia/authelia/issues/9004)) ([7a750da](https://redirect.github.com/authelia/authelia/commit/7a750daa47c8f01ac3e79ee4babbc296f03abadd)) - **storage:** cached_data table value size ([#​8984](https://redirect.github.com/authelia/authelia/issues/8984)) ([3f5e747](https://redirect.github.com/authelia/authelia/commit/3f5e747b41ef391a1f58b0958ee6645652fc7531)) - **suites:** sambaldap certs with negative serial numbers ([#​9007](https://redirect.github.com/authelia/authelia/issues/9007)) ([0558ad2](https://redirect.github.com/authelia/authelia/commit/0558ad28fa41c45e79979394a66b4b0551309847)) - **web:** appbar layout ([#​8987](https://redirect.github.com/authelia/authelia/issues/8987)) ([c661154](https://redirect.github.com/authelia/authelia/commit/c661154d46144b9febf923964efe6bca45f2799a)) - **web:** broken horizontal margin ([#​8988](https://redirect.github.com/authelia/authelia/issues/8988)) ([3f2aa0d](https://redirect.github.com/authelia/authelia/commit/3f2aa0d57259c20da03546d473a65bfa1ccf4ff7)) - **web:** duo sign in failure ([#​8986](https://redirect.github.com/authelia/authelia/issues/8986)) ([d514f8a](https://redirect.github.com/authelia/authelia/commit/d514f8ac9a0089fd0eb7f87156461b341c5df9ee)) ##### Docker Container - `docker pull authelia/authelia:4.39.1` - `docker pull ghcr.io/authelia/authelia:4.39.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e8373ec1b9 |
chore(helm): update image ghcr.io/hotio/whisparr v3-3.0.0.871 → v3-3.0.0.877 (#33360)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/hotio/whisparr](https://hotio.dev/containers/whisparr) ([source](https://redirect.github.com/hotio/whisparr)) | patch | `c1714d3` -> `188c0a1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
45f1628a23 |
chore(helm): update chart clickhouse 15.1.0 → 15.1.1 (#33358)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [clickhouse](https://truecharts.org/charts/stable/clickhouse) ([source](https://clickhouse.com/)) | patch | `15.1.0` -> `15.1.1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
5b145a38ca |
chore(helm): update image docker.io/searxng/searxng digest to 2140df1 (#33355)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/searxng/searxng | digest | `7837de6` -> `2140df1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
a0901fdb61 | chore(github-action): update golangci/golangci-lint-action digest to 55c2c14 (#33354) | ||
|
|
8c0bdbec68 |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
448de09820 |
chore(helm): update image docker.io/fireflyiii/core digest to e0edbf2 (#33253)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/fireflyiii/core](https://redirect.github.com/firefly-iii/docker) ([source](https://dev.azure.com/Firefly-III/_git/MainImage)) | digest | `ac842bc` -> `e0edbf2` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
de201f91f7 |
chore(helm): update image quay.io/invidious/invidious digest to d968ea4 (#33261)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | quay.io/invidious/invidious | digest | `6ff9543` -> `d968ea4` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
fdcb74e746 |
chore(helm): update image ghcr.io/minekube/gate digest to 4c445bc (#33259)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/minekube/gate | digest | `e495c17` -> `4c445bc` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
35bcf2e108 |
chore(helm): update image docker.io/lmscommunity/lyrionmusicserver digest to 8a50c14 (#33254)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lmscommunity/lyrionmusicserver | digest | `14ee9bf` -> `8a50c14` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
7ae738a151 |
chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine digest to 9cef889 (#33252)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/automaticrippingmachine/automatic-ripping-machine](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine) | digest | `1a000ca` -> `9cef889` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
4362d22a2f |
chore(container): update docker.io/codercom/code-server docker tag to v4.98.2 (#33262)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | docker.io/codercom/code-server | final | patch | `4.98.0` -> `4.98.2` | --- ### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
bc198f9419 |
chore(helm): update image docker.io/clickhouse/clickhouse-server 25.2.1.3085 → 25.2.2.39 (#33263)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/clickhouse/clickhouse-server | patch | `1775bf0` -> `769b350` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
4895b767e6 |
chore(helm): update image docker.io/deluan/navidrome 0.55.0 → 0.55.1 (#33266)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/deluan/navidrome](https://redirect.github.com/navidrome/navidrome) | patch | `2a1d37a` -> `f78fa70` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>navidrome/navidrome (docker.io/deluan/navidrome)</summary> ### [`v0.55.1`](https://redirect.github.com/navidrome/navidrome/releases/tag/v0.55.1) [Compare Source](https://redirect.github.com/navidrome/navidrome/compare/v0.55.0...v0.55.1) #### Bugfix release A bunch of bug fixes, and a couple of improvements. Thanks you all for the feedback! #### Changelog ##### New Features - [`2838ac3`](https://redirect.github.com/navidrome/navidrome/commit/2838ac36df72fefbe796e0fa88316ea6d7f106f9): feat(scanner): allow disabling tags with `Tags.<tag>.Ignore=true` ([@​deluan](https://redirect.github.com/deluan)) - [`beb768c`](https://redirect.github.com/navidrome/navidrome/commit/beb768cd9cd00f01581fe190a345ccf8617950db): feat(server): add Role filters to albums ([#​3829](https://redirect.github.com/navidrome/navidrome/issues/3829)) ([@​deluan](https://redirect.github.com/deluan)) ##### Bug fixes - [`b952672`](https://redirect.github.com/navidrome/navidrome/commit/b952672877be6f927a0c0a44b84b3415e243fd13): fix(scanner): add back the Scanner.GenreSeparators as a deprecated option ([@​deluan](https://redirect.github.com/deluan)) - [`226be78`](https://redirect.github.com/navidrome/navidrome/commit/226be78bf538b2bd025d4ad5b683d6368683c695): fix(scanner): full_text not being updated on scan ([@​deluan](https://redirect.github.com/deluan)) - [`938c3d4`](https://redirect.github.com/navidrome/navidrome/commit/938c3d44ccb96c2f0f1751d2b07f8ae29c4f061c): fix(scanner): restore setsubtitle as discsubtitle for non-WMA ([#​3821](https://redirect.github.com/navidrome/navidrome/issues/3821)) ([@​kgarner7](https://redirect.github.com/kgarner7)) - [`5fb1db6`](https://redirect.github.com/navidrome/navidrome/commit/5fb1db60314ee800cb6ead9a9f7100da3c206661): fix(scanner): watcher not working with relative MusicFolder ([@​deluan](https://redirect.github.com/deluan)) - [`2a15a21`](https://redirect.github.com/navidrome/navidrome/commit/2a15a217deb49f6838bed6634f81c49e5a4f43da): fix(server): db migration does not work for MusicFolders ending with a trailing slash. ([#​3797](https://redirect.github.com/navidrome/navidrome/issues/3797)) ([@​deluan](https://redirect.github.com/deluan)) - [`5c67297`](https://redirect.github.com/navidrome/navidrome/commit/5c67297dcef63bef4a52b506ebcc55d670f34867): fix(server): panic when logging tag type. Fix [#​3790](https://redirect.github.com/navidrome/navidrome/issues/3790) ([@​deluan](https://redirect.github.com/deluan)) - [`5c0b6fb`](https://redirect.github.com/navidrome/navidrome/commit/5c0b6fb9b7363582e351f90e594ef5e17f5e50d9): fix(server): skip non-UTF encoding during the database migration. ([#​3803](https://redirect.github.com/navidrome/navidrome/issues/3803)) ([@​deluan](https://redirect.github.com/deluan)) - [`ed1109d`](https://redirect.github.com/navidrome/navidrome/commit/ed1109ddb232184d69e655b72a2a44f9c1033e5b): fix(subsonic): fix albumCount in artists ([#​3827](https://redirect.github.com/navidrome/navidrome/issues/3827)) ([@​kgarner7](https://redirect.github.com/kgarner7)) - [`7c13878`](https://redirect.github.com/navidrome/navidrome/commit/7c1387807567519e588c398ec94d74b3041fa1af): fix(subsonic): getRandomSongs with `genre` filter ([@​deluan](https://redirect.github.com/deluan)) - [`a28462a`](https://redirect.github.com/navidrome/navidrome/commit/a28462a7abd2d4e26c4fc44ea51065ab8338922a): fix(ui): fix `make dev` ([#​3795](https://redirect.github.com/navidrome/navidrome/issues/3795)) ([@​kgarner7](https://redirect.github.com/kgarner7)) - [`70f536e`](https://redirect.github.com/navidrome/navidrome/commit/70f536e04df0e7603a68ce1a9f7bb60c35873e4c): fix(ui): skip missing files in bulk operations ([#​3807](https://redirect.github.com/navidrome/navidrome/issues/3807)) ([@​deluan](https://redirect.github.com/deluan)) - [`0bb4b88`](https://redirect.github.com/navidrome/navidrome/commit/0bb4b881e905a2ffa07aef1dbb7308a1ddae141d): fix(ui): update Español translation ([#​3805](https://redirect.github.com/navidrome/navidrome/issues/3805)) ([@​RigleGit](https://redirect.github.com/RigleGit)) ##### Documentation updates - [`98808e4`](https://redirect.github.com/navidrome/navidrome/commit/98808e4b6dd7c2f6af82cf1dbeeb847f67c47538): docs(scanner): clarifies the purpose of the mappings.yaml file for regular users ([@​deluan](https://redirect.github.com/deluan)) ##### Other work - [`422ba22`](https://redirect.github.com/navidrome/navidrome/commit/422ba2284e4baa45ed939505b12fcd378e6e339a): chore(scanner): add logs to .ndignore processing ([@​deluan](https://redirect.github.com/deluan)) **Full Changelog**: https://github.com/navidrome/navidrome/compare/v0.55.0...v0.55.1 #### Helping out This release is only possible thanks to the support of some **awesome people**! Want to be one of them? You can [sponsor](https://redirect.github.com/sponsors/deluan), pay me a [Ko-fi](https://ko-fi.com/deluan), or [contribute with code](https://www.navidrome.org/docs/developers/). #### Where to go next? - Read installation instructions on our [website](https://www.navidrome.org/docs/installation/). - Host Navidrome on [PikaPods](https://www.pikapods.com/pods/navidrome) for a simple cloud solution. - Reach out on [Discord](https://discord.gg/xh7j7yF), [Reddit](https://www.reddit.com/r/navidrome/) and [Twitter](https://twitter.com/navidrome)! </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e8713353c7 |
chore(helm): update image docker.io/gaseousgames/gaseousserver v1.7.10 → v1.7.11 (#33268)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/gaseousgames/gaseousserver | patch | `8fef708` -> `a461a93` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
610519bbc2 |
chore(helm): update image docker.io/feramance/qbitrr v4.10.16 → v4.10.20 (#33267)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/feramance/qbitrr](https://redirect.github.com/Feramance/qBitrr) | patch | `6356d40` -> `931a7ce` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>Feramance/qBitrr (docker.io/feramance/qbitrr)</summary> ### [`v4.10.20`](https://redirect.github.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v41020-12032025) [Compare Source](https://redirect.github.com/Feramance/qBitrr/compare/v4.10.19...v4.10.20) - [\[patch\] Adjusted stalled delay fallback, logs, and stalled delay now acts on the last activity, rather than added on](https://redirect.github.com/Feramance/qBitrr/commit/a61080f740835600c02383376134b6157a024346) - [@​Feramance](https://redirect.github.com/Feramance) *** ### [`v4.10.19`](https://redirect.github.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v41019-12032025) [Compare Source](https://redirect.github.com/Feramance/qBitrr/compare/v4.10.18...v4.10.19) - [\[patch\] Enabled stalled delay default](https://redirect.github.com/Feramance/qBitrr/commit/e9df62d84372b997f399e52e0870150438191104) - [@​Feramance](https://redirect.github.com/Feramance) *** ### [`v4.10.18`](https://redirect.github.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v41018-12032025) [Compare Source](https://redirect.github.com/Feramance/qBitrr/compare/v4.10.17...v4.10.18) - [\[patch\] Free space fixes and remove stalled tag if recent](https://redirect.github.com/Feramance/qBitrr/commit/8bf7bb4366c0dc38fd2ff2ae430c7c8bf8a79cfb) - [@​Feramance](https://redirect.github.com/Feramance) *** ### [`v4.10.17`](https://redirect.github.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v41017-12032025) [Compare Source](https://redirect.github.com/Feramance/qBitrr/compare/v4.10.16...v4.10.17) - [\[patch\] Updated paused torrent handling](https://redirect.github.com/Feramance/qBitrr/commit/1b4be8ff27ec72132e29db1a96ff612dad8d9df5) - [@​Feramance](https://redirect.github.com/Feramance) - [Free space adjustements](https://redirect.github.com/Feramance/qBitrr/commit/7805b27bc78a19ae27db7e0e19abe6c102ec396b) - [@​Feramance](https://redirect.github.com/Feramance) *** </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
6926301e68 |
chore(helm): update image docker.io/homeassistant/home-assistant 2025.3.2 → 2025.3.3 (#33269)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/homeassistant/home-assistant](https://www.home-assistant.io/) ([source](https://redirect.github.com/home-assistant/core)) | patch | `3f47bf8` -> `b67d76f` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>home-assistant/core (docker.io/homeassistant/home-assistant)</summary> ### [`v2025.3.3`](https://redirect.github.com/home-assistant/core/releases/tag/2025.3.3) [Compare Source](https://redirect.github.com/home-assistant/core/compare/2025.3.2...2025.3.3) - Fix bug with all Roborock maps being set to the wrong map when empty ([@​Lash-L] - [#​138493]) ([roborock docs]) - Bump pysuezV2 to 2.0.4 ([@​jb101010-2] - [#​139824]) ([suez_water docs]) (dependency) - Bump upb-lib to 0.6.1 ([@​gwww] - [#​140212]) ([upb docs]) (dependency) - Use only IPv4 for zeroconf in bluesound integration ([@​LouisChrist] - [#​140226]) ([bluesound docs]) - Only do WebDAV path migration when path differs ([@​jpbede] - [#​140402]) ([webdav docs]) - Bump velbusaio to 2025.3.1 ([@​cereal2nd] - [#​140443]) ([velbus docs]) (dependency) - Mark value in number.set_value action as required ([@​joostlek] - [#​140445]) ([number docs]) - Bump Tesla Fleet API to 0.9.13 ([@​Bre77] - [#​140485]) ([tessie docs]) ([teslemetry docs]) ([tesla_fleet docs]) - Update xknxproject to 3.8.2 ([@​farmio] - [#​140499]) ([knx docs]) (dependency) - Fix Shelly diagnostics for devices without WebSocket Outbound support ([@​bieniu] - [#​140501]) ([shelly docs]) - Fix windowShadeLevel capability in SmartThings ([@​joostlek] - [#​140552]) ([smartthings docs]) - Set unit of measurement for SmartThings oven setpoint ([@​joostlek] - [#​140560]) ([smartthings docs]) - Fix missing UnitOfPower.MILLIWATT in sensor and number allowed units ([@​ashionky] - [#​140567]) ([sensor docs]) [#​138493]: https://redirect.github.com/home-assistant/core/pull/138493 [#​139824]: https://redirect.github.com/home-assistant/core/pull/139824 [#​139859]: https://redirect.github.com/home-assistant/core/pull/139859 [#​140061]: https://redirect.github.com/home-assistant/core/pull/140061 [#​140212]: https://redirect.github.com/home-assistant/core/pull/140212 [#​140226]: https://redirect.github.com/home-assistant/core/pull/140226 [#​140392]: https://redirect.github.com/home-assistant/core/pull/140392 [#​140402]: https://redirect.github.com/home-assistant/core/pull/140402 [#​140443]: https://redirect.github.com/home-assistant/core/pull/140443 [#​140445]: https://redirect.github.com/home-assistant/core/pull/140445 [#​140485]: https://redirect.github.com/home-assistant/core/pull/140485 [#​140499]: https://redirect.github.com/home-assistant/core/pull/140499 [#​140501]: https://redirect.github.com/home-assistant/core/pull/140501 [#​140552]: https://redirect.github.com/home-assistant/core/pull/140552 [#​140560]: https://redirect.github.com/home-assistant/core/pull/140560 [#​140567]: https://redirect.github.com/home-assistant/core/pull/140567 [@​Bre77]: https://redirect.github.com/Bre77 [@​Lash-L]: https://redirect.github.com/Lash-L [@​LouisChrist]: https://redirect.github.com/LouisChrist [@​ashionky]: https://redirect.github.com/ashionky [@​bieniu]: https://redirect.github.com/bieniu [@​cereal2nd]: https://redirect.github.com/cereal2nd [@​farmio]: https://redirect.github.com/farmio [@​frenck]: https://redirect.github.com/frenck [@​gwww]: https://redirect.github.com/gwww [@​jb101010-2]: https://redirect.github.com/jb101010-2 [@​joostlek]: https://redirect.github.com/joostlek [@​jpbede]: https://redirect.github.com/jpbede [abode docs]: https://www.home-assistant.io/integrations/abode/ [acaia docs]: https://www.home-assistant.io/integrations/acaia/ [accuweather docs]: https://www.home-assistant.io/integrations/accuweather/ [bluesound docs]: https://www.home-assistant.io/integrations/bluesound/ [knx docs]: https://www.home-assistant.io/integrations/knx/ [number docs]: https://www.home-assistant.io/integrations/number/ [roborock docs]: https://www.home-assistant.io/integrations/roborock/ [sensor docs]: https://www.home-assistant.io/integrations/sensor/ [shelly docs]: https://www.home-assistant.io/integrations/shelly/ [smartthings docs]: https://www.home-assistant.io/integrations/smartthings/ [suez_water docs]: https://www.home-assistant.io/integrations/suez_water/ [tesla_fleet docs]: https://www.home-assistant.io/integrations/tesla_fleet/ [teslemetry docs]: https://www.home-assistant.io/integrations/teslemetry/ [tessie docs]: https://www.home-assistant.io/integrations/tessie/ [upb docs]: https://www.home-assistant.io/integrations/upb/ [velbus docs]: https://www.home-assistant.io/integrations/velbus/ [webdav docs]: https://www.home-assistant.io/integrations/webdav/ </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
d0be29aaab |
chore(helm): update image lscr.io/linuxserver/cops digest to 6b567c5 (#33341)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [lscr.io/linuxserver/cops](https://redirect.github.com/linuxserver/docker-cops/packages) ([source](https://redirect.github.com/linuxserver/docker-cops)) | digest | `6c820a6` -> `6b567c5` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
c5d2825e0d |
chore(helm): update image docker.io/codercom/code-server 4.98.0 → 4.98.2 (#33264)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/codercom/code-server | patch | `4919003` -> `9ed588a` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
8a309f5175 |
chore(helm): update image docker.io/sourcegraph/server 6.1.2889 → 6.1.4020 (#33272)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/sourcegraph/server](https://sourcegraph.com/) ([source](https://redirect.github.com/sourcegraph/sourcegraph)) | patch | `0637251` -> `047c146` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
b1448fb61d |
chore(helm): update image ghcr.io/gethomepage/homepage v0.10.9 → v1.0.4 (#33346)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/gethomepage/homepage](https://redirect.github.com/gethomepage/homepage) | major | `b6d7328` -> `78a34ac` | --- > [!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>gethomepage/homepage (ghcr.io/gethomepage/homepage)</summary> ### [`v1.0.4`](https://redirect.github.com/gethomepage/homepage/releases/tag/v1.0.4) [Compare Source](https://redirect.github.com/gethomepage/homepage/compare/v1.0.3...v1.0.4) #### What's Changed - Chore: update minecraftstatuspinger to 1.2.2 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4982](https://redirect.github.com/gethomepage/homepage/pull/4982) - Fix: fix Kubernetes stats in v1.0.0 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4984](https://redirect.github.com/gethomepage/homepage/pull/4984) - Change: re-enable k8s ingress by default by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4988](https://redirect.github.com/gethomepage/homepage/pull/4988) - Fix: fix bookmark heights again by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4997](https://redirect.github.com/gethomepage/homepage/pull/4997) - Fix: re-add tailwind css safelist by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4999](https://redirect.github.com/gethomepage/homepage/pull/4999) - Fix: fix custom quicklaunch search suggestions without search widget by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/5003](https://redirect.github.com/gethomepage/homepage/pull/5003) **Full Changelog**: https://github.com/gethomepage/homepage/compare/v1.0.3...v1.0.4 ### [`v1.0.3`](https://redirect.github.com/gethomepage/homepage/releases/tag/v1.0.3) [Compare Source](https://redirect.github.com/gethomepage/homepage/compare/v1.0.2...v1.0.3) #### What's Changed - Fix: wrapping in bookmarks by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4945](https://redirect.github.com/gethomepage/homepage/pull/4945) - Fix: fix kavita API body with key by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4948](https://redirect.github.com/gethomepage/homepage/pull/4948) - Fix: correct units for speedtest tracker API v2 by [@​brikim](https://redirect.github.com/brikim) in [https://github.com/gethomepage/homepage/pull/4950](https://redirect.github.com/gethomepage/homepage/pull/4950) - Change: prefer IPv4 in docker image by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4954](https://redirect.github.com/gethomepage/homepage/pull/4954) - Enhancement: allow disabling host checking by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4967](https://redirect.github.com/gethomepage/homepage/pull/4967) - Fix: jellyfin handle empty episode numbers by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4970](https://redirect.github.com/gethomepage/homepage/pull/4970) - Documentation: add HOMEPAGE_ALLOWED_HOSTS to k8s docs by [@​xalxnder](https://redirect.github.com/xalxnder) in [https://github.com/gethomepage/homepage/pull/4969](https://redirect.github.com/gethomepage/homepage/pull/4969) #### New Contributors - [@​xalxnder](https://redirect.github.com/xalxnder) made their first contribution in [https://github.com/gethomepage/homepage/pull/4969](https://redirect.github.com/gethomepage/homepage/pull/4969) **Full Changelog**: https://github.com/gethomepage/homepage/compare/v1.0.2...v1.0.3 ### [`v1.0.2`](https://redirect.github.com/gethomepage/homepage/releases/tag/v1.0.2) [Compare Source](https://redirect.github.com/gethomepage/homepage/compare/v1.0.0...v1.0.2) This small bug fix fixes a couple of layout issues in v1.0.0 and reverts a change to networking that was in v1.0.1 Please also check out the [v1.0 release notes](https://redirect.github.com/gethomepage/homepage/releases/tag/v1.0.0) - Fix: fix plex total size with larger libraries by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4933](https://redirect.github.com/gethomepage/homepage/pull/4933) - Fix: fix larger breakpoint by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4935](https://redirect.github.com/gethomepage/homepage/pull/4935) **Full Changelog**: https://github.com/gethomepage/homepage/compare/v1.0.0...v1.0.2 ### [`v1.0.0`](https://redirect.github.com/gethomepage/homepage/releases/tag/v1.0.0) [Compare Source](https://redirect.github.com/gethomepage/homepage/compare/v0.10.9...v1.0.0) #### Homepage v1.0! 🎉 We're excited to announce the release of homepage v1.0! This release contains a bunch of new widgets, fixes and other improvements, but if you're curious why the major version bump, it's [because](https://semver.org) of the **breaking changes** included: - \[BREAKING] Enhancement: require host validation by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4744](https://redirect.github.com/gethomepage/homepage/pull/4744) - This change is for security reasons and the update is simple: users will need to set the `HOMEPAGE_ALLOWED_HOSTS` environment variable (how to do that varies by install type, see [the docs](https://gethomepage.dev/installation/)) - \[BREAKING] Chore: update to next v15 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4661](https://redirect.github.com/gethomepage/homepage/pull/4661) - homepage no longer runs on armv7 (RIP ✌️) - \[BREAKING] Chore: upgrade to tailwind v4 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4863](https://redirect.github.com/gethomepage/homepage/pull/4863) - some users may need to update their custom css - \[BREAKING] Enhancement: support for Kubernetes gateway API by [@​djeinstine](https://redirect.github.com/djeinstine) in [https://github.com/gethomepage/homepage/pull/4643](https://redirect.github.com/gethomepage/homepage/pull/4643) - k8s users may need to update their configuration, see https://gethomepage.dev/configs/kubernetes/ Thank you to our community of contributors, discord chat helpers and **our users**! We are so proud of the collaboration that goes into keeping this project delightful. #### What's Changed - Documentation: add note about clearing UniFi cache non-docker by [@​GTez](https://redirect.github.com/GTez) in [https://github.com/gethomepage/homepage/pull/4585](https://redirect.github.com/gethomepage/homepage/pull/4585) - Enhancement: handle evcc breaking change by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4630](https://redirect.github.com/gethomepage/homepage/pull/4630) - Development: pnpm lint on ci by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4646](https://redirect.github.com/gethomepage/homepage/pull/4646) - Fix: fix overlap with glances charts in multi-widgets by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4653](https://redirect.github.com/gethomepage/homepage/pull/4653) - \[BREAKING] Chore: update to next v15 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4661](https://redirect.github.com/gethomepage/homepage/pull/4661) - Feature: Firefly widget by [@​Amjad50](https://redirect.github.com/Amjad50) in [https://github.com/gethomepage/homepage/pull/4683](https://redirect.github.com/gethomepage/homepage/pull/4683) - Fix: correct package version number by [@​Maarc](https://redirect.github.com/Maarc) in [https://github.com/gethomepage/homepage/pull/4691](https://redirect.github.com/gethomepage/homepage/pull/4691) - Enhancement: support speedtest v1.2 API by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4695](https://redirect.github.com/gethomepage/homepage/pull/4695) - Enhancement: filter prometheus API endpoint for active only by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4701](https://redirect.github.com/gethomepage/homepage/pull/4701) - Fix: fix nesting with unsorted groups by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4711](https://redirect.github.com/gethomepage/homepage/pull/4711) - Enhancement: use datasets for truenas pools by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4716](https://redirect.github.com/gethomepage/homepage/pull/4716) - Chore: upgrade kubernetes/client-node by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4715](https://redirect.github.com/gethomepage/homepage/pull/4715) - Fix: Timezone-aware Date comparison for Calendar integration by [@​Yeraze](https://redirect.github.com/Yeraze) in [https://github.com/gethomepage/homepage/pull/4742](https://redirect.github.com/gethomepage/homepage/pull/4742) - \[BREAKING] Enhancement: support for Kubernetes gateway API by [@​djeinstine](https://redirect.github.com/djeinstine) in [https://github.com/gethomepage/homepage/pull/4643](https://redirect.github.com/gethomepage/homepage/pull/4643) - \[BREAKING] Enhancement: require host validation by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4744](https://redirect.github.com/gethomepage/homepage/pull/4744) - Enhancement: better tz parsing of ical recurring events by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4749](https://redirect.github.com/gethomepage/homepage/pull/4749) - Fix: handle possible null reference in k8s gateway api by [@​dudo](https://redirect.github.com/dudo) in [https://github.com/gethomepage/homepage/pull/4752](https://redirect.github.com/gethomepage/homepage/pull/4752) - Fixhancement: add an option to fritzbox widget to display IPv6 by [@​astappiev](https://redirect.github.com/astappiev) in [https://github.com/gethomepage/homepage/pull/4778](https://redirect.github.com/gethomepage/homepage/pull/4778) - Enhancement: improve try to prune trailing slashes by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4783](https://redirect.github.com/gethomepage/homepage/pull/4783) - Enhancement: support API key for Kavita by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4784](https://redirect.github.com/gethomepage/homepage/pull/4784) - Chore(deps): Bump jsonpath-plus from 10.2.0 to 10.3.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4794](https://redirect.github.com/gethomepage/homepage/pull/4794) - Chore: another big deps update by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4795](https://redirect.github.com/gethomepage/homepage/pull/4795) - Documentation: add auth documentation to PeaNUT by [@​Brandawg93](https://redirect.github.com/Brandawg93) in [https://github.com/gethomepage/homepage/pull/4803](https://redirect.github.com/gethomepage/homepage/pull/4803) - Enhancement: better handle recurring events poorly handled by ical library by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4807](https://redirect.github.com/gethomepage/homepage/pull/4807) - Chore(deps): Bump docker/setup-qemu-action from 3.4.0 to 3.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4836](https://redirect.github.com/gethomepage/homepage/pull/4836) - Fix: subtract inactive_file from glances container memory usage by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4844](https://redirect.github.com/gethomepage/homepage/pull/4844) - Documentation: remove auth info from romm widget by [@​gantoine](https://redirect.github.com/gantoine) in [https://github.com/gethomepage/homepage/pull/4846](https://redirect.github.com/gethomepage/homepage/pull/4846) - Chore(deps): Bump docker/setup-qemu-action from 3.5.0 to 3.6.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4848](https://redirect.github.com/gethomepage/homepage/pull/4848) - Chore(deps-dev): Bump eslint-config-prettier from 9.1.0 to 10.0.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4856](https://redirect.github.com/gethomepage/homepage/pull/4856) - Chore(deps-dev): Bump prettier from 3.5.1 to 3.5.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4859](https://redirect.github.com/gethomepage/homepage/pull/4859) - Enhancement: support new unifi network api and api key by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4860](https://redirect.github.com/gethomepage/homepage/pull/4860) - Chore(deps-dev): Bump eslint from 9.20.1 to 9.21.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4858](https://redirect.github.com/gethomepage/homepage/pull/4858) - Chore(deps): Bump tough-cookie from 4.1.4 to 5.1.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/gethomepage/homepage/pull/4857](https://redirect.github.com/gethomepage/homepage/pull/4857) - Feature: Add APC UPS widget by [@​nicupavel](https://redirect.github.com/nicupavel) in [https://github.com/gethomepage/homepage/pull/4840](https://redirect.github.com/gethomepage/homepage/pull/4840) - \[BREAKING] Chore: upgrade to tailwind v4 by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4863](https://redirect.github.com/gethomepage/homepage/pull/4863) - Fix: return all http routes of a namespace (k8s) by [@​arthur-leclerc](https://redirect.github.com/arthur-leclerc) in [https://github.com/gethomepage/homepage/pull/4865](https://redirect.github.com/gethomepage/homepage/pull/4865) - Fix: correct omada widget connectedGateways by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4872](https://redirect.github.com/gethomepage/homepage/pull/4872) - Enhancement: support komga API keys, breaking API changes by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4874](https://redirect.github.com/gethomepage/homepage/pull/4874) - Fix: use 'real_usage' for synology diskstation memory stats by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4880](https://redirect.github.com/gethomepage/homepage/pull/4880) - Fix: fix k8s get nodes error log by [@​jnodorp](https://redirect.github.com/jnodorp) in [https://github.com/gethomepage/homepage/pull/4887](https://redirect.github.com/gethomepage/homepage/pull/4887) - Enhancement: support automatic service discovery services with layout-only nesting by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4900](https://redirect.github.com/gethomepage/homepage/pull/4900) - Chore: add plex container size to requests by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4903](https://redirect.github.com/gethomepage/homepage/pull/4903) - Chore: migrate to pnpm only by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4907](https://redirect.github.com/gethomepage/homepage/pull/4907) - Feature: Hoarder service widget by [@​vhsdream](https://redirect.github.com/vhsdream) in [https://github.com/gethomepage/homepage/pull/4913](https://redirect.github.com/gethomepage/homepage/pull/4913) - Enhancement: cache release data, allow disable release checking by [@​shamoon](https://redirect.github.com/shamoon) in [https://github.com/gethomepage/homepage/pull/4917](https://redirect.github.com/gethomepage/homepage/pull/4917) - New Crowdin translations by GitHub Action by [@​github-actions](https://redirect.github.com/github-actions) in [https://github.com/gethomepage/homepage/pull/4599](https://redirect.github.com/gethomepage/homepage/pull/4599) #### New Contributors - [@​GTez](https://redirect.github.com/GTez) made their first contribution in [https://github.com/gethomepage/homepage/pull/4585](https://redirect.github.com/gethomepage/homepage/pull/4585) - [@​Amjad50](https://redirect.github.com/Amjad50) made their first contribution in [https://github.com/gethomepage/homepage/pull/4683](https://redirect.github.com/gethomepage/homepage/pull/4683) - [@​Maarc](https://redirect.github.com/Maarc) made their first contribution in [https://github.com/gethomepage/homepage/pull/4691](https://redirect.github.com/gethomepage/homepage/pull/4691) - [@​Yeraze](https://redirect.github.com/Yeraze) made their first contribution in [https://github.com/gethomepage/homepage/pull/4742](https://redirect.github.com/gethomepage/homepage/pull/4742) - [@​djeinstine](https://redirect.github.com/djeinstine) made their first contribution in [https://github.com/gethomepage/homepage/pull/4643](https://redirect.github.com/gethomepage/homepage/pull/4643) - [@​dudo](https://redirect.github.com/dudo) made their first contribution in [https://github.com/gethomepage/homepage/pull/4752](https://redirect.github.com/gethomepage/homepage/pull/4752) - [@​astappiev](https://redirect.github.com/astappiev) made their first contribution in [https://github.com/gethomepage/homepage/pull/4778](https://redirect.github.com/gethomepage/homepage/pull/4778) - [@​nicupavel](https://redirect.github.com/nicupavel) made their first contribution in [https://github.com/gethomepage/homepage/pull/4840](https://redirect.github.com/gethomepage/homepage/pull/4840) - [@​arthur-leclerc](https://redirect.github.com/arthur-leclerc) made their first contribution in [https://github.com/gethomepage/homepage/pull/4865](https://redirect.github.com/gethomepage/homepage/pull/4865) - [@​jnodorp](https://redirect.github.com/jnodorp) made their first contribution in [https://github.com/gethomepage/homepage/pull/4887](https://redirect.github.com/gethomepage/homepage/pull/4887) **Full Changelog**: https://github.com/gethomepage/homepage/compare/v0.10.9...v1.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=--> |
||
|
|
6fb72852bb |
chore(helm): update image ghcr.io/linuxserver/firefox 135.0.1 → 136.0.1 (#33347)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/firefox](https://redirect.github.com/linuxserver/docker-firefox/packages) ([source](https://redirect.github.com/linuxserver/docker-firefox)) | major | `567fb61` -> `90efc72` | --- > [!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 by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=--> |
||
|
|
97dd08e9f2 |
chore(helm): update image docker.io/cthulhoo/ttrss-web-nginx digest to 2da7834 (#33348)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/cthulhoo/ttrss-web-nginx | digest | `09f03d2` -> `2da7834` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
79a1cb7827 |
chore(flux): update image minecraft-java 22.23.0 → 22.23.1 (#33350)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [minecraft-java](https://truecharts.org/charts/stable/minecraft-java) ([source](https://ghcr.io/itzg/minecraft-server)) | patch | `22.23.0` -> `22.23.1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
29d0c2c7f5 |
chore(flux): update image jackett 23.3.49 → 23.3.50 (#33349)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jackett](https://truecharts.org/charts/stable/jackett) ([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.49` -> `23.3.50` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
5971ea855a |
chore(helm): update image docker.io/syncthing/syncthing 1.29.2 → 1.29.3 (#33273)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/syncthing/syncthing](https://syncthing.net) ([source](https://redirect.github.com/syncthing/syncthing)) | patch | `3f5c977` -> `59580c7` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>syncthing/syncthing (docker.io/syncthing/syncthing)</summary> ### [`v1.29.3`](https://redirect.github.com/syncthing/syncthing/releases/tag/v1.29.3) [Compare Source](https://redirect.github.com/syncthing/syncthing/compare/v1.29.2...v1.29.3) v1.29.3 Bugfixes: - [#​9929](https://redirect.github.com/syncthing/syncthing/issues/9929): Unintelligible error message "setting metadata: lookup failed" </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
21d0d6fa9f |
chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1634 → 0.22.1646 (#33344)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | patch | `be12ba4` -> `055eff4` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
96495b81ba |
chore(helm): update image ghcr.io/linuxserver/lazylibrarian digest to 9435259 (#33340)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/lazylibrarian | digest | `eded9ed` -> `9435259` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
f25d6d3715 |
chore(helm): update image docker.io/cthulhoo/ttrss-web-nginx digest to 09f03d2 (#33338)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/cthulhoo/ttrss-web-nginx | digest | `78ab105` -> `09f03d2` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
e27847cb1d |
chore(helm): update chart mongodb 15.3.5 → 15.3.6 (#33343)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [mongodb](https://truecharts.org/charts/stable/mongodb) ([source](https://gallery.ecr.aws/bitnami/mongodb)) | patch | `15.3.5` -> `15.3.6` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
3ec95307bc |
chore(helm): update image ghcr.io/linuxserver/oscam 11873-ls134 → 11874-ls134 (#33345)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/oscam](https://redirect.github.com/linuxserver/docker-oscam/packages) ([source](https://redirect.github.com/linuxserver/docker-oscam)) | patch | `ab7f41b` -> `9523f54` | --- > [!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>linuxserver/docker-oscam (ghcr.io/linuxserver/oscam)</summary> ### [`v11874-ls134`](https://redirect.github.com/linuxserver/docker-oscam/releases/tag/11874-ls134) [Compare Source](https://redirect.github.com/linuxserver/docker-oscam/compare/11873-ls134...11874-ls134) **CI Report:** https://ci-tests.linuxserver.io/linuxserver/oscam/11874-ls134/index.html **LinuxServer Changes:** Rebase to Alpine 3.20. **Remote Changes:** Updating to 11874 </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c658cc7708 |
chore(helm): update image public.ecr.aws/bitnami/matomo digest to 76ea4ec (#33342)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/matomo](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/matomo)) | digest | `fac6322` -> `76ea4ec` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
89732bd53e |
chore(helm): update image docker.io/diygod/rsshub digest to b30098c (#33339)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/diygod/rsshub | digest | `31e44f1` -> `b30098c` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
1f064c1e42 |
chore(helm): update image docker.io/whyour/qinglong 2.18.2 → 2.18.3 (#33274)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/whyour/qinglong](https://redirect.github.com/whyour/qinglong) | patch | `85a0ec7` -> `e59e2ef` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>whyour/qinglong (docker.io/whyour/qinglong)</summary> ### [`v2.18.3`](https://redirect.github.com/whyour/qinglong/compare/v2.18.2...v2.18.3) [Compare Source](https://redirect.github.com/whyour/qinglong/compare/v2.18.2...v2.18.3) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
cdae448eb6 |
chore(helm): update image docker.io/itzg/mc-backup digest to 0e5e26f (#33286)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/itzg/mc-backup | digest | `c62972a` -> `0e5e26f` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
0494d0e190 |
chore(helm): update image ghcr.io/elfhosted/comet v2.4.0 → v2.4.1 (#33277)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/elfhosted/comet](https://redirect.github.com/astral-sh/uv) | patch | `5a4ffbc` -> `3802289` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
bdf4292298 |
chore(helm): update image docker.io/beromir/servas 0.4.1 → 0.5.0 (#33279)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/beromir/servas](https://frankenphp.dev) ([source](https://redirect.github.com/dunglas/frankenphp)) | minor | `a60f8aa` -> `8ddd079` | 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
2e432427be |
chore(helm): update image docker.io/zwavejs/zwave-js-ui 9.32.0 → 9.33.0 (#33283)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/zwavejs/zwave-js-ui](https://redirect.github.com/zwave-js/zwave-js-ui) | minor | `e93c6c3` -> `e2febae` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>zwave-js/zwave-js-ui (docker.io/zwavejs/zwave-js-ui)</summary> ### [`v9.33.0`](https://redirect.github.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9330-2025-03-12) [Compare Source](https://redirect.github.com/zwave-js/zwave-js-ui/compare/v9.32.0...v9.33.0) ##### Features - bump [@​zwave-js/server](https://redirect.github.com/zwave-js/server) to 1.40.3 ([28c7b40](https://redirect.github.com/zwave-js/zwave-js-ui/commit/28c7b402024da145e2990bc105065d3fed37add5)) - bump zwave-js@14.3.12 ([#​4143](https://redirect.github.com/zwave-js/zwave-js-ui/issues/4143)) ([abdc4d1](https://redirect.github.com/zwave-js/zwave-js-ui/commit/abdc4d11f2afa0f93becf9b77e7894ca47de1cb1)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTkuMSIsInVwZGF0ZWRJblZlciI6IjM5LjE5OS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
b338f23744 |
chore(helm): update image ghcr.io/linuxserver/budge digest to 0ac53f4 (#33298)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/budge](https://redirect.github.com/linuxserver/docker-budge/packages) ([source](https://redirect.github.com/linuxserver/docker-budge)) | digest | `d028a85` -> `0ac53f4` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
c88bd9fe68 |
chore(helm): update image public.ecr.aws/bitnami/mongodb digest to bca1c38 (#33309)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/mongodb](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/mongodb)) | digest | `e5f5d19` -> `bca1c38` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
60505b0e5b |
chore(helm): update image ghcr.io/linuxserver/sickchill digest to 7a2d533 (#33304)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/sickchill](https://redirect.github.com/linuxserver/docker-sickchill/packages) ([source](https://redirect.github.com/linuxserver/docker-sickchill)) | digest | `a27493c` -> `7a2d533` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
80f61f79a9 |
chore(helm): update image ghcr.io/fluidd-core/fluidd v1.32.6 → v1.33.0 (#33321)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/fluidd-core/fluidd](https://redirect.github.com/fluidd-core/fluidd) | minor | `63322a9` -> `f8c3177` | --- > [!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>fluidd-core/fluidd (ghcr.io/fluidd-core/fluidd)</summary> ### [`v1.33.0`](https://redirect.github.com/fluidd-core/fluidd/releases/tag/v1.33.0) [Compare Source](https://redirect.github.com/fluidd-core/fluidd/compare/v1.32.6...v1.33.0) ##### Features - **i18n-fr:** Update French translations ([b486daa](https://redirect.github.com/fluidd-core/fluidd/commit/b486daab2b7d73ce0c9c45837a9363920c1c7818)) - **i18n-hu:** Update Hungarian translations ([43a7972](https://redirect.github.com/fluidd-core/fluidd/commit/43a7972e682f7d436b4791d0042eb91b214f9a37)) - **i18n-it:** Update Italian translations ([7f22240](https://redirect.github.com/fluidd-core/fluidd/commit/7f22240841b6634b6c53a7401c3ea42b0a4ba5f4)) - **i18n-JA:** update Japanese language ([#​1640](https://redirect.github.com/fluidd-core/fluidd/issues/1640)) ([9b1720f](https://redirect.github.com/fluidd-core/fluidd/commit/9b1720f3bafe1f835b32e9b47f4d941db462cee9)) - **i18n-pl:** Update Polish translations ([0356fc6](https://redirect.github.com/fluidd-core/fluidd/commit/0356fc6d5ebc04b216311eff13e7b461581f6c47)) - **i18n-uk:** Update Ukrainian translations ([594cbc6](https://redirect.github.com/fluidd-core/fluidd/commit/594cbc6e449b6b5cf9886af298d00f68a859aa36)) - report target layout in layout edit mode ([#​1331](https://redirect.github.com/fluidd-core/fluidd/issues/1331)) ([19cb71f](https://redirect.github.com/fluidd-core/fluidd/commit/19cb71fbab162f28c4108053727a65479b2bab5f)) - show job queue totals ([#​1637](https://redirect.github.com/fluidd-core/fluidd/issues/1637)) ([32abac0](https://redirect.github.com/fluidd-core/fluidd/commit/32abac001c56025defdf77627fd2156704c61f18)) - **Spoolman:** adds new metadata ([#​1638](https://redirect.github.com/fluidd-core/fluidd/issues/1638)) ([9c10597](https://redirect.github.com/fluidd-core/fluidd/commit/9c10597b15a006864c58f5ef122b5f28244d4dce)) ##### Bug Fixes - **FileSystem:** file modified date ([7b9c143](https://redirect.github.com/fluidd-core/fluidd/commit/7b9c143474063a0c720e07b0b77625924f877b51)) - **FileSystem:** missing tooltips on color chips ([cb7b92b](https://redirect.github.com/fluidd-core/fluidd/commit/cb7b92b45787eeef8b27f614f0162eb2ffcc7824)) - hide root dialogs if socket disconnected ([8d3e18c](https://redirect.github.com/fluidd-core/fluidd/commit/8d3e18c606d402da84c615bcaafe14f9ed8cb2de)) - **Spoolman:** add version check ([#​1634](https://redirect.github.com/fluidd-core/fluidd/issues/1634)) ([9acf6ba](https://redirect.github.com/fluidd-core/fluidd/commit/9acf6bad0e310eac3e0aea798ea927572cd9e609)) - **Thermals:** show extra sensor data ([#​1631](https://redirect.github.com/fluidd-core/fluidd/issues/1631)) ([5566cfb](https://redirect.github.com/fluidd-core/fluidd/commit/5566cfb0c14e30e33a595f2a33f3ad0dc2d9c975)) - truncate both start and end double-quotes ([99e8cf1](https://redirect.github.com/fluidd-core/fluidd/commit/99e8cf19526d878edc252532b48aac9fdd40dff4)) ##### Code Refactorings - adds options param to socketActions ([c799808](https://redirect.github.com/fluidd-core/fluidd/commit/c799808a131fa2c0c3a68d2d729931472d1434d6)) - **FileSystem:** rename state property ([25c60ad](https://redirect.github.com/fluidd-core/fluidd/commit/25c60adad482fde2087934c56468666eedb3b2d2)) - force null checks on printer objects ([5551007](https://redirect.github.com/fluidd-core/fluidd/commit/55510070d51ae0c08b1ab52621741b5219542280)) - inlined getBrowserLocale functionality ([affcede](https://redirect.github.com/fluidd-core/fluidd/commit/affcede8b67a13281f2e1e74f7b8e0afcecc24bc)) - introduces $typedCommit and $typedDispatch ([3892e6d](https://redirect.github.com/fluidd-core/fluidd/commit/3892e6dee7c229ddb6f41773ae5da5dca0cad105)) - introduces $typedState and $typedGetters ([0b58cce](https://redirect.github.com/fluidd-core/fluidd/commit/0b58cceba61192e34864256c097776e54cf38fe1)) - minor code simplification ([7d81e2b](https://redirect.github.com/fluidd-core/fluidd/commit/7d81e2b25b8755640c5fcaaf398ebbea189b4f39)) - string and datetime formatters ([951e025](https://redirect.github.com/fluidd-core/fluidd/commit/951e0254e18680ff3db5d6c97d45acc4237a7e1e)) - typing improvements ([712e89a](https://redirect.github.com/fluidd-core/fluidd/commit/712e89a2e1d18582f7a937783a36c42722ee0efc)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
38638bf094 |
chore(helm): update image ghcr.io/linuxserver/tvheadend digest to 9363a55 (#33305)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/tvheadend | digest | `384c6bf` -> `9363a55` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
273436a5b1 |
chore(helm): update image docker.io/cthulhoo/ttrss-fpm-pgsql-static digest to 0b712e5 (#33325)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/cthulhoo/ttrss-fpm-pgsql-static | digest | `d2405ca` -> `0b712e5` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
b6e5bf9b4c |
chore(helm): update image ghcr.io/linuxserver/duckdns digest to a0f2c50 (#33331)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/duckdns | digest | `d299bdf` -> `a0f2c50` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
fb9e60d0bb |
chore(helm): update image yourls digest to 32548dc (#33332)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | yourls | digest | `d8c94ce` -> `32548dc` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
1b9dc7c440 | chore(helm): update rdesktop (#33333) | ||
|
|
3c9ed81862 | chore(helm): update image docker.io/vshadbolt/strapi 5.11.1 → 5.11.2 (#33335) | ||
|
|
d05cad130d | chore(helm): update image docker.io/itzg/mc-router 1.25.1 → 1.26.0 (#33337) | ||
|
|
e78c808b3d | chore(helm): update image docker.io/phpmyadmin digest to 97fa7d2 (#33328) | ||
|
|
13ac12fcab | chore(helm): update webtop (#33334) | ||
|
|
1981d5cb62 | chore(helm): update image ghcr.io/linuxserver/babybuddy digest to 1bdd252 (#33330) | ||
|
|
b22021da6f | chore(helm): update image docker.io/factoriotools/factorio digest to 59861e7 (#33327) | ||
|
|
05045958ca |
chore(helm): update image adminer digest to d748ead (#33324)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | adminer | digest | `f01629a` -> `d748ead` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
4096ca3272 | chore(helm): update image ghcr.io/elfhosted/nzbhydra2 digest to f37e28c (#33329) | ||
|
|
96e0513ca1 |
chore(helm): update image docker.io/dtjs48jkt/twonkyserver digest to b6168d1 (#33326)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/dtjs48jkt/twonkyserver | digest | `55019ac` -> `b6168d1` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
23c9f1c7f4 |
chore(helm): update jupyter 2025-03-14 → 2025-03-17 (patch) (#33336)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | quay.io/jupyter/all-spark-notebook | patch | `5537c82` -> `3e0aaa5` | | quay.io/jupyter/base-notebook | patch | `a84db9d` -> `9ace754` | | quay.io/jupyter/datascience-notebook | patch | `bf25d19` -> `37632b7` | | quay.io/jupyter/minimal-notebook | patch | `f770b00` -> `3a9a3fd` | | quay.io/jupyter/pyspark-notebook | patch | `34cf92c` -> `bc8e5ce` | | quay.io/jupyter/r-notebook | patch | `1d7e197` -> `4d06cdf` | | quay.io/jupyter/scipy-notebook | patch | `a279b61` -> `0f74a41` | | quay.io/jupyter/tensorflow-notebook | patch | `a81a831` -> `fc8332e` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3c268202cb |
chore(github-action): update actions/setup-node digest to cdca736 (#33323)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | digest | `1d0ff46` -> `cdca736` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
0a0864dfa4 | chore(helm): update image ghcr.io/onedr0p/radarr 5.19.3.9730 → 5.20.1.9773 (#33322) | ||
|
|
ccb25fc21c |
chore(helm): update image ghcr.io/autobrr/autobrr v1.59.0 → v1.60.0 (#33320)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/autobrr/autobrr](https://redirect.github.com/autobrr/autobrr) | minor | `2c0dda4` -> `5f95def` | --- > [!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>autobrr/autobrr (ghcr.io/autobrr/autobrr)</summary> ### [`v1.60.0`](https://redirect.github.com/autobrr/autobrr/releases/tag/v1.60.0) [Compare Source](https://redirect.github.com/autobrr/autobrr/compare/v1.59.0...v1.60.0) #### Changelog ##### New Features - [`ef7317d`](https://redirect.github.com/autobrr/autobrr/commit/ef7317dde6575f1b407e49011b6fbbe40121eaad): feat(filters): show current download count in list ([#​2001](https://redirect.github.com/autobrr/autobrr/issues/2001)) ([@​zze0s](https://redirect.github.com/zze0s)) - [`570c797`](https://redirect.github.com/autobrr/autobrr/commit/570c7971a4dc684e06fbdec81bcb55a4e9e025e7): feat(indexers): add DarkPeers ([#​1989](https://redirect.github.com/autobrr/autobrr/issues/1989)) ([@​zze0s](https://redirect.github.com/zze0s)) - [`c85fa3f`](https://redirect.github.com/autobrr/autobrr/commit/c85fa3f31a2ad38dc978404e5c1f06ee6c710f67): feat(indexers): add PhoenixProject ([#​1996](https://redirect.github.com/autobrr/autobrr/issues/1996)) ([@​zze0s](https://redirect.github.com/zze0s)) - [`3f04b9c`](https://redirect.github.com/autobrr/autobrr/commit/3f04b9c5b3ba2ad16227fd765e93ee302fa44e69): feat(indexers): add RocketHD ([#​1998](https://redirect.github.com/autobrr/autobrr/issues/1998)) ([@​zze0s](https://redirect.github.com/zze0s)) **Full Changelog**: https://github.com/autobrr/autobrr/compare/v1.59.0...v1.60.0 #### Docker images - `docker pull ghcr.io/autobrr/autobrr:v1.60.0` #### What to do next? - Read the [documentation](https://autobrr.com) - Join our [Discord server](https://discord.gg/WQ2eUycxyT) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDIuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwMi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |