auto-release-cli
Advanced tools
Comparing version 0.35.0 to 0.36.0
@@ -0,1 +1,13 @@ | ||
# 0.36.0 (Tue Dec 18 2018) | ||
#### 🚀 Enhancement | ||
- slack CLI flag can be the slack url [#103](https://github.com/intuit/auto-release/pull/103) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
#### Authors: 1 | ||
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
--- | ||
# 0.35.0 (Mon Dec 17 2018) | ||
@@ -2,0 +14,0 @@ |
@@ -6,3 +6,2 @@ export default function parseArgs(testArgs?: string[]): void | ArgsType; | ||
jira?: string; | ||
slack?: string; | ||
githubApi?: string; | ||
@@ -30,3 +29,3 @@ } | ||
dry_run?: boolean; | ||
slack?: string; | ||
slack?: string | boolean; | ||
no_version_prefix?: boolean; | ||
@@ -33,0 +32,0 @@ use_version?: string; |
@@ -306,5 +306,5 @@ "use strict"; | ||
alias: 's', | ||
type: Boolean, | ||
type: String, | ||
group: 'main', | ||
description: 'Post a message to slack about the release. Make sure the SLACK_TOKEN environment variable is set.' | ||
description: 'Url to post a slack message to about the release. If slack url supplied via autorc this flag can act as a boolean. Make sure the SLACK_TOKEN environment variable is set.' | ||
} | ||
@@ -311,0 +311,0 @@ ], defaultOptions), |
@@ -294,3 +294,3 @@ #!/usr/bin/env node | ||
verbose.success('Loaded `auto-release` with config:', rawConfig); | ||
config = __assign({}, rawConfig, args, { logger: logger }); | ||
config = __assign({}, rawConfig, args, { logger: logger, slack: typeof args.slack === 'string' ? args.slack : rawConfig.slack }); | ||
return [4 /*yield*/, setGitUser(config)]; | ||
@@ -297,0 +297,0 @@ case 2: |
{ | ||
"name": "auto-release-cli", | ||
"description": "CLI tools to help facilitate semantic versioning based on Github PR labels.", | ||
"version": "0.35.0", | ||
"version": "0.36.0", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Andrew Lisowski", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
253486
3314