lerna-changelog
Advanced tools
Comparing version 0.8.2 to 0.8.3
# Changelog | ||
## v0.8.3 (2019-11-11) | ||
#### :rocket: Enhancement | ||
* [#142](https://github.com/lerna/lerna-changelog/pull/142) Upgrade `make-fetch-happen` to v5.0.0 ([@trivikr](https://github.com/trivikr)) | ||
#### :bug: Bug Fix | ||
* [#155](https://github.com/lerna/lerna-changelog/pull/155) Fix incorrect repo parsing for project names with `.` characters ([@shrikanthkr](https://github.com/shrikanthkr)) | ||
#### :house: Internal | ||
* [#151](https://github.com/lerna/lerna-changelog/pull/151) Add dependabot config ([@Turbo87](https://github.com/Turbo87)) | ||
* [#149](https://github.com/lerna/lerna-changelog/pull/149) Update locked dependencies ([@trivikr](https://github.com/trivikr)) | ||
* [#146](https://github.com/lerna/lerna-changelog/pull/146) Update `jest` to v24.x ([@trivikr](https://github.com/trivikr)) | ||
* [#143](https://github.com/lerna/lerna-changelog/pull/143) Upgrade `p-map` to v2.1.0 ([@trivikr](https://github.com/trivikr)) | ||
* [#144](https://github.com/lerna/lerna-changelog/pull/144) Remove unused `string.prototype.padend` dependency ([@trivikr](https://github.com/trivikr)) | ||
* [#137](https://github.com/lerna/lerna-changelog/pull/137) Update `execa` to v1.0.0 ([@trivikr](https://github.com/trivikr)) | ||
* [#139](https://github.com/lerna/lerna-changelog/pull/139) Upgrade `typescript` to v3.6.3 ([@trivikr](https://github.com/trivikr)) | ||
* [#127](https://github.com/lerna/lerna-changelog/pull/127) TravisCI: Remove deprecated `sudo: false` option ([@Turbo87](https://github.com/Turbo87)) | ||
#### Committers: 3 | ||
- Shrikanth ([@shrikanthkr](https://github.com/shrikanthkr)) | ||
- Tobias Bieniek ([@Turbo87](https://github.com/Turbo87)) | ||
- Trivikram Kamat ([@trivikr](https://github.com/trivikr)) | ||
## v0.8.2 (2018-10-14) | ||
@@ -4,0 +28,0 @@ |
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
@@ -8,0 +9,0 @@ }); |
"use strict"; | ||
var __assign = (this && this.__assign) || Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
var __assign = (this && this.__assign) || function () { | ||
__assign = Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
@@ -45,3 +49,2 @@ }); | ||
}; | ||
var _this = this; | ||
jest.mock("../src/progress-bar"); | ||
@@ -127,3 +130,3 @@ jest.mock("../src/changelog"); | ||
}; | ||
require("./fetch").__setMockResponses(__assign({}, usersCache, issuesCache)); | ||
require("./fetch").__setMockResponses(__assign(__assign({}, usersCache), issuesCache)); | ||
}); | ||
@@ -133,3 +136,3 @@ afterEach(function () { | ||
}); | ||
it("parse commits with different tags", function () { return __awaiter(_this, void 0, void 0, function () { | ||
it("parse commits with different tags", function () { return __awaiter(void 0, void 0, void 0, function () { | ||
var MockedChangelog, changelog, commitsInfo; | ||
@@ -177,3 +180,3 @@ return __generator(this, function (_a) { | ||
}); | ||
it("get list of valid commiters", function () { return __awaiter(_this, void 0, void 0, function () { | ||
it("get list of valid commiters", function () { return __awaiter(void 0, void 0, void 0, function () { | ||
var MockedChangelog, changelog, testCommits, committers; | ||
@@ -180,0 +183,0 @@ return __generator(this, function (_a) { |
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
@@ -8,0 +9,0 @@ }); |
@@ -93,3 +93,3 @@ "use strict"; | ||
var normalized = normalize(url).url; | ||
var match = normalized.match(/github\.com[:/]([^./]+\/[^./]+)(?:\.git)?/); | ||
var match = normalized.match(/github\.com[:/]([^/]+\/[^/]+?)(?:\.git)?$/); | ||
if (!match) { | ||
@@ -96,0 +96,0 @@ return; |
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
@@ -8,0 +9,0 @@ }); |
"use strict"; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
return new (P || (P = Promise))(function (resolve, reject) { | ||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | ||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | ||
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } | ||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | ||
step((generator = generator.apply(thisArg, _arguments || [])).next()); | ||
@@ -85,3 +86,3 @@ }); | ||
GithubAPI.prototype.getAuthToken = function () { | ||
return process.env.GITHUB_AUTH; | ||
return process.env.GITHUB_AUTH || ""; | ||
}; | ||
@@ -88,0 +89,0 @@ return GithubAPI; |
@@ -5,3 +5,2 @@ "use strict"; | ||
var ProgressBar = require("progress"); | ||
var padEnd = require("string.prototype.padend"); | ||
var ProgressBarController = (function () { | ||
@@ -8,0 +7,0 @@ function ProgressBarController() { |
{ | ||
"name": "lerna-changelog", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"description": "Generate a changelog for a lerna monorepo", | ||
@@ -38,23 +38,22 @@ "keywords": [ | ||
"cli-highlight": "^1.2.3", | ||
"execa": "^0.10.0", | ||
"make-fetch-happen": "^4.0.1", | ||
"execa": "^1.0.0", | ||
"make-fetch-happen": "^5.0.0", | ||
"normalize-git-url": "^3.0.2", | ||
"p-map": "^1.2.0", | ||
"p-map": "^2.1.0", | ||
"progress": "^2.0.0", | ||
"string.prototype.padend": "^3.0.0", | ||
"yargs": "^11.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^23.1.0", | ||
"@types/node": "^7.0.22", | ||
"@types/jest": "^24.0.18", | ||
"@types/node": "^10.14.19", | ||
"fs-extra": "^6.0.1", | ||
"jest": "^23.1.0", | ||
"jest": "^24.9.0", | ||
"jest-runner-tslint": "^1.0.5", | ||
"prettier": "1.13.5", | ||
"rimraf": "^2.6.2", | ||
"ts-jest": "^22.4.6", | ||
"ts-jest": "^24.1.0", | ||
"tslint": "^5.10.0", | ||
"tslint-config-prettier": "^1.13.0", | ||
"tslint-plugin-prettier": "^1.3.0", | ||
"typescript": "^2.9.2" | ||
"typescript": "^3.6.3" | ||
}, | ||
@@ -82,13 +81,3 @@ "engines": { | ||
], | ||
"transform": { | ||
"^.+\\.jsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js", | ||
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js" | ||
}, | ||
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"json" | ||
] | ||
"preset": "ts-jest" | ||
}, | ||
@@ -95,0 +84,0 @@ { |
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
8
1140
73510
19
+ Addedcacache@12.0.4(transitive)
+ Addedinfer-owner@1.0.4(transitive)
+ Addedmake-fetch-happen@5.0.2(transitive)
+ Addedp-map@2.1.0(transitive)
- Removedstring.prototype.padend@^3.0.0
- Removedarray-buffer-byte-length@1.0.1(transitive)
- Removedarraybuffer.prototype.slice@1.0.3(transitive)
- Removedavailable-typed-arrays@1.0.7(transitive)
- Removedcacache@11.3.3(transitive)
- Removedcall-bind@1.0.7(transitive)
- Removeddata-view-buffer@1.0.1(transitive)
- Removeddata-view-byte-length@1.0.1(transitive)
- Removeddata-view-byte-offset@1.0.0(transitive)
- Removeddefine-data-property@1.1.4(transitive)
- Removeddefine-properties@1.2.1(transitive)
- Removedes-abstract@1.23.5(transitive)
- Removedes-define-property@1.0.0(transitive)
- Removedes-errors@1.3.0(transitive)
- Removedes-object-atoms@1.0.0(transitive)
- Removedes-set-tostringtag@2.0.3(transitive)
- Removedes-to-primitive@1.2.1(transitive)
- Removedexeca@0.10.0(transitive)
- Removedfor-each@0.3.3(transitive)
- Removedfunction-bind@1.1.2(transitive)
- Removedfunction.prototype.name@1.1.6(transitive)
- Removedfunctions-have-names@1.2.3(transitive)
- Removedget-intrinsic@1.2.4(transitive)
- Removedget-symbol-description@1.0.2(transitive)
- Removedglobalthis@1.0.4(transitive)
- Removedgopd@1.0.1(transitive)
- Removedhas-bigints@1.0.2(transitive)
- Removedhas-property-descriptors@1.0.2(transitive)
- Removedhas-proto@1.0.3(transitive)
- Removedhas-symbols@1.0.3(transitive)
- Removedhas-tostringtag@1.0.2(transitive)
- Removedhasown@2.0.2(transitive)
- Removedinternal-slot@1.0.7(transitive)
- Removedis-array-buffer@3.0.4(transitive)
- Removedis-bigint@1.0.4(transitive)
- Removedis-boolean-object@1.1.2(transitive)
- Removedis-callable@1.2.7(transitive)
- Removedis-data-view@1.0.1(transitive)
- Removedis-date-object@1.0.5(transitive)
- Removedis-negative-zero@2.0.3(transitive)
- Removedis-number-object@1.0.7(transitive)
- Removedis-regex@1.1.4(transitive)
- Removedis-shared-array-buffer@1.0.3(transitive)
- Removedis-string@1.0.7(transitive)
- Removedis-symbol@1.0.4(transitive)
- Removedis-typed-array@1.1.13(transitive)
- Removedis-weakref@1.0.2(transitive)
- Removedisarray@2.0.5(transitive)
- Removedmake-fetch-happen@4.0.2(transitive)
- Removedobject-inspect@1.13.3(transitive)
- Removedobject-keys@1.1.1(transitive)
- Removedobject.assign@4.1.5(transitive)
- Removedp-map@1.2.0(transitive)
- Removedpossible-typed-array-names@1.0.0(transitive)
- Removedregexp.prototype.flags@1.5.3(transitive)
- Removedsafe-array-concat@1.1.2(transitive)
- Removedsafe-regex-test@1.0.3(transitive)
- Removedset-function-length@1.2.2(transitive)
- Removedset-function-name@2.0.2(transitive)
- Removedside-channel@1.0.6(transitive)
- Removedstring.prototype.padend@3.1.6(transitive)
- Removedstring.prototype.trim@1.2.9(transitive)
- Removedstring.prototype.trimend@1.0.8(transitive)
- Removedstring.prototype.trimstart@1.0.8(transitive)
- Removedtyped-array-buffer@1.0.2(transitive)
- Removedtyped-array-byte-length@1.0.1(transitive)
- Removedtyped-array-byte-offset@1.0.2(transitive)
- Removedtyped-array-length@1.0.6(transitive)
- Removedunbox-primitive@1.0.2(transitive)
- Removedwhich-boxed-primitive@1.0.2(transitive)
- Removedwhich-typed-array@1.1.15(transitive)
Updatedexeca@^1.0.0
Updatedmake-fetch-happen@^5.0.0
Updatedp-map@^2.1.0