Commit Graph

41454 Commits

Author SHA1 Message Date
TrueCharts Bot 3eeea1a633 fix(website): update astro monorepo (minor) (#33484)
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.3.0` ->
`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.3` ->
`5.5.4`](https://renovatebot.com/diffs/npm/astro/5.2.6/5.5.4) |

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

---

### Release Notes

<details>
<summary>withastro/astro (@&#8203;astrojs/sitemap)</summary>

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

##### Minor Changes

-
[#&#8203;13448](https://redirect.github.com/withastro/astro/pull/13448)
[`91c9503`](https://redirect.github.com/withastro/astro/commit/91c95034e0d0bd450170623fd8aab4b56b5b1366)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Add
support for XSL in sitemap-index.xml

</details>

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

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

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

##### Patch Changes

-
[#&#8203;13457](https://redirect.github.com/withastro/astro/pull/13457)
[`968e713`](https://redirect.github.com/withastro/astro/commit/968e713c268e1b2176c9265b6c438c56105c2730)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Sets
correct response status text for custom error pages

-
[#&#8203;13447](https://redirect.github.com/withastro/astro/pull/13447)
[`d80ba2b`](https://redirect.github.com/withastro/astro/commit/d80ba2b27d33d2972ffa3242330fb00d0fc58ba9)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes an issue where `site` was added to the generated redirects.

-
[#&#8203;13481](https://redirect.github.com/withastro/astro/pull/13481)
[`e9e9245`](https://redirect.github.com/withastro/astro/commit/e9e9245c7c0ad6e3bda2b7600ff2bd845921a19d)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Makes
server island work with the client router again.

-
[#&#8203;13484](https://redirect.github.com/withastro/astro/pull/13484)
[`8b5e4dc`](https://redirect.github.com/withastro/astro/commit/8b5e4dc733bccce7d77defdbb973204aa9b8126b)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Display useful errors when config loading fails because of Node addons
being disabled on Stackblitz

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

-
[#&#8203;13437](https://redirect.github.com/withastro/astro/pull/13437)
[`013fa87`](https://redirect.github.com/withastro/astro/commit/013fa87982ea92675e899d2f71a200e5298db608)
Thanks [@&#8203;Vardhaman619](https://redirect.github.com/Vardhaman619)!
- Handle server.allowedHosts when the value is true without attempting
to push it into an array.

-
[#&#8203;13324](https://redirect.github.com/withastro/astro/pull/13324)
[`ea74336`](https://redirect.github.com/withastro/astro/commit/ea7433666e0cc7e1301e638e80f90323f20db3e1)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Upgrade to shiki v3

-
[#&#8203;13372](https://redirect.github.com/withastro/astro/pull/13372)
[`7783dbf`](https://redirect.github.com/withastro/astro/commit/7783dbf8117650c60d7633b43f0d42da487aa2b1)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused some very large data stores to save incomplete data.

-
[#&#8203;13358](https://redirect.github.com/withastro/astro/pull/13358)
[`8c21663`](https://redirect.github.com/withastro/astro/commit/8c21663c4a6363765f2caa5705a93a41492a95c9)
Thanks [@&#8203;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.

-
[#&#8203;13426](https://redirect.github.com/withastro/astro/pull/13426)
[`565583b`](https://redirect.github.com/withastro/astro/commit/565583bd6c99163ce5d9475b26075149cc8c155b)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! - Fixes
a bug that caused the `astro add` command to ignore the `--yes` flag for
third-party integrations

-
[#&#8203;13428](https://redirect.github.com/withastro/astro/pull/13428)
[`9cac9f3`](https://redirect.github.com/withastro/astro/commit/9cac9f314277def0ee584e45d4937bac0235738a)
Thanks [@&#8203;matthewp](https://redirect.github.com/matthewp)! -
Prevent bad value in x-forwarded-host from crashing request

-
[#&#8203;13432](https://redirect.github.com/withastro/astro/pull/13432)
[`defad33`](https://redirect.github.com/withastro/astro/commit/defad33140dccde324b9357bc6331f7e5cdec266)
Thanks [@&#8203;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)]:
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;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

-
[#&#8203;13415](https://redirect.github.com/withastro/astro/pull/13415)
[`be866a1`](https://redirect.github.com/withastro/astro/commit/be866a1d1db12793e0953b228d0b2dc1c00929e2)
Thanks [@&#8203;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.

-
[#&#8203;13420](https://redirect.github.com/withastro/astro/pull/13420)
[`2f039b9`](https://redirect.github.com/withastro/astro/commit/2f039b927a3a1334948adc7788b1f24c074dfac7)
Thanks [@&#8203;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

-
[#&#8203;13413](https://redirect.github.com/withastro/astro/pull/13413)
[`65903c9`](https://redirect.github.com/withastro/astro/commit/65903c995408397c63c911e184218c0206e5853f)
Thanks [@&#8203;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

-
[#&#8203;13402](https://redirect.github.com/withastro/astro/pull/13402)
[`3e7b498`](https://redirect.github.com/withastro/astro/commit/3e7b498dce52648484bb4deb04bf9e960c3d08e3)
Thanks [@&#8203;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/).

-
[#&#8203;13352](https://redirect.github.com/withastro/astro/pull/13352)
[`cb886dc`](https://redirect.github.com/withastro/astro/commit/cb886dcde6c28acca286a66be46228a4d4cc52e7)
Thanks [@&#8203;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 '@&#8203;astrojs/markdown-remark';
import { otherPluginThatReliesOnHeadingIDs } from 'some/plugin/source';

    export default defineConfig({
      markdown: {
        rehypePlugins: [
          [rehypeHeadingIds, { experimentalHeadingIdCompat: true }],
          otherPluginThatReliesOnHeadingIDs,
        ],
      },
    });
    ```

-
[#&#8203;13311](https://redirect.github.com/withastro/astro/pull/13311)
[`a3327ff`](https://redirect.github.com/withastro/astro/commit/a3327ffbe6373228339824684eaa6f340a20a32e)
Thanks [@&#8203;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

-
[#&#8203;13404](https://redirect.github.com/withastro/astro/pull/13404)
[`4e78b4d`](https://redirect.github.com/withastro/astro/commit/4e78b4d10d2214c94752a1fef74db325053cf071)
Thanks [@&#8203;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

-
[#&#8203;13379](https://redirect.github.com/withastro/astro/pull/13379)
[`d59eb22`](https://redirect.github.com/withastro/astro/commit/d59eb227334b788289533bac41f015b498179a2f)
Thanks [@&#8203;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.

-
[#&#8203;13393](https://redirect.github.com/withastro/astro/pull/13393)
[`6b8fdb8`](https://redirect.github.com/withastro/astro/commit/6b8fdb8a113b6f76448b41beb990c33fafb09b3e)
Thanks [@&#8203;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.

-
[#&#8203;13374](https://redirect.github.com/withastro/astro/pull/13374)
[`7b75bc5`](https://redirect.github.com/withastro/astro/commit/7b75bc5c36bc338bcef5ef41502e87c184c117ec)
Thanks
[@&#8203;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.

-
[#&#8203;13380](https://redirect.github.com/withastro/astro/pull/13380)
[`9bfa6e6`](https://redirect.github.com/withastro/astro/commit/9bfa6e6d8b95424436be405a80d5df3f2e2e72df)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Fixes
an issue where astro:page-load fires before all scripts are executed

-
[#&#8203;13407](https://redirect.github.com/withastro/astro/pull/13407)
[`0efdc22`](https://redirect.github.com/withastro/astro/commit/0efdc22b182f6cec4155a972f0dde1da686c5453)
Thanks [@&#8203;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)]:
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;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

-
[#&#8203;13381](https://redirect.github.com/withastro/astro/pull/13381)
[`249d52a`](https://redirect.github.com/withastro/astro/commit/249d52a3ff17f792c451ea0e42b97a209667290c)
Thanks [@&#8203;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.

-
[#&#8203;13367](https://redirect.github.com/withastro/astro/pull/13367)
[`3ce4ad9`](https://redirect.github.com/withastro/astro/commit/3ce4ad965f576f2f4c53b5f2b876d449ed60c023)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds documentation to various utility functions used for remote image
services

-
[#&#8203;13347](https://redirect.github.com/withastro/astro/pull/13347)
[`d83f92a`](https://redirect.github.com/withastro/astro/commit/d83f92a20403ffc8d088cfd13d2806e0f4f1a11e)
Thanks [@&#8203;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.

-
[#&#8203;13388](https://redirect.github.com/withastro/astro/pull/13388)
[`afadc70`](https://redirect.github.com/withastro/astro/commit/afadc702d7d928e7b650d3c071cca3d21e14333f)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a bug where `astro:config/server` and `astro:config/client` had
incorrect types.

-
[#&#8203;13355](https://redirect.github.com/withastro/astro/pull/13355)
[`042d1de`](https://redirect.github.com/withastro/astro/commit/042d1de901fd9aa66157ce078b28bcd9786e1373)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Adds documentation to the assets utilities for remote service images.

-
[#&#8203;13395](https://redirect.github.com/withastro/astro/pull/13395)
[`6d1c63f`](https://redirect.github.com/withastro/astro/commit/6d1c63fa46a624b1c4981d4324ebabf37cc2b958)
Thanks [@&#8203;bluwy](https://redirect.github.com/bluwy)! - Uses
`package-manager-detector` to detect the package manager used in the
project

-
[#&#8203;13363](https://redirect.github.com/withastro/astro/pull/13363)
[`a793636`](https://redirect.github.com/withastro/astro/commit/a793636928d0014a7faa4431afdfb9404e9ea819)
Thanks [@&#8203;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)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@&#8203;0](https://redirect.github.com/0).6.1
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;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

-
[#&#8203;12985](https://redirect.github.com/withastro/astro/pull/12985)
[`84e94cc`](https://redirect.github.com/withastro/astro/commit/84e94cc85cc0f4ea9b5dba2009dc89e83a798f59)
Thanks [@&#8203;matthewp](https://redirect.github.com/matthewp)! -
Prevent re-executing scripts in client router

-
[#&#8203;13349](https://redirect.github.com/withastro/astro/pull/13349)
[`50e2e0b`](https://redirect.github.com/withastro/astro/commit/50e2e0b3749d6dba3d301ea1a0a3a33a273e7a81)
Thanks [@&#8203;ascorbic](https://redirect.github.com/ascorbic)! -
Correctly escapes attributes in Markdown images

-
[#&#8203;13262](https://redirect.github.com/withastro/astro/pull/13262)
[`0025df3`](https://redirect.github.com/withastro/astro/commit/0025df37af4dcd390d41c9b175fbdb3edd87edf7)
Thanks [@&#8203;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

-
[#&#8203;13336](https://redirect.github.com/withastro/astro/pull/13336)
[`8f632ef`](https://redirect.github.com/withastro/astro/commit/8f632efe9934fbe7547d890fd01b3892d14c8189)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixes a regression where some asset utilities were move across monorepo,
and not re-exported anymore.

-
[#&#8203;13320](https://redirect.github.com/withastro/astro/pull/13320)
[`b5dabe9`](https://redirect.github.com/withastro/astro/commit/b5dabe9878510237ceb603ebd3e004da6e965a26)
Thanks [@&#8203;{](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

-
[#&#8203;12052](https://redirect.github.com/withastro/astro/pull/12052)
[`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f)
Thanks [@&#8203;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.

-
[#&#8203;13278](https://redirect.github.com/withastro/astro/pull/13278)
[`4a43c4b`](https://redirect.github.com/withastro/astro/commit/4a43c4b743affb78b1502801c797157b626c77a1)
Thanks [@&#8203;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).

-
[#&#8203;13254](https://redirect.github.com/withastro/astro/pull/13254)
[`1e11f5e`](https://redirect.github.com/withastro/astro/commit/1e11f5e8b722b179e382f3c792cd961b2b51f61b)
Thanks [@&#8203;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

-
[#&#8203;13256](https://redirect.github.com/withastro/astro/pull/13256)
[`509fa67`](https://redirect.github.com/withastro/astro/commit/509fa671a137515bd1818c81ee78de439a27e5dc)
Thanks [@&#8203;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).

-
[#&#8203;13323](https://redirect.github.com/withastro/astro/pull/13323)
[`80926fa`](https://redirect.github.com/withastro/astro/commit/80926fadc06492fcae55f105582b9dc8279da6b3)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Updates `esbuild` and `vite` to the latest to avoid false positives
audits warnings caused by `esbuild`.

-
[#&#8203;13313](https://redirect.github.com/withastro/astro/pull/13313)
[`9e7c71d`](https://redirect.github.com/withastro/astro/commit/9e7c71d19c89407d9b27ded85d8c0fde238ce16c)
Thanks [@&#8203;martrapp](https://redirect.github.com/martrapp)! - Fixes
an issue where a form field named "attributes" shadows the
form.attributes property.

-
[#&#8203;12052](https://redirect.github.com/withastro/astro/pull/12052)
[`5be12b2`](https://redirect.github.com/withastro/astro/commit/5be12b2bc9f359d3ecfa29b766f13ed2aabd119f)
Thanks [@&#8203;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.

-
[#&#8203;13303](https://redirect.github.com/withastro/astro/pull/13303)
[`5f72a58`](https://redirect.github.com/withastro/astro/commit/5f72a58935d9bdd5237bdf86d2e94bcdc544c7b3)
Thanks [@&#8203;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)]:
-
[@&#8203;astrojs/internal-helpers](https://redirect.github.com/astrojs/internal-helpers)[@&#8203;0](https://redirect.github.com/0).6.0
-
[@&#8203;astrojs/markdown-remark](https://redirect.github.com/astrojs/markdown-remark)[@&#8203;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

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

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

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

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

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

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

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

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

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

##### Minor Changes

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

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

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

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

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

##### Patch Changes

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

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

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

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

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

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-03-26 19:37:39 +00:00
TrueCharts Bot 0a169bb0c7 chore(helm): update image ghcr.io/home-operations/prowlarr 1.32.2.4987 → 1.33.0.4994 (#33543) 2025-03-26 20:37:34 +01:00
TrueCharts Bot edb4a25e6f chore(helm): update webtop (#33537)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/webtop | digest | `c5ac3f6` -> `05860b0` |
| lscr.io/linuxserver/webtop | digest | `e1be160` -> `6cdc646` |
| lscr.io/linuxserver/webtop | digest | `bc7b6c4` -> `8d032c6` |
| lscr.io/linuxserver/webtop | digest | `0681e81` -> `2d1229d` |
| lscr.io/linuxserver/webtop | digest | `4fd22b3` -> `c453536` |
| lscr.io/linuxserver/webtop | digest | `6335e64` -> `06c8078` |
| lscr.io/linuxserver/webtop | digest | `29d0b62` -> `86d1ea2` |

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.

👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-26 19:37:18 +00:00
TrueCharts Bot 792c253291 chore(helm): update image ghcr.io/meeb/tubesync digest to ab7512e (#33540) 2025-03-26 20:36:40 +01:00
TrueCharts Bot e8248ed229 chore(helm): update image lscr.io/linuxserver/kdenlive digest to a65e877 (#33606)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/kdenlive | digest | `8652e7f` -> `a65e877` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-26 20:36:30 +01:00
TrueCharts Bot b55f84cf6f chore(helm): update image ghcr.io/home-operations/sonarr digest to acd5416 (#33596) 2025-03-26 20:35:44 +01:00
TrueCharts Bot da3947639d chore(helm): update image chronograf digest to beafebc (#33595)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| chronograf | digest | `1e5ea24` -> `beafebc` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-26 20:35:25 +01:00
TrueCharts Bot 1cdf893168 chore(helm): update image ghcr.io/linuxserver/grocy digest to d862169 (#33597)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/grocy](https://redirect.github.com/linuxserver/docker-grocy/packages)
([source](https://redirect.github.com/linuxserver/docker-grocy)) |
digest | `c69f09e` -> `d862169` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-26 20:32:51 +01:00
TrueCharts Bot 94482bb846 chore(helm): update image ghcr.io/linuxserver/ddclient digest to 96c4e35 (#33602)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/ddclient](https://redirect.github.com/linuxserver/docker-ddclient/packages)
([source](https://redirect.github.com/linuxserver/docker-ddclient)) |
digest | `856d093` -> `96c4e35` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-26 20:24:15 +01:00
Kjeld Schouten 50314689c3 fiux version 2025-03-26 19:48:10 +01:00
Kjeld Schouten 53ffbf58e5 fix(pod-nuke): ensure it runs 2 replicas 2025-03-26 19:47:51 +01:00
Kjeld Schouten a55a8a1fbf feat(pod-nuke): add chart and use kubectl container as basis 2025-03-26 19:47:45 +01:00
Kjeld Schouten 2a845a5981 oops 2025-03-26 19:47:40 +01:00
Kjeld Schouten 54748394f3 feat(pod-nuke): add container to auto-nuke pods on broken nodes 2025-03-26 19:47:33 +01:00
TrueCharts Bot 17745074df chore(helm): update image yourls digest to e55d4b8 (#33467)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| yourls | digest | `32548dc` -> `e55d4b8` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:35:03 +01:00
TrueCharts Bot fde15042f5 chore(helm): update image docker.io/mikenye/tar1090 digest to 7ae4604 (#33463)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/mikenye/tar1090 | digest | `14a361c` -> `7ae4604` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:34:54 +01:00
TrueCharts Bot f75704bc2a chore(helm): update jupyter 2025-03-17 → 2025-03-20 (patch) (#33469)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/jupyter/all-spark-notebook | patch | `3e0aaa5` -> `349765a` |
| quay.io/jupyter/base-notebook | patch | `9ace754` -> `b1b7d25` |
| quay.io/jupyter/datascience-notebook | patch | `37632b7` -> `dd2901c`
|
| quay.io/jupyter/minimal-notebook | patch | `3a9a3fd` -> `ee8cca9` |
| quay.io/jupyter/pyspark-notebook | patch | `bc8e5ce` -> `58050db` |
| quay.io/jupyter/r-notebook | patch | `4d06cdf` -> `6879884` |
| quay.io/jupyter/scipy-notebook | patch | `0f74a41` -> `0b95565` |
| quay.io/jupyter/tensorflow-notebook | patch | `fc8332e` -> `aea5cf8` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-20 20:33:05 +01:00
TrueCharts Bot 5f01461c83 chore(helm): update image docker.io/factoriotools/factorio digest to 6ca2cda (#33462) 2025-03-20 20:31:29 +01:00
TrueCharts Bot e6cd2b85a7 chore(helm): update image docker.io/cthulhoo/ttrss-fpm-pgsql-static digest to 5a2201a (#33460)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/cthulhoo/ttrss-fpm-pgsql-static | digest | `0b712e5` ->
`5a2201a` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:31:21 +01:00
TrueCharts Bot 54b38ee5fc chore(helm): update image ghcr.io/linuxserver/lazylibrarian digest to 7ce1e5e (#33464) 2025-03-20 20:29:54 +01:00
TrueCharts Bot 3c952ddee1 chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to c0a3acb (#33466)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/mintplex-labs/anything-llm | digest | `8b5be67` -> `c0a3acb` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:29:48 +01:00
TrueCharts Bot 93d878b5a6 chore(helm): update image docker.io/diygod/rsshub digest to b17e608 (#33461)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/diygod/rsshub | digest | `b30098c` -> `b17e608` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:28:33 +01:00
TrueCharts Bot 3ae1dda208 chore(helm): update image ghcr.io/ellite/wallos 2.47.1 → 2.48.0 (#33470)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/ellite/wallos](https://redirect.github.com/ellite/Wallos) |
minor | `5a78a0e` -> `8565133` |

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

---

### Release Notes

<details>
<summary>ellite/Wallos (ghcr.io/ellite/wallos)</summary>

###
[`v2.48.0`](https://redirect.github.com/ellite/Wallos/blob/HEAD/CHANGELOG.md#2480-2025-03-20)

[Compare
Source](https://redirect.github.com/ellite/Wallos/compare/v2.47.1...v2.48.0)

##### Features

- add update notification and release notes to the about page
([3e0e88d](https://redirect.github.com/ellite/Wallos/commit/3e0e88d6a2adc46c17773b09dd8684618c979711))
- increase privacy by not sending referrer to external urls
([3e0e88d](https://redirect.github.com/ellite/Wallos/commit/3e0e88d6a2adc46c17773b09dd8684618c979711))
- small layout change on the about page
([3e0e88d](https://redirect.github.com/ellite/Wallos/commit/3e0e88d6a2adc46c17773b09dd8684618c979711))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-03-20 20:22:05 +01:00
TrueCharts Bot f4c0477057 chore(helm): update image adminer digest to 82b68b3 (#33459)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| adminer | digest | `d748ead` -> `82b68b3` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 20:13:28 +01:00
TrueCharts Bot e766f8bf40 chore(flux): update image jackett 23.3.52 → 23.3.53 (#33468)
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.52` ->
`23.3.53` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-20 19:40:59 +01:00
TrueCharts Bot a456773de3 chore(helm): update image ghcr.io/stirling-tools/s-pdf 0.44.2 → 0.44.3 (#33458) 2025-03-20 13:56:05 +01:00
TrueCharts Bot 867a546225 chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1665 → 0.22.1669 (#33456) 2025-03-20 13:55:43 +01:00
TrueCharts Bot 2619477b6d chore(helm): update chart memcached 14.5.7 → 14.5.8 (#33455) 2025-03-20 13:55:10 +01:00
TrueCharts Bot ce3ba8a14b chore(helm): update image ghcr.io/manyfold3d/manyfold 0.104.0 → 0.104.1 (#33457)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/manyfold3d/manyfold](https://redirect.github.com/manyfold3d/manyfold)
| patch | `0b28b91` -> `c20fc6b` |

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

---

### Release Notes

<details>
<summary>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary>

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

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

Small bugfix for "open in slicer" in single-user mode.

#### What's Changed

#####  New Features 

- Enable rails-performance memory and CPU stats by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3212](https://redirect.github.com/manyfold3d/manyfold/pull/3212)

##### 🐛 Bug Fixes 🐛

- Fix signed urls (open in slicer) in single user mode by
[@&#8203;Floppy](https://redirect.github.com/Floppy) in
[https://github.com/manyfold3d/manyfold/pull/3802](https://redirect.github.com/manyfold3d/manyfold/pull/3802)

**Full Changelog**:
https://github.com/manyfold3d/manyfold/compare/v0.104.0...v0.104.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-20 13:54:41 +01:00
TrueCharts Bot 92ed5b380b chore(helm): update image public.ecr.aws/bitnami/memcached 1.6.37 → 1.6.38 (#33452)
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))
| patch | `59c6cef` -> `fff7d8b` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-20 09:07:43 +00:00
TrueCharts Bot a395e819a4 chore(helm): update image ghcr.io/linuxserver/filezilla digest to dc47dcb (#33445)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/filezilla](https://redirect.github.com/linuxserver/docker-filezilla/packages)
([source](https://redirect.github.com/linuxserver/docker-filezilla)) |
digest | `3787890` -> `dc47dcb` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 09:07:25 +00:00
TrueCharts Bot a1140a75d7 chore(container): update public.ecr.aws/docker/library/nextcloud docker tag to v31.0.2 (#33449)
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 | patch
| `31.0.1-fpm` -> `31.0.2-fpm` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-03-20 10:02:09 +01:00
TrueCharts Bot 8d0e7a91a5 chore(helm): update webtop (#33448)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/webtop | digest | `b6a6a18` -> `840dc42` |
| lscr.io/linuxserver/webtop | digest | `b94a1c6` -> `a1c025b` |
| lscr.io/linuxserver/webtop | digest | `a93d64d` -> `8204a4f` |
| lscr.io/linuxserver/webtop | digest | `2e3b925` -> `9db28c7` |
| lscr.io/linuxserver/webtop | digest | `5a2da07` -> `93a42cc` |
| lscr.io/linuxserver/webtop | digest | `2fb3146` -> `e98b620` |
| lscr.io/linuxserver/webtop | digest | `927c5e3` -> `c427147` |
| lscr.io/linuxserver/webtop | digest | `185f18a` -> `11e87f6` |
| lscr.io/linuxserver/webtop | digest | `eb589d4` -> `c0dc631` |
| lscr.io/linuxserver/webtop | digest | `f09e21c` -> `c7e016d` |
| lscr.io/linuxserver/webtop | digest | `accceaf` -> `5ae4199` |
| lscr.io/linuxserver/webtop | digest | `1d3952d` -> `2938253` |
| lscr.io/linuxserver/webtop | digest | `26bc863` -> `043817e` |
| lscr.io/linuxserver/webtop | digest | `303f8b2` -> `2e66f26` |
| lscr.io/linuxserver/webtop | digest | `778daec` -> `3d5444f` |
| lscr.io/linuxserver/webtop | digest | `756108f` -> `8d4846b` |
| lscr.io/linuxserver/webtop | digest | `f679d02` -> `49dd251` |

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.

👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 08:32:31 +01:00
TrueCharts Bot 45d97ab791 chore(helm): update image ghcr.io/linuxserver/digikam digest to 7d98d0e (#33443)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/digikam](https://redirect.github.com/linuxserver/docker-digikam/packages)
([source](https://redirect.github.com/linuxserver/docker-digikam)) |
digest | `b574a25` -> `7d98d0e` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 08:29:15 +01:00
TrueCharts Bot 918e45467f chore(helm): update image docker.io/phpmyadmin digest to 6cb0a71 (#33442)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/phpmyadmin | digest | `97fa7d2` -> `6cb0a71` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 08:27:47 +01:00
TrueCharts Bot d549d2e7e6 chore(helm): update image docker.io/vshadbolt/strapi 5.11.2 → 5.11.3 (#33450)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docker.io/vshadbolt/strapi | patch | `ea0d274` -> `c0e1b0f` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-20 08:27:06 +01:00
TrueCharts Bot d6a34c048e chore(helm): update image ghcr.io/linuxserver/smokeping digest to f589dc0 (#33447)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/smokeping](https://redirect.github.com/linuxserver/docker-smokeping/packages)
([source](https://redirect.github.com/linuxserver/docker-smokeping)) |
digest | `ce80bfd` -> `f589dc0` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 08:24:53 +01:00
TrueCharts Bot f7d1b3b20e chore(helm): update image ghcr.io/linuxserver/doublecommander digest to 1a4efc9 (#33444)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/linuxserver/doublecommander | digest | `c1ddb4a` -> `1a4efc9`
|

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 08:22:52 +01:00
TrueCharts Bot 62b67dd4bf chore(helm): update image ghcr.io/ellite/wallos 2.46.1 → 2.47.1 (#33454)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/ellite/wallos](https://redirect.github.com/ellite/Wallos) |
minor | `34d1a92` -> `5a78a0e` |

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

---

### Release Notes

<details>
<summary>ellite/Wallos (ghcr.io/ellite/wallos)</summary>

###
[`v2.47.1`](https://redirect.github.com/ellite/Wallos/blob/HEAD/CHANGELOG.md#2471-2025-03-19)

[Compare
Source](https://redirect.github.com/ellite/Wallos/compare/v2.47.0...v2.47.1)

##### Bug Fixes

- small layout inconsistencies on the dashboard
([19d3067](https://redirect.github.com/ellite/Wallos/commit/19d30672b2635b6e79eaa6eb5c49100d7a27a63a))

###
[`v2.47.0`](https://redirect.github.com/ellite/Wallos/blob/HEAD/CHANGELOG.md#2470-2025-03-19)

[Compare
Source](https://redirect.github.com/ellite/Wallos/compare/v2.46.1...v2.47.0)

##### Features

- add filter by renew type
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- add sort by renew type
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- add ukranian translation
([#&#8203;756](https://redirect.github.com/ellite/Wallos/issues/756))
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- remove "Wallos" text from calendar export
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))

##### Bug Fixes

- ical trigger to spec RFC5545
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- special chars on calendar exports
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- special chars on notifications
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))
- state filter not cleared by clear button
([1bec973](https://redirect.github.com/ellite/Wallos/commit/1bec973803e0b3c00d2765bbf80447439127574d))

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-03-20 08:12:16 +01:00
TrueCharts Bot 7b6dac2cb8 chore(helm): update image ghcr.io/linuxserver/oscam 11874-ls134 → 11876-ls134 (#33451) 2025-03-20 08:11:44 +01:00
TrueCharts Bot bc7b9c143a chore(container): update ghcr.io/actions/actions-runner docker tag to v2.323.0 (#33453) 2025-03-20 07:51:10 +01:00
TrueCharts Bot 5a9d7196db chore(github-action): update actions/cache digest to 5a3ec84 (#33441)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://redirect.github.com/actions/cache) | action |
digest | `d4323d4` -> `5a3ec84` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2dpdGh1Yi1hY3Rpb24iLCJyZW5vdmF0ZS9naXRodWItcmVsZWFzZSIsInR5cGUvZGlnZXN0Il19-->
2025-03-20 07:35:53 +01:00
TrueCharts-Bot 441cdc4a44 Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2025-03-20 00:17:00 +00:00
TrueCharts Bot df155a9401 chore(helm): update image quay.io/netdata/netdata v2.2.6 → v2.3.0 (#33440)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [quay.io/netdata/netdata](https://netdata.cloud)
([source](https://redirect.github.com/netdata/netdata)) | minor |
`1c70a93` -> `7f52eb1` |

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

---

### Release Notes

<details>
<summary>netdata/netdata (quay.io/netdata/netdata)</summary>

###
[`v2.3.0`](https://redirect.github.com/netdata/netdata/blob/HEAD/CHANGELOG.md#v230-2025-03-19)

[Compare
Source](https://redirect.github.com/netdata/netdata/compare/v2.2.6...v2.3.0)

[Full
Changelog](https://redirect.github.com/netdata/netdata/compare/v2.2.6...v2.3.0)

**Merged pull requests:**

- Remove auto-retry on changelog generation.
[#&#8203;19908](https://redirect.github.com/netdata/netdata/pull/19908)
([Ferroin](https://redirect.github.com/Ferroin))
- Bump repoconfig version used in kickstart script to 5-1.
[#&#8203;19906](https://redirect.github.com/netdata/netdata/pull/19906)
([Ferroin](https://redirect.github.com/Ferroin))
- Revert "Fix compile without dbengine"
[#&#8203;19905](https://redirect.github.com/netdata/netdata/pull/19905)
([stelfrag](https://redirect.github.com/stelfrag))
- Fix compile without dbengine
[#&#8203;19902](https://redirect.github.com/netdata/netdata/pull/19902)
([stelfrag](https://redirect.github.com/stelfrag))
- do not use errno when hashing status events
[#&#8203;19900](https://redirect.github.com/netdata/netdata/pull/19900)
([ktsaou](https://redirect.github.com/ktsaou))
- more compilation flags for stack traces
[#&#8203;19899](https://redirect.github.com/netdata/netdata/pull/19899)
([ktsaou](https://redirect.github.com/ktsaou))
- more strict checks on log-fw
[#&#8203;19898](https://redirect.github.com/netdata/netdata/pull/19898)
([ktsaou](https://redirect.github.com/ktsaou))
- fix for system shutdown
[#&#8203;19897](https://redirect.github.com/netdata/netdata/pull/19897)
([ktsaou](https://redirect.github.com/ktsaou))
- build: update otel deps to v0.122.0
[#&#8203;19895](https://redirect.github.com/netdata/netdata/pull/19895)
([ilyam8](https://redirect.github.com/ilyam8))
- do not recurse cleanup on shutdown
[#&#8203;19894](https://redirect.github.com/netdata/netdata/pull/19894)
([ktsaou](https://redirect.github.com/ktsaou))
- make sure all rrdcalcs are unlinked the moment they are deleted
[#&#8203;19893](https://redirect.github.com/netdata/netdata/pull/19893)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix typo in README title
[#&#8203;19891](https://redirect.github.com/netdata/netdata/pull/19891)
([felipecrs](https://redirect.github.com/felipecrs))
- remove deadlock from dyncfg health
[#&#8203;19890](https://redirect.github.com/netdata/netdata/pull/19890)
([ktsaou](https://redirect.github.com/ktsaou))
- Update DEB/RPM package signing key info.
[#&#8203;19888](https://redirect.github.com/netdata/netdata/pull/19888)
([Ferroin](https://redirect.github.com/Ferroin))
- fix(go.d/snmp/ddsnmp): correct profile directory path
[#&#8203;19887](https://redirect.github.com/netdata/netdata/pull/19887)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(go.d/snmp/ddsnmp): use dd profile definition
[#&#8203;19886](https://redirect.github.com/netdata/netdata/pull/19886)
([ilyam8](https://redirect.github.com/ilyam8))
- daemon status 18b
[#&#8203;19884](https://redirect.github.com/netdata/netdata/pull/19884)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19883](https://redirect.github.com/netdata/netdata/pull/19883)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/snmp): improve auto-detection section
[#&#8203;19882](https://redirect.github.com/netdata/netdata/pull/19882)
([ilyam8](https://redirect.github.com/ilyam8))
- ci: use step-security/changed-files
[#&#8203;19881](https://redirect.github.com/netdata/netdata/pull/19881)
([ilyam8](https://redirect.github.com/ilyam8))
- change log priorities on agent-events
[#&#8203;19880](https://redirect.github.com/netdata/netdata/pull/19880)
([ktsaou](https://redirect.github.com/ktsaou))
- add stack trace information to the compiler and linker
[#&#8203;19879](https://redirect.github.com/netdata/netdata/pull/19879)
([ktsaou](https://redirect.github.com/ktsaou))
- SIGABRT and already running are fatal conditions
[#&#8203;19878](https://redirect.github.com/netdata/netdata/pull/19878)
([ktsaou](https://redirect.github.com/ktsaou))
- daemon-status-18
[#&#8203;19876](https://redirect.github.com/netdata/netdata/pull/19876)
([ktsaou](https://redirect.github.com/ktsaou))
- do not lose exit reasons
[#&#8203;19875](https://redirect.github.com/netdata/netdata/pull/19875)
([ktsaou](https://redirect.github.com/ktsaou))
- make sure the daemon status hash does not depend on random bytes
[#&#8203;19874](https://redirect.github.com/netdata/netdata/pull/19874)
([ktsaou](https://redirect.github.com/ktsaou))
- add the fatal to the exit reasons
[#&#8203;19873](https://redirect.github.com/netdata/netdata/pull/19873)
([ktsaou](https://redirect.github.com/ktsaou))
- sentry events annotations
[#&#8203;19872](https://redirect.github.com/netdata/netdata/pull/19872)
([ktsaou](https://redirect.github.com/ktsaou))
- Remove tj-actions/changed-files from CI jobs.
[#&#8203;19870](https://redirect.github.com/netdata/netdata/pull/19870)
([Ferroin](https://redirect.github.com/Ferroin))
- daemon status file 17
[#&#8203;19869](https://redirect.github.com/netdata/netdata/pull/19869)
([ktsaou](https://redirect.github.com/ktsaou))
- fixed sentry version
[#&#8203;19868](https://redirect.github.com/netdata/netdata/pull/19868)
([ktsaou](https://redirect.github.com/ktsaou))
- fixed sentry dedup
[#&#8203;19867](https://redirect.github.com/netdata/netdata/pull/19867)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(freebsd.plugin): correct disks/network devices charts
[#&#8203;19866](https://redirect.github.com/netdata/netdata/pull/19866)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(macos.plugin): add options to filter net ifaces and
mountpoints
[#&#8203;19865](https://redirect.github.com/netdata/netdata/pull/19865)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0
in /src/go
[#&#8203;19864](https://redirect.github.com/netdata/netdata/pull/19864)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- daemon status file 16
[#&#8203;19863](https://redirect.github.com/netdata/netdata/pull/19863)
([ktsaou](https://redirect.github.com/ktsaou))
- Release memory on shutdown - detect invalid extent in journal files
[#&#8203;19861](https://redirect.github.com/netdata/netdata/pull/19861)
([stelfrag](https://redirect.github.com/stelfrag))
- restore needed variables for pluginsd
[#&#8203;19860](https://redirect.github.com/netdata/netdata/pull/19860)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(macos.plugin): correct disks/network devices charts
[#&#8203;19859](https://redirect.github.com/netdata/netdata/pull/19859)
([ilyam8](https://redirect.github.com/ilyam8))
- disable UNW_LOCAL_ONLY on static builds
[#&#8203;19858](https://redirect.github.com/netdata/netdata/pull/19858)
([ktsaou](https://redirect.github.com/ktsaou))
- daemon status 15
[#&#8203;19857](https://redirect.github.com/netdata/netdata/pull/19857)
([ktsaou](https://redirect.github.com/ktsaou))
- fix crashes identified by sentry
[#&#8203;19856](https://redirect.github.com/netdata/netdata/pull/19856)
([ktsaou](https://redirect.github.com/ktsaou))
- netdata-uninstaller: improve input prompt with more descriptive
guidance
[#&#8203;19855](https://redirect.github.com/netdata/netdata/pull/19855)
([ilyam8](https://redirect.github.com/ilyam8))
- make sure alerts are concurrently altered by dyncfg
[#&#8203;19854](https://redirect.github.com/netdata/netdata/pull/19854)
([ktsaou](https://redirect.github.com/ktsaou))
- fix contexts labels to avoid clearing the rrdlabels pointer
[#&#8203;19853](https://redirect.github.com/netdata/netdata/pull/19853)
([ktsaou](https://redirect.github.com/ktsaou))
- fix updating on RPi2+
[#&#8203;19850](https://redirect.github.com/netdata/netdata/pull/19850)
([ilyam8](https://redirect.github.com/ilyam8))
- minor fixes
[#&#8203;19849](https://redirect.github.com/netdata/netdata/pull/19849)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump k8s.io/client-go from 0.32.2 to 0.32.3 in /src/go
[#&#8203;19848](https://redirect.github.com/netdata/netdata/pull/19848)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/vmware/govmomi from 0.48.1 to 0.49.0 in
/src/go
[#&#8203;19845](https://redirect.github.com/netdata/netdata/pull/19845)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- docs: fix typos in nodes-ephemerality.md
[#&#8203;19840](https://redirect.github.com/netdata/netdata/pull/19840)
([ilyam8](https://redirect.github.com/ilyam8))
- Add oci meta info
[#&#8203;19839](https://redirect.github.com/netdata/netdata/pull/19839)
([Passific](https://redirect.github.com/Passific))
- fix rrdset name crash on cleanup
[#&#8203;19838](https://redirect.github.com/netdata/netdata/pull/19838)
([ktsaou](https://redirect.github.com/ktsaou))
- when destroying pgc, check if the cache is null
[#&#8203;19837](https://redirect.github.com/netdata/netdata/pull/19837)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix for building with protobuf 30.0
[#&#8203;19835](https://redirect.github.com/netdata/netdata/pull/19835)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Improve CI reliability by allowing for better retry behavior.
[#&#8203;19834](https://redirect.github.com/netdata/netdata/pull/19834)
([Ferroin](https://redirect.github.com/Ferroin))
- Regenerate integrations docs
[#&#8203;19833](https://redirect.github.com/netdata/netdata/pull/19833)
([netdatabot](https://redirect.github.com/netdatabot))
- Fix typo in otel collector build infra.
[#&#8203;19832](https://redirect.github.com/netdata/netdata/pull/19832)
([Ferroin](https://redirect.github.com/Ferroin))
- store status file in /var/lib/netdata, not in /var/cache/netdata
[#&#8203;19831](https://redirect.github.com/netdata/netdata/pull/19831)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix RRDDIM_MEM storage engine index
[#&#8203;19830](https://redirect.github.com/netdata/netdata/pull/19830)
([ktsaou](https://redirect.github.com/ktsaou))
- improvement(go.d/k8state): add CronJob suspend status
[#&#8203;19829](https://redirect.github.com/netdata/netdata/pull/19829)
([ilyam8](https://redirect.github.com/ilyam8))
- Revert "fix rrdset name crash on rrdset obsoletion"
[#&#8203;19828](https://redirect.github.com/netdata/netdata/pull/19828)
([ktsaou](https://redirect.github.com/ktsaou))
- free strings judy arrays to show leaked strings
[#&#8203;19827](https://redirect.github.com/netdata/netdata/pull/19827)
([ktsaou](https://redirect.github.com/ktsaou))
- rrdhost name fix heap-use-after-free
[#&#8203;19826](https://redirect.github.com/netdata/netdata/pull/19826)
([ktsaou](https://redirect.github.com/ktsaou))
- use notice log level for "machine ID found"
[#&#8203;19825](https://redirect.github.com/netdata/netdata/pull/19825)
([ilyam8](https://redirect.github.com/ilyam8))
- build(otel-collector): update to v0.121.0
[#&#8203;19824](https://redirect.github.com/netdata/netdata/pull/19824)
([ilyam8](https://redirect.github.com/ilyam8))
- Finding leaks No 2
[#&#8203;19823](https://redirect.github.com/netdata/netdata/pull/19823)
([ktsaou](https://redirect.github.com/ktsaou))
- Free all memory on exit
[#&#8203;19821](https://redirect.github.com/netdata/netdata/pull/19821)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix LSAN and memory leaks
[#&#8203;19819](https://redirect.github.com/netdata/netdata/pull/19819)
([ktsaou](https://redirect.github.com/ktsaou))
- Include libucontext in static builds to vendor libunwind even on
POWER.
[#&#8203;19817](https://redirect.github.com/netdata/netdata/pull/19817)
([Ferroin](https://redirect.github.com/Ferroin))
- Regenerate integrations docs
[#&#8203;19816](https://redirect.github.com/netdata/netdata/pull/19816)
([netdatabot](https://redirect.github.com/netdatabot))
- fix(go.d/filecheck): remove dyncfg path validation pattern
[#&#8203;19815](https://redirect.github.com/netdata/netdata/pull/19815)
([ilyam8](https://redirect.github.com/ilyam8))
- Initial commit with snmp profile code
[#&#8203;19813](https://redirect.github.com/netdata/netdata/pull/19813)
([Ancairon](https://redirect.github.com/Ancairon))
- Acquire datafile for deletion before calculating retention
[#&#8203;19812](https://redirect.github.com/netdata/netdata/pull/19812)
([stelfrag](https://redirect.github.com/stelfrag))
- Detect memory leaks
[#&#8203;19811](https://redirect.github.com/netdata/netdata/pull/19811)
([ktsaou](https://redirect.github.com/ktsaou))
- Avoid zero timeout in libuv timers
[#&#8203;19810](https://redirect.github.com/netdata/netdata/pull/19810)
([stelfrag](https://redirect.github.com/stelfrag))
- fix fsanitize ifdefs
[#&#8203;19809](https://redirect.github.com/netdata/netdata/pull/19809)
([ktsaou](https://redirect.github.com/ktsaou))
- do not change the scheduling policy by default
[#&#8203;19808](https://redirect.github.com/netdata/netdata/pull/19808)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d/pihole): switch to pihole6 api
[#&#8203;19807](https://redirect.github.com/netdata/netdata/pull/19807)
([ilyam8](https://redirect.github.com/ilyam8))
- Help finding leaks and running valgrind
[#&#8203;19806](https://redirect.github.com/netdata/netdata/pull/19806)
([ktsaou](https://redirect.github.com/ktsaou))
- fix memory corruption in streaming
[#&#8203;19805](https://redirect.github.com/netdata/netdata/pull/19805)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19804](https://redirect.github.com/netdata/netdata/pull/19804)
([netdatabot](https://redirect.github.com/netdatabot))
- Regenerate integrations docs
[#&#8203;19803](https://redirect.github.com/netdata/netdata/pull/19803)
([netdatabot](https://redirect.github.com/netdatabot))
- async-signal-safe stack traces
[#&#8203;19802](https://redirect.github.com/netdata/netdata/pull/19802)
([ktsaou](https://redirect.github.com/ktsaou))
- add k8s_state_cronjob_last_execution_failed alert
[#&#8203;19801](https://redirect.github.com/netdata/netdata/pull/19801)
([ilyam8](https://redirect.github.com/ilyam8))
- bump dag jinja to 3.1.6
[#&#8203;19800](https://redirect.github.com/netdata/netdata/pull/19800)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump golang.org/x/net from 0.35.0 to 0.37.0 in /src/go
[#&#8203;19799](https://redirect.github.com/netdata/netdata/pull/19799)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Regenerate integrations docs
[#&#8203;19797](https://redirect.github.com/netdata/netdata/pull/19797)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/k8s_state): add more CronJob metrics
[#&#8203;19796](https://redirect.github.com/netdata/netdata/pull/19796)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19794](https://redirect.github.com/netdata/netdata/pull/19794)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/k8s_state): collect cronjobs
[#&#8203;19793](https://redirect.github.com/netdata/netdata/pull/19793)
([ilyam8](https://redirect.github.com/ilyam8))
- status file improvements 12
[#&#8203;19792](https://redirect.github.com/netdata/netdata/pull/19792)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19791](https://redirect.github.com/netdata/netdata/pull/19791)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/snmp): add snmp discovery information
[#&#8203;19790](https://redirect.github.com/netdata/netdata/pull/19790)
([ilyam8](https://redirect.github.com/ilyam8))
- User configurable crash reporting
[#&#8203;19789](https://redirect.github.com/netdata/netdata/pull/19789)
([ktsaou](https://redirect.github.com/ktsaou))
- detect when running in CI and disable posting status
[#&#8203;19787](https://redirect.github.com/netdata/netdata/pull/19787)
([ktsaou](https://redirect.github.com/ktsaou))
- chore: rename snmp.profiles.d -> snmp.profiles
[#&#8203;19786](https://redirect.github.com/netdata/netdata/pull/19786)
([ilyam8](https://redirect.github.com/ilyam8))
- add datadog profiles for snmp collector
[#&#8203;19785](https://redirect.github.com/netdata/netdata/pull/19785)
([Ancairon](https://redirect.github.com/Ancairon))
- Revert broken DEB priority configuration in repoconfig packages.
[#&#8203;19783](https://redirect.github.com/netdata/netdata/pull/19783)
([Ferroin](https://redirect.github.com/Ferroin))
- Restructure shutdown logic used during updates.
[#&#8203;19781](https://redirect.github.com/netdata/netdata/pull/19781)
([Ferroin](https://redirect.github.com/Ferroin))
- add unique machine id to status file
[#&#8203;19778](https://redirect.github.com/netdata/netdata/pull/19778)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d/sd): fix logging cfg source when disabled
[#&#8203;19777](https://redirect.github.com/netdata/netdata/pull/19777)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(go.d/sd): add file path to k8s/snmp discovered job source
[#&#8203;19776](https://redirect.github.com/netdata/netdata/pull/19776)
([ilyam8](https://redirect.github.com/ilyam8))
- Improve agent shutdown
[#&#8203;19775](https://redirect.github.com/netdata/netdata/pull/19775)
([stelfrag](https://redirect.github.com/stelfrag))
- Fix SIGSEGV on static installs due to dengine log
[#&#8203;19774](https://redirect.github.com/netdata/netdata/pull/19774)
([ktsaou](https://redirect.github.com/ktsaou))
- kickstart: install native pkg on RPi2+
[#&#8203;19773](https://redirect.github.com/netdata/netdata/pull/19773)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(go.d/sd): rename discoverers pkgs
[#&#8203;19772](https://redirect.github.com/netdata/netdata/pull/19772)
([ilyam8](https://redirect.github.com/ilyam8))
- block signals before curl
[#&#8203;19771](https://redirect.github.com/netdata/netdata/pull/19771)
([ktsaou](https://redirect.github.com/ktsaou))
- block all signals before spawning any threads
[#&#8203;19770](https://redirect.github.com/netdata/netdata/pull/19770)
([ktsaou](https://redirect.github.com/ktsaou))
- add handling for sigabrt in the status file
[#&#8203;19769](https://redirect.github.com/netdata/netdata/pull/19769)
([ktsaou](https://redirect.github.com/ktsaou))
- copy fields only when the source is valid
[#&#8203;19768](https://redirect.github.com/netdata/netdata/pull/19768)
([ktsaou](https://redirect.github.com/ktsaou))
- detect crashes during status file processing
[#&#8203;19767](https://redirect.github.com/netdata/netdata/pull/19767)
([ktsaou](https://redirect.github.com/ktsaou))
- post status syncrhonously
[#&#8203;19766](https://redirect.github.com/netdata/netdata/pull/19766)
([ktsaou](https://redirect.github.com/ktsaou))
- enable libunwind in static builds
[#&#8203;19764](https://redirect.github.com/netdata/netdata/pull/19764)
([ktsaou](https://redirect.github.com/ktsaou))
- fix invalid free
[#&#8203;19763](https://redirect.github.com/netdata/netdata/pull/19763)
([ktsaou](https://redirect.github.com/ktsaou))
- make status file use fixed size character arrays
[#&#8203;19761](https://redirect.github.com/netdata/netdata/pull/19761)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d/sd/snmp): use rescan and cache ttl only when set
[#&#8203;19760](https://redirect.github.com/netdata/netdata/pull/19760)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/nvidia_smi): handle xml gpu_power_readings change
[#&#8203;19759](https://redirect.github.com/netdata/netdata/pull/19759)
([ilyam8](https://redirect.github.com/ilyam8))
- status file timings per step
[#&#8203;19758](https://redirect.github.com/netdata/netdata/pull/19758)
([ktsaou](https://redirect.github.com/ktsaou))
- improvement(go.d/sd/snmp): support device cache ttl 0
[#&#8203;19756](https://redirect.github.com/netdata/netdata/pull/19756)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(go.d/sd/snmp): comment out defaults in snmp.conf
[#&#8203;19755](https://redirect.github.com/netdata/netdata/pull/19755)
([ilyam8](https://redirect.github.com/ilyam8))
- Add documentation outlining how to use custom CA certificates with
Netdata.
[#&#8203;19754](https://redirect.github.com/netdata/netdata/pull/19754)
([Ferroin](https://redirect.github.com/Ferroin))
- status file version 8
[#&#8203;19753](https://redirect.github.com/netdata/netdata/pull/19753)
([ktsaou](https://redirect.github.com/ktsaou))
- status file improvements (dedup and signal handler use)
[#&#8203;19751](https://redirect.github.com/netdata/netdata/pull/19751)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump github.com/axiomhq/hyperloglog from 0.2.3 to 0.2.5
in /src/go
[#&#8203;19750](https://redirect.github.com/netdata/netdata/pull/19750)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/likexian/whois from 1.15.5 to 1.15.6 in
/src/go
[#&#8203;19749](https://redirect.github.com/netdata/netdata/pull/19749)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump go.mongodb.org/mongo-driver from 1.17.2 to 1.17.3 in
/src/go
[#&#8203;19748](https://redirect.github.com/netdata/netdata/pull/19748)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/gosnmp/gosnmp from 1.38.0 to 1.39.0 in
/src/go
[#&#8203;19747](https://redirect.github.com/netdata/netdata/pull/19747)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/docker/docker from 28.0.0+incompatible to
28.0.1+incompatible in /src/go
[#&#8203;19746](https://redirect.github.com/netdata/netdata/pull/19746)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- more strict parsing of the output of system-info.sh
[#&#8203;19745](https://redirect.github.com/netdata/netdata/pull/19745)
([ktsaou](https://redirect.github.com/ktsaou))
- pass NULL to sensors_init() when the standard files exist in /etc/
[#&#8203;19744](https://redirect.github.com/netdata/netdata/pull/19744)
([ktsaou](https://redirect.github.com/ktsaou))
- allow coredumps to be generated
[#&#8203;19743](https://redirect.github.com/netdata/netdata/pull/19743)
([ktsaou](https://redirect.github.com/ktsaou))
- work on agent-events crashes
[#&#8203;19741](https://redirect.github.com/netdata/netdata/pull/19741)
([ktsaou](https://redirect.github.com/ktsaou))
- zero mtime when a fallback check fails
[#&#8203;19740](https://redirect.github.com/netdata/netdata/pull/19740)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d): ignore sigpipe to exit gracefully
[#&#8203;19739](https://redirect.github.com/netdata/netdata/pull/19739)
([ilyam8](https://redirect.github.com/ilyam8))
- Capture deadly signals
[#&#8203;19737](https://redirect.github.com/netdata/netdata/pull/19737)
([ktsaou](https://redirect.github.com/ktsaou))
- allow insecure cloud connections
[#&#8203;19736](https://redirect.github.com/netdata/netdata/pull/19736)
([ktsaou](https://redirect.github.com/ktsaou))
- add more information about claiming failures
[#&#8203;19735](https://redirect.github.com/netdata/netdata/pull/19735)
([ktsaou](https://redirect.github.com/ktsaou))
- support https_proxy too
[#&#8203;19733](https://redirect.github.com/netdata/netdata/pull/19733)
([ktsaou](https://redirect.github.com/ktsaou))
- fix json generation of apps.plugin processes function info
[#&#8203;19732](https://redirect.github.com/netdata/netdata/pull/19732)
([ktsaou](https://redirect.github.com/ktsaou))
- add another step when initializing web
[#&#8203;19731](https://redirect.github.com/netdata/netdata/pull/19731)
([ktsaou](https://redirect.github.com/ktsaou))
- improved descriptions of exit reasons
[#&#8203;19730](https://redirect.github.com/netdata/netdata/pull/19730)
([ktsaou](https://redirect.github.com/ktsaou))
- do not post empty reports
[#&#8203;19729](https://redirect.github.com/netdata/netdata/pull/19729)
([ktsaou](https://redirect.github.com/ktsaou))
- docs: clarify Windows Agent limits on free plans
[#&#8203;19727](https://redirect.github.com/netdata/netdata/pull/19727)
([ilyam8](https://redirect.github.com/ilyam8))
- improve status file deduplication
[#&#8203;19726](https://redirect.github.com/netdata/netdata/pull/19726)
([ktsaou](https://redirect.github.com/ktsaou))
- handle flushing state during exit
[#&#8203;19725](https://redirect.github.com/netdata/netdata/pull/19725)
([ktsaou](https://redirect.github.com/ktsaou))
- allow configuring journal v2 unmount time; turn it off for parents
[#&#8203;19724](https://redirect.github.com/netdata/netdata/pull/19724)
([ktsaou](https://redirect.github.com/ktsaou))
- minor status file annotation fixes
[#&#8203;19723](https://redirect.github.com/netdata/netdata/pull/19723)
([ktsaou](https://redirect.github.com/ktsaou))
- status has install type
[#&#8203;19722](https://redirect.github.com/netdata/netdata/pull/19722)
([ktsaou](https://redirect.github.com/ktsaou))
- more status file annotations
[#&#8203;19721](https://redirect.github.com/netdata/netdata/pull/19721)
([ktsaou](https://redirect.github.com/ktsaou))
- feat(go.d): add snmp devices discovery
[#&#8203;19720](https://redirect.github.com/netdata/netdata/pull/19720)
([ilyam8](https://redirect.github.com/ilyam8))
- save status on out of memory event
[#&#8203;19719](https://redirect.github.com/netdata/netdata/pull/19719)
([ktsaou](https://redirect.github.com/ktsaou))
- attempt to save status file from the signal handler
[#&#8203;19718](https://redirect.github.com/netdata/netdata/pull/19718)
([ktsaou](https://redirect.github.com/ktsaou))
- unified out of memory handling
[#&#8203;19717](https://redirect.github.com/netdata/netdata/pull/19717)
([ktsaou](https://redirect.github.com/ktsaou))
- chore(go.d): add file persister
[#&#8203;19716](https://redirect.github.com/netdata/netdata/pull/19716)
([ilyam8](https://redirect.github.com/ilyam8))
- do not call cleanup and exit on fatal conditions during startup
[#&#8203;19715](https://redirect.github.com/netdata/netdata/pull/19715)
([ktsaou](https://redirect.github.com/ktsaou))
- do not use mmap when the mmap limit is too low
[#&#8203;19714](https://redirect.github.com/netdata/netdata/pull/19714)
([ktsaou](https://redirect.github.com/ktsaou))
- systemd-journal: allow almost all fields to be facets
[#&#8203;19713](https://redirect.github.com/netdata/netdata/pull/19713)
([ktsaou](https://redirect.github.com/ktsaou))
- deduplicate all crash reports
[#&#8203;19712](https://redirect.github.com/netdata/netdata/pull/19712)
([ktsaou](https://redirect.github.com/ktsaou))
- 4 malloc arenas for parents, not IoT
[#&#8203;19711](https://redirect.github.com/netdata/netdata/pull/19711)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix Fresh Installation on Microsoft
[#&#8203;19710](https://redirect.github.com/netdata/netdata/pull/19710)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- Avoid post initialization errors repeateadly
[#&#8203;19709](https://redirect.github.com/netdata/netdata/pull/19709)
([ktsaou](https://redirect.github.com/ktsaou))
- Check for final step
[#&#8203;19708](https://redirect.github.com/netdata/netdata/pull/19708)
([stelfrag](https://redirect.github.com/stelfrag))
- daemon status improvements 3
[#&#8203;19707](https://redirect.github.com/netdata/netdata/pull/19707)
([ktsaou](https://redirect.github.com/ktsaou))
- fix runtime directory; annotate daemon status file
[#&#8203;19706](https://redirect.github.com/netdata/netdata/pull/19706)
([ktsaou](https://redirect.github.com/ktsaou))
- Add repository priority configuration for DEB package repositories.
[#&#8203;19705](https://redirect.github.com/netdata/netdata/pull/19705)
([Ferroin](https://redirect.github.com/Ferroin))
- add host/os fields to status file
[#&#8203;19704](https://redirect.github.com/netdata/netdata/pull/19704)
([ktsaou](https://redirect.github.com/ktsaou))
- under MSYS2 use stat
[#&#8203;19703](https://redirect.github.com/netdata/netdata/pull/19703)
([ktsaou](https://redirect.github.com/ktsaou))
- Integrate OpenTelemetry collector build into build system.
[#&#8203;19702](https://redirect.github.com/netdata/netdata/pull/19702)
([Ferroin](https://redirect.github.com/Ferroin))
- Document journal v2 index file format.
[#&#8203;19701](https://redirect.github.com/netdata/netdata/pull/19701)
([vkalintiris](https://redirect.github.com/vkalintiris))
- build(deps): update go.d packages
[#&#8203;19700](https://redirect.github.com/netdata/netdata/pull/19700)
([ilyam8](https://redirect.github.com/ilyam8))
- ADFS (windows.plugin)
[#&#8203;19699](https://redirect.github.com/netdata/netdata/pull/19699)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- build(deps): bump github.com/sijms/go-ora/v2 from 2.8.23 to 2.8.24 in
/src/go
[#&#8203;19698](https://redirect.github.com/netdata/netdata/pull/19698)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- change the moto and the description of netdata
[#&#8203;19696](https://redirect.github.com/netdata/netdata/pull/19696)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump github.com/redis/go-redis/v9 from 9.7.0 to 9.7.1 in
/src/go
[#&#8203;19693](https://redirect.github.com/netdata/netdata/pull/19693)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/docker/docker from 27.5.1+incompatible to
28.0.0+incompatible in /src/go
[#&#8203;19692](https://redirect.github.com/netdata/netdata/pull/19692)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- load health config before creating localhost
[#&#8203;19689](https://redirect.github.com/netdata/netdata/pull/19689)
([ktsaou](https://redirect.github.com/ktsaou))
- chore(go.d/pkg/iprange): add iterator
[#&#8203;19688](https://redirect.github.com/netdata/netdata/pull/19688)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(go.d/mysql): InnodbOSLogIO in MariaDB >= 10.8
[#&#8203;19687](https://redirect.github.com/netdata/netdata/pull/19687)
([arkamar](https://redirect.github.com/arkamar))
- Switch back to x86 hosts for POWER8+ builds.
[#&#8203;19686](https://redirect.github.com/netdata/netdata/pull/19686)
([Ferroin](https://redirect.github.com/Ferroin))
- allow parsing empty json arrays and objects
[#&#8203;19685](https://redirect.github.com/netdata/netdata/pull/19685)
([ktsaou](https://redirect.github.com/ktsaou))
- improve dyncfg src type anon message
[#&#8203;19684](https://redirect.github.com/netdata/netdata/pull/19684)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/mysql): handle Cpu_time in microseconds in v10.11.11+
[#&#8203;19683](https://redirect.github.com/netdata/netdata/pull/19683)
([ilyam8](https://redirect.github.com/ilyam8))
- build: change go.mod version to 1.23.4 to fix win ci builds
[#&#8203;19681](https://redirect.github.com/netdata/netdata/pull/19681)
([ilyam8](https://redirect.github.com/ilyam8))
- build: change go.mod version to 1.23.6
[#&#8203;19680](https://redirect.github.com/netdata/netdata/pull/19680)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/go-sql-driver/mysql from 1.8.1 to 1.9.0
in /src/go
[#&#8203;19679](https://redirect.github.com/netdata/netdata/pull/19679)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- initial setup of custom OpenTelemetry Collector distribution
[#&#8203;19678](https://redirect.github.com/netdata/netdata/pull/19678)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix freebsd compilation
[#&#8203;19677](https://redirect.github.com/netdata/netdata/pull/19677)
([stelfrag](https://redirect.github.com/stelfrag))
- test(go.d dyncfg): fix tests
[#&#8203;19676](https://redirect.github.com/netdata/netdata/pull/19676)
([ilyam8](https://redirect.github.com/ilyam8))
- Dyncfg users actions log
[#&#8203;19674](https://redirect.github.com/netdata/netdata/pull/19674)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d dyncfg): don't overwrite source
[#&#8203;19673](https://redirect.github.com/netdata/netdata/pull/19673)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(go.d dyncfg): log collector dyncfg actions
[#&#8203;19672](https://redirect.github.com/netdata/netdata/pull/19672)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/k8sstate): correct deployment conditions
[#&#8203;19671](https://redirect.github.com/netdata/netdata/pull/19671)
([ilyam8](https://redirect.github.com/ilyam8))
- chore: remove netdata_configured_lock_dir
[#&#8203;19669](https://redirect.github.com/netdata/netdata/pull/19669)
([ilyam8](https://redirect.github.com/ilyam8))
- chore: remove lock files from go.d/python.d
[#&#8203;19668](https://redirect.github.com/netdata/netdata/pull/19668)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(go.d/sensors): disable by default
[#&#8203;19667](https://redirect.github.com/netdata/netdata/pull/19667)
([ilyam8](https://redirect.github.com/ilyam8))
- improvement(go.d dyncfg): add user to source
[#&#8203;19666](https://redirect.github.com/netdata/netdata/pull/19666)
([ilyam8](https://redirect.github.com/ilyam8))
- add k8s_state_deployment_condition_available alert
[#&#8203;19664](https://redirect.github.com/netdata/netdata/pull/19664)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19663](https://redirect.github.com/netdata/netdata/pull/19663)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/k8sstate): add deployment conditions
[#&#8203;19662](https://redirect.github.com/netdata/netdata/pull/19662)
([ilyam8](https://redirect.github.com/ilyam8))
- avoid dbengine event loop starvation by running uv_run periodically
[#&#8203;19661](https://redirect.github.com/netdata/netdata/pull/19661)
([ktsaou](https://redirect.github.com/ktsaou))
- speed up aral when a single item is allocated and freed repeateadly
[#&#8203;19660](https://redirect.github.com/netdata/netdata/pull/19660)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19658](https://redirect.github.com/netdata/netdata/pull/19658)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/k8sstate): collect deployments
[#&#8203;19657](https://redirect.github.com/netdata/netdata/pull/19657)
([ilyam8](https://redirect.github.com/ilyam8))
- add agent timezones as host labels
[#&#8203;19656](https://redirect.github.com/netdata/netdata/pull/19656)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump k8s.io/client-go from 0.32.1 to 0.32.2 in /src/go
[#&#8203;19652](https://redirect.github.com/netdata/netdata/pull/19652)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- make onewayalloc fallback to malloc
[#&#8203;19646](https://redirect.github.com/netdata/netdata/pull/19646)
([ktsaou](https://redirect.github.com/ktsaou))
- docs: move /run/dbus mount to Docker recommended way
[#&#8203;19645](https://redirect.github.com/netdata/netdata/pull/19645)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix native package installation on RHEL.
[#&#8203;19643](https://redirect.github.com/netdata/netdata/pull/19643)
([Ferroin](https://redirect.github.com/Ferroin))
- ci: fix win build
[#&#8203;19642](https://redirect.github.com/netdata/netdata/pull/19642)
([ilyam8](https://redirect.github.com/ilyam8))
- fix windows logs 2 - do not renumber - append fields
[#&#8203;19640](https://redirect.github.com/netdata/netdata/pull/19640)
([ktsaou](https://redirect.github.com/ktsaou))
- Revert "fix windows logs"
[#&#8203;19639](https://redirect.github.com/netdata/netdata/pull/19639)
([ktsaou](https://redirect.github.com/ktsaou))
- add Group=netdata to systemd unit file
[#&#8203;19638](https://redirect.github.com/netdata/netdata/pull/19638)
([ilyam8](https://redirect.github.com/ilyam8))
- docs: add missing prop to graphite meta
[#&#8203;19637](https://redirect.github.com/netdata/netdata/pull/19637)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19636](https://redirect.github.com/netdata/netdata/pull/19636)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(exporting): clarify graphite exporters
[#&#8203;19635](https://redirect.github.com/netdata/netdata/pull/19635)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19634](https://redirect.github.com/netdata/netdata/pull/19634)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(exporting): remove influxdb (via graphite) exporter
[#&#8203;19633](https://redirect.github.com/netdata/netdata/pull/19633)
([ilyam8](https://redirect.github.com/ilyam8))
- fix windows logs
[#&#8203;19632](https://redirect.github.com/netdata/netdata/pull/19632)
([ktsaou](https://redirect.github.com/ktsaou))
- more perflib error checking
[#&#8203;19631](https://redirect.github.com/netdata/netdata/pull/19631)
([ktsaou](https://redirect.github.com/ktsaou))
- Revert "HyperV Adjusts (windows.plugin)"
[#&#8203;19630](https://redirect.github.com/netdata/netdata/pull/19630)
([ilyam8](https://redirect.github.com/ilyam8))
- do not send sentry reports on rrd_init() failures
[#&#8203;19628](https://redirect.github.com/netdata/netdata/pull/19628)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump golang.org/x/net from 0.34.0 to 0.35.0 in /src/go
[#&#8203;19626](https://redirect.github.com/netdata/netdata/pull/19626)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump github.com/vmware/govmomi from 0.48.0 to 0.48.1 in
/src/go
[#&#8203;19625](https://redirect.github.com/netdata/netdata/pull/19625)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- feat(health): add system_reboot_detection alarm
[#&#8203;19624](https://redirect.github.com/netdata/netdata/pull/19624)
([ilyam8](https://redirect.github.com/ilyam8))
- HyperV Adjusts (windows.plugin)
[#&#8203;19623](https://redirect.github.com/netdata/netdata/pull/19623)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- detect the system ca bundle at runtime
[#&#8203;19622](https://redirect.github.com/netdata/netdata/pull/19622)
([ktsaou](https://redirect.github.com/ktsaou))
- Switch to Ubuntu 22.04 runner images for CI build jobs.
[#&#8203;19619](https://redirect.github.com/netdata/netdata/pull/19619)
([Ferroin](https://redirect.github.com/Ferroin))
- fix(go.d/mysql): handle Cpu_time in microseconds in v11.4.5+
[#&#8203;19618](https://redirect.github.com/netdata/netdata/pull/19618)
([ilyam8](https://redirect.github.com/ilyam8))
- detect netdata exit reasons
[#&#8203;19617](https://redirect.github.com/netdata/netdata/pull/19617)
([ktsaou](https://redirect.github.com/ktsaou))
- improvement(health): clarify clickhouse_replicated_readonly_tables
info
[#&#8203;19616](https://redirect.github.com/netdata/netdata/pull/19616)
([ilyam8](https://redirect.github.com/ilyam8))
- fix: correct typo in NetdataCompilerFlags
[#&#8203;19614](https://redirect.github.com/netdata/netdata/pull/19614)
([ilyam8](https://redirect.github.com/ilyam8))
- chore: remove fluentbit.log from Dockerfile
[#&#8203;19613](https://redirect.github.com/netdata/netdata/pull/19613)
([ilyam8](https://redirect.github.com/ilyam8))
- Allow indirect access when agent is claimed, but offline (indirect
cloud connectivity)
[#&#8203;19611](https://redirect.github.com/netdata/netdata/pull/19611)
([ktsaou](https://redirect.github.com/ktsaou))
- silence new alerts
[#&#8203;19610](https://redirect.github.com/netdata/netdata/pull/19610)
([ktsaou](https://redirect.github.com/ktsaou))
- Do not register removed node on agent restart
[#&#8203;19609](https://redirect.github.com/netdata/netdata/pull/19609)
([stelfrag](https://redirect.github.com/stelfrag))
- Add sentry fatal message breadcrumb.
[#&#8203;19608](https://redirect.github.com/netdata/netdata/pull/19608)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Disable LTO for openSUSE package builds.
[#&#8203;19607](https://redirect.github.com/netdata/netdata/pull/19607)
([Ferroin](https://redirect.github.com/Ferroin))
- add interpolation to median and percentile
[#&#8203;19606](https://redirect.github.com/netdata/netdata/pull/19606)
([ktsaou](https://redirect.github.com/ktsaou))
- docs: reword nodes-ephemerality for clarity
[#&#8203;19604](https://redirect.github.com/netdata/netdata/pull/19604)
([ilyam8](https://redirect.github.com/ilyam8))
- cleanup hosts - leftover code
[#&#8203;19603](https://redirect.github.com/netdata/netdata/pull/19603)
([ktsaou](https://redirect.github.com/ktsaou))
- make remove-stale-node remove also ephemeral nodes
[#&#8203;19602](https://redirect.github.com/netdata/netdata/pull/19602)
([ktsaou](https://redirect.github.com/ktsaou))
- Update manage-notification-methods.md
[#&#8203;19601](https://redirect.github.com/netdata/netdata/pull/19601)
([Ancairon](https://redirect.github.com/Ancairon))
- Close database if we encounter error during startup
[#&#8203;19600](https://redirect.github.com/netdata/netdata/pull/19600)
([stelfrag](https://redirect.github.com/stelfrag))
- dequeue from hub before deleting contexts
[#&#8203;19599](https://redirect.github.com/netdata/netdata/pull/19599)
([ktsaou](https://redirect.github.com/ktsaou))
- build(deps): bump github.com/gohugoio/hashstructure from 0.3.0 to
0.5.0 in /src/go
[#&#8203;19598](https://redirect.github.com/netdata/netdata/pull/19598)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- build(deps): bump golang.org/x/text from 0.21.0 to 0.22.0 in /src/go
[#&#8203;19597](https://redirect.github.com/netdata/netdata/pull/19597)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Cleanup code that writes extents to the database
[#&#8203;19596](https://redirect.github.com/netdata/netdata/pull/19596)
([stelfrag](https://redirect.github.com/stelfrag))
- Add check for available active instances when checking for extreme
cardinality
[#&#8203;19594](https://redirect.github.com/netdata/netdata/pull/19594)
([stelfrag](https://redirect.github.com/stelfrag))
- Free resources where writing datafile extents
[#&#8203;19593](https://redirect.github.com/netdata/netdata/pull/19593)
([stelfrag](https://redirect.github.com/stelfrag))
- fix incomplete implementation of journal watcher
[#&#8203;19592](https://redirect.github.com/netdata/netdata/pull/19592)
([ktsaou](https://redirect.github.com/ktsaou))
- docs(health): clarify "special user of the cond operator" p2
[#&#8203;19590](https://redirect.github.com/netdata/netdata/pull/19590)
([ilyam8](https://redirect.github.com/ilyam8))
- docs(health): clarify "special user of the cond operator"
[#&#8203;19589](https://redirect.github.com/netdata/netdata/pull/19589)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19588](https://redirect.github.com/netdata/netdata/pull/19588)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/zookeeper): fix ZooKeeper server scope name
[#&#8203;19587](https://redirect.github.com/netdata/netdata/pull/19587)
([ilyam8](https://redirect.github.com/ilyam8))
- Streaming alerts
[#&#8203;19586](https://redirect.github.com/netdata/netdata/pull/19586)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19585](https://redirect.github.com/netdata/netdata/pull/19585)
([netdatabot](https://redirect.github.com/netdatabot))
- improvement(go.d/zookeeper): add more metrics
[#&#8203;19584](https://redirect.github.com/netdata/netdata/pull/19584)
([ilyam8](https://redirect.github.com/ilyam8))
- Add agent version during ACLK handshake
[#&#8203;19583](https://redirect.github.com/netdata/netdata/pull/19583)
([stelfrag](https://redirect.github.com/stelfrag))
- Format missing file (eBPF.plugin)
[#&#8203;19582](https://redirect.github.com/netdata/netdata/pull/19582)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- fix(go.d/apache): make ?auto param check non-fatal
[#&#8203;19580](https://redirect.github.com/netdata/netdata/pull/19580)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix static build conditions to run on release and nightly builds.
[#&#8203;19579](https://redirect.github.com/netdata/netdata/pull/19579)
([Ferroin](https://redirect.github.com/Ferroin))
- build(deps): update go toolchain to v1.23.6
[#&#8203;19578](https://redirect.github.com/netdata/netdata/pull/19578)
([ilyam8](https://redirect.github.com/ilyam8))
- fix(go.d/nvme): add missing "/dev/" prefix to device path for v2.11
[#&#8203;19577](https://redirect.github.com/netdata/netdata/pull/19577)
([ilyam8](https://redirect.github.com/ilyam8))
- Generate protobuf source files in build dir.
[#&#8203;19576](https://redirect.github.com/netdata/netdata/pull/19576)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Switch from x86 to ARM build host for POWER8+ builds.
[#&#8203;19575](https://redirect.github.com/netdata/netdata/pull/19575)
([Ferroin](https://redirect.github.com/Ferroin))
- fix(go.d): clean up charts for stopped and removed jobs
[#&#8203;19573](https://redirect.github.com/netdata/netdata/pull/19573)
([ilyam8](https://redirect.github.com/ilyam8))
- Modify eBPF.plugin integration (Part II, the sockets)
[#&#8203;19572](https://redirect.github.com/netdata/netdata/pull/19572)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- Fix memory leak
[#&#8203;19569](https://redirect.github.com/netdata/netdata/pull/19569)
([stelfrag](https://redirect.github.com/stelfrag))
- build(deps): bump github.com/prometheus-community/pro-bing from 0.6.0
to 0.6.1 in /src/go
[#&#8203;19567](https://redirect.github.com/netdata/netdata/pull/19567)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Code cleanup on ACLK messages
[#&#8203;19566](https://redirect.github.com/netdata/netdata/pull/19566)
([stelfrag](https://redirect.github.com/stelfrag))
- Add a new agent status when connecting to the cloud
[#&#8203;19564](https://redirect.github.com/netdata/netdata/pull/19564)
([stelfrag](https://redirect.github.com/stelfrag))
- Regenerate integrations docs
[#&#8203;19563](https://redirect.github.com/netdata/netdata/pull/19563)
([netdatabot](https://redirect.github.com/netdatabot))
- feat(go.d/dnsquery): support system DNS servers from /etc/resolv.conf
[#&#8203;19562](https://redirect.github.com/netdata/netdata/pull/19562)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19561](https://redirect.github.com/netdata/netdata/pull/19561)
([netdatabot](https://redirect.github.com/netdatabot))
- MSSQL Multiple Instances (windows.plugin)
[#&#8203;19559](https://redirect.github.com/netdata/netdata/pull/19559)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- build(deps): bump github.com/lmittmann/tint from 1.0.6 to 1.0.7 in
/src/go
[#&#8203;19558](https://redirect.github.com/netdata/netdata/pull/19558)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Metadata (AD and ADCS), and small fixes
[#&#8203;19557](https://redirect.github.com/netdata/netdata/pull/19557)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- docs(start-stop-restart): fix restart typo
[#&#8203;19555](https://redirect.github.com/netdata/netdata/pull/19555)
([L-U-C-K-Y](https://redirect.github.com/L-U-C-K-Y))
- Format Windows.plugin
[#&#8203;19554](https://redirect.github.com/netdata/netdata/pull/19554)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- Format ebpf
[#&#8203;19553](https://redirect.github.com/netdata/netdata/pull/19553)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- Rename appconfig to inicfg and drop config_\* function-like macros.
[#&#8203;19552](https://redirect.github.com/netdata/netdata/pull/19552)
([vkalintiris](https://redirect.github.com/vkalintiris))
- fix(go.d/mysql): fix typo in test name
[#&#8203;19550](https://redirect.github.com/netdata/netdata/pull/19550)
([arkamar](https://redirect.github.com/arkamar))
- fix(go.d/mysql): don't collect global variables on every iteration
[#&#8203;19549](https://redirect.github.com/netdata/netdata/pull/19549)
([arkamar](https://redirect.github.com/arkamar))
- Regenerate integrations docs
[#&#8203;19548](https://redirect.github.com/netdata/netdata/pull/19548)
([netdatabot](https://redirect.github.com/netdatabot))
- Fix cloud connect after claim
[#&#8203;19547](https://redirect.github.com/netdata/netdata/pull/19547)
([stelfrag](https://redirect.github.com/stelfrag))
- virtual hosts now get hops = 1
[#&#8203;19546](https://redirect.github.com/netdata/netdata/pull/19546)
([ktsaou](https://redirect.github.com/ktsaou))
- chore: remove old dashboard leftovers
[#&#8203;19545](https://redirect.github.com/netdata/netdata/pull/19545)
([ilyam8](https://redirect.github.com/ilyam8))
- chore(windows.plugin): format perflib ad and netframework
[#&#8203;19544](https://redirect.github.com/netdata/netdata/pull/19544)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19541](https://redirect.github.com/netdata/netdata/pull/19541)
([netdatabot](https://redirect.github.com/netdatabot))
- Use database/rrd.h instead of daemon/common.h
[#&#8203;19540](https://redirect.github.com/netdata/netdata/pull/19540)
([vkalintiris](https://redirect.github.com/vkalintiris))
- allow dbengine to read at offsets above 4GiB - again
[#&#8203;19539](https://redirect.github.com/netdata/netdata/pull/19539)
([ktsaou](https://redirect.github.com/ktsaou))
- allow dbengine to read at offsets above 4GiB
[#&#8203;19538](https://redirect.github.com/netdata/netdata/pull/19538)
([ktsaou](https://redirect.github.com/ktsaou))
- inline dbengine query critical path
[#&#8203;19537](https://redirect.github.com/netdata/netdata/pull/19537)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix contexts stay not-live when children reconnect
[#&#8203;19536](https://redirect.github.com/netdata/netdata/pull/19536)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix coverity issue
[#&#8203;19535](https://redirect.github.com/netdata/netdata/pull/19535)
([stelfrag](https://redirect.github.com/stelfrag))
- Actually handle the `-fexceptions` requirement correctly in our build
system.
[#&#8203;19534](https://redirect.github.com/netdata/netdata/pull/19534)
([Ferroin](https://redirect.github.com/Ferroin))
- fix heap use after free
[#&#8203;19532](https://redirect.github.com/netdata/netdata/pull/19532)
([ktsaou](https://redirect.github.com/ktsaou))
- docs(web/gui): remove info about old dashboard from readme
[#&#8203;19531](https://redirect.github.com/netdata/netdata/pull/19531)
([ilyam8](https://redirect.github.com/ilyam8))
- Regenerate integrations docs
[#&#8203;19530](https://redirect.github.com/netdata/netdata/pull/19530)
([netdatabot](https://redirect.github.com/netdatabot))
- chore(go.d/snmp): enable create_vnode by default
[#&#8203;19529](https://redirect.github.com/netdata/netdata/pull/19529)
([ilyam8](https://redirect.github.com/ilyam8))
- ci: bump static build timeout to 6hr
[#&#8203;19528](https://redirect.github.com/netdata/netdata/pull/19528)
([ilyam8](https://redirect.github.com/ilyam8))
- Fix MSSQL Instance
[#&#8203;19527](https://redirect.github.com/netdata/netdata/pull/19527)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- Improve data write
[#&#8203;19525](https://redirect.github.com/netdata/netdata/pull/19525)
([stelfrag](https://redirect.github.com/stelfrag))
- inline functions related to metrics ingestion
[#&#8203;19524](https://redirect.github.com/netdata/netdata/pull/19524)
([ktsaou](https://redirect.github.com/ktsaou))
- chore(packaging): remove old dashboard
[#&#8203;19523](https://redirect.github.com/netdata/netdata/pull/19523)
([ilyam8](https://redirect.github.com/ilyam8))
- Format PGDs on fatal()
[#&#8203;19521](https://redirect.github.com/netdata/netdata/pull/19521)
([vkalintiris](https://redirect.github.com/vkalintiris))
- SMSEagle integration
[#&#8203;19520](https://redirect.github.com/netdata/netdata/pull/19520)
([marcin-smseagle](https://redirect.github.com/marcin-smseagle))
- ci: increase static build timeout 180->300m
[#&#8203;19519](https://redirect.github.com/netdata/netdata/pull/19519)
([ilyam8](https://redirect.github.com/ilyam8))
- Improve ACLK query processing
[#&#8203;19518](https://redirect.github.com/netdata/netdata/pull/19518)
([stelfrag](https://redirect.github.com/stelfrag))
- Regenerate integrations docs
[#&#8203;19517](https://redirect.github.com/netdata/netdata/pull/19517)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/httpcheck): add alerts to metadata
[#&#8203;19516](https://redirect.github.com/netdata/netdata/pull/19516)
([ilyam8](https://redirect.github.com/ilyam8))
- Invert order of checks in pgd_append_point().
[#&#8203;19515](https://redirect.github.com/netdata/netdata/pull/19515)
([vkalintiris](https://redirect.github.com/vkalintiris))
- Link the ebpf plugin against libbpf directly instead of through
libnetdata.
[#&#8203;19514](https://redirect.github.com/netdata/netdata/pull/19514)
([Ferroin](https://redirect.github.com/Ferroin))
- compile time and runtime check of required compiler flags
[#&#8203;19513](https://redirect.github.com/netdata/netdata/pull/19513)
([ktsaou](https://redirect.github.com/ktsaou))
- netdata.spec/plugin-go: remove dependency for lm_sensors
[#&#8203;19511](https://redirect.github.com/netdata/netdata/pull/19511)
([k0ste](https://redirect.github.com/k0ste))
- chore(go.d/nvme): fix 🐶 warning
[#&#8203;19510](https://redirect.github.com/netdata/netdata/pull/19510)
([ilyam8](https://redirect.github.com/ilyam8))
- Bundle cmake cache.
[#&#8203;19509](https://redirect.github.com/netdata/netdata/pull/19509)
([vkalintiris](https://redirect.github.com/vkalintiris))
- ACLK: allow encoded proxy username and password to work
[#&#8203;19508](https://redirect.github.com/netdata/netdata/pull/19508)
([ktsaou](https://redirect.github.com/ktsaou))
- Fix alert transition
[#&#8203;19507](https://redirect.github.com/netdata/netdata/pull/19507)
([stelfrag](https://redirect.github.com/stelfrag))
- update buildinfo
[#&#8203;19506](https://redirect.github.com/netdata/netdata/pull/19506)
([ktsaou](https://redirect.github.com/ktsaou))
- fix(go.d/nvme): support v2.11 output format
[#&#8203;19505](https://redirect.github.com/netdata/netdata/pull/19505)
([ilyam8](https://redirect.github.com/ilyam8))
- build(deps): bump github.com/vmware/govmomi from 0.47.0 to 0.48.0 in
/src/go
[#&#8203;19504](https://redirect.github.com/netdata/netdata/pull/19504)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Regenerate integrations docs
[#&#8203;19502](https://redirect.github.com/netdata/netdata/pull/19502)
([netdatabot](https://redirect.github.com/netdatabot))
- docs(go.d/postgres): add config example with unix socket + custom port
[#&#8203;19501](https://redirect.github.com/netdata/netdata/pull/19501)
([ilyam8](https://redirect.github.com/ilyam8))
- Create impact-on-resources.md
[#&#8203;19499](https://redirect.github.com/netdata/netdata/pull/19499)
([ktsaou](https://redirect.github.com/ktsaou))
- Add worker for alert queue processing
[#&#8203;19498](https://redirect.github.com/netdata/netdata/pull/19498)
([stelfrag](https://redirect.github.com/stelfrag))
- fix absolute injection again
[#&#8203;19497](https://redirect.github.com/netdata/netdata/pull/19497)
([ktsaou](https://redirect.github.com/ktsaou))
- fix absolute injection
[#&#8203;19496](https://redirect.github.com/netdata/netdata/pull/19496)
([ktsaou](https://redirect.github.com/ktsaou))
- max data file size
[#&#8203;19495](https://redirect.github.com/netdata/netdata/pull/19495)
([ktsaou](https://redirect.github.com/ktsaou))
- proc.plugin: add `ifb4*` to excluded interface name patterns
[#&#8203;19494](https://redirect.github.com/netdata/netdata/pull/19494)
([intelfx](https://redirect.github.com/intelfx))
- build(deps): bump github.com/bmatcuk/doublestar/v4 from 4.8.0 to 4.8.1
in /src/go
[#&#8203;19493](https://redirect.github.com/netdata/netdata/pull/19493)
([dependabot\[bot\]](https://redirect.github.com/apps/dependabot))
- Active Directory Certification Service (windows.plugin)
[#&#8203;19492](https://redirect.github.com/netdata/netdata/pull/19492)
([thiagoftsm](https://redirect.github.com/thiagoftsm))
- proc.plugin: remove traces of /proc/spl/kstat/zfs/pool/state
[#&#8203;19491](https://redirect.github.com/netdata/netdata/pull/19491)
([intelfx](https://redirect.github.com/intelfx))
- cgroups.plugin: fixes to cgroup path validation
[#&#8203;19490](https://redirect.github.com/netdata/netdata/pull/19490)
([intelfx](https://redirect.github.com/intelfx))
- Further improve alert processing
[#&#8203;19489](https://redirect.github.com/netdata/netdata/pull/19489)
([stelfrag](https://redirect.github.com/stelfrag))
- LTO Benchmark
[#&#8203;19488](https://redirect.github.com/netdata/netdata/pull/19488)
([ktsaou](https://redirect.github.com/ktsaou))
- Improve alert transition processing
[#&#8203;19487](https://redirect.github.com/netdata/netdata/pull/19487)
([stelfrag](https://redirect.github.com/stelfrag))
- protection against extreme cardinality
[#&#8203;19486](https://redirect.github.com/netdata/netdata/pull/19486)
([ktsaou](https://redirect.github.com/ktsaou))
- add agent name and version in streaming function
[#&#8203;19485](https://redirect.github.com/netdata/netdata/pull/19485)
([ktsaou](https://redirect.github.com/ktsaou))
- Coverity fixes
[#&#8203;19484](https://redirect.github.com/netdata/netdata/pull/19484)
([ktsaou](https://redirect.github.com/ktsaou))
- add system-info columns to streaming function
[#&#8203;19482](https://redirect.github.com/netdata/netdata/pull/19482)
([ktsaou](https://redirect.github.com/ktsaou))
- Regenerate integrations docs
[#&#8203;19481](https://redirect.github.com/netdata/netdata/pull/19481)
([netdatabot](https://redirect.github.com/netdatabot))
- chore(go.d/ping): set privileged by default for dyncfg jobs
[#&#8203;19480](https://redirect.github.com/netdata/netdata/pull/19480)
([ilyam8](https://redirect.github.com/ilyam8))
- Improve metadata cleanup
[#&#8203;19479](https://redirect.github.com/netdata/netdata/pull/19479)
([stelfrag](https://redirect.github.com/stelfrag))
- build(deps): bump github.com/prometheus-community/pro-bing from 0.5.0
to 0.6.0 in /src/go
[#&#8203;19477](https://redirect.github.com/netdata/netdata/pull/19477)
([dependabot\[bot\]](https://redirect.github

</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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
2025-03-19 19:50:44 +01:00
TrueCharts Bot 56f98cf130 chore(helm): update image lscr.io/linuxserver/blender digest to 5b501c4 (#33437)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/blender | digest | `a1e44ce` -> `5b501c4` |

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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
2025-03-19 19:50:24 +01:00
TrueCharts Bot a703f8d7d4 chore(helm): update image ghcr.io/meeb/tubesync digest to 3b174d2 (#33436) 2025-03-19 19:46:45 +01:00
TrueCharts Bot a316073bb7 chore(flux): update image blocky 16.13.12 → 16.13.13 (clustertool) (#33438)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [blocky](https://truecharts.org/charts/premium/blocky)
([source](https://0xerr0r.github.io/blocky/)) | patch | `16.13.12` ->
`16.13.13` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-19 19:30:57 +01:00
TrueCharts Bot 59b3324a8f chore(flux): update image jackett 23.3.51 → 23.3.52 (#33439)
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.51` ->
`23.3.52` |

---

### 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMDcuMiIsInVwZGF0ZWRJblZlciI6IjM5LjIwNy4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
2025-03-19 19:28:58 +01:00
Alfred Göppel 36917c7a25 fix(speedtest-tracker): env-changes (#33435)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

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

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

**✔️ Checklist:**

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

** App addition**

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

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

---

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

---------

Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com>
2025-03-19 16:13:24 +00:00
Alfred Göppel b52a3b2f1d fix(charts): update images (#33434)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

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

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

**✔️ Checklist:**

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

** App addition**

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

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

---

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