docker-composer 4.0.3 → 4.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 +3 -2
- package/ReleaseNotes.md +4 -0
- package/package.json +5 -4
- package/schema.json +1 -0
package/README.md
CHANGED
|
@@ -14,8 +14,9 @@ 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 4.0
|
|
18
|
-
-
|
|
17
|
+
## Version 4.1.0 (23.02.2022)
|
|
18
|
+
- Extending networking schema with name property. (Thanks @shoxxdj)
|
|
19
|
+
- Dependency updates
|
|
19
20
|
|
|
20
21
|
You can find all Release Notes [HERE](https://github.com/tudvari/docker-composer/blob/master/ReleaseNotes.md).
|
|
21
22
|
|
package/ReleaseNotes.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docker-composer",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "NodeJS module for generating docker-compose.yml from a json document.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -37,14 +37,15 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"ansi-regex": "^6.0.1",
|
|
39
39
|
"atob": ">=2.1.2",
|
|
40
|
-
"copy-props": "^
|
|
41
|
-
"eslint": "8.
|
|
40
|
+
"copy-props": "^3.0.1",
|
|
41
|
+
"eslint": "8.9.0",
|
|
42
|
+
"glob-parent": "6.0.2",
|
|
42
43
|
"gulp": "^4.0.2",
|
|
43
44
|
"gulp-cli": "^2.3.0",
|
|
44
45
|
"js-yaml": "^4.0.0",
|
|
45
46
|
"json-schema-to-typescript": "^10.1.4",
|
|
46
47
|
"mixin-deep": ">=2.0.1",
|
|
47
|
-
"mocha": "9.1
|
|
48
|
+
"mocha": "9.2.1",
|
|
48
49
|
"nyc": "^15.1.0",
|
|
49
50
|
"set-value": "^4.0.1",
|
|
50
51
|
"should": "13.2.3"
|