@@ -11,7 +11,7 @@ To utilize the GitLab API for Java in your project, simply add the following dep
1111``` java
1212dependencies {
1313 ...
14- compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.3 '
14+ compile group: ' org.gitlab4j' , name: ' gitlab4j-api' , version: ' 4.8.4 '
1515}
1616```
1717
@@ -20,7 +20,7 @@ dependencies {
2020<dependency >
2121 <groupId >org.gitlab4j</groupId >
2222 <artifactId >gitlab4j-api</artifactId >
23- <version >4.8.3 </version >
23+ <version >4.8.4 </version >
2424</dependency >
2525```
2626
@@ -146,6 +146,7 @@ The API has been broken up into sub APIs classes to make it easier to learn and
146146  ;  ; [ MilestonesApi] ( #milestonesapi ) <br />
147147  ;  ; [ NamespaceApi] ( #namespaceapi ) <br />
148148  ;  ; [ NotesApi] ( #notesapi ) <br />
149+   ;  ; [ NotificationSettingsApi] ( #notificationsettingsapi ) <br />
149150  ;  ; [ PipelineApi] ( #pipelineapi ) <br />
150151  ;  ; [ ProjectApi] ( #projectapi ) <br />
151152  ;  ; [ RepositoryApi] ( #repositoryapi ) <br />
@@ -227,7 +228,12 @@ List<Namespace> namespaces = gitLabApi.getNamespaceApi().findNamespaces("foobar"
227228#### NotesApi
228229``` java
229230// Get a list of the issues's notes for project ID 1234, issue IID 1
230- List<Note > notes = getNotes(1234 , 1 );
231+ List<Note > notes = gitLabApi. getNotesApi(). getNotes(1234 , 1 );
232+ ```
233+ #### NotificationSettingsApi
234+ ``` java
235+ // Get the current global notification settings
236+ NotificationSettings settings = gitLabApi. getNotificationSettingsApi(). getGlobalNotificationSettings();
231237```
232238
233239#### PipelineApi
0 commit comments