File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Generate Docker Compose descriptor from a JSON document.
4
4
5
- ![ Node.js CI ] ( https://github.com/tudvari/docker-composer/workflows/Node.js%20CI /badge.svg )
5
+ [ ![ Build & Test ] ( https://github.com/tudvari/docker-composer/actions/ workflows/nodejs.yml /badge.svg )] ( https://github.com/tudvari/docker-composer/actions/workflows/nodejs.yml )
6
6
[ ![ npm version] ( https://badge.fury.io/js/docker-composer.svg )] ( https://badge.fury.io/js/docker-composer )
7
7
[ ![ CodeQL] ( https://github.com/tudvari/docker-composer/actions/workflows/codeql-analysis.yml/badge.svg )] ( https://github.com/tudvari/docker-composer/actions/workflows/codeql-analysis.yml )
8
8
## About the package
@@ -14,8 +14,10 @@ Docker Compose Reference is [HERE](https://docs.docker.com/compose/compose-file/
14
14
15
15
### Changes of the Latest Release
16
16
17
- ## Version 5.0.2 (21.10.2023 )
17
+ ## Version 5.1.0 (26.05.2024 )
18
18
- Update dependencies
19
+ - Support aux_addresses keyword in network/ipam config object
20
+ - Support attachable keyword in network config object
19
21
20
22
You can find all Release Notes [ HERE] ( https://github.com/tudvari/docker-composer/blob/master/ReleaseNotes.md ) .
21
23
Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ ## Version 5.1.0 (26.05.2024)
4
+ - Update dependencies
5
+ - Support aux_addresses keyword in network/ipam config object
6
+ - Support attachable keyword in network config object
7
+
3
8
## Version 5.0.2 (21.10.2023)
4
9
- Update dependencies
5
10
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " docker-composer" ,
3
- "version" : " 5.0.2 " ,
3
+ "version" : " 5.1.0 " ,
4
4
"description" : " Library for generating docker-compose.yml from JSON." ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 290
290
"type" : " object" ,
291
291
"properties" : {
292
292
"driver" : {"type" : " string" },
293
+ "attachable" : {"type" : " boolean" },
293
294
"config" : {
294
295
"type" : " array" ,
295
296
"items" : {
296
297
"type" : " object" ,
297
298
"properties" : {
298
- "subnet" : {"type" : " string" , "format" : " subnet_ip_address" }
299
+ "subnet" : {"type" : " string" , "format" : " subnet_ip_address" },
300
+ "aux_addresses" : {
301
+ "type" : " #/definitions/list_or_dict"
302
+ }
299
303
},
300
304
"additionalProperties" : false
301
305
}
You can’t perform that action at this time.
0 commit comments