docker-composer 5.0.2 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/ReleaseNotes.md +5 -0
- package/eslint.config.mjs +9 -0
- package/package.json +5 -5
- package/schema.json +5 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Generate Docker Compose descriptor from a JSON document.
|
|
4
4
|
|
|
5
|
-
](https://github.com/tudvari/docker-composer/actions/workflows/nodejs.yml)
|
|
6
6
|
[](https://badge.fury.io/js/docker-composer)
|
|
7
7
|
[](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
|
|
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
|
|
package/ReleaseNotes.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docker-composer",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Library for generating docker-compose.yml from JSON.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
"jsonschema": "^1.4.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"eslint": "^
|
|
39
|
-
"
|
|
38
|
+
"@eslint/js": "^9.0.0",
|
|
39
|
+
"globals": "^15.0.0",
|
|
40
40
|
"js-yaml": "^4.0.0",
|
|
41
|
-
"json-schema-to-typescript": "^
|
|
42
|
-
"mocha": "10.
|
|
41
|
+
"json-schema-to-typescript": "^14.0.0",
|
|
42
|
+
"mocha": "10.4.0",
|
|
43
43
|
"nyc": "^15.1.0",
|
|
44
44
|
"should": "13.2.3"
|
|
45
45
|
},
|
package/schema.json
CHANGED
|
@@ -290,12 +290,16 @@
|
|
|
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
|
}
|