docker-composer 5.1.1 → 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 +2 -2
- package/ReleaseNotes.md +4 -1
- package/package.json +3 -3
- package/schema.json +1 -0
package/README.md
CHANGED
|
@@ -14,8 +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.
|
|
18
|
-
-
|
|
17
|
+
## Version 5.2.0 (23.04.2025)
|
|
18
|
+
- Adding attachable keyword support for network configuration
|
|
19
19
|
|
|
20
20
|
You can find all Release Notes [HERE](https://github.com/tudvari/docker-composer/blob/master/ReleaseNotes.md).
|
|
21
21
|
|
package/ReleaseNotes.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## Version 5.2.0 (23.04.2025)
|
|
4
|
+
- Adding attachable keyword support for network configuration
|
|
5
|
+
|
|
3
6
|
## Version 5.1.1 (05.01.2025)
|
|
4
7
|
- Update dependencies
|
|
5
8
|
|
|
@@ -135,4 +138,4 @@
|
|
|
135
138
|
## Version 1.0.0 and Version 1.0.1 (2015.10.14)
|
|
136
139
|
|
|
137
140
|
- First public version released
|
|
138
|
-
- Supported keywords: ports, environment, extra_hosts,
|
|
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.
|
|
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,10 +36,10 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@eslint/js": "^9.0.0",
|
|
39
|
-
"globals": "^
|
|
39
|
+
"globals": "^16.0.0",
|
|
40
40
|
"js-yaml": "^4.0.0",
|
|
41
41
|
"json-schema-to-typescript": "^15.0.0",
|
|
42
|
-
"mocha": "11.0
|
|
42
|
+
"mocha": "11.1.0",
|
|
43
43
|
"nyc": "^17.0.0",
|
|
44
44
|
"should": "13.2.3"
|
|
45
45
|
},
|