auto-release-cli
Advanced tools
Comparing version 0.20.15 to 0.20.16
164
CHANGELOG.md
@@ -1,7 +0,15 @@ | ||
# v0.20.15 (Wed Dec 05 2018) | ||
# v0.20.16 (Thu Dec 06 2018) | ||
#### 🐛 Bug Fix | ||
- memoize all the user functions [#5](https://github.com/intuit/auto-release/pull/5) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- Check prCommit.author is defined. [#14](https://github.com/intuit/auto-release/pull/14) ([@adierkens](https://github.com/adierkens)) | ||
#### Authors: 1 | ||
#### 🏠 Internal | ||
- Rename CONTRIBUTING.md to CODE_OF_CONDUCT.md [#13](https://github.com/intuit/auto-release/pull/13) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- Create CONTRIBUTING.md [#12](https://github.com/intuit/auto-release/pull/12) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- Update issue templates [#11](https://github.com/intuit/auto-release/pull/11) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- Create PULL_REQUEST_TEMPLATE.md [#10](https://github.com/intuit/auto-release/pull/10) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
- remove bad changelog [#9](https://github.com/intuit/auto-release/pull/9) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
#### Authors: 2 | ||
- Adam Dierkens ([@adierkens](https://github.com/adierkens)) | ||
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
@@ -11,154 +19,14 @@ | ||
# v0.20.14 (Wed Dec 05 2018) | ||
# v0.20.15 (Wed Dec 05 2018) | ||
#### 🐛 Bug Fix | ||
- memoize all the user functions [#5](https://github.com/intuit/auto-release/pull/5) ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
#### Authors: 1 | ||
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.14 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.13 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
--- | ||
# v0.20.10 (Wed Dec 05 2018) | ||
#### 🐛 Bug Fix | ||
@@ -165,0 +33,0 @@ - ignore invalid user [#3](https://github.com/intuit/auto-release/pull/3) (hipstersmoothie@users.noreply.github.com) |
@@ -245,5 +245,10 @@ "use strict"; | ||
} | ||
return [4 /*yield*/, Promise.all(prCommits.map(function (prCommit) { return __awaiter(_this, void 0, void 0, function () { return __generator(this, function (_a) { | ||
return [2 /*return*/, client.getUserByUsername(prCommit.author.login)]; | ||
}); }); }))]; | ||
return [4 /*yield*/, Promise.all(prCommits.map(function (prCommit) { return __awaiter(_this, void 0, void 0, function () { | ||
return __generator(this, function (_a) { | ||
if (prCommit && prCommit.author) { | ||
return [2 /*return*/, client.getUserByUsername(prCommit.author.login)]; | ||
} | ||
return [2 /*return*/]; | ||
}); | ||
}); }))]; | ||
case 2: | ||
@@ -250,0 +255,0 @@ resolvedAuthors = _a.sent(); |
{ | ||
"name": "auto-release-cli", | ||
"description": "CLI tools to help facilitate semantic versioning based on Github PR labels.", | ||
"version": "0.20.15", | ||
"version": "0.20.16", | ||
"author": "Intuit", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
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
187804
2467