7d5287c832b849caf5be779dd662fa9c081135db
100
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
7d5287c832 |
chore(helm): update image ghcr.io/immich-app/immich-server v1.132.3 → v1.133.0 (#35585)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/immich-app/immich-server](https://redirect.github.com/immich-app/immich) | minor | `6680d88` -> `4d667c5` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>immich-app/immich (ghcr.io/immich-app/immich-server)</summary> ### [`v1.133.0`](https://redirect.github.com/immich-app/immich/releases/tag/v1.133.0) [Compare Source](https://redirect.github.com/immich-app/immich/compare/v1.132.3...v1.133.0) ### v1.133.0 - The Hot Summer Release > \[!CAUTION] > > # BREAKING CHANGES > > 1. ## Mobile app version > > Please make sure to have the mobile app and the server on the same version for this release. Older versions of the mobile app will not work correctly with version `v1.133.0` of the server. At the time of this release, the updated version of the mobile app should be available on the app stores. > > 2. ## Upgrading the server from a very old release > > As of 1.133.0, Immich only supports upgrading directly from 1.107.2 or later. If you’re trying to upgrade a version of Immich below this, please upgrade to 1.107.2 first and ensure Immich starts up successfully before continuing to the latest release. > > 3. ## New database vector extension > > We are migrating off the deprecated pgvecto.rs database extension to its successor [VectorChord](https://redirect.github.com/tensorchord/VectorChord), which comes with performance improvements in almost all aspects. This change is a major milestone we want to perform prior to the stable release. > > Before making any other changes, please [back up your database](https://immich.app/docs/administration/backup-and-restore). While every effort has been made to make this migration as smooth as possible, there’s always a chance that something can go wrong. > > After making a backup, please modify your `docker-compose.yml` file with the following information, adjusting the pg major version and pgvecto.rs version if you changed them from the default. ```diff [...] database: container_name: immich_postgres - image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@​sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 + image: ghcr.io/immich-app/postgres:14-vectorchord0.3.0-pgvectors0.2.0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' + # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs + # DB_STORAGE_TYPE: 'HDD' volumes: ### Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data - healthcheck: - test: >- - pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; - Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align - --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; - echo "checksum failure count is $$Chksum"; - [ "$$Chksum" = '0' ] || exit 1 - interval: 5m - start_interval: 30s - start_period: 5m - command: >- - postgres - -c shared_preload_libraries=vectors.so - -c 'search_path="$$user", public, vectors' - -c logging_collector=on - -c max_wal_size=2GB - -c shared_buffers=512MB - -c wal_compression=on restart: always [...] ``` After making these changes, you can start Immich as normal. Immich will make some changes to the DB during startup, which can take seconds to minutes to finish, depending on hardware and library size. In particular, it’s normal for the server logs to be seemingly stuck at `Reindexing clip_index` and `Reindexing face_index`for some time if you have over 100k assets in Immich and/or Immich is on a relatively weak server. If you see these logs and there are no errors, just give it time. > \[!IMPORTANT] > Note: after switching to VectorChord, you should not downgrade Immich below 1.133.0. Please don’t hesitate to contact us here on GitHub or [Discord](https://discord.immich.app/) if you encounter migration issues. #### VectorChord FAQ ##### I have a separate PostgreSQL instance shared with multiple services. How can I switch to VectorChord? Please see <https://immich.app/docs/administration/postgres-standalone#migrating-to-vectorchord> for migration instructions. The migration path will be different depending on whether you’re currently using pgvecto.rs or pgvector, as well as whether Immich has superuser DB permissions. ##### What will happen if I upgrade Immich to 1.133.0 without changing the DB image? Immich will auto-detect the vector extension available in the DB and continue to work without manual intervention. However, we will drop support for pgvecto.rs in a later release, so please switch at your convenience. ##### I’m using a different deployment method than Docker Compose. How should I migrate? If you’re using Immich through turnkey deployment methods such as TrueNAS apps, the respective maintainers will either perform the migration transparently or inform you of what to do if not. ##### Why are so many lines removed from the `docker-compose.yml` file? Does this mean the health check is removed? These lines are now incorporated into the image itself along with some additional tuning. ##### What does this change mean for my existing DB backups? The new DB image includes pgvector and pgvecto.rs in addition to VectorChord, so you can use this image to restore from existing backups that used either of these extensions. However, backups made after switching to VectorChord require an image containing VectorChord to restore successfully. ##### Do I still need pgvecto.rs installed after migrating to VectorChord? pgvecto.rs only needs to be available during the migration, or if you need to restore from a backup that used pgvecto.rs. For a leaner DB and a smaller image, you can optionally switch to an image variant that doesn’t have pgvecto.rs installed after you’ve performed the migration and started Immich: `ghcr.io/immich-app/postgres:14-vectorchord0.3.0`, changing the PostgreSQL version as appropriate. ##### Why does it matter whether my database is on an SSD or an HDD? These storage mediums have different performance characteristics. As a result, the optimal settings for an SSD are not the same as those for an HDD. Either configuration is compatible with SSD and HDD, but using the right configuration will make Immich snappier. As a general tip, we recommend users store the database on an SSD whenever possible. ##### Can I use the new database image as a general PostgreSQL image outside of Immich? It’s a standard PostgreSQL container image that additionally contains the VectorChord, pgvector, and (optionally) pgvecto.rs extensions. If you were using the previous pgvecto.rs image for other purposes, you can similarly do so with this image. ##### If pgvecto.rs and pgvector still work, why should I switch to VectorChord? VectorChord is faster, more stable, uses less RAM, and (with the settings Immich uses) offers higher-quality results than pgvector and pgvecto.rs. This translates to better search and facial recognition experiences. In addition, pgvecto.rs support will be dropped in the future, so changing it sooner will avoid disruption. *** #### Highlights Welcome to the release `v1.133.0` of Immich, which is the hottest release yet for this summer, with more than 200 commits since the last version. This version brings you a new database extension, an even more optimized and faster timeline, more unified components on the web, some cool new features that have been requested for a long time, and many bug fixes and improvements. Let’s dive in! - VectorChord database extension - In-app notification - Show map in albums view (web only) - Locked folder - Google Cast Support (web only) - User detail page - RTL text support on the web - Performance improvement in web timeline - Notable fix: thumbnail caching issue on the mobile app - Notable fix: For users who use OAuth, you can now configure `TOKEN_ENDPOINT_AUTH_METHOD` to either `client_sect_post` or `client_secret_basic` after entering the `CLIENT_SECRET` - Sneak peek ##### In-app notification Introducing an in-app, or internal, notification system. Previously, there was no way to notify you on the client if a database backup failed. Now, the failed backup will show up under a new notification section on the web. This mechanism paves the way for other helpful notifications, such as when a new album is shared with you or when new assets are added to a shared album, directly in the app. <p align="center"> <img width="250" src="https://github.com/user-attachments/assets/fba2adee-f14b-43ef-b61e-359f7196fc12" /> <img width="250" src="https://github.com/user-attachments/assets/d98b7aca-5890-42cf-bbc7-72f6eb8080ad" /> </p> ##### Show map in albums view On the web, you can now click this button to see the map view that shows the location of all the photos and videos in an album. <p align="center"> <img width="350" src="https://github.com/user-attachments/assets/814c217c-58d7-44d0-abfe-06f063cdb0a2" /> <img width="800" src="https://github.com/user-attachments/assets/04c623d4-fb86-4b8b-9d9f-b1921caccccb" /> </p> ##### Locked folder Have you ever taken embarrassing selfies that you don’t want anyone to see, and worry that you could accidentally reveal them while showcasing your superb Immich library? **Locked folder** view got you covered, with a personal PIN code, and an option to use biometric verification on the mobile app. You can access the page from the sidebar on the web or in the `Library` page on the app <p align="center"> <img width="350" src="https://github.com/user-attachments/assets/d0012b99-a77f-4d8f-a7b3-fb1d1728dfe0" /> </p> https://github.com/user-attachments/assets/f0d33556-54db-44fa-88cb-10399cd2df2d <p align="center"> <img width="550" src="https://github.com/user-attachments/assets/087a836c-0280-4391-bab5-69ecf2dbd2fe" /> ) </p> You can select any assets and add them to the locked folder. They will only be shown in the locked folder view. ##### Google Cast Support We now have casting support! Immich now supports casting to Google Cast enabled devices like the Google Chromecast. This feature is currently only available on the web, with mobile app support coming in the near future. You can use images, videos and slideshows with casting. <p align="center"> <img width="400" alt="image" src="https://github.com/user-attachments/assets/2e7f10c1-ba38-482b-a46f-4dcecc0df13e" /> <img width="1163" alt="image" src="https://github.com/user-attachments/assets/db1e45ec-8395-4982-8600-8248a0e51cdc" /> </p> > \[!NOTE] > > Your Immich instance must be accessed through a public HTTPS endpoint in order for the casting device to successfully load media. Accessing the instance and casting from a private HTTPS endpoint (or an HTTP endpoint) will result in the cast receiver failing to load any media. ##### User detail page From the user management page of the admin view, you can now get a more in-depth view of individual users for their information, usage statistics, and which features they have enabled, etc, by clicking on the email from the user’s table <p align="center"> <img width="500" alt="image" src="https://github.com/user-attachments/assets/4b951ee3-0322-4a20-8176-73e70d25453b" /> <img width="800" alt="image" src="https://github.com/user-attachments/assets/d936c01f-d4fd-45ee-9435-ee08837a6003" /> </p> ##### RTL text support on the web The web styling has been changed to accommodate RTL languages <img width="800" alt="image" src="https://github.com/user-attachments/assets/39fd9ded-f557-4538-b5f3-9ef79f593862" /> ##### Performance improvement in web timeline Last time, we discussed thinking that the timeline performance has reached its prime and that adding more gains would be difficult. In this release, we managed to squeeze that gain like a ripe orange. The timeline will automatically cancel the requests to the server when you scroll very fast, displaying the thumbnails instantaneously when the scrolling stops. Previously, the web needed to finish the requests for the thumbnails being scrolled by, even if they are not displayed on the viewport. This change significantly reduces the load time. An additional optimization has been made to reduce the data packet for each thumbnail to about 30% of its original size. This optimization contributes to a greater loading speed on the timeline. We hope you enjoy these impressive improvements. ##### Sneak Peak Besides the cool features and enhancements that made their way into the application, along with many bug fixes, our highest priority at the moment is moving toward the stable release. A big chunk of time and dedication from the team is now spent on improving the mobile app synchronization system, basically rewriting the flow and designing the data model from the ground up. At the same time, we’re working to properly allocate CPU-intensive tasks to background threads to avoid app stuttering and jerkiness when the data sync between the server and the mobile app happens. Below is the chart result comparing the local album sync between the current version and the reworked version. **Current version**  **Improved version**  We are working hard to get it into the application in the coming months and are very excited about this new improvement. Cheers! The Immich Team #### Support Immich <p align="center"> <img src="https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbjY2eWc5Y2F0ZW56MmR4aWE0dDhzZXlidXRmYWZyajl1bWZidXZpcyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/87CKDqErVfMqY/giphy.gif" width="450" title="SUPPORT THE PROJECT!"> </p> If you find the project helpful, you can support Immich by purchasing a product key at https://buy.immich.app or purchase our merchandise at https://immich.store <!-- Release notes generated using configuration in .github/release.yml at main --> #### What's Changed ##### 🚨 Breaking Changes - refactor: user avatar color by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/17753](https://redirect.github.com/immich-app/immich/pull/17753) - chore: remove old memory lane implementation by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18000](https://redirect.github.com/immich-app/immich/pull/18000) - feat: vectorchord by [@​mertalev](https://redirect.github.com/mertalev) in [https://github.com/immich-app/immich/pull/18042](https://redirect.github.com/immich-app/immich/pull/18042) ##### 🚀 Features - feat: rtl by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/17860](https://redirect.github.com/immich-app/immich/pull/17860) - feat: notifications by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/17701](https://redirect.github.com/immich-app/immich/pull/17701) - feat(web): Map in albums & shared albums by [@​davidpcrd](https://redirect.github.com/davidpcrd) in [https://github.com/immich-app/immich/pull/17906](https://redirect.github.com/immich-app/immich/pull/17906) - feat(server): visibility column by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/17939](https://redirect.github.com/immich-app/immich/pull/17939) - feat: user pin-code by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/18138](https://redirect.github.com/immich-app/immich/pull/18138) - feat(web): user detail page by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18230](https://redirect.github.com/immich-app/immich/pull/18230) - feat: locked/private view by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/18268](https://redirect.github.com/immich-app/immich/pull/18268) - feat: add session creation endpoint by [@​bwees](https://redirect.github.com/bwees) in [https://github.com/immich-app/immich/pull/18295](https://redirect.github.com/immich-app/immich/pull/18295) - feat(web): continue after login by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18302](https://redirect.github.com/immich-app/immich/pull/18302) - feat: bulk change description by [@​koostamas](https://redirect.github.com/koostamas) in [https://github.com/immich-app/immich/pull/18288](https://redirect.github.com/immich-app/immich/pull/18288) - feat: locked view mobile by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/18316](https://redirect.github.com/immich-app/immich/pull/18316) - feat(web): add support for casting by [@​bwees](https://redirect.github.com/bwees) in [https://github.com/immich-app/immich/pull/18231](https://redirect.github.com/immich-app/immich/pull/18231) ##### 🌟 Enhancements - feat: api response compression by [@​zackpollard](https://redirect.github.com/zackpollard) in [https://github.com/immich-app/immich/pull/17878](https://redirect.github.com/immich-app/immich/pull/17878) - feat(mobile): Capitalize month names in asset grid by [@​atollk](https://redirect.github.com/atollk) in [https://github.com/immich-app/immich/pull/17898](https://redirect.github.com/immich-app/immich/pull/17898) - feat: preload and cancel images with a service worker by [@​midzelis](https://redirect.github.com/midzelis) in [https://github.com/immich-app/immich/pull/16893](https://redirect.github.com/immich-app/immich/pull/16893) - feat(mobile): save grid size on gesture resize by [@​YarosMallorca](https://redirect.github.com/YarosMallorca) in [https://github.com/immich-app/immich/pull/17891](https://redirect.github.com/immich-app/immich/pull/17891) - feat(web): move duplicates controls above preview of duplicate images by [@​LukeTowers](https://redirect.github.com/LukeTowers) in [https://github.com/immich-app/immich/pull/17837](https://redirect.github.com/immich-app/immich/pull/17837) - feat(server): JXL previews from DNG 1.7+ by [@​eligao](https://redirect.github.com/eligao) in [https://github.com/immich-app/immich/pull/17861](https://redirect.github.com/immich-app/immich/pull/17861) - feat(web): responsive date group header height by [@​midzelis](https://redirect.github.com/midzelis) in [https://github.com/immich-app/immich/pull/17944](https://redirect.github.com/immich-app/immich/pull/17944) - feat: configure token endpoint auth method by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/17968](https://redirect.github.com/immich-app/immich/pull/17968) - feat: Add DB_SSL_MODE environment variable for Postgres sslmode by [@​typokign](https://redirect.github.com/typokign) in [https://github.com/immich-app/immich/pull/18025](https://redirect.github.com/immich-app/immich/pull/18025) - feat(web): stat card tweaks by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18189](https://redirect.github.com/immich-app/immich/pull/18189) - feat(web): clear person birthdate by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18330](https://redirect.github.com/immich-app/immich/pull/18330) - fix(web): format dates with the locale preference by [@​Sese-Schneider](https://redirect.github.com/Sese-Schneider) in [https://github.com/immich-app/immich/pull/18259](https://redirect.github.com/immich-app/immich/pull/18259) - feat(web): lighter timeline buckets by [@​midzelis](https://redirect.github.com/midzelis) in [https://github.com/immich-app/immich/pull/17719](https://redirect.github.com/immich-app/immich/pull/17719) - feat(server): sort images in duplicate groups by date by [@​GeoffreyFrogeye](https://redirect.github.com/GeoffreyFrogeye) in [https://github.com/immich-app/immich/pull/18347](https://redirect.github.com/immich-app/immich/pull/18347) - feat(server): lighter buckets by [@​midzelis](https://redirect.github.com/midzelis) in [https://github.com/immich-app/immich/pull/17831](https://redirect.github.com/immich-app/immich/pull/17831) ##### 🐛 Bug fixes - fix(web): Make date-time formatting follow locale by [@​atollk](https://redirect.github.com/atollk) in [https://github.com/immich-app/immich/pull/17899](https://redirect.github.com/immich-app/immich/pull/17899) - fix(mobile): Share page URL by [@​mmomjian](https://redirect.github.com/mmomjian) in [https://github.com/immich-app/immich/pull/17834](https://redirect.github.com/immich-app/immich/pull/17834) - fix(server): handle orientation of imported face regions by [@​skatsubo](https://redirect.github.com/skatsubo) in [https://github.com/immich-app/immich/pull/18021](https://redirect.github.com/immich-app/immich/pull/18021) - fix: update assets when `duplicateId` is provided as `null` by [@​TitanNano](https://redirect.github.com/TitanNano) in [https://github.com/immich-app/immich/pull/18071](https://redirect.github.com/immich-app/immich/pull/18071) - fix(mobile): empty translation placeholders by [@​shenlong-tanwen](https://redirect.github.com/shenlong-tanwen) in [https://github.com/immich-app/immich/pull/18063](https://redirect.github.com/immich-app/immich/pull/18063) - fix(server): more robust person thumbnail generation by [@​mertalev](https://redirect.github.com/mertalev) in [https://github.com/immich-app/immich/pull/17974](https://redirect.github.com/immich-app/immich/pull/17974) - fix(mobile): Remote video playback and asset download on Android with mTLS by [@​rovo89](https://redirect.github.com/rovo89) in [https://github.com/immich-app/immich/pull/16403](https://redirect.github.com/immich-app/immich/pull/16403) - fix: z-index war in the asset viewer by [@​danieldietzler](https://redirect.github.com/danieldietzler) in [https://github.com/immich-app/immich/pull/18091](https://redirect.github.com/immich-app/immich/pull/18091) - fix: properly work with languages with multiple scripts by [@​LPkkjHD](https://redirect.github.com/LPkkjHD) in [https://github.com/immich-app/immich/pull/18167](https://redirect.github.com/immich-app/immich/pull/18167) - fix(web): user restore by [@​jrasm91](https://redirect.github.com/jrasm91) in [https://github.com/immich-app/immich/pull/18188](https://redirect.github.com/immich-app/immich/pull/18188) - fix(server): vacuum after deleting people by [@​mertalev](https://redirect.github.com/mertalev) in [https://github.com/immich-app/immich/pull/18299](https://redirect.github.com/immich-app/immich/pull/18299) - refactor(server): "on this day" memory creation by [@​mertalev](https://redirect.github.com/mertalev) in [https://github.com/immich-app/immich/pull/18333](https://redirect.github.com/immich-app/immich/pull/18333) - fix(web): Make QR code colors solid by [@​Snowknight26](https://redirect.github.com/Snowknight26) in [https://github.com/immich-app/immich/pull/18340](https://redirect.github.com/immich-app/immich/pull/18340) - fix: delay settings apply for slideshow popup by [@​dj0024javia](https://redirect.github.com/dj0024javia) in [https://github.com/immich-app/immich/pull/18028](https://redirect.github.com/immich-app/immich/pull/18028) - fix(mobile): reduce stutter/jank on search pages by [@​Saschl](https://redirect.github.com/Saschl) in [https://github.com/immich-app/immich/pull/18363](https://redirect.github.com/immich-app/immich/pull/18363) - fix(mobile): stale thumbnail cache by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/18351](https://redirect.github.com/immich-app/immich/pull/18351) - fix(server): select main stream according to bitrate by [@​wuzihao051119](https://redirect.github.com/wuzihao051119) in [https://github.com/immich-app/immich/pull/18375](https://redirect.github.com/immich-app/immich/pull/18375) - fix(mobile): do not continue on remote stream parse error by [@​shenlong-tanwen](https://redirect.github.com/shenlong-tanwen) in [https://github.com/immich-app/immich/pull/18344](https://redirect.github.com/immich-app/immich/pull/18344) ##### 📚 Documentation - fix: documentation - synology install docker link by [@​peterdenham](https://redirect.github.com/peterdenham) in [https://github.com/immich-app/immich/pull/18084](https://redirect.github.com/immich-app/immich/pull/18084) - fix(docs): update nginx reverse proxy by [@​mmomjian](https://redirect.github.com/mmomjian) in [https://github.com/immich-app/immich/pull/18104](https://redirect.github.com/immich-app/immich/pull/18104) - fix(docs): remove old patch versions from version switcher by [@​NicholasFlamy](https://redirect.github.com/NicholasFlamy) in [https://github.com/immich-app/immich/pull/18130](https://redirect.github.com/immich-app/immich/pull/18130) - chore: update truenas install guide by [@​DjP-iX](https://redirect.github.com/DjP-iX) in [https://github.com/immich-app/immich/pull/18142](https://redirect.github.com/immich-app/immich/pull/18142) - docs: face lift, botox x3 by [@​alextran1502](https://redirect.github.com/alextran1502) in [https://github.com/immich-app/immich/pull/18184](https://redirect.github.com/immich-app/immich/pull/18184) - fix(docs): Update old jellyfin docs links by [@​tetrois](https://redirect.github.com/tetrois) in [https://github.com/immich-app/immich/pull/18311](https://redirect.github.com/immich-app/immich/pull/18311) - chore: update docker-compose to add storage type configuration by [@​zackpollard](https://redirect.github.com/zackpollard) in [https://github.com/immich-app/immich/pull/18415](https://redirect.github.com/immich-app/immich/pull/18415) - fix(docs): vchord migration by [@​mmomjian](https://redirect.github.com/mmomjian) in [https://github.com/immich-app/immich/pull/18418](https://redirect.github.com/immich-app/immich/pull/18418) - chore: remove duplicate finder from community projects by [@​bo0tzz](https://redirect.github.com/bo0tzz) in [https://github.com/immich-app/immich/pull/18424](https://redirect.github.com/immich-app/immich/pull/18424) - chore: update milestones by [@​danieldietzler](https://redirect.github.com/danieldietzler) in [https://github.com/immich-app/immich/pull/18426](https://redirect.github.com/immich-app/immich/pull/18426) ##### 🌐 Translations - chore(mobile): translate toast messages by [@​ben-basten](https://redirect.github.com/ben-basten) in [https://github.com/immich-app/immich/pull/17964](https://redirect.github.com/immich-app/immich/pull/17964) - fix: add missing translations to face editor by [@​danieldietzler](https://redirect.github.com/danieldietzler) in [https://github.com/immich-app/immich/pull/17993](https://redirect.github.com/immich-app/immich/pull/17993) - chore(web): update translations by [@​weblate](https://redirect.github.com/weblate) in [https://github.com/immich-app/immich/pull/17817](https://redirect.github.com/immich-app/immich/pull/17817) - chore: add language requests from weblate by [@​danieldietzler](https://redirect.github.com/danieldietzler) in [https://github.com/immich-app/immich/pull/18050](https://redirect.github.com/immich-app/immich/pull/18050) - chore(web): update translations by [@​weblate](https://redirect.github.com/weblate) in [https://github.com/immich-app/immich/pull/18083](https://redirect.github.com/immich-app/immich/pull/18083) #### New Contributors - [@​LukeTowers](https://redirect.github.com/LukeTowers) made their first contribution in [https://github.com/immich-app/immich/pull/17837](https://redirect.github.com/immich-app/immich/pull/17837) - [@​davidpcrd](https://redirect.github.com/davidpcrd) made their first contribution in [https://github.com/immich-app/immich/pull/17906](https://redirect.github.com/immich-app/immich/pull/17906) - [@​peterdenham](https://redirect.github.com/peterdenham) made their first contribution in [https://github.com/immich-app/immich/pull/18084](https://redirect.github.com/immich-app/immich/pull/18084) - [@​TitanNano](https://redirect.github.com/TitanNano) made their first contribution in [https://github.com/immich-app/immich/pull/18071](https://redirect.github.com/immich-app/immich/pull/18071) - [@​typokign](https://redirect.github.com/typokign) made their first contribution in [https://github.com/immich-app/immich/pull/18025](https://redirect.github.com/immich-app/immich/pull/18025) - [@​dahool](https://redirect.github.com/dahool) made their first contribution in [https://github.com/immich-app/immich/pull/18127](https://redirect.github.com/immich-app/immich/pull/18127) - [@​LPkkjHD](https://redirect.github.com/LPkkjHD) made their first contribution in [https://github.com/immich-app/immich/pull/18167](https://redirect.github.com/immich-app/immich/pull/18167) - [@​tetrois](https://redirect.github.com/tetrois) made their first contribution in [https://github.com/immich-app/immich/pull/18311](https://redirect.github.com/immich-app/immich/pull/18311) - [@​koostamas](https://redirect.github.com/koostamas) made their first contribution in [https://github.com/immich-app/immich/pull/18288](https://redirect.github.com/immich-app/immich/pull/18288) - [@​dj0024javia](https://redirect.github.com/dj0024javia) made their first contribution in [https://github.com/immich-app/immich/pull/18028](https://redirect.github.com/immich-app/immich/pull/18028) - [@​TomK32](https://redirect.github.com/TomK32) made their first contribution in [https://github.com/immich-app/immich/pull/17309](https://redirect.github.com/immich-app/immich/pull/17309) **Full Changelog**: https://github.com/immich-app/immich/compare/v1.132.3... </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
0a8442a72a |
chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1930 → 0.22.1933 (#35581)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | patch | `349019c` -> `899ecd2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
9c3100c60d |
chore(helm): update image ghcr.io/elfhosted/emby 4.9.0.59 → 4.9.0.60 (#35580)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/emby | patch | `d8bc1c9` -> `2085b3d` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3fa00433de |
chore(deps): update node.js v22.15.1 → v22.16.0 (#35583)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [node](https://nodejs.org) ([source](https://redirect.github.com/nodejs/node)) | minor | `22.15.1` -> `22.16.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>nodejs/node (node)</summary> ### [`v22.16.0`](https://redirect.github.com/nodejs/node/releases/tag/v22.16.0): 2025-05-21, Version 22.16.0 'Jod' (LTS), @​aduh95 [Compare Source](https://redirect.github.com/nodejs/node/compare/v22.15.1...v22.16.0) ##### Notable Changes - \[[`c3ceaebb7a`](https://redirect.github.com/nodejs/node/commit/c3ceaebb7a)] - **deps**: update timezone to 2025b (Node.js GitHub Bot) [#​57857](https://redirect.github.com/nodejs/node/pull/57857) - \[[`5059a746ec`](https://redirect.github.com/nodejs/node/commit/5059a746ec)] - **doc**: add dario-piotrowicz to collaborators (Dario Piotrowicz) [#​58102](https://redirect.github.com/nodejs/node/pull/58102) - \[[`c8ceaaf397`](https://redirect.github.com/nodejs/node/commit/c8ceaaf397)] - **(SEMVER-MINOR)** **doc**: graduate multiple experimental apis (James M Snell) [#​57765](https://redirect.github.com/nodejs/node/pull/57765) - \[[`e21b37d9df`](https://redirect.github.com/nodejs/node/commit/e21b37d9df)] - **(SEMVER-MINOR)** **esm**: graduate import.meta properties (James M Snell) [#​58011](https://redirect.github.com/nodejs/node/pull/58011) - \[[`832640c35e`](https://redirect.github.com/nodejs/node/commit/832640c35e)] - **(SEMVER-MINOR)** **esm**: support top-level Wasm without package type (Guy Bedford) [#​57610](https://redirect.github.com/nodejs/node/pull/57610) - \[[`c510391d2f`](https://redirect.github.com/nodejs/node/commit/c510391d2f)] - **(SEMVER-MINOR)** **sqlite**: add StatementSync.prototype.columns() (Colin Ihrig) [#​57490](https://redirect.github.com/nodejs/node/pull/57490) - \[[`5d1230bec0`](https://redirect.github.com/nodejs/node/commit/5d1230bec0)] - **(SEMVER-MINOR)** **src**: set default config as `node.config.json` (Marco Ippolito) [#​57171](https://redirect.github.com/nodejs/node/pull/57171) - \[[`30bb1ccbb0`](https://redirect.github.com/nodejs/node/commit/30bb1ccbb0)] - **(SEMVER-MINOR)** **src**: create `THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito) [#​57016](https://redirect.github.com/nodejs/node/pull/57016) - \[[`0350c6f478`](https://redirect.github.com/nodejs/node/commit/0350c6f478)] - **(SEMVER-MINOR)** **src**: add config file support (Marco Ippolito) [#​57016](https://redirect.github.com/nodejs/node/pull/57016) - \[[`e1d3a9e192`](https://redirect.github.com/nodejs/node/commit/e1d3a9e192)] - **(SEMVER-MINOR)** **src**: add ExecutionAsyncId getter for any Context (Attila Szegedi) [#​57820](https://redirect.github.com/nodejs/node/pull/57820) - \[[`0ec912f452`](https://redirect.github.com/nodejs/node/commit/0ec912f452)] - **(SEMVER-MINOR)** **stream**: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) [#​57865](https://redirect.github.com/nodejs/node/pull/57865) - \[[`43490c8797`](https://redirect.github.com/nodejs/node/commit/43490c8797)] - **(SEMVER-MINOR)** **util**: add `types.isFloat16Array()` (Livia Medeiros) [#​57879](https://redirect.github.com/nodejs/node/pull/57879) - \[[`dda6ca9172`](https://redirect.github.com/nodejs/node/commit/dda6ca9172)] - **(SEMVER-MINOR)** **worker**: add worker.getHeapStatistics() (Matteo Collina) [#​57888](https://redirect.github.com/nodejs/node/pull/57888) ##### Commits - \[[`4252dc798c`](https://redirect.github.com/nodejs/node/commit/4252dc798c)] - **assert**: support `Float16Array` in loose deep equality checks (Livia Medeiros) [#​57881](https://redirect.github.com/nodejs/node/pull/57881) - \[[`1c7396b078`](https://redirect.github.com/nodejs/node/commit/1c7396b078)] - **assert,util**: fix constructor lookup in deep equal comparison (Ruben Bridgewater) [#​57876](https://redirect.github.com/nodejs/node/pull/57876) - \[[`1ded5f25c8`](https://redirect.github.com/nodejs/node/commit/1ded5f25c8)] - **assert,util**: improve deep object comparison performance (Ruben Bridgewater) [#​57648](https://redirect.github.com/nodejs/node/pull/57648) - \[[`696b5f85ca`](https://redirect.github.com/nodejs/node/commit/696b5f85ca)] - **assert,util**: improve unequal number comparison performance (Ruben Bridgewater) [#​57619](https://redirect.github.com/nodejs/node/pull/57619) - \[[`775ee4d40f`](https://redirect.github.com/nodejs/node/commit/775ee4d40f)] - **assert,util**: improve array comparison (Ruben Bridgewater) [#​57619](https://redirect.github.com/nodejs/node/pull/57619) - \[[`3766992ba4`](https://redirect.github.com/nodejs/node/commit/3766992ba4)] - **benchmark**: add sqlite prepare select get (Vinícius Lourenço) [#​58040](https://redirect.github.com/nodejs/node/pull/58040) - \[[`8390276be3`](https://redirect.github.com/nodejs/node/commit/8390276be3)] - **benchmark**: add sqlite prepare select all (Vinícius Lourenço) [#​58040](https://redirect.github.com/nodejs/node/pull/58040) - \[[`6a9b79e5c1`](https://redirect.github.com/nodejs/node/commit/6a9b79e5c1)] - **benchmark**: add sqlite is transaction (Vinícius Lourenço) [#​58040](https://redirect.github.com/nodejs/node/pull/58040) - \[[`f689f98344`](https://redirect.github.com/nodejs/node/commit/f689f98344)] - **benchmark**: add sqlite prepare insert (Vinícius Lourenço) [#​58040](https://redirect.github.com/nodejs/node/pull/58040) - \[[`14a82804d7`](https://redirect.github.com/nodejs/node/commit/14a82804d7)] - **benchmark**: disambiguate `filename` and `dirname` read perf (Antoine du Hamel) [#​58056](https://redirect.github.com/nodejs/node/pull/58056) - \[[`e7e8256d35`](https://redirect.github.com/nodejs/node/commit/e7e8256d35)] - **buffer**: avoid creating unnecessary environment (Yagiz Nizipli) [#​58053](https://redirect.github.com/nodejs/node/pull/58053) - \[[`d7d8e8e994`](https://redirect.github.com/nodejs/node/commit/d7d8e8e994)] - **buffer**: define global v8::CFunction objects as const (Mert Can Altin) [#​57676](https://redirect.github.com/nodejs/node/pull/57676) - \[[`f37633e85a`](https://redirect.github.com/nodejs/node/commit/f37633e85a)] - **build**: use `$(BUILDTYPE)` when cleaning coverage files (Aviv Keller) [#​57995](https://redirect.github.com/nodejs/node/pull/57995) - \[[`e5bf67fe77`](https://redirect.github.com/nodejs/node/commit/e5bf67fe77)] - **build**: define python when generating `out/Makefile` (Aviv Keller) [#​57970](https://redirect.github.com/nodejs/node/pull/57970) - \[[`718f874ae0`](https://redirect.github.com/nodejs/node/commit/718f874ae0)] - **build**: fix zstd libname (Antoine du Hamel) [#​57999](https://redirect.github.com/nodejs/node/pull/57999) - \[[`53c5fdcae1`](https://redirect.github.com/nodejs/node/commit/53c5fdcae1)] - **crypto**: fix cross-realm `SharedArrayBuffer` validation (Antoine du Hamel) [#​57974](https://redirect.github.com/nodejs/node/pull/57974) - \[[`78f4ffee5d`](https://redirect.github.com/nodejs/node/commit/78f4ffee5d)] - **crypto**: fix cross-realm check of `ArrayBuffer` (Felipe Forbeck) [#​57828](https://redirect.github.com/nodejs/node/pull/57828) - \[[`f606352b63`](https://redirect.github.com/nodejs/node/commit/f606352b63)] - **crypto**: forbid passing `Float16Array` to `getRandomValues()` (Livia Medeiros) [#​57880](https://redirect.github.com/nodejs/node/pull/57880) - \[[`23c4e941c2`](https://redirect.github.com/nodejs/node/commit/23c4e941c2)] - **crypto**: remove BoringSSL dh-primes addition (Shelley Vohr) [#​57023](https://redirect.github.com/nodejs/node/pull/57023) - \[[`8339d9bc14`](https://redirect.github.com/nodejs/node/commit/8339d9bc14)] - **deps**: V8: cherry-pick [`f915fa4`](https://redirect.github.com/nodejs/node/commit/f915fa4c9f41) (Chengzhong Wu) [#​55484](https://redirect.github.com/nodejs/node/pull/55484) - \[[`c2111dd126`](https://redirect.github.com/nodejs/node/commit/c2111dd126)] - **deps**: V8: backport [`e5dbbba`](https://redirect.github.com/nodejs/node/commit/e5dbbbadcbff) (Darshan Sen) [#​58120](https://redirect.github.com/nodejs/node/pull/58120) - \[[`4cc49be951`](https://redirect.github.com/nodejs/node/commit/4cc49be951)] - **deps**: update zstd to 1.5.7 (Node.js GitHub Bot) [#​57940](https://redirect.github.com/nodejs/node/pull/57940) - \[[`c956d37c84`](https://redirect.github.com/nodejs/node/commit/c956d37c84)] - **deps**: update zlib to 1.3.0.1-motley-780819f (Node.js GitHub Bot) [#​57768](https://redirect.github.com/nodejs/node/pull/57768) - \[[`c3ceaebb7a`](https://redirect.github.com/nodejs/node/commit/c3ceaebb7a)] - **deps**: update timezone to 2025b (Node.js GitHub Bot) [#​57857](https://redirect.github.com/nodejs/node/pull/57857) - \[[`b5cd0eb590`](https://redirect.github.com/nodejs/node/commit/b5cd0eb590)] - **deps**: update simdutf to 6.4.2 (Node.js GitHub Bot) [#​57855](https://redirect.github.com/nodejs/node/pull/57855) - \[[`3eb6b814e9`](https://redirect.github.com/nodejs/node/commit/3eb6b814e9)] - **deps**: update simdutf to 6.4.0 (Node.js GitHub Bot) [#​56764](https://redirect.github.com/nodejs/node/pull/56764) - \[[`0be9fa3218`](https://redirect.github.com/nodejs/node/commit/0be9fa3218)] - **deps**: update icu to 77.1 (Node.js GitHub Bot) [#​57455](https://redirect.github.com/nodejs/node/pull/57455) - \[[`d5cf4254fb`](https://redirect.github.com/nodejs/node/commit/d5cf4254fb)] - **doc**: add HBSPS as triager (Wiyeong Seo) [#​57980](https://redirect.github.com/nodejs/node/pull/57980) - \[[`ad0861dba0`](https://redirect.github.com/nodejs/node/commit/ad0861dba0)] - **doc**: add ambassaor message (Brian Muenzenmeyer) [#​57600](https://redirect.github.com/nodejs/node/pull/57600) - \[[`0d3ec1aafe`](https://redirect.github.com/nodejs/node/commit/0d3ec1aafe)] - **doc**: fix misaligned options in vm.compileFunction() (Jimmy Leung) [#​58145](https://redirect.github.com/nodejs/node/pull/58145) - \[[`1f70baf3b0`](https://redirect.github.com/nodejs/node/commit/1f70baf3b0)] - **doc**: add missing options.signal to readlinePromises.createInterface() (Jimmy Leung) [#​55456](https://redirect.github.com/nodejs/node/pull/55456) - \[[`ec6a48621f`](https://redirect.github.com/nodejs/node/commit/ec6a48621f)] - **doc**: fix typo of file `zlib.md` (yusheng chen) [#​58093](https://redirect.github.com/nodejs/node/pull/58093) - \[[`37e360e386`](https://redirect.github.com/nodejs/node/commit/37e360e386)] - **doc**: make stability labels more consistent (Antoine du Hamel) [#​57516](https://redirect.github.com/nodejs/node/pull/57516) - \[[`2b5d63d36e`](https://redirect.github.com/nodejs/node/commit/2b5d63d36e)] - **doc**: allow the $schema property in node.config.json (Remco Haszing) [#​57560](https://redirect.github.com/nodejs/node/pull/57560) - \[[`a2063638e2`](https://redirect.github.com/nodejs/node/commit/a2063638e2)] - **doc**: fix `AsyncLocalStorage` example response changes after node v18 (Naor Tedgi (Abu Emma)) [#​57969](https://redirect.github.com/nodejs/node/pull/57969) - \[[`474c2b14c3`](https://redirect.github.com/nodejs/node/commit/474c2b14c3)] - **doc**: mark Node.js 18 as End-of-Life (Richard Lau) [#​58084](https://redirect.github.com/nodejs/node/pull/58084) - \[[`5059a746ec`](https://redirect.github.com/nodejs/node/commit/5059a746ec)] - **doc**: add dario-piotrowicz to collaborators (Dario Piotrowicz) [#​58102](https://redirect.github.com/nodejs/node/pull/58102) - \[[`1eec170fc3`](https://redirect.github.com/nodejs/node/commit/1eec170fc3)] - **doc**: fix formatting of `import.meta.filename` section (Antoine du Hamel) [#​58079](https://redirect.github.com/nodejs/node/pull/58079) - \[[`7f108de525`](https://redirect.github.com/nodejs/node/commit/7f108de525)] - **doc**: fix env variable name in `util.styleText` (Antoine du Hamel) [#​58072](https://redirect.github.com/nodejs/node/pull/58072) - \[[`54b3f7fffc`](https://redirect.github.com/nodejs/node/commit/54b3f7fffc)] - **doc**: add returns for https.get (Eng Zer Jun) [#​58025](https://redirect.github.com/nodejs/node/pull/58025) - \[[`66f2c605a8`](https://redirect.github.com/nodejs/node/commit/66f2c605a8)] - **doc**: fix typo in `buffer.md` (chocolateboy) [#​58052](https://redirect.github.com/nodejs/node/pull/58052) - \[[`b0256dd42b`](https://redirect.github.com/nodejs/node/commit/b0256dd42b)] - **doc**: correct deprecation type of `assert.CallTracker` (René) [#​57997](https://redirect.github.com/nodejs/node/pull/57997) - \[[`581439c9e6`](https://redirect.github.com/nodejs/node/commit/581439c9e6)] - **doc**: mark devtools integration section as active development (Chengzhong Wu) [#​57886](https://redirect.github.com/nodejs/node/pull/57886) - \[[`a2a2a2f027`](https://redirect.github.com/nodejs/node/commit/a2a2a2f027)] - **doc**: fix typo in `module.md` (Alex Schwartz) [#​57889](https://redirect.github.com/nodejs/node/pull/57889) - \[[`c0ec4e2935`](https://redirect.github.com/nodejs/node/commit/c0ec4e2935)] - **doc**: increase z-index of header element (Dario Piotrowicz) [#​57851](https://redirect.github.com/nodejs/node/pull/57851) - \[[`93d19ec6cd`](https://redirect.github.com/nodejs/node/commit/93d19ec6cd)] - **doc**: add missing TS formats for `load` hooks (Antoine du Hamel) [#​57837](https://redirect.github.com/nodejs/node/pull/57837) - \[[`f5ea06c61f`](https://redirect.github.com/nodejs/node/commit/f5ea06c61f)] - **doc**: clarify the multi REPL example (Dario Piotrowicz) [#​57759](https://redirect.github.com/nodejs/node/pull/57759) - \[[`80c4fe1b70`](https://redirect.github.com/nodejs/node/commit/80c4fe1b70)] - **doc**: fix deprecation type for `DEP0148` (Livia Medeiros) [#​57785](https://redirect.github.com/nodejs/node/pull/57785) - \[[`01cad99da0`](https://redirect.github.com/nodejs/node/commit/01cad99da0)] - **doc**: list DOMException as a potential error raised by Node.js (Chengzhong Wu) [#​57783](https://redirect.github.com/nodejs/node/pull/57783) - \[[`a08b714a46`](https://redirect.github.com/nodejs/node/commit/a08b714a46)] - **doc**: add missing v0.x changelog entries (Antoine du Hamel) [#​57779](https://redirect.github.com/nodejs/node/pull/57779) - \[[`d0b48350fd`](https://redirect.github.com/nodejs/node/commit/d0b48350fd)] - **doc**: fix typo in writing-docs (Sebastian Beltran) [#​57776](https://redirect.github.com/nodejs/node/pull/57776) - \[[`bde3725f8b`](https://redirect.github.com/nodejs/node/commit/bde3725f8b)] - **doc**: clarify examples section in REPL doc (Dario Piotrowicz) [#​57762](https://redirect.github.com/nodejs/node/pull/57762) - \[[`c8ceaaf397`](https://redirect.github.com/nodejs/node/commit/c8ceaaf397)] - **(SEMVER-MINOR)** **doc**: graduate multiple experimental apis (James M Snell) [#​57765](https://redirect.github.com/nodejs/node/pull/57765) - \[[`92428c2609`](https://redirect.github.com/nodejs/node/commit/92428c2609)] - **doc**: explicitly state that corepack will be removed in v25+ (Trivikram Kamat) [#​57747](https://redirect.github.com/nodejs/node/pull/57747) - \[[`298969e1dd`](https://redirect.github.com/nodejs/node/commit/298969e1dd)] - **doc**: update position type to integer | null in fs (Yukihiro Hasegawa) [#​57745](https://redirect.github.com/nodejs/node/pull/57745) - \[[`a9d28e27c9`](https://redirect.github.com/nodejs/node/commit/a9d28e27c9)] - **doc**: update CI instructions (Antoine du Hamel) [#​57743](https://redirect.github.com/nodejs/node/pull/57743) - \[[`133d2878a1`](https://redirect.github.com/nodejs/node/commit/133d2878a1)] - **doc**: update example of using `await` in REPL (Dario Piotrowicz) [#​57653](https://redirect.github.com/nodejs/node/pull/57653) - \[[`fc5f126629`](https://redirect.github.com/nodejs/node/commit/fc5f126629)] - **doc**: add back mention of visa fees to onboarding doc (Darshan Sen) [#​57730](https://redirect.github.com/nodejs/node/pull/57730) - \[[`945f4ac538`](https://redirect.github.com/nodejs/node/commit/945f4ac538)] - **doc**: process.execve is only unavailable for Windows (Yaksh Bariya) [#​57726](https://redirect.github.com/nodejs/node/pull/57726) - \[[`f3b885bb5e`](https://redirect.github.com/nodejs/node/commit/f3b885bb5e)] - **doc**: clarify `unhandledRejection` events behaviors in process doc (Dario Piotrowicz) [#​57654](https://redirect.github.com/nodejs/node/pull/57654) - \[[`7326dda5b0`](https://redirect.github.com/nodejs/node/commit/7326dda5b0)] - **doc**: improved fetch docs (Alessandro Miliucci) [#​57296](https://redirect.github.com/nodejs/node/pull/57296) - \[[`6906c5eb1f`](https://redirect.github.com/nodejs/node/commit/6906c5eb1f)] - **doc**: document REPL custom eval arguments (Dario Piotrowicz) [#​57690](https://redirect.github.com/nodejs/node/pull/57690) - \[[`47a7564e8f`](https://redirect.github.com/nodejs/node/commit/47a7564e8f)] - **doc**: classify Chrome DevTools Protocol as tier 2 (Chengzhong Wu) [#​57634](https://redirect.github.com/nodejs/node/pull/57634) - \[[`e274cc1310`](https://redirect.github.com/nodejs/node/commit/e274cc1310)] - **doc**: replace NOTE that does not render properly (Colin Ihrig) [#​57484](https://redirect.github.com/nodejs/node/pull/57484) - \[[`bef06b11df`](https://redirect.github.com/nodejs/node/commit/bef06b11df)] - **esm**: avoid `import.meta` setup costs for unused properties (Antoine du Hamel) [#​57286](https://redirect.github.com/nodejs/node/pull/57286) - \[[`e21b37d9df`](https://redirect.github.com/nodejs/node/commit/e21b37d9df)] - **(SEMVER-MINOR)** **esm**: graduate import.meta properties (James M Snell) [#​58011](https://redirect.github.com/nodejs/node/pull/58011) - \[[`832640c35e`](https://redirect.github.com/nodejs/node/commit/832640c35e)] - **(SEMVER-MINOR)** **esm**: support top-level Wasm without package type (Guy Bedford) [#​57610](https://redirect.github.com/nodejs/node/pull/57610) - \[[`8f643471ef`](https://redirect.github.com/nodejs/node/commit/8f643471ef)] - **fs**: improve globSync performance (Rich Trott) [#​57725](https://redirect.github.com/nodejs/node/pull/57725) - \[[`bf9e17ecc6`](https://redirect.github.com/nodejs/node/commit/bf9e17ecc6)] - **http2**: use args.This() instead of args.Holder() (Joyee Cheung) [#​58004](https://redirect.github.com/nodejs/node/pull/58004) - \[[`137717354f`](https://redirect.github.com/nodejs/node/commit/137717354f)] - **http2**: fix graceful session close (Kushagra Pandey) [#​57808](https://redirect.github.com/nodejs/node/pull/57808) - \[[`9baf580269`](https://redirect.github.com/nodejs/node/commit/9baf580269)] - **http2**: fix check for `frame->hd.type` (hanguanqiang) [#​57644](https://redirect.github.com/nodejs/node/pull/57644) - \[[`b8189242b2`](https://redirect.github.com/nodejs/node/commit/b8189242b2)] - **http2**: skip writeHead if stream is closed (Shima Ryuhei) [#​57686](https://redirect.github.com/nodejs/node/pull/57686) - \[[`4e02a1650a`](https://redirect.github.com/nodejs/node/commit/4e02a1650a)] - **lib**: remove unused file `fetch_module` (Michaël Zasso) [#​55880](https://redirect.github.com/nodejs/node/pull/55880) - \[[`d9700fef26`](https://redirect.github.com/nodejs/node/commit/d9700fef26)] - **lib**: avoid StackOverflow on `serializeError` (Chengzhong Wu) [#​58075](https://redirect.github.com/nodejs/node/pull/58075) - \[[`f3a16b6d9c`](https://redirect.github.com/nodejs/node/commit/f3a16b6d9c)] - **lib**: resolve the issue of not adhering to the specified buffer size (0hm☘️🏳️⚧️) [#​55896](https://redirect.github.com/nodejs/node/pull/55896) - \[[`d4fc282f73`](https://redirect.github.com/nodejs/node/commit/d4fc282f73)] - **lib**: fix AbortSignal.any() with timeout signals (Gürgün Dayıoğlu) [#​57867](https://redirect.github.com/nodejs/node/pull/57867) - \[[`f7e2902861`](https://redirect.github.com/nodejs/node/commit/f7e2902861)] - **lib**: use Map primordial for ActiveAsyncContextFrame (Gürgün Dayıoğlu) [#​57670](https://redirect.github.com/nodejs/node/pull/57670) - \[[`8652b0e168`](https://redirect.github.com/nodejs/node/commit/8652b0e168)] - **meta**: set nodejs/config as codeowner (Marco Ippolito) [#​57237](https://redirect.github.com/nodejs/node/pull/57237) - \[[`e98504ed95`](https://redirect.github.com/nodejs/node/commit/e98504ed95)] - **meta**: allow penetration testing on live system with prior authorization (Matteo Collina) [#​57966](https://redirect.github.com/nodejs/node/pull/57966) - \[[`340731bea0`](https://redirect.github.com/nodejs/node/commit/340731bea0)] - **meta**: fix subsystem in commit title (Luigi Pinca) [#​57945](https://redirect.github.com/nodejs/node/pull/57945) - \[[`d767cbffcf`](https://redirect.github.com/nodejs/node/commit/d767cbffcf)] - **meta**: bump Mozilla-Actions/sccache-action from 0.0.8 to 0.0.9 (dependabot\[bot]) [#​57720](https://redirect.github.com/nodejs/node/pull/57720) - \[[`575f904b13`](https://redirect.github.com/nodejs/node/commit/575f904b13)] - **meta**: bump actions/download-artifact from 4.1.9 to 4.2.1 (dependabot\[bot]) [#​57719](https://redirect.github.com/nodejs/node/pull/57719) - \[[`acd323c069`](https://redirect.github.com/nodejs/node/commit/acd323c069)] - **meta**: bump actions/setup-python from 5.4.0 to 5.5.0 (dependabot\[bot]) [#​57718](https://redirect.github.com/nodejs/node/pull/57718) - \[[`21246fec20`](https://redirect.github.com/nodejs/node/commit/21246fec20)] - **meta**: bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (dependabot\[bot]) [#​57717](https://redirect.github.com/nodejs/node/pull/57717) - \[[`97f32d5849`](https://redirect.github.com/nodejs/node/commit/97f32d5849)] - **meta**: bump github/codeql-action from 3.28.10 to 3.28.13 (dependabot\[bot]) [#​57716](https://redirect.github.com/nodejs/node/pull/57716) - \[[`90ddbb8cfa`](https://redirect.github.com/nodejs/node/commit/90ddbb8cfa)] - **meta**: bump actions/cache from 4.2.2 to 4.2.3 (dependabot\[bot]) [#​57715](https://redirect.github.com/nodejs/node/pull/57715) - \[[`728425d03e`](https://redirect.github.com/nodejs/node/commit/728425d03e)] - **meta**: bump actions/setup-node from 4.2.0 to 4.3.0 (dependabot\[bot]) [#​57714](https://redirect.github.com/nodejs/node/pull/57714) - \[[`1f799140e0`](https://redirect.github.com/nodejs/node/commit/1f799140e0)] - **meta**: bump actions/upload-artifact from 4.6.1 to 4.6.2 (dependabot\[bot]) [#​57713](https://redirect.github.com/nodejs/node/pull/57713) - \[[`021b174a1f`](https://redirect.github.com/nodejs/node/commit/021b174a1f)] - **module**: tidy code string concat → string templates (Jacob Smith) [#​55820](https://redirect.github.com/nodejs/node/pull/55820) - \[[`44c5718476`](https://redirect.github.com/nodejs/node/commit/44c5718476)] - **module**: fix incorrect formatting in require(esm) cycle error message (haykam821) [#​57453](https://redirect.github.com/nodejs/node/pull/57453) - \[[`bb09b4d4ae`](https://redirect.github.com/nodejs/node/commit/bb09b4d4ae)] - **module**: improve `getPackageType` performance (Dario Piotrowicz) [#​57599](https://redirect.github.com/nodejs/node/pull/57599) - \[[`9e6054e715`](https://redirect.github.com/nodejs/node/commit/9e6054e715)] - **module**: remove unnecessary `readPackage` function (Dario Piotrowicz) [#​57596](https://redirect.github.com/nodejs/node/pull/57596) - \[[`4a8db273ba`](https://redirect.github.com/nodejs/node/commit/4a8db273ba)] - **node-api**: add nested object wrap and napi_ref test (Chengzhong Wu) [#​57981](https://redirect.github.com/nodejs/node/pull/57981) - \[[`3c65058f20`](https://redirect.github.com/nodejs/node/commit/3c65058f20)] - **node-api**: convert NewEnv to node_napi_env\_\_::New (Vladimir Morozov) [#​57834](https://redirect.github.com/nodejs/node/pull/57834) - \[[`a4105db1f7`](https://redirect.github.com/nodejs/node/commit/a4105db1f7)] - **os**: fix netmask format check condition in getCIDR function (Wiyeong Seo) [#​57324](https://redirect.github.com/nodejs/node/pull/57324) - \[[`248c938139`](https://redirect.github.com/nodejs/node/commit/248c938139)] - **process**: disable building execve on IBM i (Abdirahim Musse) [#​57883](https://redirect.github.com/nodejs/node/pull/57883) - \[[`972275697a`](https://redirect.github.com/nodejs/node/commit/972275697a)] - **repl**: deprecate `repl.builtinModules` (Dario Piotrowicz) [#​57508](https://redirect.github.com/nodejs/node/pull/57508) - \[[`7485309d7e`](https://redirect.github.com/nodejs/node/commit/7485309d7e)] - **sqlite**: add location method (Edy Silva) [#​57860](https://redirect.github.com/nodejs/node/pull/57860) - \[[`c12cd2a190`](https://redirect.github.com/nodejs/node/commit/c12cd2a190)] - **sqlite**: add timeout options to DatabaseSync (Edy Silva) [#​57752](https://redirect.github.com/nodejs/node/pull/57752) - \[[`5e0503a967`](https://redirect.github.com/nodejs/node/commit/5e0503a967)] - **sqlite**: add setReturnArrays method to StatementSync (Gürgün Dayıoğlu) [#​57542](https://redirect.github.com/nodejs/node/pull/57542) - \[[`ed9d2fd51a`](https://redirect.github.com/nodejs/node/commit/ed9d2fd51a)] - **sqlite**: enable common flags (Edy Silva) [#​57621](https://redirect.github.com/nodejs/node/pull/57621) - \[[`06dcb318bc`](https://redirect.github.com/nodejs/node/commit/06dcb318bc)] - **sqlite**: refactor prepared statement iterator (Colin Ihrig) [#​57569](https://redirect.github.com/nodejs/node/pull/57569) - \[[`c510391d2f`](https://redirect.github.com/nodejs/node/commit/c510391d2f)] - **(SEMVER-MINOR)** **sqlite**: add StatementSync.prototype.columns() (Colin Ihrig) [#​57490](https://redirect.github.com/nodejs/node/pull/57490) - \[[`4e24456a1a`](https://redirect.github.com/nodejs/node/commit/4e24456a1a)] - **sqlite**: reset statement immediately in run() (Colin Ihrig) [#​57350](https://redirect.github.com/nodejs/node/pull/57350) - \[[`a9a6891b0b`](https://redirect.github.com/nodejs/node/commit/a9a6891b0b)] - **sqlite**: fix coverity warnings related to backup() (Colin Ihrig) [#​56961](https://redirect.github.com/nodejs/node/pull/56961) - \[[`d2e1bcf3d4`](https://redirect.github.com/nodejs/node/commit/d2e1bcf3d4)] - **sqlite**: fix use-after-free in StatementSync due to premature GC (Divy Srivastava) [#​56840](https://redirect.github.com/nodejs/node/pull/56840) - \[[`cfe15ca7b4`](https://redirect.github.com/nodejs/node/commit/cfe15ca7b4)] - **sqlite**: handle conflicting SQLite and JS errors (Colin Ihrig) [#​56787](https://redirect.github.com/nodejs/node/pull/56787) - \[[`0e999eb65f`](https://redirect.github.com/nodejs/node/commit/0e999eb65f)] - **sqlite**: add getter to detect transactions (Colin Ihrig) [#​57925](https://redirect.github.com/nodejs/node/pull/57925) - \[[`20b27331c0`](https://redirect.github.com/nodejs/node/commit/20b27331c0)] - **sqlite, test**: expose sqlite online backup api (Edy Silva) [#​56253](https://redirect.github.com/nodejs/node/pull/56253) - \[[`8856712171`](https://redirect.github.com/nodejs/node/commit/8856712171)] - **sqlite,doc,test**: add aggregate function (Edy Silva) [#​56600](https://redirect.github.com/nodejs/node/pull/56600) - \[[`120050db97`](https://redirect.github.com/nodejs/node/commit/120050db97)] - **sqlite,src**: refactor sqlite value conversion (Edy Silva) [#​57571](https://redirect.github.com/nodejs/node/pull/57571) - \[[`4c5555d558`](https://redirect.github.com/nodejs/node/commit/4c5555d558)] - **src**: initialize privateSymbols for per_context (Jason Zhang) [#​57479](https://redirect.github.com/nodejs/node/pull/57479) - \[[`d2ce9023b1`](https://redirect.github.com/nodejs/node/commit/d2ce9023b1)] - **src**: ensure primordials are initialized exactly once (Chengzhong Wu) [#​57519](https://redirect.github.com/nodejs/node/pull/57519) - \[[`06179be6ca`](https://redirect.github.com/nodejs/node/commit/06179be6ca)] - **src**: disable abseil deadlock detection (Chengzhong Wu) [#​57582](https://redirect.github.com/nodejs/node/pull/57582) - \[[`5121c47990`](https://redirect.github.com/nodejs/node/commit/5121c47990)] - **src**: fix node_config_file.h compilation error in GN build (Cheng) [#​57210](https://redirect.github.com/nodejs/node/pull/57210) - \[[`5d1230bec0`](https://redirect.github.com/nodejs/node/commit/5d1230bec0)] - **(SEMVER-MINOR)** **src**: set default config as `node.config.json` (Marco Ippolito) [#​57171](https://redirect.github.com/nodejs/node/pull/57171) - \[[`ccee741c43`](https://redirect.github.com/nodejs/node/commit/ccee741c43)] - **src**: namespace config file flags (Marco Ippolito) [#​57170](https://redirect.github.com/nodejs/node/pull/57170) - \[[`30bb1ccbb0`](https://redirect.github.com/nodejs/node/commit/30bb1ccbb0)] - **(SEMVER-MINOR)** **src**: create `THROW_ERR_OPTIONS_BEFORE_BOOTSTRAPPING` (Marco Ippolito) [#​57016](https://redirect.github.com/nodejs/node/pull/57016) - \[[`0350c6f478`](https://redirect.github.com/nodejs/node/commit/0350c6f478)] - **(SEMVER-MINOR)** **src**: add config file support (Marco Ippolito) [#​57016](https://redirect.github.com/nodejs/node/pull/57016) - \[[`eef37d00cb`](https://redirect.github.com/nodejs/node/commit/eef37d00cb)] - **src**: add more debug logs and comments in NodePlatform (Joyee Cheung) [#​58047](https://redirect.github.com/nodejs/node/pull/58047) - \[[`678e8f57c0`](https://redirect.github.com/nodejs/node/commit/678e8f57c0)] - **src**: add dcheck_eq for Object::New constructor calls (Jonas) [#​57943](https://redirect.github.com/nodejs/node/pull/57943) - \[[`aee45e2036`](https://redirect.github.com/nodejs/node/commit/aee45e2036)] - **src**: move windows specific fns to `_WIN32` (Yagiz Nizipli) [#​57951](https://redirect.github.com/nodejs/node/pull/57951) - \[[`6206a8edbc`](https://redirect.github.com/nodejs/node/commit/6206a8edbc)] - **src**: improve thread safety of TaskQueue (Shelley Vohr) [#​57910](https://redirect.github.com/nodejs/node/pull/57910) - \[[`03936f31c1`](https://redirect.github.com/nodejs/node/commit/03936f31c1)] - **src**: fixup errorhandling more in various places (James M Snell) [#​57852](https://redirect.github.com/nodejs/node/pull/57852) - \[[`010dd91a19`](https://redirect.github.com/nodejs/node/commit/010dd91a19)] - **src**: fix typo in comments (Edy Silva) [#​57868](https://redirect.github.com/nodejs/node/pull/57868) - \[[`e00c1ecbd2`](https://redirect.github.com/nodejs/node/commit/e00c1ecbd2)] - **src**: add BaseObjectPtr nullptr operations (Chengzhong Wu) [#​56585](https://redirect.github.com/nodejs/node/pull/56585) - \[[`648ad252e1`](https://redirect.github.com/nodejs/node/commit/648ad252e1)] - **src**: remove `void*` -> `char*` -> `void*` casts (Tobias Nießen) [#​57791](https://redirect.github.com/nodejs/node/pull/57791) - \[[`680b434a62`](https://redirect.github.com/nodejs/node/commit/680b434a62)] - **src**: improve error handing in node_messaging (James M Snell) [#​57760](https://redirect.github.com/nodejs/node/pull/57760) - \[[`18f5301747`](https://redirect.github.com/nodejs/node/commit/18f5301747)] - **src**: remove unused detachArrayBuffer method (Yagiz Nizipli) [#​58055](https://redirect.github.com/nodejs/node/pull/58055) - \[[`065e8cd670`](https://redirect.github.com/nodejs/node/commit/065e8cd670)] - **src**: use macros to reduce code duplication is cares_wrap (James M Snell) [#​57937](https://redirect.github.com/nodejs/node/pull/57937) - \[[`39af5d678f`](https://redirect.github.com/nodejs/node/commit/39af5d678f)] - **src**: improve error handling in cares_wrap (James M Snell) [#​57937](https://redirect.github.com/nodejs/node/pull/57937) - \[[`ca020fdc4e`](https://redirect.github.com/nodejs/node/commit/ca020fdc4e)] - **src**: fix -Wunreachable-code-return in node_sea (Shelley Vohr) [#​57664](https://redirect.github.com/nodejs/node/pull/57664) - \[[`32b6e7094a`](https://redirect.github.com/nodejs/node/commit/32b6e7094a)] - **src**: change DCHECK to CHECK (Wuli Zuo) [#​57948](https://redirect.github.com/nodejs/node/pull/57948) - \[[`e1d3a9e192`](https://redirect.github.com/nodejs/node/commit/e1d3a9e192)] - **(SEMVER-MINOR)** **src**: add ExecutionAsyncId getter for any Context (Attila Szegedi) [#​57820](https://redirect.github.com/nodejs/node/pull/57820) - \[[`96243a723a`](https://redirect.github.com/nodejs/node/commit/96243a723a)] - **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T> (Aditi) [#​57646](https://redirect.github.com/nodejs/node/pull/57646) - \[[`0f2cbc17c7`](https://redirect.github.com/nodejs/node/commit/0f2cbc17c7)] - **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T> (Aditi) [#​57642](https://redirect.github.com/nodejs/node/pull/57642) - \[[`d1c6f861d5`](https://redirect.github.com/nodejs/node/commit/d1c6f861d5)] - **src**: update std::vector\<v8::Local\<T>> to use v8::LocalVector\<T> (Aditi) [#​57578](https://redirect.github.com/nodejs/node/pull/57578) - \[[`ab0d3a38db`](https://redirect.github.com/nodejs/node/commit/ab0d3a38db)] - **src**: improve error message for invalid child stdio type in spawn_sync (Dario Piotrowicz) [#​57589](https://redirect.github.com/nodejs/node/pull/57589) - \[[`24b182e7b3`](https://redirect.github.com/nodejs/node/commit/24b182e7b3)] - **src**: implement util.types fast API calls (Ruben Bridgewater) [#​57819](https://redirect.github.com/nodejs/node/pull/57819) - \[[`dda6423be9`](https://redirect.github.com/nodejs/node/commit/dda6423be9)] - **src**: enter and lock isolate properly in json parser (Joyee Cheung) [#​57823](https://redirect.github.com/nodejs/node/pull/57823) - \[[`4754c693f8`](https://redirect.github.com/nodejs/node/commit/4754c693f8)] - **src**: improve error handling in `node_env_var.cc` (Antoine du Hamel) [#​57767](https://redirect.github.com/nodejs/node/pull/57767) - \[[`db483bbe63`](https://redirect.github.com/nodejs/node/commit/db483bbe63)] - **src**: improve error handling in node_http2 (James M Snell) [#​57764](https://redirect.github.com/nodejs/node/pull/57764) - \[[`b0277700d6`](https://redirect.github.com/nodejs/node/commit/b0277700d6)] - **src**: improve error handling in crypto_x509 (James M Snell) [#​57757](https://redirect.github.com/nodejs/node/pull/57757) - \[[`353587f984`](https://redirect.github.com/nodejs/node/commit/353587f984)] - **src**: improve error handling in callback.cc (James M Snell) [#​57758](https://redirect.github.com/nodejs/node/pull/57758) - \[[`bec053ab20`](https://redirect.github.com/nodejs/node/commit/bec053ab20)] - **src**: remove unused variable in crypto_x509.cc (Michaël Zasso) [#​57754](https://redirect.github.com/nodejs/node/pull/57754) - \[[`38a329a857`](https://redirect.github.com/nodejs/node/commit/38a329a857)] - **src**: fix kill signal 0 on Windows (Stefan Stojanovic) [#​57695](https://redirect.github.com/nodejs/node/pull/57695) - \[[`70bb387f82`](https://redirect.github.com/nodejs/node/commit/70bb387f82)] - **src**: fix inefficient usage of v8\_inspector::StringView (Simon Zünd) [#​52372](https://redirect.github.com/nodejs/node/pull/52372) - \[[`be038f0273`](https://redirect.github.com/nodejs/node/commit/be038f0273)] - **src,permission**: make ERR_ACCESS_DENIED more descriptive (Rafael Gonzaga) [#​57585](https://redirect.github.com/nodejs/node/pull/57585) - \[[`0ec912f452`](https://redirect.github.com/nodejs/node/commit/0ec912f452)] - **(SEMVER-MINOR)** **stream**: preserve AsyncLocalStorage context in finished() (Gürgün Dayıoğlu) [#​57865](https://redirect.github.com/nodejs/node/pull/57865) - \[[`6ffb66f82f`](https://redirect.github.com/nodejs/node/commit/6ffb66f82f)] - **test**: fix permission fixtures lint (Rafael Gonzaga) [#​55819](https://redirect.github.com/nodejs/node/pull/55819) - \[[`fd37891186`](https://redirect.github.com/nodejs/node/commit/fd37891186)] - **test**: add repl preview timeout test (Chengzhong Wu) [#​55484](https://redirect.github.com/nodejs/node/pull/55484) - \[[`1be5a8c1b4`](https://redirect.github.com/nodejs/node/commit/1be5a8c1b4)] - **test**: skip `test-config-json-schema` with quic (Richard Lau) [#​57225](https://redirect.github.com/nodejs/node/pull/57225) - \[[`e90583b657`](https://redirect.github.com/nodejs/node/commit/e90583b657)] - **test**: add more coverage to `node_config_file` (Marco Ippolito) [#​57170](https://redirect.github.com/nodejs/node/pull/57170) - \[[`df2a36bfcc`](https://redirect.github.com/nodejs/node/commit/df2a36bfcc)] - **test**: remove deadlock workaround (Joyee Cheung) [#​58047](https://redirect.github.com/nodejs/node/pull/58047) - \[[`103034b051`](https://redirect.github.com/nodejs/node/commit/103034b051)] - **test**: prevent extraneous HOSTNAME substitution in test-runner-output (René) [#​58076](https://redirect.github.com/nodejs/node/pull/58076) - \[[`3e58f81a38`](https://redirect.github.com/nodejs/node/commit/3e58f81a38)] - **test**: update WPT for WebCryptoAPI to [`b48efd6`](https://redirect.github.com/nodejs/node/commit/b48efd681e) (Node.js GitHub Bot) [#​58044](https://redirect.github.com/nodejs/node/pull/58044) - \[[`2f4e4164a3`](https://redirect.github.com/nodejs/node/commit/2f4e4164a3)] - **test**: add missing newlines to repl .exit writes (Dario Piotrowicz) [#​58041](https://redirect.github.com/nodejs/node/pull/58041) - \[[`b40769292e`](https://redirect.github.com/nodejs/node/commit/b40769292e)] - **test**: add fast api tests for getLibuvNow() (Yagiz Nizipli) [#​58022](https://redirect.github.com/nodejs/node/pull/58022) - \[[`cbd5768d47`](https://redirect.github.com/nodejs/node/commit/cbd5768d47)] - **test**: add ALS test using http agent keep alive (Gerhard Stöbich) [#​58017](https://redirect.github.com/nodejs/node/pull/58017) - \[[`9e31ab502a`](https://redirect.github.com/nodejs/node/commit/9e31ab502a)] - **test**: deflake test-http2-options-max-headers-block-length (Luigi Pinca) [#​57959](https://redirect.github.com/nodejs/node/pull/57959) - \[[`13f8f9cc12`](https://redirect.github.com/nodejs/node/commit/13f8f9cc12)] - **test**: rename to getCallSites (Wuli Zuo) [#​57948](https://redirect.github.com/nodejs/node/pull/57948) - \[[`92dce6ed6b`](https://redirect.github.com/nodejs/node/commit/92dce6ed6b)] - **test**: force GC in test-file-write-stream4 (Luigi Pinca) [#​57930](https://redirect.github.com/nodejs/node/pull/57930) - \[[`aa755d3acf`](https://redirect.github.com/nodejs/node/commit/aa755d3acf)] - **test**: enable skipped colorize test (Shima Ryuhei) [#​57887](https://redirect.github.com/nodejs/node/pull/57887) - \[[`331f44c78c`](https://redirect.github.com/nodejs/node/commit/331f44c78c)] - **test**: update WPT for WebCryptoAPI to [`164426a`](https://redirect.github.com/nodejs/node/commit/164426ace2) (Node.js GitHub Bot) [#​57854](https://redirect.github.com/nodejs/node/pull/57854) - \[[`4aaa8438b4`](https://redirect.github.com/nodejs/node/commit/4aaa8438b4)] - **test**: add test for frame count being 0.5 (Jake Yuesong Li) [#​57732](https://redirect.github.com/nodejs/node/pull/57732) - \[[`fb51d3a0c5`](https://redirect.github.com/nodejs/node/commit/fb51d3a0c5)] - **test**: fix the decimal fractions explaination (Jake Yuesong Li) [#​57732](https://redirect.github.com/nodejs/node/pull/57732) - \[[`c6a45a9087`](https://redirect.github.com/nodejs/node/commit/c6a45a9087)] - ***Revert*** "**test**: add tests for REPL custom evals" (Tobias Nießen) [#​57793](https://redirect.github.com/nodejs/node/pull/57793) - \[[`f3a4d03963`](https://redirect.github.com/nodejs/node/commit/f3a4d03963)] - **test**: add tests for REPL custom evals (Dario Piotrowicz) [#​57691](https://redirect.github.com/nodejs/node/pull/57691) - \[[`a3be0df337`](https://redirect.github.com/nodejs/node/commit/a3be0df337)] - **test**: update expected error message for macOS (Antoine du Hamel) [#​57742](https://redirect.github.com/nodejs/node/pull/57742) - \[[`a7e73a0a74`](https://redirect.github.com/nodejs/node/commit/a7e73a0a74)] - **test**: fix dangling promise in test_runner no isolation test setup (Jacob Smith) [#​57595](https://redirect.github.com/nodejs/node/pull/57595) - \[[`edb7dd1ec7`](https://redirect.github.com/nodejs/node/commit/edb7dd1ec7)] - **test_runner**: match minimum file column to 'all files' (Shima Ryuhei) [#​57848](https://redirect.github.com/nodejs/node/pull/57848) - \[[`c56f495e83`](https://redirect.github.com/nodejs/node/commit/c56f495e83)] - **tools**: extract target abseil to abseil.gyp (Chengzhong Wu) [#​57289](https://redirect.github.com/nodejs/node/pull/57289) - \[[`1b37161a27`](https://redirect.github.com/nodejs/node/commit/1b37161a27)] - **tools**: ignore V8 tests in CodeQL scans (Rich Trott) [#​58081](https://redirect.github.com/nodejs/node/pull/58081) - \[[`23386308dd`](https://redirect.github.com/nodejs/node/commit/23386308dd)] - **tools**: enable CodeQL config file (Rich Trott) [#​58036](https://redirect.github.com/nodejs/node/pull/58036) - \[[`9c21abc169`](https://redirect.github.com/nodejs/node/commit/9c21abc169)] - **tools**: ignore test directory in CodeQL scans (Rich Trott) [#​57978](https://redirect.github.com/nodejs/node/pull/57978) - \[[`f210a1530d`](https://redirect.github.com/nodejs/node/commit/f210a1530d)] - **tools**: add semver-major release support to release-lint (Antoine du Hamel) [#​57892](https://redirect.github.com/nodejs/node/pull/57892) - \[[`234c417e98`](https://redirect.github.com/nodejs/node/commit/234c417e98)] - **tools**: add codeql nightly (Rafael Gonzaga) [#​57788](https://redirect.github.com/nodejs/node/pull/57788) - \[[`938f1532da`](https://redirect.github.com/nodejs/node/commit/938f1532da)] - **tools**: edit create-release-proposal workflow to handle pr body length (Elves Vieira) [#​57841](https://redirect.github.com/nodejs/node/pull/57841) - \[[`b362339f72`](https://redirect.github.com/nodejs/node/commit/b362339f72)] - **tools**: add zstd updater to workflow (KASEYA\yahor.siarheyenka) [#​57831](https://redirect.github.com/nodejs/node/pull/57831) - \[[`61180db9c0`](https://redirect.github.com/nodejs/node/commit/61180db9c0)] - **tools**: remove unused `osx-pkg-postinstall.sh` (Antoine du Hamel) [#​57667](https://redirect.github.com/nodejs/node/pull/57667) - \[[`3ae04c94eb`](https://redirect.github.com/nodejs/node/commit/3ae04c94eb)] - **tools**: do not use temp files when merging PRs (Antoine du Hamel) [#​57790](https://redirect.github.com/nodejs/node/pull/57790) - \[[`d623c2c2b4`](https://redirect.github.com/nodejs/node/commit/d623c2c2b4)] - **tools**: update gyp-next to 0.20.0 (Node.js GitHub Bot) [#​57683](https://redirect.github.com/nodejs/node/pull/57683) - \[[`43ea4c532a`](https://redirect.github.com/nodejs/node/commit/43ea4c532a)] - **tools**: bump the eslint group in /tools/eslint with 4 updates (dependabot\[bot]) [#​57721](https://redirect.github.com/nodejs/node/pull/57721) - \[[`5703147470`](https://redirect.github.com/nodejs/node/commit/5703147470)] - **tools**: enable linter in `test/fixtures/source-map/output` (Antoine du Hamel) [#​57700](https://redirect.github.com/nodejs/node/pull/57700) - \[[`80d58c372d`](https://redirect.github.com/nodejs/node/commit/80d58c372d)] - **tools**: enable linter in `test/fixtures/errors` (Antoine du Hamel) [#​57701](https://redirect.github.com/nodejs/node/pull/57701) - \[[`ef5275b7be`](https://redirect.github.com/nodejs/node/commit/ef5275b7be)] - **tools**: enable linter in `test/fixtures/test-runner/output` (Antoine du Hamel) [#​57698](https://redirect.github.com/nodejs/node/pull/57698) - \[[`631733e41f`](https://redirect.github.com/nodejs/node/commit/631733e41f)] - **tools**: enable linter in `test/fixtures/eval` (Antoine du Hamel) [#​57699](https://redirect.github.com/nodejs/node/pull/57699) - \[[`6d0128695f`](https://redirect.github.com/nodejs/node/commit/6d0128695f)] - **tools**: enable linter on some fixtures file (Antoine du Hamel) [#​57674](https://redirect.github.com/nodejs/node/pull/57674) - \[[`f4d7cbae89`](https://redirect.github.com/nodejs/node/commit/f4d7cbae89)] - **tools**: update ESLint to 9.23 (Antoine du Hamel) [#​57673](https://redirect.github.com/nodejs/node/pull/57673) - \[[`5a39a24cd1`](https://redirect.github.com/nodejs/node/commit/5a39a24cd1)] - **typings**: fix `ModulesBinding` types (Antoine du Hamel) [#​55549](https://redirect.github.com/nodejs/node/pull/55549) - \[[`2df7ce9ebd`](https://redirect.github.com/nodejs/node/commit/2df7ce9ebd)] - **util**: fix parseEnv handling of invalid lines (Augustin Mauroy) [#​57798](https://redirect.github.com/nodejs/node/pull/57798) - \[[`416052a9f2`](https://redirect.github.com/nodejs/node/commit/416052a9f2)] - **util**: fix formatting of objects with built-in Symbol.toPrimitive (Shima Ryuhei) [#​57832](https://redirect.github.com/nodejs/node/pull/57832) - \[[`43490c8797`](https://redirect.github.com/nodejs/node/commit/43490c8797)] - **(SEMVER-MINOR)** **util**: add `types.isFloat16Array()` (Livia Medeiros) [#​57879](https://redirect.github.com/nodejs/node/pull/57879) - \[[`30060e13d3`](https://redirect.github.com/nodejs/node/commit/30060e13d3)] - **util**: preserve `length` of deprecated functions (Livia Medeiros) [#​57806](https://redirect.github.com/nodejs/node/pull/57806) - \[[`9837e08a84`](https://redirect.github.com/nodejs/node/commit/9837e08a84)] - **util**: fix parseEnv incorrectly splitting multiple ‘=‘ in value (HEESEUNG) [#​57421](https://redirect.github.com/nodejs/node/pull/57421) - \[[`af41dd3c07`](https://redirect.github.com/nodejs/node/commit/af41dd3c07)] - **watch**: clarify completion/failure watch mode messages (Dario Piotrowicz) [#​57926](https://redirect.github.com/nodejs/node/pull/57926) - \[[`7229a29b47`](https://redirect.github.com/nodejs/node/commit/7229a29b47)] - **watch**: check parent and child path properly (Jason Zhang) [#​57425](https://redirect.github.com/nodejs/node/pull/57425) - \[[`1b5a7c6dc8`](https://redirect.github.com/nodejs/node/commit/1b5a7c6dc8)] - **win**: fix SIGQUIT on ClangCL (Stefan Stojanovic) [#​57659](https://redirect.github.com/nodejs/node/pull/57659) - \[[`e935c3c6f2`](https://redirect.github.com/nodejs/node/commit/e935c3c6f2)] - **worker**: add ESM version examples to worker docs (fisker Cheung) [#​57645](https://redirect.github.com/nodejs/node/pull/57645) - \[[`dda6ca9172`](https://redirect.github.com/nodejs/node/commit/dda6ca9172)] - **(SEMVER-MINOR)** **worker**: add worker.getHeapStatistics() (Matteo Collina) [#​57888](https://redirect.github.com/nodejs/node/pull/57888) - \[[`f2159f2a44`](https://redirect.github.com/nodejs/node/commit/f2159f2a44)] - **zlib**: fix pointer alignment (jhofstee) [#​57727](https://redirect.github.com/nodejs/node/pull/57727) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
586437efcb |
fix(website): update lottie-web 5.12.2 → 5.13.0 (#35584)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [lottie-web](https://redirect.github.com/airbnb/lottie-web) | dependencies | minor | [`5.12.2` -> `5.13.0`](https://renovatebot.com/diffs/npm/lottie-web/5.12.2/5.13.0) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>airbnb/lottie-web (lottie-web)</summary> ### [`v5.13.0`](https://redirect.github.com/airbnb/lottie-web/blob/HEAD/CHANGELOG.md#V-5130) [Compare Source](https://redirect.github.com/airbnb/lottie-web/compare/v5.12.2...bede03d25d232826e0c9dca1733d542d8a7754fb) - FIX: rollup config updated to prevent lottie-web from running in Server-Side Rendering contexts - FIX: fixed renderGradient() cache invalidation issue so that both start and end points are checked for changes - IMPROVEMENT: avoid recalculating static transform matrices, results in a significant performance improvement - FIX: reloadShapes() no longer has the side effect of creating duplicate styles - FEATURE: Web Worker supports resetSegments - FIX: hidden styles were forcibly set as visible when using searchShapes() - IMPROVEMENT: expressions can access unidimensional values by index - IMPROVEMENT: expression support for thisProperty.name </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
a4e0729620 |
chore(flux): update image kube-prometheus-stack 72.5.2 → 72.5.3 (clustertool) (#35579)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kube-prometheus-stack](https://redirect.github.com/prometheus-operator/kube-prometheus) ([source](https://redirect.github.com/prometheus-community/helm-charts)) | patch | `72.5.2` -> `72.5.3` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>prometheus-community/helm-charts (kube-prometheus-stack)</summary> ### [`v72.5.3`](https://redirect.github.com/prometheus-community/helm-charts/releases/tag/kube-prometheus-stack-72.5.3) [Compare Source](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-72.5.2...kube-prometheus-stack-72.5.3) kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. #### What's Changed - \[kube-prometheus-stack] Fix PDBs default values in order to work with… by [@​sebastiangaiser](https://redirect.github.com/sebastiangaiser) in [https://github.com/prometheus-community/helm-charts/pull/5665](https://redirect.github.com/prometheus-community/helm-charts/pull/5665) **Full Changelog**: https://github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-72.5.2...kube-prometheus-stack-72.5.3 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
4072c91b42 |
fix(website): update astro 5.7.12 → 5.7.14 (#35582)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astro](https://astro.build) ([source](https://redirect.github.com/withastro/astro/tree/HEAD/packages/astro)) | dependencies | patch | [`5.7.12` -> `5.7.14`](https://renovatebot.com/diffs/npm/astro/5.7.12/5.7.14) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>withastro/astro (astro)</summary> ### [`v5.7.14`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5714) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.13...astro@5.7.14) ##### Patch Changes - [#​13773](https://redirect.github.com/withastro/astro/pull/13773) [`3aa5337`](https://redirect.github.com/withastro/astro/commit/3aa5337eaf01dbcc987dee9413c6985514ef7d6b) Thanks [@​sijad](https://redirect.github.com/sijad)! - Ignores lightningcss unsupported pseudo-class warning. - [#​13833](https://redirect.github.com/withastro/astro/pull/13833) [`5a6d2ae`](https://redirect.github.com/withastro/astro/commit/5a6d2aede4b397227be5acecfa9bfefb9a1af0f8) Thanks [@​ascorbic](https://redirect.github.com/ascorbic)! - Fixes an issue where session modules would fail to resolve in Node.js < 20.6 - [#​13383](https://redirect.github.com/withastro/astro/pull/13383) [`f7f712c`](https://redirect.github.com/withastro/astro/commit/f7f712cc29f80c4f8096489d7368c2fda223e097) Thanks [@​Haberkamp](https://redirect.github.com/Haberkamp)! - Stop toolbar settings from overflowing - [#​13794](https://redirect.github.com/withastro/astro/pull/13794) [`85b19d8`](https://redirect.github.com/withastro/astro/commit/85b19d87b6416957c245bd3e239fbf6da2038075) Thanks [@​alexcarpenter](https://redirect.github.com/alexcarpenter)! - Exclude pre tags from `a11y-no-noninteractive-tabindex` audit check. - [#​13373](https://redirect.github.com/withastro/astro/pull/13373) [`50ef568`](https://redirect.github.com/withastro/astro/commit/50ef568413b5fe7add36c089b77f9f180739f43f) Thanks [@​jpwienekus](https://redirect.github.com/jpwienekus)! - Fixes a bug where highlights and tooltips render over the audit list window. - [#​13769](https://redirect.github.com/withastro/astro/pull/13769) [`e9fc456`](https://redirect.github.com/withastro/astro/commit/e9fc456b58511da3ae2f932256217b3db4c42998) Thanks [@​romanstetsyk](https://redirect.github.com/romanstetsyk)! - Expand ActionError codes to include all IANA-registered HTTP error codes. - [#​13668](https://redirect.github.com/withastro/astro/pull/13668) [`866285a`](https://redirect.github.com/withastro/astro/commit/866285a5fb3e4ba9d8ca6aadb129d3a6ed2b0f69) Thanks [@​sapphi-red](https://redirect.github.com/sapphi-red)! - Replaces internal CSS chunking behavior for Astro components' scoped styles to use Vite's `cssScopeTo` feature. The feature is a port of Astro's implementation so this should not change the behavior. ### [`v5.7.13`](https://redirect.github.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#5713) [Compare Source](https://redirect.github.com/withastro/astro/compare/astro@5.7.12...astro@5.7.13) ##### Patch Changes - [#​13761](https://redirect.github.com/withastro/astro/pull/13761) [`a2e8463`](https://redirect.github.com/withastro/astro/commit/a2e84631ad0a8dbc466d1301cc07a031334ffe5b) Thanks [@​jp-knj](https://redirect.github.com/jp-knj)! - Adds new content collections errors - [#​13788](https://redirect.github.com/withastro/astro/pull/13788) [`7d0b7ac`](https://redirect.github.com/withastro/astro/commit/7d0b7acb38d5140939d9660b2cf5718e9a8b2c15) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes a case where an error would not be thrown when using the `<Font />` component from the experimental fonts API without adding fonts in the Astro config - [#​13784](https://redirect.github.com/withastro/astro/pull/13784) [`d7a1889`](https://redirect.github.com/withastro/astro/commit/d7a188988427d1b157d27b789f918c208ece41f7) Thanks [@​florian-lefebvre](https://redirect.github.com/florian-lefebvre)! - Fixes the experimental fonts API to correctly take `config.base`, `config.build.assets` and `config.build.assetsPrefix` into account - [#​13777](https://redirect.github.com/withastro/astro/pull/13777) [`a56b8ea`](https://redirect.github.com/withastro/astro/commit/a56b8eaec486d26cbc61a7c94c152f4ee8cabc7a) Thanks [@​L4Ph](https://redirect.github.com/L4Ph)! - Fixed an issue where looping GIF animation would stop when converted to WebP - [#​13566](https://redirect.github.com/withastro/astro/pull/13566) [`0489d8f`](https://redirect.github.com/withastro/astro/commit/0489d8fe96fb8ee90284277358e38f55c8e0ab1d) Thanks [@​TheOtterlord](https://redirect.github.com/TheOtterlord)! - Fix build errors being ignored when build.concurrency > 1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
f38ac58734 | chore(helm): update image ghcr.io/open-webui/open-webui digest to c754aa4 (#35576) | ||
|
|
cccf854642 | chore(helm): update image docker.io/nginxinc/nginx-unprivileged digest to b9ec998 (#35569) | ||
|
|
6c5e9180c5 | chore(helm): update image ghcr.io/mintplex-labs/anything-llm digest to eb34257 (#35575) | ||
|
|
1089119bda |
chore(helm): update rdesktop (#35577)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | lscr.io/linuxserver/rdesktop | digest | `c016918` -> `341a55f` | | lscr.io/linuxserver/rdesktop | digest | `c1c4831` -> `86b182f` | | lscr.io/linuxserver/rdesktop | digest | `096d247` -> `91b2c24` | | lscr.io/linuxserver/rdesktop | digest | `2bc2d7f` -> `268e4de` | | lscr.io/linuxserver/rdesktop | digest | `fd3f309` -> `bb893a3` | | lscr.io/linuxserver/rdesktop | digest | `63b4607` -> `60fdb48` | | lscr.io/linuxserver/rdesktop | digest | `60338a9` -> `6075141` | | lscr.io/linuxserver/rdesktop | digest | `b6eafb0` -> `eddf45f` | | lscr.io/linuxserver/rdesktop | digest | `66277bf` -> `3644b7d` | | lscr.io/linuxserver/rdesktop | digest | `7600aea` -> `39bff16` | | lscr.io/linuxserver/rdesktop | digest | `6f7cf48` -> `675aa9e` | | lscr.io/linuxserver/rdesktop | digest | `4fe886c` -> `369b8fc` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
5b7af1cf97 |
chore(helm): update image ghcr.io/linuxserver/remmina digest to f2b2eab (#35574)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/remmina](https://redirect.github.com/linuxserver/docker-remmina/packages) ([source](https://redirect.github.com/linuxserver/docker-remmina)) | digest | `02a572d` -> `f2b2eab` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
baa5d3ebd3 |
chore(helm): update image ghcr.io/linuxserver/mstream digest to 53ef613 (#35573)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/mstream](https://redirect.github.com/linuxserver/docker-mstream/packages) ([source](https://redirect.github.com/linuxserver/docker-mstream)) | digest | `47d637b` -> `53ef613` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
7bfae382cc |
chore(helm): update image ghcr.io/linuxserver/deluge digest to 5d682c6 (#35571)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/deluge](https://redirect.github.com/linuxserver/docker-deluge/packages) ([source](https://redirect.github.com/linuxserver/docker-deluge)) | digest | `df6b1ce` -> `5d682c6` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
054e12a0b5 | chore(helm): update image ghcr.io/elfhosted/nzbhydra2 digest to e07f5ca (#35570) | ||
|
|
698a9bfe90 |
chore(helm): update image ghcr.io/linuxserver/filezilla digest to 2decd85 (#35572)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/filezilla](https://redirect.github.com/linuxserver/docker-filezilla/packages) ([source](https://redirect.github.com/linuxserver/docker-filezilla)) | digest | `0f5499b` -> `2decd85` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
df049560c2 |
chore(deps): pin public.ecr.aws/docker/library/alpine docker tag to a8560b3 (#35566)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [public.ecr.aws/docker/library/alpine](https://hub.docker.com/_/alpine) ([source](https://redirect.github.com/alpinelinux/docker-alpine)) | final | pinDigest | -> `a8560b3` | --- > [!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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciJdfQ==--> |
||
|
|
171b04391c | chore(helm): update image docker.io/factoriotools/factorio digest to 926c20c (#35568) | ||
|
|
f6fe968b67 |
chore(helm): update image docker.io/clamav/clamav digest to 854283b (#35567)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/clamav/clamav](https://redirect.github.com/Cisco-Talos/clamav.git) ([source](https://redirect.github.com/Cisco-Talos/clamav)) | digest | `62ed63b` -> `854283b` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
93a08d7179 |
chore(flux): update image jackett 23.3.103 → 23.3.104 (#35578)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jackett](https://truecharts.org/charts/stable/jackett) ([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.103` -> `23.3.104` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3fa024187d |
chore(helm): update image ghcr.io/home-operations/plex 1.41.6.9685 → 1.41.7.9799 (#35562)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/home-operations/plex](https://ghcr.io/home-operations/plex) ([source](https://redirect.github.com/plexinc/pms-docker)) | patch | `37d3664` -> `0c31ee1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e1ecd4e905 |
chore(helm): update image docker.io/automaticrippingmachine/automatic-ripping-machine digest to be93afc (#35549)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/automaticrippingmachine/automatic-ripping-machine](https://redirect.github.com/automatic-ripping-machine/automatic-ripping-machine) | digest | `29f5186` -> `be93afc` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
fb73e7754d |
chore(helm): update image ghcr.io/linuxserver/babybuddy digest to 532145f (#35552)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/babybuddy](https://redirect.github.com/linuxserver/docker-babybuddy/packages) ([source](https://redirect.github.com/linuxserver/docker-babybuddy)) | digest | `bc05ebb` -> `532145f` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
19396a3a0d |
chore(helm): update webtop (#35557)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | lscr.io/linuxserver/webtop | digest | `6fc91b8` -> `e4171a7` | | lscr.io/linuxserver/webtop | digest | `09580b3` -> `9ec4c49` | | lscr.io/linuxserver/webtop | digest | `1c47bdb` -> `a7ad84c` | | lscr.io/linuxserver/webtop | digest | `fe39672` -> `0c25cc8` | | lscr.io/linuxserver/webtop | digest | `409662d` -> `12f9279` | | lscr.io/linuxserver/webtop | digest | `4e45d8a` -> `24bb2f5` | | lscr.io/linuxserver/webtop | digest | `7764964` -> `e7faddf` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
10a51ba021 |
chore(helm): update image ghcr.io/linuxserver/ddclient digest to 8f10448 (#35553)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/ddclient](https://redirect.github.com/linuxserver/docker-ddclient/packages) ([source](https://redirect.github.com/linuxserver/docker-ddclient)) | digest | `864acf3` -> `8f10448` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
bf36d6cc72 |
chore(helm): update image ghcr.io/ylianst/meshcentral 1.1.44 → 1.1.45 (#35563)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/ylianst/meshcentral](https://redirect.github.com/Ylianst/MeshCentral) | patch | `6708e37` -> `4a2c856` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>Ylianst/MeshCentral (ghcr.io/ylianst/meshcentral)</summary> ### [`v1.1.45`](https://redirect.github.com/Ylianst/MeshCentral/releases/tag/1.1.45) [Compare Source](https://redirect.github.com/Ylianst/MeshCentral/compare/1.1.44...1.1.45) - [`199bb7a`](https://redirect.github.com/Ylianst/MeshCentral/commit/199bb7ae) Version 1.1.45 - [`a8ed346`](https://redirect.github.com/Ylianst/MeshCentral/commit/a8ed3464) forgot duo and push notifications for force2factor [#​7045](https://redirect.github.com/Ylianst/MeshCentral/issues/7045) - [`45ec199`](https://redirect.github.com/Ylianst/MeshCentral/commit/45ec1998) fix autoAcceptOnTimeout with oldStyle [#​7036](https://redirect.github.com/Ylianst/MeshCentral/issues/7036) - [`fc32e1c`](https://redirect.github.com/Ylianst/MeshCentral/commit/fc32e1c2) refix placeholder {0}{1} [#​7037](https://redirect.github.com/Ylianst/MeshCentral/issues/7037) - [`4afe0fe`](https://redirect.github.com/Ylianst/MeshCentral/commit/4afe0fe3) fix ~users in active sessions popup [#​7044](https://redirect.github.com/Ylianst/MeshCentral/issues/7044) - [`158107d`](https://redirect.github.com/Ylianst/MeshCentral/commit/158107d6) add sessionrecordings for powershell/user shells [#​7035](https://redirect.github.com/Ylianst/MeshCentral/issues/7035) - [`b97caab`](https://redirect.github.com/Ylianst/MeshCentral/commit/b97caabc) upgrade image-size to 2.0.2 - [`022f85e`](https://redirect.github.com/Ylianst/MeshCentral/commit/022f85ef) fix consent/notify messages with multiple placeholders [#​7037](https://redirect.github.com/Ylianst/MeshCentral/issues/7037) - [`4fc921c`](https://redirect.github.com/Ylianst/MeshCentral/commit/4fc921c1) upgrade mongodb+image-size, fix package installs again, stop docker installing translate packages - [`b64b143`](https://redirect.github.com/Ylianst/MeshCentral/commit/b64b1436) oops forget codecertname includes extra data at the end [#​6999](https://redirect.github.com/Ylianst/MeshCentral/issues/6999) - [`0feaec0`](https://redirect.github.com/Ylianst/MeshCentral/commit/0feaec0d) generate new codesign-cert if cert value changes [#​6999](https://redirect.github.com/Ylianst/MeshCentral/issues/6999) - [`db282b2`](https://redirect.github.com/Ylianst/MeshCentral/commit/db282b22) fix android agentinvite mobile ui [#​7032](https://redirect.github.com/Ylianst/MeshCentral/issues/7032) - [`14b0882`](https://redirect.github.com/Ylianst/MeshCentral/commit/14b0882b) more german translations [#​7023](https://redirect.github.com/Ylianst/MeshCentral/issues/7023) - [`3b0a1bc`](https://redirect.github.com/Ylianst/MeshCentral/commit/3b0a1bc2) few more translations [#​7023](https://redirect.github.com/Ylianst/MeshCentral/issues/7023) - [`5e031aa`](https://redirect.github.com/Ylianst/MeshCentral/commit/5e031aaa) fix attemptCleanCertsSync function for non tls amt - [`f1c1e3b`](https://redirect.github.com/Ylianst/MeshCentral/commit/f1c1e3bf) fix zh-cht/zh-chs wrong way round [#​7026](https://redirect.github.com/Ylianst/MeshCentral/issues/7026) - [`001cdd1`](https://redirect.github.com/Ylianst/MeshCentral/commit/001cdd1a) fix Chinese Simplified/Traditional in web ui for now [#​7026](https://redirect.github.com/Ylianst/MeshCentral/issues/7026) - [`fa7f194`](https://redirect.github.com/Ylianst/MeshCentral/commit/fa7f194e) fix amt notls always using tls, fix tls undefined, amt timeout shortened, commander typo fix - [`d9f2f86`](https://redirect.github.com/Ylianst/MeshCentral/commit/d9f2f869) fix older amt devices with custom amt certificates [#​6565](https://redirect.github.com/Ylianst/MeshCentral/issues/6565) - [`9cfe44a`](https://redirect.github.com/Ylianst/MeshCentral/commit/9cfe44a4) refix [#​7003](https://redirect.github.com/Ylianst/MeshCentral/issues/7003) used wrong variable - [`bfa9dac`](https://redirect.github.com/Ylianst/MeshCentral/commit/bfa9dace) Update SECURITY.md - [`665a78d`](https://redirect.github.com/Ylianst/MeshCentral/commit/665a78d5) tiny translate fix - [`9699e9b`](https://redirect.github.com/Ylianst/MeshCentral/commit/9699e9b4) fix connectivity crashing serverstats [#​7003](https://redirect.github.com/Ylianst/MeshCentral/issues/7003) - [`0ee73bd`](https://redirect.github.com/Ylianst/MeshCentral/commit/0ee73bd9) fix long usernames in list view [#​6997](https://redirect.github.com/Ylianst/MeshCentral/issues/6997) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
d39ce28112 |
chore(helm): update image ghcr.io/linuxserver/digikam digest to f3b9f85 (#35554)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/digikam](https://redirect.github.com/linuxserver/docker-digikam/packages) ([source](https://redirect.github.com/linuxserver/docker-digikam)) | digest | `845221f` -> `f3b9f85` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
bde5916d24 |
chore(helm): update image ghcr.io/elfhosted/readarr-develop digest to 08c1368 (#35551)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/elfhosted/readarr-develop](https://redirect.github.com/Readarr/Readarr) | digest | `7005125` -> `08c1368` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
848684a5c2 |
chore(helm): update image lscr.io/linuxserver/cops digest to 0320f0c (#35555)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [lscr.io/linuxserver/cops](https://redirect.github.com/linuxserver/docker-cops/packages) ([source](https://redirect.github.com/linuxserver/docker-cops)) | digest | `10a43e5` -> `0320f0c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
bbeb4a2c87 |
chore(helm): update image ghcr.io/elfhosted/jackett digest to 349019c (#35550)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | digest | `ff1213f` -> `349019c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
9af3962cbe |
chore(helm): update image adminer digest to d2aed2c (#35548)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | adminer | digest | `44926b6` -> `d2aed2c` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
3c63bb1952 |
fix(website): update sharp 0.34.1 → 0.34.2 (#35565)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [sharp](https://sharp.pixelplumbing.com) ([source](https://redirect.github.com/lovell/sharp), [changelog](https://redirect.github.com/lovell/sharp/blob/main/docs/changelog.md)) | dependencies | patch | [`0.34.1` -> `0.34.2`](https://renovatebot.com/diffs/npm/sharp/0.34.1/0.34.2) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>lovell/sharp (sharp)</summary> ### [`v0.34.2`](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.2) [Compare Source](https://redirect.github.com/lovell/sharp/compare/v0.34.1...v0.34.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
52fcc3f5a9 |
chore(helm): update image docker.io/baserow/baserow 1.33.2 → 1.33.3 (#35561)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/baserow/baserow](https://gitlab.com/baserow/baserow) | patch | `ebf338d` -> `a648ee8` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>baserow/baserow (docker.io/baserow/baserow)</summary> ### [`v1.33.3`](https://gitlab.com/baserow/baserow/blob/HEAD/changelog.md#Released-1333) [Compare Source](https://gitlab.com/baserow/baserow/compare/1.33.2...1.33.3) ##### New features - \[Database] Introduce list all tables endpoints via token auth. [#​1100](https://gitlab.com/baserow/baserow/-/issues/1100) - \[Database] Be able to specify a default value on multiple select field [#​2173](https://gitlab.com/baserow/baserow/-/issues/2173) - \[Database] Support default values for single select field [#​2173](https://gitlab.com/baserow/baserow/-/issues/2173) - \[Database] Make AI field editable [#​3557](https://gitlab.com/baserow/baserow/-/issues/3557) ##### Bug fixes - \[Builder] Fix issue when two columns of a table element have the same value [#​3144](https://gitlab.com/baserow/baserow/-/issues/3144) - \[Builder] Allow blank link row values in create and update row actions. [#​3524](https://gitlab.com/baserow/baserow/-/issues/3524) - \[Builder] Fix form values being reset before all actions are done [#​3530](https://gitlab.com/baserow/baserow/-/issues/3530) - \[Builder] Fix data input not reset after form submition with "Reset after submission" option [#​3583](https://gitlab.com/baserow/baserow/-/issues/3583) - \[Builder] Fix choice element missing default value for single select [#​3602](https://gitlab.com/baserow/baserow/-/issues/3602) - \[Database] Improved primary key detection in PostgreSQL data sync for roles that are not owners of synchronized table [#​3606](https://gitlab.com/baserow/baserow/-/issues/3606) - \[Core] MCP server returns error response [#​3615](https://gitlab.com/baserow/baserow/-/issues/3615) - \[Database] Fix for workspace export with default value on number field [#​3619](https://gitlab.com/baserow/baserow/-/issues/3619) - \[Builder] Formula values are not emptied anymore when an error happens - \[Database] Don't create MCP tools for trashed databases. - \[Builder] Markdown content now follows application theme ##### Refactors - \[Database] Improved group by ManyToMany (link row and multiple select) performance by using CTE. ##### Breaking API changes - \[Database] Returns an HTTP 409 instead of an HTTP 503 when the request fails due to a deadlock. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
50bbf24e8d |
chore(flux): update image kube-prometheus-stack 72.5.1 → 72.5.2 (clustertool) (#35559)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [kube-prometheus-stack](https://redirect.github.com/prometheus-operator/kube-prometheus) ([source](https://redirect.github.com/prometheus-community/helm-charts)) | patch | `72.5.1` -> `72.5.2` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>prometheus-community/helm-charts (kube-prometheus-stack)</summary> ### [`v72.5.2`](https://redirect.github.com/prometheus-community/helm-charts/releases/tag/kube-prometheus-stack-72.5.2) [Compare Source](https://redirect.github.com/prometheus-community/helm-charts/compare/kube-prometheus-stack-72.5.1...kube-prometheus-stack-72.5.2) kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator. #### What's Changed - \[kube-prometheus-stack] Fix indendation of rendered servicemonitor.scrapeLimits for kube-etcd by [@​daecabhir](https://redirect.github.com/daecabhir) in [https://github.com/prometheus-community/helm-charts/pull/5664](https://redirect.github.com/prometheus-community/helm-charts/pull/5664) #### New Contributors - [@​daecabhir](https://redirect.github.com/daecabhir) made their first contribution in [https://github.com/prometheus-community/helm-charts/pull/5664](https://redirect.github.com/prometheus-community/helm-charts/pull/5664) **Full Changelog**: https://github.com/prometheus-community/helm-charts/compare/prometheus-snmp-exporter-9.3.1...kube-prometheus-stack-72.5.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
3205aec80c | chore(container): update public.ecr.aws/docker/library/alpine:3.21.3 docker digest to (#35547) | ||
|
|
421adb55c1 |
chore(flux): update image jackett 23.3.102 → 23.3.103 (#35558)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jackett](https://truecharts.org/charts/stable/jackett) ([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.102` -> `23.3.103` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
af236e935c |
chore(helm): update chart mongodb 15.3.11 → 15.3.12 (#35560)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [mongodb](https://truecharts.org/charts/stable/mongodb) ([source](https://gallery.ecr.aws/bitnami/mongodb)) | patch | `15.3.11` -> `15.3.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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
120adadbc1 |
chore(helm): update image lscr.io/linuxserver/kdenlive digest to f2f177d (#35556)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | lscr.io/linuxserver/kdenlive | digest | `49b4181` -> `f2f177d` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
8bcb453e01 |
chore(helm): update image ghcr.io/mend/renovate-ce 9.10.0 → 10.0.0 (#35511)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/mend/renovate-ce](https://redirect.github.com/mend/renovate-ce-ee) | major | `f27a347` -> `0d6256e` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>mend/renovate-ce-ee (ghcr.io/mend/renovate-ce)</summary> ### [`v10.0.0`](https://redirect.github.com/mend/renovate-ce-ee/releases/tag/10.0.0) [Compare Source](https://redirect.github.com/mend/renovate-ce-ee/compare/9.10.0...10.0.0) #### Application changes - Renovate CLI: Update from `39.264.0` to `40.11.18` - [Docs](https://redirect.github.com/renovatebot/renovate/releases/download/40.11.18/docs.tgz) - [Full change log](https://octochangelog.com/compare?repo=renovatebot%2Frenovate\&from=39.264.0\&to=40.11.18) - Breaking changes: - config: `allowedCommands` filters need to be updated to match against the post-compiled `postUpgradeCommands` in cases where templating was in use. - config: Config Warning issues will be created fresh/new each time if no existing open warning was found, instead of reopening/reusing old warning issues. - autodiscoverFilter: Syntax for `autodiscoverFilter` has been changed to allow for Glob, Regex, and negative matches. datasource/maven: Renovate will now enforce latest version for Maven upgrades - Node v20 is no longer supported, Node v22.13 is the minimum required - feat: update node.js to v22.15.1 - chore: update deps #### Docs and Helm Charts - fix(ingress): support optional tls secretName and dynamic backend port in template by [@​Gabriel-Ladzaretti](https://redirect.github.com/Gabriel-Ladzaretti) in [https://github.com/mend/renovate-ce-ee/pull/706](https://redirect.github.com/mend/renovate-ce-ee/pull/706) - docs: clarify autodiscover filter input by [@​Gabriel-Ladzaretti](https://redirect.github.com/Gabriel-Ladzaretti) in [https://github.com/mend/renovate-ce-ee/pull/711](https://redirect.github.com/mend/renovate-ce-ee/pull/711) - fix(docs): update worker cleanup default value by [@​Gabriel-Ladzaretti](https://redirect.github.com/Gabriel-Ladzaretti) in [https://github.com/mend/renovate-ce-ee/pull/715](https://redirect.github.com/mend/renovate-ce-ee/pull/715) - chore(deps): update update mend renovate docker images to v10 (major) by [@​renovate](https://redirect.github.com/renovate) in [https://github.com/mend/renovate-ce-ee/pull/716](https://redirect.github.com/mend/renovate-ce-ee/pull/716) **Full Changelog**: https://github.com/mend/renovate-ce-ee/compare/9.10.0...10.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWFqb3IiXX0=--> |
||
|
|
27d08ed322 | chore(helm): update image ghcr.io/linuxserver/resilio-sync digest to 0f7d626 (#35540) | ||
|
|
61f22affd2 |
chore(helm): update image ghcr.io/stirling-tools/s-pdf 0.46.1 → 0.46.2 (#35546)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF) | patch | `0297ac1` -> `396ca94` | | [ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF) | patch | `64e4064` -> `df615ff` | | [ghcr.io/stirling-tools/s-pdf](https://redirect.github.com/Stirling-Tools/Stirling-PDF) | patch | `b62a1ce` -> `caa8440` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>Stirling-Tools/Stirling-PDF (ghcr.io/stirling-tools/s-pdf)</summary> ### [`v0.46.2`](https://redirect.github.com/Stirling-Tools/Stirling-PDF/releases/tag/v0.46.2): 0.46.2 Minor updates, legacy homepage removal and security updates [Compare Source](https://redirect.github.com/Stirling-Tools/Stirling-PDF/compare/v0.46.1...v0.46.2) <!-- Release notes generated using configuration in .github/release.yml at main --> This release contains several dependency updates and bug fixes as well as some standout changes - Legacy homepage has been removed due to great feedback and love from the community for the new homepage - Malayalam language added by [@​shad-ct](https://redirect.github.com/shad-ct) - Pro/Enterprise licenses now support floating between machines ##### What's Changed ##### Bug Fixes - Use Thymeleaf `th:src` for `redact.js` to ensure correct resource path resolution by [@​Ludy87](https://redirect.github.com/Ludy87) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3511](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3511) - Fix empty-parameter issue in `updateUserSettings` by using `@RequestBody` map by [@​Ludy87](https://redirect.github.com/Ludy87) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3536](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3536) - Fix TemplateResolver and LibreOfficeListener bugs by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3555](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3555) ##### Enhancements - Improve Type Safety and OpenAPI Schema for PDF API Controllers and Models by [@​Ludy87](https://redirect.github.com/Ludy87) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3470](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3470) ##### Minor Enhancements - added Malayalam language by [@​shad-ct](https://redirect.github.com/shad-ct) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3506](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3506) - 🤖 format everything with pre-commit by <stirlingbot> by [@​stirlingbot](https://redirect.github.com/stirlingbot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3514](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3514) - Standardize Quoted Path Syntax in Thymeleaf `th:href` for Consistent Link Resolution by [@​Ludy87](https://redirect.github.com/Ludy87) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3515](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3515) - Update legal URLs and improve OpenAPI metadata configuration by [@​Ludy87](https://redirect.github.com/Ludy87) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3522](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3522) - Floating keys for pro users by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3535](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3535) - JUnits JUnits JUnits, so many JUnits by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3537](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3537) - Update 3rd Party Licenses by [@​stirlingbot](https://redirect.github.com/stirlingbot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3523](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3523) - Fix test compilation around pipeline processor by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3554](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3554) - Update AGENTS guidelines by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3556](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3556) - Update 3rd Party Licenses by [@​stirlingbot](https://redirect.github.com/stirlingbot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3559](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3559) - remove legacy homepage by [@​reecebrowne](https://redirect.github.com/reecebrowne) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3518](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3518) ##### Docker Updates - Bump docker/build-push-action from 6.16.0 to 6.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3541](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3541) - Bump gradle/actions from 4.3.1 to 4.4.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3544](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3544) ##### Translation Changes - 🌐 Sync Translations + Update README Progress Table by [@​stirlingbot](https://redirect.github.com/stirlingbot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3508](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3508) - Update zh_TW Traditional Chinese locale by [@​Dr-XYZ](https://redirect.github.com/Dr-XYZ) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3524](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3524) - Update messages_es_ES.properties by [@​NeilJared](https://redirect.github.com/NeilJared) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3527](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3527) ##### Other Changes - Fix README enterprise link by [@​noahbaculi](https://redirect.github.com/noahbaculi) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3509](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3509) - updated the languages list by [@​shad-ct](https://redirect.github.com/shad-ct) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3510](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3510) - Bump actions/dependency-review-action from 4.6.0 to 4.7.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3519](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3519) - Bump org.apache.xmlgraphics:batik-all from 1.18 to 1.19 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3520](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3520) - Bump io.micrometer:micrometer-core from 1.14.6 to 1.14.7 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3521](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3521) - 🌐 Sync Translations + Update README Progress Table by [@​stirlingbot](https://redirect.github.com/stirlingbot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3531](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3531) - Bump github/codeql-action from 3.28.17 to 3.28.18 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3542](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3542) - Bump actions/dependency-review-action from 4.7.0 to 4.7.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3543](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3543) - Bump org.springframework:spring-jdbc from 6.2.6 to 6.2.7 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3545](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3545) - Bump org.sonarqube from 6.1.0.5360 to 6.2.0.5505 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3546](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3546) - Bump org.springframework:spring-webmvc from 6.2.6 to 6.2.7 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3547](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3547) - Bump org.springframework.security:spring-security-saml2-service-provider from 6.4.5 to 6.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3549](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3549) - Bump io.micrometer:micrometer-core from 1.14.7 to 1.15.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3550](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3550) - Bump org.gradle.toolchains.foojay-resolver-convention from 0.10.0 to 1.0.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3552](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3552) - Bump org.mockito:mockito-core from 5.11.0 to 5.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3551](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3551) - Add additional unit tests for utils and EE by [@​Frooodle](https://redirect.github.com/Frooodle) in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3557](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3557) ##### New Contributors - [@​shad-ct](https://redirect.github.com/shad-ct) made their first contribution in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3506](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3506) - [@​noahbaculi](https://redirect.github.com/noahbaculi) made their first contribution in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3509](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3509) - [@​Dr-XYZ](https://redirect.github.com/Dr-XYZ) made their first contribution in [https://github.com/Stirling-Tools/Stirling-PDF/pull/3524](https://redirect.github.com/Stirling-Tools/Stirling-PDF/pull/3524) **Full Changelog**: https://github.com/Stirling-Tools/Stirling-PDF/compare/v0.46.1...v0.46.2 </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 these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
00e5c70754 | chore(helm): update image ghcr.io/linuxserver/foldingathome digest to cafce59 (#35539) | ||
|
|
76dc409dfc | chore(helm): update rdesktop (#35542) | ||
|
|
902b3d1561 | chore(helm): update webtop (#35543) | ||
|
|
3a391aa760 |
chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1921 → 0.22.1930 (#35544)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | patch | `b0c8330` -> `ff1213f` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
5dd8b33958 |
chore(helm): update image ghcr.io/manyfold3d/manyfold 0.110.1 → 0.110.2 (#35545)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/manyfold3d/manyfold](https://redirect.github.com/manyfold3d/manyfold) | patch | `2602fb4` -> `2d784c8` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary> ### [`v0.110.2`](https://redirect.github.com/manyfold3d/manyfold/releases/tag/v0.110.2) [Compare Source](https://redirect.github.com/manyfold3d/manyfold/compare/v0.110.1...v0.110.2) Improved search result quality by tweaking which fields are searched by default. #### What's Changed ##### 🐛 Bug Fixes 🐛 - Fix unexpected search fields by making some search fields explicit by [@​Floppy](https://redirect.github.com/Floppy) in [https://github.com/manyfold3d/manyfold/pull/4204](https://redirect.github.com/manyfold3d/manyfold/pull/4204) ##### 🛠️ Other Improvements 🛠️ - Add search options to model tasks by [@​Floppy](https://redirect.github.com/Floppy) in [https://github.com/manyfold3d/manyfold/pull/4205](https://redirect.github.com/manyfold3d/manyfold/pull/4205) **Full Changelog**: https://github.com/manyfold3d/manyfold/compare/v0.110.1...v0.110.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c516b058d1 |
chore(helm): update image public.ecr.aws/bitnami/mongodb digest to 4bc954f (#35541)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/mongodb](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/mongodb)) | digest | `94ddace` -> `4bc954f` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
9478c2236a |
chore(helm): update image docker.io/accetto/ubuntu-vnc-xfce-firefox-g3 digest to 9b94153 (#35536)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/accetto/ubuntu-vnc-xfce-firefox-g3 | digest | `000ddf3` -> `9b94153` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
57298a7665 |
chore(helm): update image ghcr.io/linuxserver/duckdns digest to fd921a9 (#35538)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/duckdns | digest | `aec92fb` -> `fd921a9` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
9fe11add75 |
chore(helm): update image docker.io/dlandon/z80pack digest to 0275cc5 (#35537)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/dlandon/z80pack | digest | `fe3f61e` -> `0275cc5` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
53806dd506 |
chore(helm): update image docker.io/accetto/ubuntu-vnc-xfce-chromium-g3 digest to 109f2d6 (#35535)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/accetto/ubuntu-vnc-xfce-chromium-g3 | digest | `3cdd05b` -> `109f2d6` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
540dee9e8b | chore(helm): update image docker.io/portainer/portainer-ce 2.30.0 → 2.30.1 (#35530) | ||
|
|
42a997e0d6 | chore(helm): update image docker.io/portainer/portainer-ee 2.30.0 → 2.30.1 (#35531) | ||
|
|
dab39acb48 | chore(helm): update image registry.gitlab.com/crafty-controller/crafty-4 4.4.8 → 4.4.9 (#35532) | ||
|
|
5737d9ee64 |
chore(helm): update image docker.io/nocodb/nocodb 0.263.3 → 0.263.4 (#35529)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/nocodb/nocodb | patch | `27a3d68` -> `8b81776` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c9859371d9 |
chore(helm): update webtop (#35525)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | lscr.io/linuxserver/webtop | digest | `bb69d37` -> `291d677` | | lscr.io/linuxserver/webtop | digest | `9feccba` -> `085d522` | | lscr.io/linuxserver/webtop | digest | `d5b1118` -> `6a1f188` | | lscr.io/linuxserver/webtop | digest | `7896334` -> `3d2d4c6` | | lscr.io/linuxserver/webtop | digest | `f429da2` -> `5c0d813` | | lscr.io/linuxserver/webtop | digest | `9d0e67b` -> `830eb3c` | | lscr.io/linuxserver/webtop | digest | `48557ce` -> `8fbf5df` | | lscr.io/linuxserver/webtop | digest | `39ef0ad` -> `0b492b0` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
0ca8959694 |
chore(helm): update image docker.io/sissbruecker/linkding 1.39.1 → 1.40.0 (#35534)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/sissbruecker/linkding](https://redirect.github.com/sissbruecker/linkding) | minor | `f663de3` -> `e498575` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>sissbruecker/linkding (docker.io/sissbruecker/linkding)</summary> ### [`v1.40.0`](https://redirect.github.com/sissbruecker/linkding/blob/HEAD/CHANGELOG.md#v1400-17052025) [Compare Source](https://redirect.github.com/sissbruecker/linkding/compare/v1.39.1...v1.40.0) ##### What's Changed - Add bulk and single bookmark metadata refresh by [@​Teknicallity](https://redirect.github.com/Teknicallity) in [https://github.com/sissbruecker/linkding/pull/999](https://redirect.github.com/sissbruecker/linkding/pull/999) - Prefer local snapshot over web archive link in bookmark list links by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1021](https://redirect.github.com/sissbruecker/linkding/pull/1021) - Push Docker images to GHCR in addition to Docker Hub by [@​caycehouse](https://redirect.github.com/caycehouse) in [https://github.com/sissbruecker/linkding/pull/1024](https://redirect.github.com/sissbruecker/linkding/pull/1024) - Allow auto tagging rules to match URL fragments by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1045](https://redirect.github.com/sissbruecker/linkding/pull/1045) - Linkify plain URLs in notes by [@​sonicdoe](https://redirect.github.com/sonicdoe) in [https://github.com/sissbruecker/linkding/pull/1051](https://redirect.github.com/sissbruecker/linkding/pull/1051) - Add opensearch declaration by [@​jzorn](https://redirect.github.com/jzorn) in [https://github.com/sissbruecker/linkding/pull/1058](https://redirect.github.com/sissbruecker/linkding/pull/1058) - Allow pre-filling tags in new bookmark form by [@​dasrecht](https://redirect.github.com/dasrecht) in [https://github.com/sissbruecker/linkding/pull/1060](https://redirect.github.com/sissbruecker/linkding/pull/1060) - Handle lowercase "true" in environment variables by [@​jose-elias-alvarez](https://redirect.github.com/jose-elias-alvarez) in [https://github.com/sissbruecker/linkding/pull/1020](https://redirect.github.com/sissbruecker/linkding/pull/1020) - Accessibility improvements in page structure by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1014](https://redirect.github.com/sissbruecker/linkding/pull/1014) - Improve announcements after navigation by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1015](https://redirect.github.com/sissbruecker/linkding/pull/1015) - Fix OIDC login link by [@​cite](https://redirect.github.com/cite) in [https://github.com/sissbruecker/linkding/pull/1019](https://redirect.github.com/sissbruecker/linkding/pull/1019) - Fix bookmark asset download endpoint by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1033](https://redirect.github.com/sissbruecker/linkding/pull/1033) - Add docs for auto tagging by [@​sissbruecker](https://redirect.github.com/sissbruecker) in [https://github.com/sissbruecker/linkding/pull/1009](https://redirect.github.com/sissbruecker/linkding/pull/1009) - Fix typo in index.mdx tagline by [@​cenviity](https://redirect.github.com/cenviity) in [https://github.com/sissbruecker/linkding/pull/1052](https://redirect.github.com/sissbruecker/linkding/pull/1052) - Add how-to for using linkding PWA in native Android share sheet by [@​kzshantonu](https://redirect.github.com/kzshantonu) in [https://github.com/sissbruecker/linkding/pull/1055](https://redirect.github.com/sissbruecker/linkding/pull/1055) - Adding linktiles to community projects by [@​haondt](https://redirect.github.com/haondt) in [https://github.com/sissbruecker/linkding/pull/1025](https://redirect.github.com/sissbruecker/linkding/pull/1025) - Bump django from 5.1.5 to 5.1.7 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1007](https://redirect.github.com/sissbruecker/linkding/pull/1007) - Bump django from 5.1.7 to 5.1.8 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1030](https://redirect.github.com/sissbruecker/linkding/pull/1030) - Bump tar-fs in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1028](https://redirect.github.com/sissbruecker/linkding/pull/1028) - Bump prismjs from 1.29.0 to 1.30.0 in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1034](https://redirect.github.com/sissbruecker/linkding/pull/1034) - Bump [@​babel/helpers](https://redirect.github.com/babel/helpers) from 7.26.7 to 7.27.0 in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1035](https://redirect.github.com/sissbruecker/linkding/pull/1035) - Bump vite from 5.4.14 to 5.4.17 in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1036](https://redirect.github.com/sissbruecker/linkding/pull/1036) - Bump esbuild, [@​astrojs/starlight](https://redirect.github.com/astrojs/starlight) and astro in /docs by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1037](https://redirect.github.com/sissbruecker/linkding/pull/1037) - Bump django from 5.1.8 to 5.1.9 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sissbruecker/linkding/pull/1059](https://redirect.github.com/sissbruecker/linkding/pull/1059) ##### New Contributors - [@​cite](https://redirect.github.com/cite) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1019](https://redirect.github.com/sissbruecker/linkding/pull/1019) - [@​jose-elias-alvarez](https://redirect.github.com/jose-elias-alvarez) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1020](https://redirect.github.com/sissbruecker/linkding/pull/1020) - [@​Teknicallity](https://redirect.github.com/Teknicallity) made their first contribution in [https://github.com/sissbruecker/linkding/pull/999](https://redirect.github.com/sissbruecker/linkding/pull/999) - [@​haondt](https://redirect.github.com/haondt) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1025](https://redirect.github.com/sissbruecker/linkding/pull/1025) - [@​caycehouse](https://redirect.github.com/caycehouse) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1024](https://redirect.github.com/sissbruecker/linkding/pull/1024) - [@​cenviity](https://redirect.github.com/cenviity) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1052](https://redirect.github.com/sissbruecker/linkding/pull/1052) - [@​sonicdoe](https://redirect.github.com/sonicdoe) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1051](https://redirect.github.com/sissbruecker/linkding/pull/1051) - [@​jzorn](https://redirect.github.com/jzorn) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1058](https://redirect.github.com/sissbruecker/linkding/pull/1058) - [@​dasrecht](https://redirect.github.com/dasrecht) made their first contribution in [https://github.com/sissbruecker/linkding/pull/1060](https://redirect.github.com/sissbruecker/linkding/pull/1060) **Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.39.1...v1.40.0 *** </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
50e79afb89 |
chore(helm): update image docker.io/b4bz/homer v25.05.1 → v25.05.2 (#35527)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/b4bz/homer](https://hub.docker.com/r/b4bz/homer) ([source](https://redirect.github.com/bastienwirtz/homer)) | patch | `f861e8e` -> `8270c56` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>bastienwirtz/homer (docker.io/b4bz/homer)</summary> ### [`v25.05.2`](https://redirect.github.com/bastienwirtz/homer/releases/tag/v25.05.2) [Compare Source](https://redirect.github.com/bastienwirtz/homer/compare/v25.05.1...v25.05.2) <!-- Release notes generated using configuration in .github/release.yml at v25.05.2 --> #### What's Changed ##### Main changes - feat(smart-cards): handle dynamic loading error by [@​bastienwirtz](https://redirect.github.com/bastienwirtz) in [https://github.com/bastienwirtz/homer/pull/923](https://redirect.github.com/bastienwirtz/homer/pull/923) - docs: configure Pi-Hole v6 API with URL that ends with admin by [@​eoleedi](https://redirect.github.com/eoleedi) in [https://github.com/bastienwirtz/homer/pull/925](https://redirect.github.com/bastienwirtz/homer/pull/925) - Do not mandate the usage of an API key for Pi-hole v6 by [@​tanasegabriel](https://redirect.github.com/tanasegabriel) in [https://github.com/bastienwirtz/homer/pull/927](https://redirect.github.com/bastienwirtz/homer/pull/927) - Do not force lang by [@​juanjosepablos](https://redirect.github.com/juanjosepablos) in [https://github.com/bastienwirtz/homer/pull/932](https://redirect.github.com/bastienwirtz/homer/pull/932) #### New Contributors - [@​eoleedi](https://redirect.github.com/eoleedi) made their first contribution in [https://github.com/bastienwirtz/homer/pull/925](https://redirect.github.com/bastienwirtz/homer/pull/925) - [@​juanjosepablos](https://redirect.github.com/juanjosepablos) made their first contribution in [https://github.com/bastienwirtz/homer/pull/932](https://redirect.github.com/bastienwirtz/homer/pull/932) **Full Changelog**: https://github.com/bastienwirtz/homer/compare/v25.05.1...v25.05.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
00f27829fb |
chore(helm): update image ghcr.io/linuxserver/pwndrop digest to a697635 (#35522)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/pwndrop](https://redirect.github.com/linuxserver/docker-pwndrop/packages) ([source](https://redirect.github.com/linuxserver/docker-pwndrop)) | digest | `283c313` -> `a697635` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
0ce5815068 |
chore(helm): update image docker.io/jeessy/ddns-go v6.9.2 → v6.9.3 (#35528)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/jeessy/ddns-go | patch | `88bf5ce` -> `4b485f6` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
0eb2b2ce5f | chore(helm): update image docker.io/whyour/qinglong digest to 42b7937 (#35519) | ||
|
|
f5b515840e |
chore(helm): update image ghcr.io/linuxserver/piwigo digest to fe4ce03 (#35521)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/piwigo](https://redirect.github.com/linuxserver/docker-piwigo/packages) ([source](https://redirect.github.com/linuxserver/docker-piwigo)) | digest | `0552578` -> `fe4ce03` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
75488fdbf1 |
chore(helm): update image public.ecr.aws/bitnami/wordpress digest to e41473d (#35524)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/wordpress](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/wordpress)) | digest | `2edfd05` -> `e41473d` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
259038cd28 |
chore(helm): update image ghcr.io/linuxserver/grav digest to 3214a86 (#35520)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/grav](https://redirect.github.com/linuxserver/docker-grav/packages) ([source](https://redirect.github.com/linuxserver/docker-grav)) | digest | `1859b2e` -> `3214a86` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
7ee446d571 | chore(helm): update image docker.io/ronivay/xen-orchestra digest to 2b5600a (#35518) | ||
|
|
a58bf1fd16 | chore(helm): update image docker.io/revenz/fileflows digest to c7f94a3 (#35517) | ||
|
|
76bc38c843 |
chore(helm): update image ghcr.io/linuxserver/tvheadend digest to 697866a (#35523)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/tvheadend | digest | `eac9d86` -> `697866a` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
aa09c1173b |
chore(helm): update image docker.io/lmscommunity/lyrionmusicserver digest to 292ca0e (#35515)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/lmscommunity/lyrionmusicserver | digest | `f9606f9` -> `292ca0e` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
4616e2d05b | chore(helm): update image docker.io/octoprint/octoprint digest to 39fc113 (#35516) | ||
|
|
b6628fbc26 |
chore(helm): update image docker.io/jgraph/drawio digest to beb63fb (#35514)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/jgraph/drawio](https://www.drawio.com) ([source](https://redirect.github.com/jgraph/docker-drawio)) | digest | `f09abeb` -> `beb63fb` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
d34bcbfbe2 |
chore(container): update docker.io/renovate/renovate docker tag to v40.18.3 (#35533)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [docker.io/renovate/renovate](https://renovatebot.com) ([source](https://redirect.github.com/renovatebot/renovate)) | final | minor | `40.13.0-full` -> `40.18.3-full` | --- ### Release Notes <details> <summary>renovatebot/renovate (docker.io/renovate/renovate)</summary> ### [`v40.18.3`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.18.3) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/40.18.2...40.18.3) ##### Bug Fixes - **manager/flux:** log resource name for better debugging ([#​35994](https://redirect.github.com/renovatebot/renovate/issues/35994)) ([a84eb22](https://redirect.github.com/renovatebot/renovate/commit/a84eb22242db60525374c77907cafa469f31d303)) ### [`v40.18.2`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.18.2) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/40.18.1...40.18.2) ##### Bug Fixes - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.66.1 (main) ([#​36037](https://redirect.github.com/renovatebot/renovate/issues/36037)) ([5190613](https://redirect.github.com/renovatebot/renovate/commit/5190613df44455335711ec6f2d7495ed399c0834)) ### [`v40.18.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.18.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/40.18.0...40.18.1) ##### Build System - **deps:** update dependency openpgp to v6.1.1 \[security] (main) ([#​36033](https://redirect.github.com/renovatebot/renovate/issues/36033)) ([7b4a15b](https://redirect.github.com/renovatebot/renovate/commit/7b4a15bb6f31d86cbdca488e1581b742249b5b75)) ### [`v40.18.0`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.18.0) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/40.17.1...40.18.0) ##### Features - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.66.0 (main) ([#​36031](https://redirect.github.com/renovatebot/renovate/issues/36031)) ([61b7887](https://redirect.github.com/renovatebot/renovate/commit/61b788741d786370285cbeb04b17fe700208b22d)) ### [`v40.17.1`](https://redirect.github.com/renovatebot/renovate/releases/tag/40.17.1) [Compare Source](https://redirect.github.com/renovatebot/renovate/compare/40.17.0...40.17.1) ##### Build System - **deps:** update dependency semver to v7.7.2 (main) ([#​36028](https://redirect.github.com/renovatebot/renovate/issues/36028)) ([ |
||
|
|
35b562c265 |
chore(helm): update image docker.io/alpine/socat digest to f8ac2c1 (#35513)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/alpine/socat | digest | `a114a8c` -> `f8ac2c1` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
1e1f9ebdff |
chore(helm): update image docker digest to 1e9d444 (#35512)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker | digest | `3a861ec` -> `1e9d444` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
b7514d9b7d |
chore(helm): update image ghcr.io/paperless-ngx/paperless-ngx 2.15.3 → 2.16.1 (#35510)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/paperless-ngx/paperless-ngx](https://redirect.github.com/paperless-ngx/paperless-ngx) | minor | `39b337e` -> `8ee805c` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>paperless-ngx/paperless-ngx (ghcr.io/paperless-ngx/paperless-ngx)</summary> ### [`v2.16.1`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.16.1): Paperless-ngx v2.16.1 [Compare Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.16.0...v2.16.1) #### paperless-ngx 2.16.1 > \[!NOTE] > This 'hotfix' release fixes date filtering in the recently-released v2.16.0 ##### Bug Fixes - Fix: fix created date filtering broken in 2.16.0 [@​shamoon](https://redirect.github.com/shamoon) ([#​9976](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9976)) ##### All App Changes - Fix: fix created date filtering broken in 2.16.0 [@​shamoon](https://redirect.github.com/shamoon) ([#​9976](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9976)) ### [`v2.16.0`](https://redirect.github.com/paperless-ngx/paperless-ngx/releases/tag/v2.16.0): Paperless-ngx v2.16.0 [Compare Source](https://redirect.github.com/paperless-ngx/paperless-ngx/compare/v2.15.3...v2.16.0) #### paperless-ngx 2.16.0 ##### Breaking Changes - \[BREAKING] Change: treat created as date not datetime [@​shamoon](https://redirect.github.com/shamoon) ([#​9793](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9793)) ##### Features / Enhancements - Enhancement: support negative offset in scheduled workflows [@​shamoon](https://redirect.github.com/shamoon) ([#​9746](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9746)) - Enhancement: support heic images [@​shamoon](https://redirect.github.com/shamoon) ([#​9771](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9771)) - Enhancement: use patch instead of put for frontend document changes [@​shamoon](https://redirect.github.com/shamoon) ([#​9744](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9744)) - Chore: replace secretary with GHA [@​shamoon](https://redirect.github.com/shamoon) ([#​9723](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9723)) - Fixhancement: automatically disable email verification if no smtp setup [@​shamoon](https://redirect.github.com/shamoon) ([#​9949](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9949)) - Enhancement: support negative offset in scheduled workflows [@​shamoon](https://redirect.github.com/shamoon) ([#​9746](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9746)) - Fixhancement: better handle removed social apps in profile [@​shamoon](https://redirect.github.com/shamoon) ([#​9876](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9876)) - Enhancement: add barcode frontend config [@​shamoon](https://redirect.github.com/shamoon) ([#​9742](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9742)) - Enhancement: support heic images [@​shamoon](https://redirect.github.com/shamoon) ([#​9771](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9771)) - Enhancement: support allauth disable unknown account emails [@​shamoon](https://redirect.github.com/shamoon) ([#​9743](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9743)) - Fixhancement: tag plus button should add tag to doc [@​shamoon](https://redirect.github.com/shamoon) ([#​9762](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9762)) - Fixhancement: check more permissions for status consumer messages [@​shamoon](https://redirect.github.com/shamoon) ([#​9804](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9804)) ##### Bug Fixes - Fixhancement: tag plus button should add tag to doc [@​shamoon](https://redirect.github.com/shamoon) ([#​9762](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9762)) - Fix: include subpath in drf-spectacular settings if set [@​shamoon](https://redirect.github.com/shamoon) ([#​9738](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9738)) - Fix: handle created change with api version increment, use created only on frontend, deprecate created_date [@​shamoon](https://redirect.github.com/shamoon) ([#​9962](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9962)) - Fix: ignore logo file from sanity checker [@​shamoon](https://redirect.github.com/shamoon) ([#​9946](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9946)) - Fix: correctly handle empty user for old notes api format, fix frontend API version [@​shamoon](https://redirect.github.com/shamoon) ([#​9846](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9846)) - Fix: fix single select in filterable dropdowns when editing [@​shamoon](https://redirect.github.com/shamoon) ([#​9834](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9834)) - Fix: always update classifier task result [@​shamoon](https://redirect.github.com/shamoon) ([#​9817](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9817)) - Fix: fix zoom increase/decrease buttons in FF [@​shamoon](https://redirect.github.com/shamoon) ([#​9761](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9761)) ##### Maintenance - Chore(deps): Bump astral-sh/setup-uv from 5 to 6 in the actions group @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9842](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9842)) - Chore: split ci frontend e2e vs unit tests [@​shamoon](https://redirect.github.com/shamoon) ([#​9851](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9851)) - Chore: auto-generate translation strings [@​shamoon](https://redirect.github.com/shamoon) ([#​9462](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9462)) - Chore: add ymlfmt [@​shamoon](https://redirect.github.com/shamoon) ([#​9745](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9745)) - Chore: replace secretary with GHA [@​shamoon](https://redirect.github.com/shamoon) ([#​9723](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9723)) - Chore: resolve dynamic import warnings from pdfjs, again [@​shamoon](https://redirect.github.com/shamoon) ([#​9924](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9924)) - Fix/Chore: replace file drop package [@​shamoon](https://redirect.github.com/shamoon) ([#​9926](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9926)) ##### Dependencies <details> <summary>14 changes</summary> - Chore(deps): Bump the small-changes group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9921](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9921)) - docker-compose(deps): Bump library/redis from 7 to 8 in /docker/compose @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9879](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9879)) - Chore(deps): Bump astral-sh/setup-uv from 5 to 6 in the actions group @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9842](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9842)) - Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 14 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9848](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9848)) - Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 3 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9849](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9849)) - Chore(deps-dev): Bump @​\<!---->types/node from 22.13.17 to 22.15.3 in /src-ui @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9850](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9850)) - docker(deps): Bump astral-sh/uv from 0.6.14-python3.12-bookworm-slim to 0.6.16-python3.12-bookworm-slim @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9767](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9767)) - docker-compose(deps): bump gotenberg/gotenberg from 8.19 to 8.20 in /docker/compose @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9661](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9661)) - Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 17 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9768](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9768)) - Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 4 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9770](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9770)) - Chore(deps-dev): Bump jest-preset-angular from 14.5.4 to 14.5.5 in /src-ui in the frontend-jest-dependencies group @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9769](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9769)) - Chore(deps): Bump the small-changes group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9764](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9764)) - Chore(deps): Bump the django group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9753](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9753)) - docker(deps): bump astral-sh/uv from 0.6.13-python3.12-bookworm-slim to 0.6.14-python3.12-bookworm-slim @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9656](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9656)) </details> ##### All App Changes <details> <summary>29 changes</summary> - Chore(deps): Bump the small-changes group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9921](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9921)) - Fix: handle created change with api version increment, use created only on frontend, deprecate created_date [@​shamoon](https://redirect.github.com/shamoon) ([#​9962](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9962)) - Fixhancement: automatically disable email verification if no smtp setup [@​shamoon](https://redirect.github.com/shamoon) ([#​9949](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9949)) - Fix: ignore logo file from sanity checker [@​shamoon](https://redirect.github.com/shamoon) ([#​9946](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9946)) - \[BREAKING] Change: treat created as date not datetime [@​shamoon](https://redirect.github.com/shamoon) ([#​9793](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9793)) - Fix/Chore: replace file drop package [@​shamoon](https://redirect.github.com/shamoon) ([#​9926](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9926)) - Chore: resolve dynamic import warnings from pdfjs, again [@​shamoon](https://redirect.github.com/shamoon) ([#​9924](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9924)) - Enhancement: support negative offset in scheduled workflows [@​shamoon](https://redirect.github.com/shamoon) ([#​9746](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9746)) - Fixhancement: better handle removed social apps in profile [@​shamoon](https://redirect.github.com/shamoon) ([#​9876](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9876)) - Enhancement: add barcode frontend config [@​shamoon](https://redirect.github.com/shamoon) ([#​9742](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9742)) - Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 14 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9848](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9848)) - Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 3 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9849](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9849)) - Chore(deps-dev): Bump @​\<!---->types/node from 22.13.17 to 22.15.3 in /src-ui @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9850](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9850)) - Fix: correctly handle empty user for old notes api format, fix frontend API version [@​shamoon](https://redirect.github.com/shamoon) ([#​9846](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9846)) - Fix: fix single select in filterable dropdowns when editing [@​shamoon](https://redirect.github.com/shamoon) ([#​9834](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9834)) - Fix: always update classifier task result [@​shamoon](https://redirect.github.com/shamoon) ([#​9817](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9817)) - Fixhancement: check more permissions for status consumer messages [@​shamoon](https://redirect.github.com/shamoon) ([#​9804](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9804)) - Enhancement: support heic images [@​shamoon](https://redirect.github.com/shamoon) ([#​9771](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9771)) - Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 17 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9768](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9768)) - Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 4 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9770](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9770)) - Chore(deps-dev): Bump jest-preset-angular from 14.5.4 to 14.5.5 in /src-ui in the frontend-jest-dependencies group @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9769](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9769)) - Enhancement: support allauth disable unknown account emails [@​shamoon](https://redirect.github.com/shamoon) ([#​9743](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9743)) - Enhancement: use patch instead of put for frontend document changes [@​shamoon](https://redirect.github.com/shamoon) ([#​9744](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9744)) - Chore(deps): Bump the small-changes group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9764](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9764)) - Chore(deps): Bump the django group across 1 directory with 6 updates @​[dependabot\[bot\]](https://redirect.github.com/apps/dependabot) ([#​9753](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9753)) - Fixhancement: tag plus button should add tag to doc [@​shamoon](https://redirect.github.com/shamoon) ([#​9762](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9762)) - Fix: fix zoom increase/decrease buttons in FF [@​shamoon](https://redirect.github.com/shamoon) ([#​9761](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9761)) - Chore: switch from os.path to pathlib.Path [@​gothicVI](https://redirect.github.com/gothicVI) ([#​9339](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9339)) - Fix: include subpath in drf-spectacular settings if set [@​shamoon](https://redirect.github.com/shamoon) ([#​9738](https://redirect.github.com/paperless-ngx/paperless-ngx/pull/9738)) </details> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
8060ea6443 |
chore(helm): update image ghcr.io/manyfold3d/manyfold 0.110.0 → 0.110.1 (#35508)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/manyfold3d/manyfold](https://redirect.github.com/manyfold3d/manyfold) | patch | `b32aa37` -> `2602fb4` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>manyfold3d/manyfold (ghcr.io/manyfold3d/manyfold)</summary> ### [`v0.110.1`](https://redirect.github.com/manyfold3d/manyfold/releases/tag/v0.110.1) [Compare Source](https://redirect.github.com/manyfold3d/manyfold/compare/v0.110.0...v0.110.1) Bugfix for ZIP file generation. #### What's Changed ##### 🐛 Bug Fixes 🐛 - Fix incorrect zip file creation by [@​Floppy](https://redirect.github.com/Floppy) in [https://github.com/manyfold3d/manyfold/pull/4202](https://redirect.github.com/manyfold3d/manyfold/pull/4202) **Full Changelog**: https://github.com/manyfold3d/manyfold/compare/v0.110.0...v0.110.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
c0262647d4 |
chore(helm): update image ghcr.io/linuxserver/speedtest-tracker 1.5.0 → 1.6.0 (#35509)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/speedtest-tracker](https://redirect.github.com/linuxserver/docker-speedtest-tracker/packages) ([source](https://redirect.github.com/linuxserver/docker-speedtest-tracker)) | minor | `4c78340` -> `6be56a6` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
c36d6f95f0 |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
65a6022667 |
chore(flux): update image blocky 17.0.2 → 17.0.3 (clustertool) (#35507)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [blocky](https://truecharts.org/charts/premium/blocky) ([source](https://0xerr0r.github.io/blocky/)) | patch | `17.0.2` -> `17.0.3` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
e0ed31d270 |
chore(helm): update chart redis 16.0.2 → 16.0.3 (#35487)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [redis](https://truecharts.org/charts/stable/redis) ([source](https://gallery.ecr.aws/bitnami/redis)) | patch | `16.0.2` -> `16.0.3` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> Co-authored-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> |
||
|
|
ba5dfbdb2c | chore(helm): update image ghcr.io/linuxserver/freshrss digest to dae0fcf (#35500) | ||
|
|
1e03a50fdd | chore(helm): update image ghcr.io/n8n-io/n8n 1.93.0 → 1.94.0 (#35505) | ||
|
|
fef701a1cb | chore(helm): update image quay.io/invidious/invidious digest to 9004335 (#35502) | ||
|
|
e5f7ceb1df |
chore(helm): update image ghcr.io/linuxserver/openvscode-server digest to d55edc4 (#35501)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/openvscode-server](https://redirect.github.com/linuxserver/docker-openvscode-server/packages) ([source](https://redirect.github.com/linuxserver/docker-openvscode-server)) | digest | `f1d5968` -> `d55edc4` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
b7a1b33644 | chore(flux): update image kube-prometheus-stack 72.5.0 → 72.5.1 (clustertool) (#35504) | ||
|
|
73cd880319 |
chore(flux): update image jackett 23.3.101 → 23.3.102 (#35503)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [jackett](https://truecharts.org/charts/stable/jackett) ([source](https://ghcr.io/elfhosted/jackett)) | patch | `23.3.101` -> `23.3.102` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
d04b41634c | chore(helm): update jupyter 2025-05-12 → 2025-05-19 (patch) (#35498) | ||
|
|
53c58bf150 | chore(helm): update image ghcr.io/manyfold3d/manyfold 0.109.2 → 0.110.0 (#35499) | ||
|
|
21ececf1f8 |
chore(helm): update image ghcr.io/linuxserver/healthchecks 3.10.20250512 → 3.10.20250519 (#35497)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/linuxserver/healthchecks](https://redirect.github.com/linuxserver/docker-healthchecks/packages) ([source](https://redirect.github.com/linuxserver/docker-healthchecks)) | patch | `c322981` -> `e96c977` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
412bf12d09 |
chore(helm): update image ghcr.io/elfhosted/jackett 0.22.1917 → 0.22.1921 (#35496)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/jackett | patch | `60f74aa` -> `b0c8330` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
9a58ff92bb | chore(helm): update rdesktop (#35495) | ||
|
|
b4412e2849 |
chore(helm): update image public.ecr.aws/bitnami/matomo digest to 31068f1 (#35494)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/matomo](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/matomo)) | digest | `e51991f` -> `31068f1` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
8cf3fefc9b | chore(helm): update image ghcr.io/linuxserver/firefox 138.0.3 → 138.0.4 (#35491) | ||
|
|
958d5f5bf1 | chore(helm): update image ghcr.io/rickdb/plexanisync 1.4.2 → 1.4.3 (#35493) | ||
|
|
bfd8db9810 |
chore(helm): update image ghcr.io/nwithan8/tauticord 5.13.0 → 5.13.1 (#35492)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/nwithan8/tauticord | patch | `9155e95` -> `15d9de9` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
2df6b72ed2 |
chore(helm): update image ghcr.io/elfhosted/emby 4.9.0.57 → 4.9.0.59 (#35490)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/elfhosted/emby | patch | `55e18a5` -> `d8bc1c9` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |
||
|
|
f508ce7812 |
chore(helm): update image ghcr.io/sbondco/watcharr v2.0.2 → v2.1.0 (#35488)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/sbondco/watcharr](https://redirect.github.com/sbondCo/Watcharr) | minor | `1e82b2c` -> `09f4dbc` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>sbondCo/Watcharr (ghcr.io/sbondco/watcharr)</summary> ### [`v2.1.0`](https://redirect.github.com/sbondCo/Watcharr/releases/tag/v2.1.0) [Compare Source](https://redirect.github.com/sbondCo/Watcharr/compare/v2.0.2...v2.1.0) #### New - About modal (accessible via face menu) by [@​Clusters](https://redirect.github.com/Clusters) in [https://github.com/sbondCo/Watcharr/pull/811](https://redirect.github.com/sbondCo/Watcharr/pull/811) - System app theme (automatically swaps between light/dark themes depending on system config) by [@​antoniosarro](https://redirect.github.com/antoniosarro) in [https://github.com/sbondCo/Watcharr/pull/822](https://redirect.github.com/sbondCo/Watcharr/pull/822) - Search shortcut (`Ctrl+S`) by [@​IRHM](https://redirect.github.com/IRHM) in [https://github.com/sbondCo/Watcharr/pull/886](https://redirect.github.com/sbondCo/Watcharr/pull/886) #### Fixed - Improve imdb import accuracy by [@​jigglycrumb](https://redirect.github.com/jigglycrumb) in [https://github.com/sbondCo/Watcharr/pull/880](https://redirect.github.com/sbondCo/Watcharr/pull/880) - Support for importing ryot 8 files by [@​IvanBeke](https://redirect.github.com/IvanBeke) in [https://github.com/sbondCo/Watcharr/pull/862](https://redirect.github.com/sbondCo/Watcharr/pull/862) - Search: add missing keys that search handler should ignore by [@​IRHM](https://redirect.github.com/IRHM) in [https://github.com/sbondCo/Watcharr/pull/886](https://redirect.github.com/sbondCo/Watcharr/pull/886) #### Maintenance - server: bump github.com/gin-contrib/cors from 1.7.3 to 1.7.5 in /server by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/864](https://redirect.github.com/sbondCo/Watcharr/pull/864) - server: bump golang.org/x/crypto from 0.32.0 to 0.37.0 in /server by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/863](https://redirect.github.com/sbondCo/Watcharr/pull/863) - server: bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 in /server by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/846](https://redirect.github.com/sbondCo/Watcharr/pull/846) - server: bump github.com/go-co-op/gocron/v2 from 2.14.2 to 2.16.1 in /server by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/842](https://redirect.github.com/sbondCo/Watcharr/pull/842) - ui: bump [@​sveltejs/kit](https://redirect.github.com/sveltejs/kit) from 2.16.0 to 2.20.6 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/875](https://redirect.github.com/sbondCo/Watcharr/pull/875) - ui: bump vite from 6.0.7 to 6.2.6 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/873](https://redirect.github.com/sbondCo/Watcharr/pull/873) - ui: bump axios from 1.7.9 to 1.8.4 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/855](https://redirect.github.com/sbondCo/Watcharr/pull/855) - ui: bump prettier-plugin-svelte from 3.3.2 to 3.3.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/773](https://redirect.github.com/sbondCo/Watcharr/pull/773) - ui: bump [@​typescript-eslint/eslint-plugin](https://redirect.github.com/typescript-eslint/eslint-plugin) from 8.19.0 to 8.30.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/874](https://redirect.github.com/sbondCo/Watcharr/pull/874) - ui: bump sass from 1.83.0 to 1.86.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/867](https://redirect.github.com/sbondCo/Watcharr/pull/867) - ui: bump eslint-config-prettier from 9.1.0 to 10.1.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/872](https://redirect.github.com/sbondCo/Watcharr/pull/872) - ui: bump typescript from 5.7.2 to 5.8.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/sbondCo/Watcharr/pull/865](https://redirect.github.com/sbondCo/Watcharr/pull/865) #### Documentation - doc: Add text-file, trakt, watcharr pages for importing. by [@​IRHM](https://redirect.github.com/IRHM) in [https://github.com/sbondCo/Watcharr/pull/883](https://redirect.github.com/sbondCo/Watcharr/pull/883) #### Credits Many thanks to everyone who has worked on this release! - [@​Clusters](https://redirect.github.com/Clusters) made their first contribution in [https://github.com/sbondCo/Watcharr/pull/811](https://redirect.github.com/sbondCo/Watcharr/pull/811) - [@​jigglycrumb](https://redirect.github.com/jigglycrumb) made their first contribution in [https://github.com/sbondCo/Watcharr/pull/880](https://redirect.github.com/sbondCo/Watcharr/pull/880) - [@​IvanBeke](https://redirect.github.com/IvanBeke) made their first contribution in [https://github.com/sbondCo/Watcharr/pull/862](https://redirect.github.com/sbondCo/Watcharr/pull/862) #### The Future v3.0 has been in-progress for a while now. A rework of how list data is handled is coming soon. Nothing but better performance should be noticed by you (as usual, there will be zero breaking changes so don't worry about migrations). When v3.0 is released, we will get back to more regular feature releases. #### 🆘 Getting Help If you need help, encounter an issue or find a bug please [create an issue](https://redirect.github.com/sbondCo/Watcharr/issues/new/choose) or [join our space on Matrix](https://matrix.to/#/#watcharr:matrix.org) for support. Always happy to help! **Package**: https://github.com/orgs/sbondCo/packages/container/watcharr/418145464?tag=v2.1.0 or on [docker hub](https://hub.docker.com/layers/sbondco/watcharr/v2.1.0/images/sha256-09f4dbc21aa67b689516357fb51718470dc2c0985bcc272c34d5cd94c5ef9cc7). **Full Changelog**: https://github.com/sbondCo/Watcharr/compare/v2.0.2...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=--> |
||
|
|
aad6b79107 |
chore(helm): update chart memcached 14.5.11 → 14.5.12 (#35486)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [memcached](https://truecharts.org/charts/stable/memcached) ([source](https://gallery.ecr.aws/bitnami/memcached)) | patch | `14.5.11` -> `14.5.12` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInJlbm92YXRlL2hlbG0iLCJ0eXBlL3BhdGNoIl19--> |
||
|
|
9013decfa7 |
chore(helm): update image ghcr.io/linuxserver/lazylibrarian digest to eaf55ed (#35484)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | ghcr.io/linuxserver/lazylibrarian | digest | `87fc9e2` -> `eaf55ed` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19--> |
||
|
|
adf70eb1f4 |
Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org> |
||
|
|
af3ae984c0 |
chore(flux): update image blocky 17.0.1 → 17.0.2 (clustertool) (#35485)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [blocky](https://truecharts.org/charts/premium/blocky) ([source](https://0xerr0r.github.io/blocky/)) | patch | `17.0.1` -> `17.0.2` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=--> |