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

Service name can be null #891

Merged
merged 2 commits into from
Sep 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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