From c45a9ca14a3f630dc3476356fe3a9ab7d6b345b7 Mon Sep 17 00:00:00 2001 From: Tim Rizzi Date: Wed, 10 Nov 2021 19:40:09 +0000 Subject: [PATCH] Deprecation notice for Dependency Proxy feature flag --- .../15-0-remove-dependency-proxy-permissions-flag.yml | 11 +++++++++++ doc/update/deprecations.md | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 data/deprecations/15-0-remove-dependency-proxy-permissions-flag.yml diff --git a/data/deprecations/15-0-remove-dependency-proxy-permissions-flag.yml b/data/deprecations/15-0-remove-dependency-proxy-permissions-flag.yml new file mode 100644 index 000000000000..292dc4a14c03 --- /dev/null +++ b/data/deprecations/15-0-remove-dependency-proxy-permissions-flag.yml @@ -0,0 +1,11 @@ +- name: "Remove the `:dependency_proxy_for_private_groups` feature flag" # The name of the feature to be deprecated + announcement_milestone: "14.5" # The milestone when this feature was first announced as deprecated. + announcement_date: "2021-11-22" # The date of the milestone release when this feature was first announced as deprecated. This should almost always be the 22nd of a month (YYYY-MM-22), unless you did an out of band blog post. + removal_milestone: "15.0" # The milestone when this feature is planned to be removed + body: | # Do not modify this line, instead modify the lines below. + We added a feature flag because [GitLab-#11582](https://gitlab.com/gitlab-org/gitlab/-/issues/11582) changed how public groups use the Dependency Proxy. Prior to this change, you could use the Dependency Proxy without authentication. The change requires authentication to use the Dependency Proxy. + + In milestone 15.0, we will remove the feature flag entirely. Moving forward, you must authenticate when using the Dependency Proxy. + stage: package + tiers: Free + issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/276777 diff --git a/doc/update/deprecations.md b/doc/update/deprecations.md index c831a19856f9..edab8ab7a9c5 100644 --- a/doc/update/deprecations.md +++ b/doc/update/deprecations.md @@ -115,6 +115,14 @@ When checking if a runner is `paused`, API users are advised to check the boolea Announced: 2021-11-22 +### Remove the `:dependency_proxy_for_private_groups` feature flag + +We added a feature flag because [GitLab-#11582](https://gitlab.com/gitlab-org/gitlab/-/issues/11582) changed how public groups use the Dependency Proxy. Prior to this change, you could use the Dependency Proxy without authentication. The change requires authentication to use the Dependency Proxy. + +In milestone 15.0, we will remove the feature flag entirely. Moving forward, you must authenticate when using the Dependency Proxy. + +Announced: 2021-11-22 + ### `AuthenticationType` for `[runners.cache.s3]` must be explicitly assigned In GitLab 15.0 and later, to access the AWS S3 cache, you must specify the `AuthenticationType` for [`[runners.cache.s3]`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runnerscaches3-section). The `AuthenticationType` must be `IAM` or `credentials`.