From 8a0af349b54016fe41428ba40eff1ce48f237661 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Mar 2023 20:05:17 +0000 Subject: [PATCH] Changelog for Release server-2023-03-01 (#8949) * Update Changelog * Update CHANGELOG.md * link to changelog in warning --------- Co-authored-by: release[bot] <actions@users.noreply.github.com> Co-authored-by: chris48s <chris48s@users.noreply.github.com> Co-authored-by: chris48s <git@chris-shaw.dev> --- CHANGELOG.md | 11 +++++++++++ server.js | 3 +++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95d2ea0ad5..afcefdf668 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ Note: this changelog is for the shields.io server. The changelog for the badge-m --- +## server-2023-03-01 + +**Deprecation:** For users who need to maintain a Github Token pool, storage has been provided via the `RedisTokenPersistence` and `REDIS_URL` settings. As of this release, the `RedisTokenPersistence` backend is now deprecated and will be removed in a future release. If you are using this feature, you will need to migrate to using the `SQLTokenPersistence` backend for storage and provide a postgres connection string via the `POSTGRES_URL` setting. [#8922](https://github.com/badges/shields/issues/8922) + +- fix: for crates.io versions, use max_stable_version if it exists [#8687](https://github.com/badges/shields/issues/8687) +- don't autofocus search [#8927](https://github.com/badges/shields/issues/8927) +- Add [Vcpkg] version service [#8923](https://github.com/badges/shields/issues/8923) +- fix: Set uid/gid in docker image to 0 [#8908](https://github.com/badges/shields/issues/8908) +- expose port 443 in Dockerfile [#8889](https://github.com/badges/shields/issues/8889) +- Dependency updates + ## server-2023-02-01 - replace [twitter] badge with static fallback [#8842](https://github.com/badges/shields/issues/8842) diff --git a/server.js b/server.js index 98103383f1..cc7b3684d0 100644 --- a/server.js +++ b/server.js @@ -46,6 +46,9 @@ if (config.private.redis_url != null) { console.warn( 'RedisTokenPersistence is deprecated for token pooling and will be removed in a future release. Migrate to SqlTokenPersistence' ) + console.warn( + 'See https://github.com/badges/shields/blob/master/CHANGELOG.md#server-2023-03-01 for more info' + ) } const legacySecretsPath = path.join( -- GitLab