docker-composer 4.0.1 → 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 +4 -3
- package/ReleaseNotes.md +10 -0
- package/package.json +8 -4
- package/schema.json +1 -0
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Generate Docker Compose descriptor from a JSON document.
|
|
|
4
4
|
|
|
5
5
|

|
|
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
|
|
9
9
|
|
|
10
10
|
The reason behind this package is support the Docker Compose descriptor generation from Javascript. You are able to use all Docker Compose keyword to describe your containers and services.
|
|
@@ -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
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## Version 4.1.0 23.03.2022)
|
|
4
|
+
- Extending networking schema with name property. (Thanks @shoxxdj)
|
|
5
|
+
- dependency updates
|
|
6
|
+
|
|
7
|
+
## Version 4.0.3 (18.01.2022)
|
|
8
|
+
- Maintenance release, dependency updates
|
|
9
|
+
|
|
10
|
+
## Version 4.0.2 (27.09.2021)
|
|
11
|
+
- Maintenance release, dependency updates
|
|
12
|
+
|
|
3
13
|
## Version 4.0.1 (31.03.2021)
|
|
4
14
|
- Maintenance release, dependency updates
|
|
5
15
|
|
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": {
|
|
@@ -35,15 +35,19 @@
|
|
|
35
35
|
"jsonschema": "^1.4.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
+
"ansi-regex": "^6.0.1",
|
|
38
39
|
"atob": ">=2.1.2",
|
|
39
|
-
"
|
|
40
|
+
"copy-props": "^3.0.1",
|
|
41
|
+
"eslint": "8.9.0",
|
|
42
|
+
"glob-parent": "6.0.2",
|
|
40
43
|
"gulp": "^4.0.2",
|
|
41
44
|
"gulp-cli": "^2.3.0",
|
|
42
45
|
"js-yaml": "^4.0.0",
|
|
43
|
-
"json-schema-to-typescript": "^10.1.
|
|
46
|
+
"json-schema-to-typescript": "^10.1.4",
|
|
44
47
|
"mixin-deep": ">=2.0.1",
|
|
45
|
-
"mocha": "
|
|
48
|
+
"mocha": "9.2.1",
|
|
46
49
|
"nyc": "^15.1.0",
|
|
50
|
+
"set-value": "^4.0.1",
|
|
47
51
|
"should": "13.2.3"
|
|
48
52
|
},
|
|
49
53
|
"nyc": {
|