Commit Graph

30239 Commits

Author SHA1 Message Date
TrueCharts-Bot 8db7b8ff4a Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2024-05-31 00:14:38 +00:00
TrueCharts Bot 2c7a241149 chore(deps): update container image n8nio/n8n to v1.44.0@cdb3394 by renovate (#22664)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| n8nio/n8n | minor | `1.43.1` -> `1.44.0` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:34:38 +02:00
TrueCharts Bot 6aca3ae771 chore(deps): update container image victoriametrics/victoria-metrics to v1.101.0@91d0456 by renovate (#22666)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| victoriametrics/victoria-metrics | minor | `v1.99.0` -> `v1.101.0` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:34:17 +02:00
TrueCharts Bot 968c6d2e5e chore(deps): update container image ghcr.io/slskd/slskd to v0.21.0@a7d0674 by renovate (#22663)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/slskd/slskd](https://slskd.org)
([source](https://togithub.com/slskd/slskd)) | minor | `0.20.1` ->
`0.21.0` |

---

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

---

### Release Notes

<details>
<summary>slskd/slskd (ghcr.io/slskd/slskd)</summary>

### [`v0.21.0`](https://togithub.com/slskd/slskd/releases/tag/0.21.0)

[Compare
Source](https://togithub.com/slskd/slskd/compare/0.20.1...0.21.0)

### 🎉 Managed Blacklist (P2P Blocklists), UMASK and File Permissions

#### Managed Blacklist

A managed blacklist (also called a blocklist) can be specified to
disallow interaction with known undesirable actors. Users whose IP
address matches an entry on this list are functionally the same as users
added to the [User Blacklist](#user-blacklist) described above and are
disallowed any interactions with shares or files.

Blacklists/blocklists designed for use with other P2P applications (such
as BitTorrent) are supported; specifically the P2P, DAT, and CIDR
formats.

When enabled, the specified file is validated by reading the first few
lines of the file to automatically detect the format. If the file
doesn't exist, can't be read, the format can't be detected, or if it
contains any lines that don't match the format, the application will
exit. Similarly, if the file changes while the application is running
and there's an issue, the application will exit.

Note that the contents of the blacklist are stored in memory to ensure
performance, and this will increase the amount of memory used,
potentially significantly if the blacklist is large.

| Command-Line | Environment Variable | Description |
| -------------------- | -------------------- |
------------------------------ |
| `--enable-blacklist` | `BLACKLIST` | Enable the managed blacklist |
| `--blacklist-file` | `BLACKLIST_FILE` | The path to the blacklist file
|

```yaml
blacklist:
  enabled: true
  file: <path to file containing CIDRs to blacklist>
```

#### UMASK and File Permissions

On [Unix-like](https://en.wikipedia.org/wiki/Unix-like) operating
systems, slskd creates downloaded files with permissions dictated by the
[umask](https://en.wikipedia.org/wiki/Umask) of the process, usually
022, which translates to a file mode of 644; read/write for the owner
and read for the group and all others.

Users wishing to create files with different permissions can change the
umask value before launching the application (e.g. `umask 000 &
./slskd`), and the file mode will be changed accordingly.

When running within a docker container the environment variable
`SLSKD_UMASK` can be used to change the umask for the process within the
container, and this will in turn change the resulting file mode on a
mounted volume.

Users can optionally configure alternative permissions for files by
setting the file permission mode option. It's not possible to supersede
the configured umask value; setting a mode of 777, for example, will
have no effect with a umask of 022.

These options have no effect on Windows.

| Command-Line | Environment Variable | Description |
| ------------------------ | -----------------------------|
--------------------------------------------------------------------------------
|
| n/a | `SLSKD_UMASK` | When running within the slskd Docker container,
the umask for the process |
| `--file-permission-mode` | `SLSKD_FILE_PERMISSION_MODE` | The
permissions to apply to newly created files (chmod syntax, non-Windows
only) |

##### **YAML**

```yaml
permissions:
  file:
    mode: 644 # not for Windows, chmod syntax, e.g. 644, 777. can't escalate beyond umask
```

#### What's Changed

- Add support for CIDR blacklist files by
[@&#8203;gsuberland](https://togithub.com/gsuberland) in
[https://github.com/slskd/slskd/pull/1062](https://togithub.com/slskd/slskd/pull/1062)
- Bump follow-redirects from 1.15.4 to 1.15.6 in /src/web by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/slskd/slskd/pull/1099](https://togithub.com/slskd/slskd/pull/1099)
- Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /src/web by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/slskd/slskd/pull/1103](https://togithub.com/slskd/slskd/pull/1103)
- Bump express from 4.18.2 to 4.19.2 in /src/web by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/slskd/slskd/pull/1104](https://togithub.com/slskd/slskd/pull/1104)
- Add FileAccess to FileExists attribute, test files for access by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1114](https://togithub.com/slskd/slskd/pull/1114)
- Bump ejs from 3.1.9 to 3.1.10 in /src/web by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/slskd/slskd/pull/1123](https://togithub.com/slskd/slskd/pull/1123)
- Add support for blacklist files by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1100](https://togithub.com/slskd/slskd/pull/1100)
- Simplify file service by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1125](https://togithub.com/slskd/slskd/pull/1125)
- Add the ability to configure Unix file permissions to be applied to
newly downloaded files by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1128](https://togithub.com/slskd/slskd/pull/1128)
- Fix crash with "An unknown, invalid, or unsupported option or level
was specified in a getsockopt or setsockopt call" on Windows 10 < 1709,
Server 2012 R2, or earlier by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1134](https://togithub.com/slskd/slskd/pull/1134)
- Add retry loop to initial server connection (fixes crash when starting
the application while the Soulseek server is unreachable) by
[@&#8203;jpdillingham](https://togithub.com/jpdillingham) in
[https://github.com/slskd/slskd/pull/1135](https://togithub.com/slskd/slskd/pull/1135)

**Full Changelog**:
https://github.com/slskd/slskd/compare/0.20.1...0.21.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:33:53 +02:00
TrueCharts Bot f9d770dc5e chore(deps): update container image nginx to v1.26.1@8320156 by renovate (#22661) 2024-05-30 20:23:04 +02:00
TrueCharts Bot 1f485ff69f chore(deps): update container image zwavejs/zwave-js-ui to v9.13.1@3ec7aeb by renovate (#22662)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [zwavejs/zwave-js-ui](https://togithub.com/zwave-js/zwave-js-ui) |
patch | `9.13.0` -> `9.13.1` |

---

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

---

### Release Notes

<details>
<summary>zwave-js/zwave-js-ui (zwavejs/zwave-js-ui)</summary>

###
[`v9.13.1`](https://togithub.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9131-2024-05-30)

[Compare
Source](https://togithub.com/zwave-js/zwave-js-ui/compare/v9.13.0...v9.13.1)

##### Bug Fixes

- **ui:** serial port validation
([f7f846e](https://togithub.com/zwave-js/zwave-js-ui/commit/f7f846e28f2f9d368f9c690d208df89a56cde717)),
closes
[#&#8203;3728](https://togithub.com/zwave-js/zwave-js-ui/issues/3728)
- **zniffer:** possible error when zniffer is disabled
([6c42bf8](https://togithub.com/zwave-js/zwave-js-ui/commit/6c42bf86b3a4d1b01f3370af389a23f20f84ebce)),
closes
[#&#8203;3729](https://togithub.com/zwave-js/zwave-js-ui/issues/3729)

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:22:56 +02:00
TrueCharts Bot 9ce258cea9 chore(deps): update container image doitandbedone/ispyagentdvr to v5.5.4.0@84f5c90 by renovate (#22660)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[doitandbedone/ispyagentdvr](https://togithub.com/doitandbedone/ispyagentdvr-docker)
| patch | `5.5.3.0` -> `5.5.4.0` |

---

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

---

### Release Notes

<details>
<summary>doitandbedone/ispyagentdvr-docker
(doitandbedone/ispyagentdvr)</summary>

###
[`v5.5.4.0`](https://togithub.com/doitandbedone/ispyagentdvr-docker/compare/5.5.3.0...5.5.4.0)

[Compare
Source](https://togithub.com/doitandbedone/ispyagentdvr-docker/compare/5.5.3.0...5.5.4.0)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:22:05 +02:00
TrueCharts Bot 3dda9da766 chore(deps): update container image lscr.io/linuxserver/blender to latest@de419ef by renovate (#22656)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/blender | digest | `433177b` -> `de419ef` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:21:57 +02:00
TrueCharts Bot 0f0e184304 chore(deps): update container image bitnami/prometheus to v2.52.1@90f5975 by renovate (#22659)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [bitnami/prometheus](https://togithub.com/bitnami/containers)
([source](https://togithub.com/bitnami/containers/tree/HEAD/bitnami/prometheus))
| patch | `2.52.0` -> `2.52.1` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:21:43 +02:00
TrueCharts Bot 46ead67e7e chore(deps): update container image ghcr.io/jens-maus/raspberrymatic to latest@385669d by renovate (#19373)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/jens-maus/raspberrymatic | digest | `ffe3351` -> `385669d` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNTAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjMxMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2024-05-30 20:21:06 +02:00
TrueCharts Bot 576ab4c456 chore(deps): update container image diygod/rsshub to latest@1ddf4ad by renovate (#22655)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| diygod/rsshub | digest | `b6f0dc1` -> `1ddf4ad` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 20:20:56 +02:00
TrueCharts Bot b804ec3c29 chore(deps): update container image semaphoreui/semaphore to v2.9.112@05c9a6f by renovate (#22652)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [semaphoreui/semaphore](https://togithub.com/semaphoreui/semaphore) |
patch | `v2.9.75` -> `v2.9.112` |

---

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

---

### Release Notes

<details>
<summary>semaphoreui/semaphore (semaphoreui/semaphore)</summary>

###
[`v2.9.112`](https://togithub.com/semaphoreui/semaphore/releases/tag/v2.9.112)

[Compare
Source](https://togithub.com/semaphoreui/semaphore/compare/v2.9.75...v2.9.112)

#### Bugfixes

- Docker: Fixed zombie processes
[https://github.com/semaphoreui/semaphore/issues/2069](https://togithub.com/semaphoreui/semaphore/issues/2069)
- Docker: Moved Python venv from `~/venv` to `/opt/semaphore/venv` to
fix issue
[https://github.com/semaphoreui/semaphore/issues/2060](https://togithub.com/semaphoreui/semaphore/issues/2060)
- Docker: LDAP issue
[https://github.com/semaphoreui/semaphore/issues/2063](https://togithub.com/semaphoreui/semaphore/issues/2063)
-   UI: Remove extra close button in Template dialog

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:33:33 +02:00
TrueCharts Bot 13b499f307 chore(deps): update container image docuseal/docuseal to v1.5.8@0b4b02a by renovate (#22651)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| docuseal/docuseal | patch | `1.5.6` -> `1.5.8` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:33:11 +02:00
TrueCharts Bot 9f7d57c1cc chore(deps): update container image stonith404/pingvin-share to v0.24.2@d04dedd by renovate (#22653)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| stonith404/pingvin-share | patch | `v0.24.1` -> `v0.24.2` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:32:52 +02:00
TrueCharts Bot 143efc1023 chore(deps): update container image quay.io/thanos/thanos to v0.35.1@3c0ba6e by renovate (#22566)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/thanos/thanos | patch | `v0.35.0` -> `v0.35.1` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuMyIsInVwZGF0ZWRJblZlciI6IjM3LjM4MS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:31:53 +02:00
TrueCharts Bot c78124555c chore(deps): update container image mongodb to v13.0.12@61ec99d by renovate (#21642)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [mongodb](https://truecharts.org/charts/stable/mongodb)
([source](https://togithub.com/bitnami/bitnami-docker-mongodb)) | major
| `12.8.8` -> `13.0.12` |

---

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

---

### Configuration

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

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

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9tYWpvciJdfQ==-->
2024-05-30 16:30:57 +02:00
TrueCharts Bot 1db0f6e5f5 chore(deps): update container image redis to v14.0.12@04a0623 by renovate (#22106)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [redis](https://truecharts.org/charts/stable/redis)
([source](https://togithub.com/bitnami/bitnami-docker-redis)) | patch |
`14.0.5` -> `14.0.12` |
| [redis](https://truecharts.org/charts/stable/redis)
([source](https://togithub.com/bitnami/bitnami-docker-redis)) | patch |
`14.0.6` -> `14.0.12` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about 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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjMuOSIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:30:17 +02:00
TrueCharts Bot f2e9285719 chore(deps): update container image common to v23.0.10@46ba38c by renovate (#22650)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[common](https://togithub.com/truecharts/apps/tree/master/charts/common)
([source](https://togithub.com/truecharts/apps)) | patch | `23.0.0` ->
`23.0.10` |

---

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

---

### Configuration

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

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

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:29:24 +02:00
TrueCharts Bot 8736848b00 chore(deps): update container image collabora/code to 24.04.3.1.1@db88ef0 by renovate (#22645)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| collabora/code | digest | `4bb279a` -> `db88ef0` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:25:45 +02:00
TrueCharts Bot 6b6579b93e chore(deps): update container image pepperlabs/peppermint to latest@cc1994e by renovate (#22649)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| pepperlabs/peppermint | digest | `1c00641` -> `cc1994e` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:23:45 +02:00
TrueCharts Bot b02ed9bfd1 chore(deps): update container image diygod/rsshub to latest@b6f0dc1 by renovate (#22646)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| diygod/rsshub | digest | `8b8d484` -> `b6f0dc1` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:22:45 +02:00
TrueCharts Bot 182352c112 chore(deps): update container image mikenye/tar1090 to latest@3035f83 by renovate (#22648)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| mikenye/tar1090 | digest | `094a688` -> `3035f83` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:22:24 +02:00
TrueCharts Bot 84e57246f7 chore(deps): update container image ghcr.io/neggles/sd-webui-docker to latest@ceefbb9 by renovate (#22647)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/neggles/sd-webui-docker | digest | `0e4b484` -> `ceefbb9` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:19:38 +02:00
Simon Sinding 7062603d33 feat(cs2): add RCON to cs2 (#18446)
**Description**
The RCon connection wont establish when the TCP port isn't listening
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

**🧪 How Has This Been Tested?**
I manually edited the deployed service to input the TCP port mapping, to
confirm that is what is needed.

**✔️ Checklist:**

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

---------

Signed-off-by: Simon Sinding <5576291+TheSinding@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Signed-off-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: Simon Sinding <simon.sinding@danfoss.com>
Co-authored-by: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <info@kjeldschouten.nl>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2024-05-30 16:18:42 +02:00
TrueCharts Bot efb39c9cea chore(deps): pin actions/cache action to by renovate (#22644)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://togithub.com/actions/cache) | action |
pinDigest | -> `0c45773` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSJdfQ==-->
2024-05-30 16:18:15 +02:00
TrueCharts Bot 0755c62e43 chore(deps): update container image traefik/whoami to v1.10.2@7000846 by renovate (#21745)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [traefik/whoami](https://togithub.com/traefik/whoami) | patch |
`v1.10.1` -> `v1.10.2` |

---

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

---

### Release Notes

<details>
<summary>traefik/whoami (traefik/whoami)</summary>

###
[`v1.10.2`](https://togithub.com/traefik/whoami/releases/tag/v1.10.2)

[Compare
Source](https://togithub.com/traefik/whoami/compare/v1.10.1...v1.10.2)

#### Changelog

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM0OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:13:42 +02:00
TrueCharts Bot ce99999534 chore(deps): lock file maintenance helm system by renovate (#21663)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|  | lockFileMaintenance | All locks refreshed |
| csi-driver-smb | minor | `v1.14.0` -> `v1.15.0` |
| [cloudnative-pg](https://cloudnative-pg.io)
([source](https://togithub.com/cloudnative-pg/charts)) | minor |
`0.20.2` -> `0.21.3` |

---

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

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

---

### Release Notes

<details>
<summary>cloudnative-pg/charts (cloudnative-pg)</summary>

###
[`v0.21.3`](https://togithub.com/cloudnative-pg/charts/releases/tag/cloudnative-pg-v0.21.3)

[Compare
Source](https://togithub.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.2...cloudnative-pg-v0.21.3)

CloudNativePG Operator Helm Chart

#### What's Changed

- Add 'additionalEnvVars' to the chart by
[@&#8203;Stevenpc3](https://togithub.com/Stevenpc3) in
[https://github.com/cloudnative-pg/charts/pull/303](https://togithub.com/cloudnative-pg/charts/pull/303)

#### New Contributors

- [@&#8203;Stevenpc3](https://togithub.com/Stevenpc3) made their first
contribution in
[https://github.com/cloudnative-pg/charts/pull/303](https://togithub.com/cloudnative-pg/charts/pull/303)

**Full Changelog**:
https://github.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.2...cloudnative-pg-v0.21.3

###
[`v0.21.2`](https://togithub.com/cloudnative-pg/charts/releases/tag/cloudnative-pg-v0.21.2)

[Compare
Source](https://togithub.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.1...cloudnative-pg-v0.21.2)

CloudNativePG Operator Helm Chart

#### What's Changed

- Release cloudnative-pg-v0.21.2 by
[@&#8203;leonardoce](https://togithub.com/leonardoce) in
[https://github.com/cloudnative-pg/charts/pull/274](https://togithub.com/cloudnative-pg/charts/pull/274)

#### New Contributors

- [@&#8203;leonardoce](https://togithub.com/leonardoce) made their first
contribution in
[https://github.com/cloudnative-pg/charts/pull/274](https://togithub.com/cloudnative-pg/charts/pull/274)

**Full Changelog**:
https://github.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.1...cloudnative-pg-v0.21.2

###
[`v0.21.1`](https://togithub.com/cloudnative-pg/charts/releases/tag/cloudnative-pg-v0.21.1)

[Compare
Source](https://togithub.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.0...cloudnative-pg-v0.21.1)

CloudNativePG Operator Helm Chart

#### What's Changed

- fix: Bump chart dependency grafana-dashboards to version 0.0.2 by
[@&#8203;dexter136](https://togithub.com/dexter136) in
[https://github.com/cloudnative-pg/charts/pull/270](https://togithub.com/cloudnative-pg/charts/pull/270)

#### New Contributors

- [@&#8203;dexter136](https://togithub.com/dexter136) made their first
contribution in
[https://github.com/cloudnative-pg/charts/pull/270](https://togithub.com/cloudnative-pg/charts/pull/270)

**Full Changelog**:
https://github.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.21.0...cloudnative-pg-v0.21.1

###
[`v0.21.0`](https://togithub.com/cloudnative-pg/charts/releases/tag/cloudnative-pg-v0.21.0)

[Compare
Source](https://togithub.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.20.2...cloudnative-pg-v0.21.0)

CloudNativePG Operator Helm Chart

#### What's Changed

- chore(deps): update actions/checkout action to v4.1.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/cloudnative-pg/charts/pull/260](https://togithub.com/cloudnative-pg/charts/pull/260)
- chore(deps): update helm/kind-action action to v1.10.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/cloudnative-pg/charts/pull/261](https://togithub.com/cloudnative-pg/charts/pull/261)
- Release cloudnative-pg-v0.21.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/cloudnative-pg/charts/pull/266](https://togithub.com/cloudnative-pg/charts/pull/266)

#### New Contributors

**Full Changelog**:
https://github.com/cloudnative-pg/charts/compare/cloudnative-pg-v0.20.2...cloudnative-pg-v0.21.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on monday" in timezone
Europe/Amsterdam, Automerge - At any time (no schedule defined).

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

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInVwZGF0ZS9oZWxtL3N5c3RlbSJdfQ==-->
2024-05-30 16:13:17 +02:00
TrueCharts Bot 2b74578953 chore(deps): update container image mariadb to v14.0.12@7905676 by renovate (#22639)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [mariadb](https://truecharts.org/charts/stable/mariadb)
([source](https://togithub.com/bitnami/bitnami-docker-mariadb)) | patch
| `14.0.10` -> `14.0.12` |

---

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

---

### Configuration

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

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

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 16:06:04 +02:00
Stavros Kois 2c6cab6659 feat: Use remade changelog generator (#22476)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

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

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

**✔️ Checklist:**

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

** App addition**

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

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

---

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

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <info@kjeldschouten.nl>
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2024-05-30 16:03:23 +02:00
TrueCharts Bot 88595d5020 chore(deps): update container image zwavejs/zwave-js-ui to v9.13.0@e44e9fd by renovate (#22643)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [zwavejs/zwave-js-ui](https://togithub.com/zwave-js/zwave-js-ui) |
minor | `9.12.0` -> `9.13.0` |

---

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

---

### Release Notes

<details>
<summary>zwave-js/zwave-js-ui (zwavejs/zwave-js-ui)</summary>

###
[`v9.13.0`](https://togithub.com/zwave-js/zwave-js-ui/blob/HEAD/CHANGELOG.md#9130-2024-05-30)

[Compare
Source](https://togithub.com/zwave-js/zwave-js-ui/compare/v9.12.0...v9.13.0)

##### Bug Fixes

- **ui:** cleaner rebuild routes hint
([e51cf52](https://togithub.com/zwave-js/zwave-js-ui/commit/e51cf52bea1d1795f75fdf68abfbe9568131cfaf))
- **ui:** groups associations for LR nodes
([#&#8203;3702](https://togithub.com/zwave-js/zwave-js-ui/issues/3702))
([3b9505b](https://togithub.com/zwave-js/zwave-js-ui/commit/3b9505b91db14749a7379df090dba4a6c5907f6c))
- **ui:** move valueId spinner after control
([efbfe13](https://togithub.com/zwave-js/zwave-js-ui/commit/efbfe1386495d9e22413c3542a6249ed42353d71)),
closes
[#&#8203;3726](https://togithub.com/zwave-js/zwave-js-ui/issues/3726)

##### Features

- bump [@&#8203;zwave-js/server](https://togithub.com/zwave-js/server)
to 1.35.0
([#&#8203;3710](https://togithub.com/zwave-js/zwave-js-ui/issues/3710))
([18b89db](https://togithub.com/zwave-js/zwave-js-ui/commit/18b89dbf5d5223590a586e46f753eb91d72a9cee))
- bump mqtt@5.6.0
([a18d1a5](https://togithub.com/zwave-js/zwave-js-ui/commit/a18d1a555d1b9c64e7b4082c64bd2519bf570dbf))
- bump zwave-js@12.6.0
([#&#8203;3704](https://togithub.com/zwave-js/zwave-js-ui/issues/3704))
([db51955](https://togithub.com/zwave-js/zwave-js-ui/commit/db519556c161c1e82c2f393abaea1f7324f6f196))
- bump zwave-js@12.7.0
([#&#8203;3712](https://togithub.com/zwave-js/zwave-js-ui/issues/3712))
([68d1f6a](https://togithub.com/zwave-js/zwave-js-ui/commit/68d1f6a45acc80b69adf4bac9b5d5156554c1c81))
- bump zwave-js@12.8.1
([#&#8203;3715](https://togithub.com/zwave-js/zwave-js-ui/issues/3715))
([3adf71a](https://togithub.com/zwave-js/zwave-js-ui/commit/3adf71a129da25663541d9107043dc40e3c18425))
- bump zwave-js@12.9.1
([#&#8203;3725](https://togithub.com/zwave-js/zwave-js-ui/issues/3725))
([4e47111](https://togithub.com/zwave-js/zwave-js-ui/commit/4e471115f04180be398bbd7602b6b0c9467821ab))
- zniffer
([#&#8203;3706](https://togithub.com/zwave-js/zwave-js-ui/issues/3706))
([18ffbe2](https://togithub.com/zwave-js/zwave-js-ui/commit/18ffbe2d8b5bd3963c4eae48a0b9d0d653d34d71))

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:13:15 +02:00
TrueCharts Bot 1cdda54f3d chore(deps): update container image dpage/pgadmin4 to v8.7@27914ea by renovate (#22642)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| dpage/pgadmin4 | minor | `8.6` -> `8.7` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:12:57 +02:00
TrueCharts Bot 0be493fea5 chore(deps): update container image collabora/code to 24.04.3.1.1@4bb279a by renovate (#22635)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| collabora/code | digest | `8d4759b` -> `4bb279a` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:03:18 +02:00
TrueCharts Bot 34551fa8e7 chore(deps): update container image seafileltd/seafile-mc to v11.0.9@564f122 by renovate (#22640)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| seafileltd/seafile-mc | patch | `11.0.8` -> `11.0.9` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:01:49 +02:00
TrueCharts Bot f869e48490 chore(deps): update container image quay.io/pussthecatorg/libremdb to latest@edd0960 by renovate (#22636)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/pussthecatorg/libremdb | digest | `ef54dd5` -> `edd0960` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:00:56 +02:00
TrueCharts-Bot 3f6d307dc4 chore(ci): update charttool
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2024-05-30 13:00:42 +00:00
TrueCharts Bot b6d400d4c3 chore(deps): update container image tccr.io/tccr/traefik to v3.0.1@2439f68 by renovate (#22641) 2024-05-30 15:00:33 +02:00
TrueCharts Bot dbac38fc2f chore(deps): update container image searxng/searxng to latest@09fe7c6 by renovate (#22638)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| searxng/searxng | digest | `9acece4` -> `09fe7c6` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODIuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:00:32 +02:00
TrueCharts Bot 0593f312ff chore(deps): update container image quay.io/pussthecatorg/rimgo to latest@bf7d179 by renovate (#22576)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| quay.io/pussthecatorg/rimgo | digest | `6e5224b` -> `bf7d179` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuNiIsInVwZGF0ZWRJblZlciI6IjM3LjM4Mi4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-05-30 15:00:06 +02:00
TrueCharts Bot 49d4258763 chore(deps): update ignored by renovate (major) (#21660)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kube-prometheus-stack](https://togithub.com/prometheus-operator/kube-prometheus)
([source](https://togithub.com/prometheus-community/helm-charts)) |
major | `56.21.0` -> `59.0.0` |
| registry.k8s.io/sig-storage/snapshot-controller | major | `v7.0.1` ->
`v8.0.0` |

---

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

---

### Configuration

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

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

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

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDIuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM3OS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9tYWpvciJdfQ==-->
2024-05-30 14:59:22 +02:00
Kjeld Schouten 9b7b0de4f5 Update renovate.json5
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2024-05-30 14:57:51 +02:00
allcontributors[bot] adf69fe98a docs: add LordCrash101 as a contributor for doc (#22637)
Adds @LordCrash101 as a contributor for doc.

This was requested by Ornias1993 [in this
comment](https://github.com/truecharts/charts/pull/19776#issuecomment-2139494497)

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
2024-05-30 14:55:50 +02:00
v3DJG6GL 5806933099 fix(whisper-asr-webservice): switch readiness and startup probe to tcp, update app version (#21439)
**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**
This PR fixes a problem with `readiness` and `startup` probes: changing
the `liveness` probe to `tcp` in #20042 was obviously not enough to
prevent the app from always killing.
Also, I updated the app version. Something with the automatic updates
doesn't seem to work with this app.
- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

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

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

**✔️ Checklist:**

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

** App addition**

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

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

---

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

---------

Signed-off-by: v3DJG6GL <72495210+v3DJG6GL@users.noreply.github.com>
Signed-off-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2024-05-30 14:55:21 +02:00
TrueCharts Bot 1eeef447df chore(deps): update container image kube-prometheus-stack to v59.0.0@ff43e95 by renovate (#22529)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[kube-prometheus-stack](https://togithub.com/prometheus-operator/kube-prometheus)
([source](https://togithub.com/prometheus-community/helm-charts)) |
major | `56.21.4` -> `59.0.0` |

---

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

---

### Configuration

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

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

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzkuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM3OS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9tYWpvciJdfQ==-->
2024-05-30 14:54:24 +02:00
Stavros Kois 2880901da3 feat(treafik): BREAKING CHANGE bump to v3 (#21665)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

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

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

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

**✔️ Checklist:**

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

** App addition**

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

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

---

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

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Signed-off-by: Mr Khachaturov <105451445+mrkhachaturov@users.noreply.github.com>
Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Co-authored-by: Mr Khachaturov <105451445+mrkhachaturov@users.noreply.github.com>
Co-authored-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
2024-05-30 14:44:25 +02:00
TrueCharts Bot 493be3070d chore(deps): update container image mariadb to v14.0.12@7905676 by renovate (#22607)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [mariadb](https://truecharts.org/charts/stable/mariadb)
([source](https://togithub.com/bitnami/bitnami-docker-mariadb)) | patch
| `14.0.10` -> `14.0.12` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuOCIsInVwZGF0ZWRJblZlciI6IjM3LjM4MS4xMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJ1cGRhdGUvZG9ja2VyL2dlbmVyYWwvbm9uLW1ham9yIl19-->
2024-05-30 12:26:42 +00:00
TrueCharts Bot 4f7d014695 chore(deps): update container image ghcr.io/onedr0p/sonarr to v4.0.5.1710@ad8a863 by renovate (#22631) 2024-05-30 14:26:25 +02:00
TrueCharts Bot 52c04ed5e1 chore(deps): update container image golift/notifiarr to v0.7.3@530fe95 by renovate (#22633)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [golift/notifiarr](https://togithub.com/Notifiarr/notifiarr) | patch |
`0.7.1` -> `0.7.3` |

---

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

---

### Release Notes

<details>
<summary>Notifiarr/notifiarr (golift/notifiarr)</summary>

###
[`v0.7.3`](https://togithub.com/Notifiarr/notifiarr/releases/tag/v0.7.3):
May 29, 2024

[Compare
Source](https://togithub.com/Notifiarr/notifiarr/compare/v0.7.1...v0.7.3)

-   Fixes Docker Cloud build.
-   Prevents `latest` tag on GHCR from being random.
-   Fixes macOS app (crashes on startup).
- Sets a log file path if a directory was provided (instead of throw
errors).
- Adds an unstable update feature for dev/test users using Mac and
windows.

#### What's Changed

- fix latest tag more by
[@&#8203;davidnewhall](https://togithub.com/davidnewhall) in
[https://github.com/Notifiarr/notifiarr/pull/737](https://togithub.com/Notifiarr/notifiarr/pull/737)
- fix check by [@&#8203;davidnewhall](https://togithub.com/davidnewhall)
in
[https://github.com/Notifiarr/notifiarr/pull/738](https://togithub.com/Notifiarr/notifiarr/pull/738)
- Set log files when folder provided. by
[@&#8203;davidnewhall](https://togithub.com/davidnewhall) in
[https://github.com/Notifiarr/notifiarr/pull/739](https://togithub.com/Notifiarr/notifiarr/pull/739)
- Mac/win: Update from unstable website. by
[@&#8203;davidnewhall](https://togithub.com/davidnewhall) in
[https://github.com/Notifiarr/notifiarr/pull/741](https://togithub.com/Notifiarr/notifiarr/pull/741)

**Full Changelog**:
https://github.com/Notifiarr/notifiarr/compare/v0.7.2...v0.7.3

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwidXBkYXRlL2RvY2tlci9nZW5lcmFsL25vbi1tYWpvciJdfQ==-->
2024-05-30 14:26:20 +02:00
TrueCharts Bot 14fb183a24 chore(deps): update container image jgraph/drawio to v24.4.10@f2fc96a by renovate (#22634)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [jgraph/drawio](https://www.drawio.com)
([source](https://togithub.com/jgraph/docker-drawio)) | patch | `24.4.8`
-> `24.4.10` |

---

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

---

### Release Notes

<details>
<summary>jgraph/docker-drawio (jgraph/drawio)</summary>

###
[`v24.4.10`](https://togithub.com/jgraph/docker-drawio/compare/v24.4.8...v24.4.10)

[Compare
Source](https://togithub.com/jgraph/docker-drawio/compare/v24.4.8...v24.4.10)

</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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwidXBkYXRlL2RvY2tlci9nZW5lcmFsL25vbi1tYWpvciJdfQ==-->
2024-05-30 14:26:09 +02:00
TrueCharts Bot d069f558dd chore(deps): update container image ghcr.io/zadam/trilium to v0.63.7@a0b5a6a by renovate (#22632)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| ghcr.io/zadam/trilium | patch | `0.63.6` -> `0.63.7` |

---

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

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwidXBkYXRlL2RvY2tlci9nZW5lcmFsL25vbi1tYWpvciJdfQ==-->
2024-05-30 14:25:23 +02:00
TrueCharts Bot 367a7aec6c chore(deps): update container image feramance/qbitrr to v4.7.5@8421eb8 by renovate (#22630)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [feramance/qbitrr](https://togithub.com/Feramance/qBitrr) | patch |
`v4.7.1` -> `v4.7.5` |

---

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

---

### Release Notes

<details>
<summary>Feramance/qBitrr (feramance/qbitrr)</summary>

###
[`v4.7.5`](https://togithub.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v475-29052024)

[Compare
Source](https://togithub.com/Feramance/qBitrr/compare/v4.7.4...v4.7.5)

- [\[patch\] Disabled main log unfil further
notice](https://togithub.com/Feramance/qBitrr/commit/cb12b31572907a43cfa41b15b48ebf14ba44188a)
- [@&#8203;Feramance](https://togithub.com/Feramance)
- [Version specification for setuptools due to errors as well as some
other QoL
changes](https://togithub.com/Feramance/qBitrr/commit/6e9ece269c65790544693f27550158879dd7b9fb)
- [@&#8203;Feramance](https://togithub.com/Feramance)

***

###
[`v4.7.4`](https://togithub.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v474-29052024)

[Compare
Source](https://togithub.com/Feramance/qBitrr/compare/v4.7.3...v4.7.4)

- [\[patch\] Potential
fix](https://togithub.com/Feramance/qBitrr/commit/060de09a90984f678980dd24e1cbd97ad33faab5)
- [@&#8203;Feramance](https://togithub.com/Feramance)

***

###
[`v4.7.3`](https://togithub.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v473-29052024)

[Compare
Source](https://togithub.com/Feramance/qBitrr/compare/v4.7.2...v4.7.3)

- [\[patch\] Another
test](https://togithub.com/Feramance/qBitrr/commit/bc4f505876612409fbb844d279b25ebeee00517a)
- [@&#8203;Feramance](https://togithub.com/Feramance)
- [\[patch\] Changing setuptools for
pyinstaller](https://togithub.com/Feramance/qBitrr/commit/b15fdeb5c733c78cb97580a9f465a709492389f5)
- [@&#8203;Feramance](https://togithub.com/Feramance)

***

###
[`v4.7.2`](https://togithub.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v472-29052024)

[Compare
Source](https://togithub.com/Feramance/qBitrr/compare/v4.7.1...v4.7.2)

- [\[patch\] Bump
dependencies](https://togithub.com/Feramance/qBitrr/commit/512d80980a1ddad3ca9458bed6fc05782cc013c1)
- [@&#8203;Feramance](https://togithub.com/Feramance)

***

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zODEuMTEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21lcmdlIiwidXBkYXRlL2RvY2tlci9nZW5lcmFsL25vbi1tYWpvciJdfQ==-->
2024-05-30 14:23:55 +02:00