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 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.3 (18.01.2022)
18
- - Maintenance release, dependency updates
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,9 @@
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
+
3
7
  ## Version 4.0.3 (18.01.2022)
4
8
  - Maintenance release, dependency updates
5
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docker-composer",
3
- "version": "4.0.3",
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": "^2.0.5",
41
- "eslint": "8.7.0",
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.4",
48
+ "mocha": "9.2.1",
48
49
  "nyc": "^15.1.0",
49
50
  "set-value": "^4.0.1",
50
51
  "should": "13.2.3"
package/schema.json CHANGED
@@ -279,6 +279,7 @@
279
279
  "type": ["object", "null"],
280
280
  "properties": {
281
281
  "driver": {"type": "string"},
282
+ "name": {"type":"string"},
282
283
  "driver_opts": {
283
284
  "type": "object",
284
285
  "patternProperties": {