lerna-clean-changelogs 3.0.6 → 4.0.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/CHANGELOG.md +10 -0
- package/LICENSE +1 -1
- package/README.md +4 -13
- package/dist/lerna-clean-changelogs.esm.js +7 -80
- package/dist/lerna-clean-changelogs.umd.js +7 -2
- package/examples/_quickTake.js +1 -0
- package/package.json +24 -76
- package/types/index.d.ts +9 -3
- package/examples/api.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [4.0.0](https://github.com/codsen/codsen/compare/lerna-clean-changelogs@3.0.11...lerna-clean-changelogs@4.0.0) (2022-01-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- set options as a plain object ([814cf09](https://github.com/codsen/codsen/commit/814cf090d14c9810b2cf6074fad316fa43d125c8)), closes [#36](https://github.com/codsen/codsen/issues/36)
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- from now, the options should be set as a plain object, ie. { extras: true }
|
|
15
|
+
|
|
6
16
|
## 3.0.0 (2021-09-09)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/README.md
CHANGED
|
@@ -26,18 +26,17 @@
|
|
|
26
26
|
|
|
27
27
|
## Install
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
The latest version is **ESM only**: Node 12+ is needed to use it and it must be `import`ed instead of `require`d. If your project is not on ESM yet and you want to use `require`, use an older version of this program, `2.1.0`.
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
npm i lerna-clean-changelogs
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
If you need a legacy version which works with `require`, use version 2.1.0
|
|
36
|
-
|
|
37
35
|
## Quick Take
|
|
38
36
|
|
|
39
37
|
```js
|
|
40
38
|
import { strict as assert } from "assert";
|
|
39
|
+
|
|
41
40
|
import { cleanChangelogs } from "lerna-clean-changelogs";
|
|
42
41
|
|
|
43
42
|
// are all values equal to null:
|
|
@@ -49,16 +48,8 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
49
48
|
|
|
50
49
|
## 2.9.2 (2018-12-27)
|
|
51
50
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
51
|
**Note:** Version bump only for package ranges-apply
|
|
59
52
|
|
|
60
|
-
|
|
61
|
-
|
|
62
53
|
## [2.9.1](https://gitlab.com/codsen/codsen/tree/master/packages/ranges-apply/compare/ranges-apply@2.9.0...ranges-apply@2.9.1) (2018-12-27)
|
|
63
54
|
|
|
64
55
|
**Note:** Version bump only for package ranges-apply
|
|
@@ -98,7 +89,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
98
89
|
|
|
99
90
|
## Documentation
|
|
100
91
|
|
|
101
|
-
Please [visit codsen.com](https://codsen.com/os/lerna-clean-changelogs/) for a full description of the API
|
|
92
|
+
Please [visit codsen.com](https://codsen.com/os/lerna-clean-changelogs/) for a full description of the API.
|
|
102
93
|
|
|
103
94
|
## Contributing
|
|
104
95
|
|
|
@@ -108,6 +99,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
|
|
|
108
99
|
|
|
109
100
|
MIT License
|
|
110
101
|
|
|
111
|
-
Copyright (c) 2010-
|
|
102
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
112
103
|
|
|
113
104
|
<img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center">
|
|
@@ -1,88 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name lerna-clean-changelogs
|
|
3
3
|
* @fileoverview Removes frivolous entries from commitizen generated changelogs
|
|
4
|
-
* @version
|
|
4
|
+
* @version 4.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/lerna-clean-changelogs/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
function cleanChangelogs(changelogContents, extras = false) {
|
|
17
|
-
if (changelogContents === undefined) {
|
|
18
|
-
throw new Error(`lerna-clean-changelogs: [THROW_ID_01] The first input argument is missing!`);
|
|
19
|
-
}
|
|
20
|
-
else if (!isStr(changelogContents)) {
|
|
21
|
-
throw new Error(`lerna-clean-changelogs: [THROW_ID_02] The first input argument must be a string! It was given as ${Array.isArray(changelogContents) ? "array" : typeof changelogContents}, equal to:\n${JSON.stringify(changelogContents, null, 4)}`);
|
|
22
|
-
}
|
|
23
|
-
let final;
|
|
24
|
-
let lastLineWasEmpty = false;
|
|
25
|
-
if (typeof changelogContents === "string" &&
|
|
26
|
-
changelogContents.length &&
|
|
27
|
-
(!changelogContents.includes("\n") || !changelogContents.includes("\r"))) {
|
|
28
|
-
/* istanbul ignore next */
|
|
29
|
-
const changelogEndedWithLinebreak = isStr(changelogContents) &&
|
|
30
|
-
changelogContents.length &&
|
|
31
|
-
(changelogContents[changelogContents.length - 1] === "\n" ||
|
|
32
|
-
changelogContents[changelogContents.length - 1] === "\r");
|
|
33
|
-
changelogContents = changelogContents
|
|
34
|
-
.trim()
|
|
35
|
-
.replace(/(https:\/\/git\.sr\.ht\/~[^/]+\/[^/]+\/)commits\//g, "$1commit/");
|
|
36
|
-
const linesArr = changelogContents.split(/\r?\n/);
|
|
37
|
-
if (extras) {
|
|
38
|
-
linesArr.forEach((line, i) => {
|
|
39
|
-
if (line.startsWith("#")) {
|
|
40
|
-
linesArr[i] = line.replace(/(#+) \[?(\d+\.\d+\.\d+)\s?\]\([^)]*\)/g, "$1 $2");
|
|
41
|
-
}
|
|
42
|
-
if (i && linesArr[i].startsWith("# ")) {
|
|
43
|
-
linesArr[i] = `#${linesArr[i]}`;
|
|
44
|
-
}
|
|
45
|
-
});
|
|
46
|
-
}
|
|
47
|
-
const newLinesArr = [];
|
|
48
|
-
for (let i = linesArr.length; i--;) {
|
|
49
|
-
if (linesArr[i].startsWith("**Note:** Version bump only") ||
|
|
50
|
-
(extras && linesArr[i].toLowerCase().includes("wip"))) {
|
|
51
|
-
while (isStr(linesArr[i - 1]) && !linesArr[i - 1].trim() && i) {
|
|
52
|
-
i -= 1;
|
|
53
|
-
}
|
|
54
|
-
if (i &&
|
|
55
|
-
isStr(linesArr[i - 1]) &&
|
|
56
|
-
linesArr[i - 1].trim().startsWith("#")) {
|
|
57
|
-
i -= 1;
|
|
58
|
-
}
|
|
59
|
-
while (isStr(linesArr[i - 1]) && !linesArr[i - 1].trim() && i) {
|
|
60
|
-
i -= 1;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
else if (!linesArr[i].trim()) {
|
|
64
|
-
if (!lastLineWasEmpty) {
|
|
65
|
-
newLinesArr.unshift(linesArr[i].trim());
|
|
66
|
-
lastLineWasEmpty = true;
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
else if (linesArr[i][0] === "*" && linesArr[i][1] === " ") {
|
|
70
|
-
newLinesArr.unshift(`- ${linesArr[i].slice(2)}`);
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
newLinesArr.unshift(linesArr[i]);
|
|
74
|
-
}
|
|
75
|
-
if (linesArr[i].trim()) {
|
|
76
|
-
lastLineWasEmpty = false;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
/* istanbul ignore next */
|
|
80
|
-
final = `${newLinesArr.join("\n")}${changelogEndedWithLinebreak ? "\n" : ""}`;
|
|
81
|
-
}
|
|
82
|
-
return {
|
|
83
|
-
version,
|
|
84
|
-
res: final || changelogContents,
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
export { cleanChangelogs, version };
|
|
10
|
+
var u="4.0.0";var d=u;function i(r){return typeof r=="string"}var f={extras:!1};function $(r,p){if(r===void 0)throw new Error("lerna-clean-changelogs: [THROW_ID_01] The first input argument is missing!");if(!i(r))throw new Error(`lerna-clean-changelogs: [THROW_ID_02] The first input argument must be a string! It was given as ${Array.isArray(r)?"array":typeof r}, equal to:
|
|
11
|
+
${JSON.stringify(r,null,4)}`);let a={...f,...p},o,l=!1;if(typeof r=="string"&&r.length&&(!r.includes(`
|
|
12
|
+
`)||!r.includes("\r"))){let c=i(r)&&r.length&&(r[r.length-1]===`
|
|
13
|
+
`||r[r.length-1]==="\r");r=r.trim().replace(/(https:\/\/git\.sr\.ht\/~[^/]+\/[^/]+\/)commits\//g,"$1commit/");let t=r.split(/\r?\n/);a.extras&&t.forEach((e,s)=>{e.startsWith("#")&&(t[s]=e.replace(/(#+) \[?(\d+\.\d+\.\d+)\s?\]\([^)]*\)/g,"$1 $2")),s&&t[s].startsWith("# ")&&(t[s]=`#${t[s]}`)});let n=[];for(let e=t.length;e--;){if(t[e].startsWith("**Note:** Version bump only")||a.extras&&t[e].toLowerCase().includes("wip")){for(;i(t[e-1])&&!t[e-1].trim()&&e;)e-=1;for(e&&i(t[e-1])&&t[e-1].trim().startsWith("#")&&(e-=1);i(t[e-1])&&!t[e-1].trim()&&e;)e-=1}else t[e].trim()?t[e][0]==="*"&&t[e][1]===" "?n.unshift(`- ${t[e].slice(2)}`):n.unshift(t[e]):l||(n.unshift(t[e].trim()),l=!0);t[e].trim()&&(l=!1)}o=`${n.join(`
|
|
14
|
+
`)}${c?`
|
|
15
|
+
`:""}`}return{version:d,res:o||r}}export{$ as cleanChangelogs,d as version};
|
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name lerna-clean-changelogs
|
|
3
3
|
* @fileoverview Removes frivolous entries from commitizen generated changelogs
|
|
4
|
-
* @version
|
|
4
|
+
* @version 4.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/lerna-clean-changelogs/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
var lernaCleanChangelogs=(()=>{var p=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var b=Object.getOwnPropertyNames,m=Object.getOwnPropertySymbols;var d=Object.prototype.hasOwnProperty,E=Object.prototype.propertyIsEnumerable;var f=(e,r,s)=>r in e?p(e,r,{enumerable:!0,configurable:!0,writable:!0,value:s}):e[r]=s,c=(e,r)=>{for(var s in r||(r={}))d.call(r,s)&&f(e,s,r[s]);if(m)for(var s of m(r))E.call(r,s)&&f(e,s,r[s]);return e};var x=e=>p(e,"__esModule",{value:!0});var v=(e,r)=>{for(var s in r)p(e,s,{get:r[s],enumerable:!0})},w=(e,r,s,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of b(r))!d.call(e,n)&&(s||n!=="default")&&p(e,n,{get:()=>r[n],enumerable:!(l=g(r,n))||l.enumerable});return e};var W=(e=>(r,s)=>e&&e.get(r)||(s=w(x({}),r,1),e&&e.set(r,s),s))(typeof WeakMap!="undefined"?new WeakMap:0);var O={};v(O,{cleanChangelogs:()=>L,version:()=>h});var y="4.0.0";var h=y;function o(e){return typeof e=="string"}var D={extras:!1};function L(e,r){if(e===void 0)throw new Error("lerna-clean-changelogs: [THROW_ID_01] The first input argument is missing!");if(!o(e))throw new Error(`lerna-clean-changelogs: [THROW_ID_02] The first input argument must be a string! It was given as ${Array.isArray(e)?"array":typeof e}, equal to:
|
|
11
|
+
${JSON.stringify(e,null,4)}`);let s=c(c({},D),r),l,n=!1;if(typeof e=="string"&&e.length&&(!e.includes(`
|
|
12
|
+
`)||!e.includes("\r"))){let $=o(e)&&e.length&&(e[e.length-1]===`
|
|
13
|
+
`||e[e.length-1]==="\r");e=e.trim().replace(/(https:\/\/git\.sr\.ht\/~[^/]+\/[^/]+\/)commits\//g,"$1commit/");let i=e.split(/\r?\n/);s.extras&&i.forEach((t,a)=>{t.startsWith("#")&&(i[a]=t.replace(/(#+) \[?(\d+\.\d+\.\d+)\s?\]\([^)]*\)/g,"$1 $2")),a&&i[a].startsWith("# ")&&(i[a]=`#${i[a]}`)});let u=[];for(let t=i.length;t--;){if(i[t].startsWith("**Note:** Version bump only")||s.extras&&i[t].toLowerCase().includes("wip")){for(;o(i[t-1])&&!i[t-1].trim()&&t;)t-=1;for(t&&o(i[t-1])&&i[t-1].trim().startsWith("#")&&(t-=1);o(i[t-1])&&!i[t-1].trim()&&t;)t-=1}else i[t].trim()?i[t][0]==="*"&&i[t][1]===" "?u.unshift(`- ${i[t].slice(2)}`):u.unshift(i[t]):n||(u.unshift(i[t].trim()),n=!0);i[t].trim()&&(n=!1)}l=`${u.join(`
|
|
14
|
+
`)}${$?`
|
|
15
|
+
`:""}`}return{version:h,res:l||e}}return W(O);})();
|
package/examples/_quickTake.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lerna-clean-changelogs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "Removes frivolous entries from commitizen generated changelogs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"changelog",
|
|
@@ -35,89 +35,37 @@
|
|
|
35
35
|
},
|
|
36
36
|
"types": "types/index.d.ts",
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"prettier": "
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"test": "npm run test:ci && npm run perf",
|
|
54
|
-
"test:ci": "npm run unittest && npm run test:examples && npm run format",
|
|
55
|
-
"test:examples": "../../scripts/test-examples.js && npm run lect && npm run prettier",
|
|
56
|
-
"tsc": "tsc",
|
|
57
|
-
"unittest": "tap --no-only --reporter=terse && tsc -p tsconfig.json --noEmit"
|
|
38
|
+
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
39
|
+
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
40
|
+
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
|
|
41
|
+
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
|
|
42
|
+
"examples": "node '../../ops/scripts/run-examples.js'",
|
|
43
|
+
"lect": "node '../../ops/lect/lect.js' && yarn run prettier 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
|
|
44
|
+
"letspublish": "yarn publish || :",
|
|
45
|
+
"lint": "eslint . --fix",
|
|
46
|
+
"perf": "node perf/check.js",
|
|
47
|
+
"prepare": "echo 'ready'",
|
|
48
|
+
"prettier": "prettier",
|
|
49
|
+
"prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
|
|
50
|
+
"pretest": "yarn run lect && yarn run build",
|
|
51
|
+
"test": "yarn run devtest",
|
|
52
|
+
"unit": "uvu test"
|
|
58
53
|
},
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
54
|
+
"engines": {
|
|
55
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
56
|
+
},
|
|
57
|
+
"c8": {
|
|
58
|
+
"check-coverage": true,
|
|
59
|
+
"exclude": [
|
|
60
|
+
"**/test/**/*.*"
|
|
65
61
|
],
|
|
66
|
-
"
|
|
62
|
+
"lines": 100
|
|
67
63
|
},
|
|
68
64
|
"lect": {
|
|
69
65
|
"licence": {
|
|
70
66
|
"extras": [
|
|
71
67
|
""
|
|
72
68
|
]
|
|
73
|
-
},
|
|
74
|
-
"req": "{ cleanChangelogs }",
|
|
75
|
-
"various": {
|
|
76
|
-
"devDependencies": []
|
|
77
69
|
}
|
|
78
|
-
},
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"@babel/runtime": "^7.16.3"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@babel/cli": "^7.16.0",
|
|
84
|
-
"@babel/core": "^7.16.0",
|
|
85
|
-
"@babel/node": "^7.16.0",
|
|
86
|
-
"@babel/plugin-external-helpers": "^7.16.0",
|
|
87
|
-
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
|
88
|
-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
|
|
89
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
|
90
|
-
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
|
|
91
|
-
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
92
|
-
"@babel/preset-env": "^7.16.4",
|
|
93
|
-
"@babel/preset-typescript": "^7.16.0",
|
|
94
|
-
"@babel/register": "^7.16.0",
|
|
95
|
-
"@istanbuljs/esm-loader-hook": "^0.1.2",
|
|
96
|
-
"@rollup/plugin-babel": "^5.3.0",
|
|
97
|
-
"@rollup/plugin-commonjs": "^21.0.1",
|
|
98
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
99
|
-
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
100
|
-
"@rollup/plugin-strip": "^2.1.0",
|
|
101
|
-
"@rollup/plugin-typescript": "^8.3.0",
|
|
102
|
-
"@types/node": "^16.11.9",
|
|
103
|
-
"@types/tap": "^15.0.5",
|
|
104
|
-
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
105
|
-
"@typescript-eslint/parser": "^5.4.0",
|
|
106
|
-
"core-js": "^3.19.1",
|
|
107
|
-
"cross-env": "^7.0.3",
|
|
108
|
-
"eslint": "^8.3.0",
|
|
109
|
-
"lect": "^0.18.6",
|
|
110
|
-
"rollup": "^2.60.0",
|
|
111
|
-
"rollup-plugin-ascii": "^0.0.3",
|
|
112
|
-
"rollup-plugin-banner": "^0.2.1",
|
|
113
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
114
|
-
"rollup-plugin-dts": "^4.0.1",
|
|
115
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
116
|
-
"tap": "^15.1.2",
|
|
117
|
-
"tslib": "^2.3.1",
|
|
118
|
-
"typescript": "^4.5.2"
|
|
119
|
-
},
|
|
120
|
-
"engines": {
|
|
121
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
122
70
|
}
|
|
123
71
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
declare const version: string;
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
interface Opts {
|
|
3
|
+
extras: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare function cleanChangelogs(
|
|
6
|
+
changelogContents: string,
|
|
7
|
+
originalOpts?: Partial<Opts>
|
|
8
|
+
): {
|
|
9
|
+
version: string;
|
|
10
|
+
res: string;
|
|
5
11
|
};
|
|
6
12
|
|
|
7
13
|
export { cleanChangelogs, version };
|
package/examples/api.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_quickTake.js":{"title":"Quick Take","content":"import { strict as assert } from \"assert\";\nimport { cleanChangelogs } from \"lerna-clean-changelogs\";\n\n// are all values equal to null:\nassert.equal(\n cleanChangelogs(`# Change Log\n\nAll notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n\n## 2.9.2 (2018-12-27)\n\n\n\n\n\n\n\n**Note:** Version bump only for package ranges-apply\n\n\n\n## [2.9.1](https://gitlab.com/codsen/codsen/tree/master/packages/ranges-apply/compare/ranges-apply@2.9.0...ranges-apply@2.9.1) (2018-12-27)\n\n**Note:** Version bump only for package ranges-apply\n\n## 2.9.0 (2018-12-26)\n\n### Bug Fixes\n\n* aaa\n\n### Features\n\n* bbb\n\n`).res,\n //\n //\n //\n // output:\n `# Change Log\n\nAll notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n\n## 2.9.0 (2018-12-26)\n\n### Bug Fixes\n\n- aaa\n\n### Features\n\n- bbb\n`\n);"}}
|