Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #891 from johnflavin/service-name
Browse files Browse the repository at this point in the history
Service name can be null
  • Loading branch information
davidxia committed Sep 14, 2017
2 parents e2a60b9 + b131b54 commit 002664b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 8.9.1

Not yet released.

- Support creating a service without specifying a name ([891][] Allow `ServiceSpec.name` to be nullable)

[891]: https://github.com/spotify/docker-client/pull/891

## 8.8.5

Released August 14, 2017
Expand All @@ -17,7 +25,7 @@ Released August 8, 2017

- [The "shaded" artifact for docker-client](README.md#a-note-on-shading)
additionally relocates `com.google.guava:guava` classes, to try to
help avoid conflicts for users that depend on incompatible versions
help avoid conflicts for users that depend on incompatible versions
of Guava. ([850][])
- Upgrade Google Guava to 20.0 ([792][])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
@JsonAutoDetect(fieldVisibility = ANY, getterVisibility = NONE, setterVisibility = NONE)
public abstract class ServiceSpec {

@Nullable
@JsonProperty("Name")
public abstract String name();

Expand Down

0 comments on commit 002664b

Please sign in to comment.