This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| ronivay/xen-orchestra | patch | `5.138.0` -> `5.138.1` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [memcached](https://truecharts.org/charts/dependency/memcached)
([source](https://togithub.com/bitnami/bitnami-docker-memcached)) |
patch | `12.3.1` -> `12.3.4` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [miniflux/miniflux](https://miniflux.app)
([source](https://togithub.com/miniflux/v2)) | patch | `2.1.0` ->
`2.1.1` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>miniflux/v2 (miniflux/miniflux)</summary>
###
[`v2.1.1`](https://togithub.com/miniflux/v2/blob/HEAD/ChangeLog#Version-211-March-10-2024)
[Compare Source](https://togithub.com/miniflux/v2/compare/2.1.0...2.1.1)
- Move search form to a dedicated page
- Add Readeck integration
- Add feed option to disable HTTP/2 to avoid fingerprinting
- Add `Enter` key as a hotkey to open selected item
- Proxify `video` element `poster` attribute
- Add a couple of new possible locations for feeds
- Hugo likes to generate `index.xml`
- `feed.atom` and `feed.rss` are used by enterprise-scale/old-school
gigantic CMS
- Fix categories import from Thunderbird's OPML
- Fix logo misalignment when using languages that are more verbose than
English
- Google Reader: Do not return a 500 error when no items is returned
- Handle RDF feeds with duplicated `<title>` elements
- Sort integrations alphabetically
- Add more URL validation in media proxy
- Add unit test to ensure each translation has the correct number of
plurals
- Add missing plurals for some languages
- Makefile: quiet `git describe` and `rev-parse` stderr: When building
from a tarball instead of a cloned git repo, there would be two `fatal:
not a git repository` errors emitted even though the build succeeds.
This is because of how `VERSION` and `COMMIT` are set in the Makefile.
This PR suppresses the stderr for these variable assignments.
- Makefile: do not force `CGO_ENABLED=0` for `miniflux` target
- Add GitHub Action pipeline to build packages on-demand
- Remove Golint (deprecated), use `staticcheck` and `golangci-lint`
instead
- Build amd64/arm64 Debian packages with CGO disabled
- Update `go.mod` and add `.exe` suffix to Windows binary
- Add a couple of fuzzers
- Fix CodeQL workflow
- Code and performance improvements:
- Use an `io.ReadSeeker` instead of an `io.Reader` to parse feeds
- Speed up the sanitizer:
- Allow Youtube URLs to start with `www`
- Use `strings.Builder` instead of a `bytes.Buffer`
- Use a `strings.NewReader` instead of a `bytes.NewBufferString`
- Sprinkles a couple of `continue` to make the code-flow more obvious
- Inline calls to `inList`, and put their parameters in the right order
- Simplify `isPixelTracker`
- Simplify `isValidIframeSource`, by extracting the hostname and
comparing it directly, instead of using the full url and checking if it
starts with multiple variations of the same one (`//`, `http:`,
`https://` multiplied by `/www.`)
- Add a benchmark
- Instead of having to allocate a ~100 keys map containing possibly
dynamic values (at least to the go compiler), allocate it once in a
global variable. This significantly speeds things up, by reducing the
garbage
- Use constant time access for maps instead of iterating on them
- Build a ~large whitelist map inline instead of constructing it item by
item (and remove a duplicate key/value pair)
- Use `slices` instead of hand-rolled loops
collector/allocator involvements.
- Reuse a `Reader` instead of copying to a buffer when parsing an Atom
feed
- Preallocate memory when exporting to OPML: This should marginally
increase performance when exporting a large amount of feeds to OPML
- Delay call of `view.New` after logging the user in: There is no need
to do extra work like creating a session and its associated view until
the user has been properly identified and as many possibly-failing sql
request have been successfully run
- Use constant-time comparison for anti-csrf tokens: This is probably
completely overkill, but since anti-csrf tokens are secrets, they should
be compared against untrusted inputs in constant time
- Simplify and optimize `genericProxyRewriter`
- Reduce the amount of nested loops: it's preferable to search the whole
page once and filter on it (even with filters that should always be
false), than searching it again for every element we're looking for.
- Factorize the proxying conditions into a `shouldProxy` function to
reduce the copy-pasta.
- Speed up `removeUnlikelyCandidates`: `.Not` returns a brand new
`Selection`, copied element by element
- Improve `EstimateReadingTime`'s speed by a factor 7
- Refactorise the tests and add some
- Use 250 signs instead of the whole text
- Only check for Korean, Chinese and Japanese script
- Add a benchmark
- Use a more idiomatic control flow
- Don't compute reading-time when unused: If the user doesn't display
reading times, there is no need to compute them. This should speed
things up a bit, since `whatlanggo.Detect` is abysmally slow.
- Simplify `username` generation for the integration tests: No need to
generate random numbers 10 times, generate a single big-enough one. A
single int64 should be more than enough
- Add missing regex anchor detected by CodeQL
- Don't mix up slices capacity and length
- Use prepared statements for intervals, `ArchiveEntries` and
`updateEnclosures`
- Use modern for-loops introduced with Go 1.22
- Remove a superfluous condition: No need to check if the length of
`line` is positive since we're checking afterwards that it contains the
`=` sign
- Close resources as soon as possible, instead of using `defer()` in a
loop
- Remove superfluous escaping in a regex
- Use `strings.ReplaceAll` instead of `strings.Replace(…, -1)`
- Use `strings.EqualFold` instead of `strings.ToLower(…) ==`
- Use `.WriteString(` instead of `.Write([]byte(…`
- Use `%q` instead of `"%s"`
- Make `internal/worker/worker.go` read-only
- Use a switch-case construct in `internal/locale/plural.go` instead of
an avalanche of `if`
- Template functions: simplify `formatFileSize` and `duration`
implementation
- Inline some templating functions
- Make use of `printer.Print` when possible
- Add a `printer.Print` to `internal/locale/printer.go`: No need to use
variadic functions with string format interpolation to generate static
strings
- Minor code simplification in `internal/ui/view/view.go`: No need to
create the map item by item when we can create it in one go
- Build the map inline in `CountAllFeeds()`: No need to build an empty
map to then add more fields in it one by one
- Miscellaneous improvements to
`internal/reader/subscription/finder.go`:
- Surface `localizedError` in `FindSubscriptionsFromWellKnownURLs` via
`slog`
- Use an inline declaration for new subscriptions, like done elsewhere
in the
file, if only for consistency's sake
- Preallocate the `subscriptions` slice when using an RSS-bridge,
- Use an update-where for `MarkCategoryAsRead` instead of a subquery
- Simplify `CleanOldUserSessions`' query: No need for a subquery,
filtering on `created_at` directly is enough
- Simplify `cleanupEntries`' query
- `NOT (hash=ANY(%4))` can be expressed as `hash NOT IN $4`
- There is no need for a subquery operating on the same table, moving
the conditions out is equivalent.
- Reformat `ArchiveEntries`'s query for consistency's sake and replace
the `=ANY` with an `IN`
- Reformat the query in `GetEntryIDs` and `GetReadTime`'s query for
consistency's sake
- Simplify `WeeklyFeedEntryCount`: No need for a `BETWEEN`: we want to
filter on entries published in the last week, no need to express is as
"entries published between now and last week", "entries published after
last week" is enough
- Add some tests for `add_image_title`
- Remove `github.com/google/uuid` dependencies: Replace it with a
hand-rolled implementation. Heck, an UUID isn't even a requirement
according to Omnivore API docs
- Simplify `internal/reader/icon/finder.go`:
- Use a simple regex to parse data uri instead of a hand-rolled parser,
and document what fields are considered mandatory.
- Use case-insensitive matching to find (fav)icons, instead of doing the
same query twice with different letter cases
- Add `apple-touch-icon-precomposed.png` as a fallback `favicon`
- Reorder the queries to have `icon` first, since it seems to be the
most popular one. It used to be last, meaning that pages had to be
parsed completely 4 times, instead of one now.
- Minor factorisation in `findIconURLsFromHTMLDocument`
- Small refactoring of `internal/reader/date/parser.go`:
- Split dates formats into those that require local times and those who
don't, so that there is no need to have a switch-case in the for loop
with around 250 iterations at most.
- Be more strict when it comes to timezones, previously invalid ones
like -13 were accepted. Also add a test for this.
- Bail out early if the date is an empty string.
- Make use of Go ≥ 1.21 slices package instead of hand-rolled loops
- Reorder the fields of the `Entry` struct to save some memory
- Dependencies update:
- Bump `golang.org/x/oauth2` from `0.17.0` to `0.18.0`
- Bump `github.com/prometheus/client_golang` from `1.18.0` to `1.19.0`
- Bump `github.com/tdewolff/minify/v2` from `2.20.16` to `2.20.18`
- Bump `github.com/PuerkitoBio/goquery` from `1.8.1` to `1.9.1`
- Bump `golang.org/x/crypto` from `0.19.0` to `0.20.0`
- Bump `github.com/go-jose/go-jose/v3` from `3.0.1` to `3.0.3`
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| metabase/metabase | patch | `v0.48.7` -> `v0.48.8` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| ollama/ollama | patch | `0.1.27` -> `0.1.29` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| minio/minio | patch | `RELEASE.2024-03-03T17-50-39Z` ->
`RELEASE.2024-03-10T02-53-48Z` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| grafana/grafana | patch | `10.3.3` -> `10.3.4` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/rogerfar/rdtclient](https://togithub.com/rogerfar/rdt-client)
| patch | `2.0.62` -> `2.0.63` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>rogerfar/rdt-client (ghcr.io/rogerfar/rdtclient)</summary>
###
[`v2.0.63`](https://togithub.com/rogerfar/rdt-client/blob/HEAD/CHANGELOG.md#2063---2024-03-05)
[Compare
Source](https://togithub.com/rogerfar/rdt-client/compare/v2.0.62...v2.0.63)
##### Changed
- When Sonarr/Radarr requests a torrent to be deleted, and its files
too, then delete those files instead of ingoring it.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/linuxserver/bookstack](https://togithub.com/linuxserver/docker-bookstack/packages)
([source](https://togithub.com/linuxserver/docker-bookstack)) | patch |
`24.02.20240228` -> `24.02.20240304` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/onedr0p/readarr-develop](https://ghcr.io/onedr0p/readarr-develop)
([source](https://togithub.com/Readarr/Readarr)) | patch | `0.3.18.2411`
-> `0.3.19.2437` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>Readarr/Readarr (ghcr.io/onedr0p/readarr-develop)</summary>
###
[`v0.3.19.2437`](https://togithub.com/Readarr/Readarr/releases/tag/v0.3.19.2437):
0.3.19.2437
[Compare
Source](https://togithub.com/Readarr/Readarr/compare/v0.3.18.2411...v0.3.19.2437)
*To receive further Pre-Release updates for a non-docker installation,
please change the branch to **develop**. (Settings -> General (Show
Advanced Settings) -> Updates -> Branch)*
**If you are using docker you will need to update the container image.
*Do not attempt to update Readarr within an existing docker
container.***
#### Changes:
-
[`c77d820`](c77d820763)
Fix tests for storing last search time for books
-
[`3327ed0`](3327ed0f49)
Automated API Docs update
-
[`44009e9`](44009e980b)
Fixed: A potential issue when extra files for multiple authors have the
same relative path \[
[#​1650](https://togithub.com/Readarr/Readarr/issues/1650) ]
-
[`02fd733`](02fd733223)
Fixed: Don't convert author/book selection filter to lower case in state
\[ [#​692](https://togithub.com/Readarr/Readarr/issues/692) ]
-
[`2fa9576`](2fa9576d05)
New: Missing/Cutoff Unmet searches will search for books that haven't
been searched recently first \[
[#​2088](https://togithub.com/Readarr/Readarr/issues/2088) ]
-
[`c7ee278`](c7ee278ee4)
New: Store last search time for BookSearch
-
[`d72c27c`](d72c27ceed)
Fixed: Refresh tags state to clear removed tags by housekeeping
-
[`7a20fe2`](7a20fe2288)
Improve messaging on indexer specified download client is not available
-
[`042b62a`](042b62a2a5)
Show download client ID as hint in select options
-
[`88141e9`](88141e9d63)
Hints for week column and short dates in UI settings
<details><summary><b>See More</b></summary>
-
[`7fa1114`](7fa1114edf)
Multiple Translations updated by Weblate
-
[`d426253`](d4262532e2)
Ignore tests temporarily
-
[`a21f83a`](a21f83aae1)
Some translations for Manual Import dropdowns
-
[`d659e86`](d659e86a7d)
Fixed: Progress bar for authors and books
-
[`0b92400`](0b924005ec)
Multiple Translations updated by Weblate
-
[`ba2fad5`](ba2fad5d9c)
Fixed: Don't use sub folder to check for free disk space for update \[
[#​3299](https://togithub.com/Readarr/Readarr/issues/3299) ]
-
[`58416ce`](58416cee67)
New: Log database engine version on startup
-
[`3812431`](38124313c7)
Fixed: Redirecting after login
-
[`3fc9f6c`](3fc9f6c0a4)
Bump version to 0.3.19
-
[`79ce5ab`](79ce5abd53)
Multiple Translations updated by Weblate
-
[`7f01d59`](7f01d597cb)
Multiple Translations updated by Weblate
-
[`31f35df`](31f35df71d)
Only bind shortcut for pending changes confirmation when it's shown
This list of changes was [auto
generated](https://dev.azure.com/Readarr/34393bab-b896-4651-a109-cddb27254e55/\_release?releaseId=41&\_a=release-summary).</details>
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/sethforprivacy/simple-monerod](https://togithub.com/sethforprivacy/simple-monerod-docker)
| patch | `v0.18.3.1` -> `v0.18.3.2` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [feramance/qbitrr](https://togithub.com/Feramance/qBitrr) | patch |
`v4.4.0` -> `v4.4.1` |
---
> [!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.4.1`](https://togithub.com/Feramance/qBitrr/blob/HEAD/CHANGELOG.md#v441-08032024)
[Compare
Source](https://togithub.com/Feramance/qBitrr/compare/v4.4.0...v4.4.1)
- [\[patch\] Dependency
bump](4caa0af9bd)
- [@​Feramance](https://togithub.com/Feramance)
- [Debugging torrent
availability](54b80acba9)
- [@​Feramance](https://togithub.com/Feramance)
- [Updated config
example](26083a07f3)
- [@​Feramance](https://togithub.com/Feramance)
***
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| ghcr.io/dgtlmoon/changedetection.io | patch | `0.45.14` -> `0.45.16` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[doitandbedone/ispyagentdvr](https://togithub.com/doitandbedone/ispyagentdvr-docker)
| patch | `5.3.1.0` -> `5.3.2.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.3.2.0`](https://togithub.com/doitandbedone/ispyagentdvr-docker/compare/5.3.1.0...5.3.2.0)
[Compare
Source](https://togithub.com/doitandbedone/ispyagentdvr-docker/compare/5.3.1.0...5.3.2.0)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| docker | patch | `25.0.3-dind` -> `25.0.4-dind` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [ghcr.io/goauthentik/ldap](https://goauthentik.io)
([source](https://togithub.com/goauthentik/authentik)) | patch |
`2024.2.1` -> `2024.2.2` |
| [ghcr.io/goauthentik/proxy](https://goauthentik.io)
([source](https://togithub.com/goauthentik/authentik)) | patch |
`2024.2.1` -> `2024.2.2` |
| [ghcr.io/goauthentik/radius](https://goauthentik.io)
([source](https://togithub.com/goauthentik/authentik)) | patch |
`2024.2.1` -> `2024.2.2` |
| [ghcr.io/goauthentik/server](https://goauthentik.io)
([source](https://togithub.com/goauthentik/authentik)) | patch |
`2024.2.1` -> `2024.2.2` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [clickhouse](https://truecharts.org/charts/dependency/clickhouse)
([source](https://clickhouse.com/)) | patch | `12.3.0` -> `12.3.3` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[tccr.io/tccr/nextcloud-fpm](https://togithub.com/truecharts/containers)
| digest | `6443302` -> `ad08861` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| bitnami/matomo | patch | `5.0.2` -> `5.0.3` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| webreaper/damselfly | digest | `8b5a4e3` -> `f16e519` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[adguard/adguardhome](https://adguard.com/en/adguard-home/overview.html)
([source](https://togithub.com/AdguardTeam/AdGuardHome)) | patch |
`v0.107.44` -> `v0.107.45` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>AdguardTeam/AdGuardHome (adguard/adguardhome)</summary>
###
[`v0.107.45`](https://togithub.com/AdguardTeam/AdGuardHome/blob/HEAD/CHANGELOG.md#v010745---2024-03-06)
[Compare
Source](https://togithub.com/AdguardTeam/AdGuardHome/compare/v0.107.44...v0.107.45)
See also the [v0.107.45 GitHub milestone][ms-v0.107.45].
##### Security
- Go version has been updated to prevent the possibility of exploiting
the Go
vulnerabilities fixed in [Go 1.21.8][go-1.21.8].
##### Added
- Context menu item in the Query Log to add a Client to the Persistent
client
list ([#​6679]).
##### Changed
- Starting with this release our scripts are using Go's [forward
compatibility
mechanism][go-toolchain] for updating the Go version.
**Important note for porters:** This change means that if your `go`
version
is 1.21+ but is different from the one required by AdGuard Home, the
`go` tool
will automatically download the required version.
If you want to use the version installed on your builder, run:
```sh
go get go@$YOUR_VERSION
go mod tidy
```
and call `make` with `GOTOOLCHAIN=local`.
##### Deprecated
- Go 1.21 support. Future versions will require at least Go 1.22 to
build.
##### Fixed
- Missing IP addresses in logs when querying for domain names from the
ignore
lists.
- Blank page after resetting access clients ([#​6634]).
- Wrong algorithm for caching bootstrapped upstream addresses
([#​6723]).
##### Removed
- Go 1.20 support, as it has reached end of life.
[#​6634]: https://togithub.com/AdguardTeam/AdGuardHome/issues/6634
[#​6679]: https://togithub.com/AdguardTeam/AdGuardHome/issues/6679
[#​6723]: https://togithub.com/AdguardTeam/AdGuardHome/issues/6723
[go-1.21.8]: https://groups.google.com/g/golang-announce/c/5pwGVUPoMbg
[go-toolchain]: https://go.dev/blog/toolchain
[ms-v0.107.45]:
https://togithub.com/AdguardTeam/AdGuardHome/milestone/80?closed=1
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| xwiki | digest | `e6b6753` -> `eecc308` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| yourselfhosted/slash | digest | `33d4d40` -> `dbddfde` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| quay.io/invidious/invidious | digest | `afc5352` -> `ed76a9c` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| sublivion/gridcoinwalletgui | digest | `d257a0b` -> `43ca0b9` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| towfiqi/serpbear | digest | `63304b6` -> `3647acf` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| niruix/sshwifty | digest | `cc626e6` -> `43fc2c9` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| xavierh/goaccess-for-nginxproxymanager | digest | `a1b2ab3` ->
`bf56396` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| mikenye/tar1090 | digest | `4565ff2` -> `655aeb6` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[mbentley/omada-controller](https://togithub.com/mbentley/docker-omada-controller)
| digest | `352425d` -> `538ec21` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/blender | digest | `1939e84` -> `84fec70` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [lissy93/dashy](https://togithub.com/Lissy93/dashy) | digest |
`d54921a` -> `4fabb42` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| lscr.io/linuxserver/pyload-ng | digest | `cea98c0` -> `4b813ba` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| mikeah/prusaslicer-novnc | digest | `e366ed3` -> `5aa1687` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Configuration
📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzUuMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->