docker-composer 5.1.0 → 5.2.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 CHANGED
@@ -14,10 +14,8 @@ 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.1.0 (26.05.2024)
18
- - Update dependencies
19
- - Support aux_addresses keyword in network/ipam config object
20
- - Support attachable keyword in network config object
17
+ ## Version 5.2.0 (23.04.2025)
18
+ - Adding attachable keyword support for network configuration
21
19
 
22
20
  You can find all Release Notes [HERE](https://github.com/tudvari/docker-composer/blob/master/ReleaseNotes.md).
23
21
 
package/ReleaseNotes.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release Notes
2
2
 
3
+ ## Version 5.2.0 (23.04.2025)
4
+ - Adding attachable keyword support for network configuration
5
+
6
+ ## Version 5.1.1 (05.01.2025)
7
+ - Update dependencies
8
+
3
9
  ## Version 5.1.0 (26.05.2024)
4
10
  - Update dependencies
5
11
  - Support aux_addresses keyword in network/ipam config object
@@ -132,4 +138,4 @@
132
138
  ## Version 1.0.0 and Version 1.0.1 (2015.10.14)
133
139
 
134
140
  - First public version released
135
- - Supported keywords: ports, environment, extra_hosts, image
141
+ - Supported keywords: ports, environment, extra_hosts, imag e
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docker-composer",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "Library for generating docker-compose.yml from JSON.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,11 +36,11 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@eslint/js": "^9.0.0",
39
- "globals": "^15.0.0",
39
+ "globals": "^16.0.0",
40
40
  "js-yaml": "^4.0.0",
41
- "json-schema-to-typescript": "^14.0.0",
42
- "mocha": "10.4.0",
43
- "nyc": "^15.1.0",
41
+ "json-schema-to-typescript": "^15.0.0",
42
+ "mocha": "11.1.0",
43
+ "nyc": "^17.0.0",
44
44
  "should": "13.2.3"
45
45
  },
46
46
  "nyc": {
package/schema.json CHANGED
@@ -286,6 +286,7 @@
286
286
  "^.+$": {"type": ["string", "number"]}
287
287
  }
288
288
  },
289
+ "attachable": {"type": "boolean"},
289
290
  "ipam": {
290
291
  "type": "object",
291
292
  "properties": {