From d92b25ab4189d4fac63153e93c58e07affad7104 Mon Sep 17 00:00:00 2001 From: Nathan Friend Date: Thu, 17 Jun 2021 17:02:53 -0400 Subject: [PATCH 1/2] docs: add note about version compatibility --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 31126641..f74c718a 100644 --- a/README.md +++ b/README.md @@ -99,3 +99,15 @@ distribution` and `MyLibrary CSS distribution` in the GitLab release. `[['dist/**/*.{js,css}', '!**/*.min.*'], {path: 'build/MyLibrary.zip', label: 'MyLibrary'}]`: include all the `js` and `css` files in the `dist` directory and its sub-directories excluding the minified version, plus the `build/MyLibrary.zip` file and label it `MyLibrary` in the GitLab release. + +## Compatibility + +The latest version of this plugin is compatible with all currently-supported versions of GitLab, [which is the current major version and previous two major versions](https://about.gitlab.com/support/statement-of-support.html#version-support). This plugin is not guaranteed to work with unsupported versions of GitLab. + +### Breaking changes in 14.0 + +If you are using GitLab.com or have upgraded your self-hosted GitLab instance to 14.0, please use version `>=6.0.7` of this plugin. + +#### Why? + +In GitLab 14.0, creating a release using the [Tags API](https://docs.gitlab.com/ee/api/tags.html) has been removed (see [#290311](https://gitlab.com/gitlab-org/gitlab/-/issues/290311)). This plugin was updated to use the Release API instead in https://github.com/semantic-release/gitlab/pull/184, which is available in version `6.0.7` and beyond. From 4b1b45ae73b2c14a2451245911cf51a027e47d24 Mon Sep 17 00:00:00 2001 From: Nathan Friend Date: Tue, 22 Jun 2021 15:49:57 -0400 Subject: [PATCH 2/2] docs: add link to Releases API --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f74c718a..7dc60f5a 100644 --- a/README.md +++ b/README.md @@ -110,4 +110,4 @@ If you are using GitLab.com or have upgraded your self-hosted GitLab instance to #### Why? -In GitLab 14.0, creating a release using the [Tags API](https://docs.gitlab.com/ee/api/tags.html) has been removed (see [#290311](https://gitlab.com/gitlab-org/gitlab/-/issues/290311)). This plugin was updated to use the Release API instead in https://github.com/semantic-release/gitlab/pull/184, which is available in version `6.0.7` and beyond. +In GitLab 14.0, creating a release using the [Tags API](https://docs.gitlab.com/ee/api/tags.html) has been removed (see [#290311](https://gitlab.com/gitlab-org/gitlab/-/issues/290311)). This plugin was updated to use the [Releases API](https://docs.gitlab.com/ee/api/releases/#create-a-release) instead in https://github.com/semantic-release/gitlab/pull/184, which is available in version `6.0.7` and beyond.