gitlab-releaser
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -21,4 +21,5 @@ #!/usr/bin/env node | ||
.parse(process.argv); | ||
const options = program.opts(); | ||
const command = getReleaseCliCommand(gitlabDirectory, fileNames[program.schema], program.schema, program.tag); | ||
const command = getReleaseCliCommand(gitlabDirectory, fileNames[options.schema], options.schema, options.tag); | ||
saveReleaseCliScript(gitlabDirectory, releaseScriptName, command); |
# Changelog | ||
## v1.0.2 (2021-02-27) | ||
### Fixed | ||
- Updated to latest dependencies (#16) | ||
### Miscellaneous | ||
- Update CI pipeline to check for secure JSON schemas and resolved several issues (#14) | ||
- Updated CI pipeline to leverage simplified include syntax in GitLab 13.6 (#11) and GitLab Releaser template (#12) | ||
- Update SBOM type to application (#17) | ||
## v1.0.1 (2020-12-27) | ||
@@ -4,0 +16,0 @@ |
{ | ||
"name": "gitlab-releaser", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Generate arguments for GitLab release-cli command", | ||
@@ -34,9 +34,9 @@ "bin": "./bin/gitlab-releaser.js", | ||
"devDependencies": { | ||
"@aarongoldenthal/eslint-config-standard": "^6.1.0", | ||
"bin-tester": "^1.2.0", | ||
"eslint": "^7.16.0", | ||
"eslint-plugin-jest": "^24.1.3", | ||
"@aarongoldenthal/eslint-config-standard": "^6.1.4", | ||
"bin-tester": "^1.3.0", | ||
"eslint": "^7.21.0", | ||
"eslint-plugin-jest": "^24.1.5", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-sonarjs": "^0.5.0", | ||
"husky": "^4.3.6", | ||
"eslint-plugin-sonarjs": "^0.6.0", | ||
"husky": "^4.3.8", | ||
"jest": "^26.6.3", | ||
@@ -74,8 +74,8 @@ "jest-junit": "^12.0.0", | ||
"dependencies": { | ||
"ajv": "^7.0.2", | ||
"ci-logger": "^3.0.2", | ||
"commander": "^6.2.1", | ||
"gitlab-ci-env": "^3.3.0", | ||
"releaselog": "^1.0.5" | ||
"ajv": "^7.1.1", | ||
"ci-logger": "^3.0.3", | ||
"commander": "^7.1.0", | ||
"gitlab-ci-env": "^3.5.0", | ||
"releaselog": "^1.0.7" | ||
} | ||
} |
@@ -72,3 +72,3 @@ # GitLab Releaser | ||
The `defaults` and each `releases` properties can contain and release properties, and the `releases` properties will override any `defaults`. | ||
The `defaults` and each `releases` properties can contain any release properties, and the `releases` properties will override any `defaults`. | ||
@@ -75,0 +75,0 @@ A tag must be specified to pull the appropriate release information. For example, tag `1.0.0` would result in the following equivalent `release.json` file. |
@@ -15,6 +15,4 @@ { | ||
"type": "object", | ||
"patternProperties": { | ||
"^.*$": { | ||
"$ref": "#/definitions/release" | ||
} | ||
"additionalProperties": { | ||
"$ref": "#/definitions/release" | ||
}, | ||
@@ -84,2 +82,3 @@ "minProperties": 1 | ||
"minItems": 1, | ||
"maxItems": 100, | ||
"uniqueItems": true | ||
@@ -104,4 +103,3 @@ } | ||
"description": "The date when the release will be/was ready; defaults to the current time; expected in ISO 8601 format (2019-03-15T08:00:00Z)", | ||
"type": "string", | ||
"pattern": "^.*$" | ||
"type": "string" | ||
} | ||
@@ -112,2 +110,2 @@ }, | ||
} | ||
} | ||
} |
@@ -63,2 +63,3 @@ { | ||
"minItems": 1, | ||
"maxItems": 100, | ||
"uniqueItems": true | ||
@@ -83,7 +84,6 @@ } | ||
"description": "The date when the release will be/was ready; defaults to the current time; expected in ISO 8601 format (2019-03-15T08:00:00Z)", | ||
"type": "string", | ||
"pattern": "^.*$" | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
61956
1142
- Removedcommander@6.2.1(transitive)
Updatedajv@^7.1.1
Updatedci-logger@^3.0.3
Updatedcommander@^7.1.0
Updatedgitlab-ci-env@^3.5.0
Updatedreleaselog@^1.0.7