From 1ac45c06170449821f7159e347200c66471f594e Mon Sep 17 00:00:00 2001 From: Greg Messner Date: Fri, 13 Jul 2018 11:15:43 -0700 Subject: [PATCH] Added notice of pending removal of GitLab API v3 support. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b56bbec0..9e278507 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,10 @@ you can still use GitLab4J-API by creating your GitLabApi instance as follows: GitLabApi gitLabApi = new GitLabApi(ApiVersion.V3, "http://your.gitlab.server.com", "YOUR_PRIVATE_TOKEN"); ``` +**NOTICE**: +As of GitLab 11.0 support for the GitLab API v3 has been removed (see https://about.gitlab.com/2018/06/01/api-v3-removal-impending/). Support for GitLab API v3 will be removed from this library in January 2019. If you are utilizing the v3 support, please update your code before January 2019. + + --- ## Results Paging GitLab4J-API provides an easy to use paging mechanism to page through lists of results from the GitLab API. -- GitLab