monorepo-next 6.3.1 → 7.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monorepo-next",
3
- "version": "6.3.1",
3
+ "version": "7.1.1",
4
4
  "description": "Detach monorepo packages from normal linking",
5
5
  "bin": {
6
6
  "next": "bin/next.js"
@@ -58,7 +58,7 @@
58
58
  "node": ">=12.13"
59
59
  },
60
60
  "dependencies": {
61
- "conventional-changelog": "3.1.24",
61
+ "conventional-changelog": "3.1.25",
62
62
  "conventional-recommended-bump": "6.1.0",
63
63
  "debug": "^4.3.1",
64
64
  "execa": "^5.0.0",
@@ -68,7 +68,7 @@
68
68
  "npm-packlist": "^3.0.0",
69
69
  "rfc6902": "^4.0.2",
70
70
  "semver": "7.3.5",
71
- "standard-version": "9.3.1",
71
+ "standard-version": "9.3.2",
72
72
  "tmp": "0.2.1",
73
73
  "yargs": "^17.0.0"
74
74
  },
@@ -76,8 +76,8 @@
76
76
  "@crowdstrike/commitlint": "^4.0.0",
77
77
  "chai": "^4.2.0",
78
78
  "chai-as-promised": "^7.1.1",
79
- "eslint": "^7.17.0",
80
- "eslint-config-crowdstrike": "^3.0.0",
79
+ "eslint": "^8.0.0",
80
+ "eslint-config-crowdstrike": "^4.0.0",
81
81
  "eslint-config-crowdstrike-node": "^3.0.0",
82
82
  "eslint-plugin-json-files": "^1.0.0",
83
83
  "eslint-plugin-mocha": "^9.0.0",
@@ -85,7 +85,7 @@
85
85
  "fixturify": "^2.1.0",
86
86
  "git-fixtures": "^4.0.0",
87
87
  "mocha": "^9.0.0",
88
- "mocha-helpers": "^6.0.0",
88
+ "mocha-helpers": "^6.2.1",
89
89
  "remark-cli": "^10.0.0",
90
90
  "remark-preset-lint-crowdstrike": "^2.0.0",
91
91
  "renovate-config-standard": "^2.0.0",
@@ -16,21 +16,21 @@ const {
16
16
  } = require('./set');
17
17
 
18
18
  async function getPackageChangedFiles({
19
- tagCommit,
20
- currentCommit,
19
+ fromCommit,
20
+ toCommit,
21
21
  packageCwd,
22
22
  options,
23
23
  }) {
24
- let isAncestor = await isCommitAncestorOf(tagCommit, currentCommit, options);
24
+ let isAncestor = await isCommitAncestorOf(fromCommit, toCommit, options);
25
25
 
26
26
  let olderCommit;
27
27
  let newerCommit;
28
28
  if (isAncestor) {
29
- olderCommit = tagCommit;
30
- newerCommit = currentCommit;
29
+ olderCommit = fromCommit;
30
+ newerCommit = toCommit;
31
31
  } else {
32
- olderCommit = currentCommit;
33
- newerCommit = tagCommit;
32
+ olderCommit = toCommit;
33
+ newerCommit = fromCommit;
34
34
  }
35
35
 
36
36
  let committedChanges = await git(['diff', '--name-only', `${olderCommit}...${newerCommit}`, packageCwd], options);
@@ -66,11 +66,11 @@ async function buildChangeGraph({
66
66
  shouldExcludeDevChanges,
67
67
  fromCommit,
68
68
  fromCommitIfNewer,
69
+ toCommit = 'HEAD',
69
70
  sinceBranch,
70
71
  cached,
71
72
  }) {
72
73
  let packagesWithChanges = {};
73
- let currentCommit = 'HEAD';
74
74
  let sinceBranchCommit;
75
75
 
76
76
  for (let _package of collectPackages(workspaceMeta)) {
@@ -78,19 +78,19 @@ async function buildChangeGraph({
78
78
  continue;
79
79
  }
80
80
 
81
- let tagCommit;
81
+ let _fromCommit;
82
82
  if (fromCommit) {
83
- tagCommit = fromCommit;
83
+ _fromCommit = fromCommit;
84
84
  } else if (sinceBranch) {
85
85
  if (!sinceBranchCommit) {
86
- sinceBranchCommit = await getCommonAncestor(currentCommit, sinceBranch, {
86
+ sinceBranchCommit = await getCommonAncestor(toCommit, sinceBranch, {
87
87
  cwd: workspaceMeta.cwd,
88
88
  cached,
89
89
  });
90
90
  }
91
- tagCommit = sinceBranchCommit;
91
+ _fromCommit = sinceBranchCommit;
92
92
  } else {
93
- tagCommit = await getCommitSinceLastRelease(_package, {
93
+ _fromCommit = await getCommitSinceLastRelease(_package, {
94
94
  cwd: workspaceMeta.cwd,
95
95
  cached,
96
96
  });
@@ -101,24 +101,24 @@ async function buildChangeGraph({
101
101
  isNewerThanTagCommit,
102
102
  isInSameBranch,
103
103
  ] = await Promise.all([
104
- isCommitAncestorOf(tagCommit, fromCommitIfNewer, {
104
+ isCommitAncestorOf(_fromCommit, fromCommitIfNewer, {
105
105
  cwd: workspaceMeta.cwd,
106
106
  cached,
107
107
  }),
108
- isCommitAncestorOf(fromCommitIfNewer, currentCommit, {
108
+ isCommitAncestorOf(fromCommitIfNewer, toCommit, {
109
109
  cwd: workspaceMeta.cwd,
110
110
  cached,
111
111
  }),
112
112
  ]);
113
113
 
114
114
  if (isNewerThanTagCommit && isInSameBranch) {
115
- tagCommit = fromCommitIfNewer;
115
+ _fromCommit = fromCommitIfNewer;
116
116
  }
117
117
  }
118
118
 
119
119
  let changedFiles = await getPackageChangedFiles({
120
- tagCommit,
121
- currentCommit,
120
+ fromCommit: _fromCommit,
121
+ toCommit,
122
122
  packageCwd: _package.cwd,
123
123
  options: {
124
124
  cwd: workspaceMeta.cwd,
@@ -146,7 +146,7 @@ async function buildChangeGraph({
146
146
  packageCwd: _package.cwd,
147
147
  workspacesCwd: workspaceMeta.cwd,
148
148
  shouldExcludeDevChanges,
149
- tagCommit,
149
+ fromCommit: _fromCommit,
150
150
  });
151
151
 
152
152
  if (shouldOnlyIncludeReleasable && !changedReleasableFiles.length) {
@@ -22,6 +22,7 @@ async function changedFiles({
22
22
  shouldExcludeDevChanges = builder['exclude-dev-changes'].default,
23
23
  fromCommit,
24
24
  fromCommitIfNewer,
25
+ toCommit,
25
26
  sinceBranch,
26
27
  cached,
27
28
  packages = [],
@@ -38,6 +39,7 @@ async function changedFiles({
38
39
  shouldExcludeDevChanges,
39
40
  fromCommit,
40
41
  fromCommitIfNewer,
42
+ toCommit,
41
43
  sinceBranch,
42
44
  cached,
43
45
  });
@@ -79,6 +81,3 @@ async function changedFiles({
79
81
  }
80
82
 
81
83
  module.exports = changedFiles;
82
- Object.assign(module.exports, {
83
- arePathsTheSame,
84
- });
package/src/changed.js CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  const buildDepGraph = require('./build-dep-graph');
4
4
  const buildChangeGraph = require('./build-change-graph');
5
- const path = require('path');
6
5
  const {
7
6
  getWorkspaceCwd,
8
7
  } = require('./git');
9
- const { arePathsTheSame } = require('./changed-files');
10
8
 
11
9
  const { builder } = require('../bin/commands/changed');
12
10
 
@@ -16,6 +14,7 @@ async function changed({
16
14
  shouldExcludeDevChanges = builder['exclude-dev-changes'].default,
17
15
  fromCommit,
18
16
  fromCommitIfNewer,
17
+ toCommit,
19
18
  sinceBranch,
20
19
  cached,
21
20
  } = {}) {
@@ -29,17 +28,12 @@ async function changed({
29
28
  shouldExcludeDevChanges,
30
29
  fromCommit,
31
30
  fromCommitIfNewer,
31
+ toCommit,
32
32
  sinceBranch,
33
33
  cached,
34
34
  });
35
35
 
36
- let _changed = [];
37
-
38
- for (let { dag } of packagesWithChanges) {
39
- let name = await arePathsTheSame(dag.cwd, workspaceCwd) ? dag.packageName : path.basename(dag.cwd);
40
-
41
- _changed.push(name);
42
- }
36
+ let _changed = packagesWithChanges.map(({ dag }) => dag.packageName);
43
37
 
44
38
  return _changed;
45
39
  }
package/src/releasable.js CHANGED
@@ -105,12 +105,12 @@ async function _getChangedReleasableFiles({
105
105
 
106
106
  async function isPackageJsonChangeReleasable({
107
107
  relativePackageJsonPath,
108
- tagCommit,
108
+ fromCommit,
109
109
  workspacesCwd,
110
110
  }) {
111
111
  let newPackageJson = JSON.parse(await fs.readFile(path.join(workspacesCwd, relativePackageJsonPath)));
112
112
 
113
- let oldPackageJson = JSON.parse(await getFileAtCommit(relativePackageJsonPath, tagCommit, workspacesCwd));
113
+ let oldPackageJson = JSON.parse(await getFileAtCommit(relativePackageJsonPath, fromCommit, workspacesCwd));
114
114
 
115
115
  let patch = createPatch(oldPackageJson, newPackageJson);
116
116
 
@@ -128,7 +128,7 @@ async function getChangedReleasableFiles({
128
128
  packageCwd,
129
129
  workspacesCwd,
130
130
  shouldExcludeDevChanges,
131
- tagCommit,
131
+ fromCommit,
132
132
  }) {
133
133
  changedFiles = new Set(changedFiles);
134
134
 
@@ -153,7 +153,7 @@ async function getChangedReleasableFiles({
153
153
  if (changedPublishedFiles.has(relativePackageJsonPath)) {
154
154
  let _isPackageJsonChangeReleasable = await isPackageJsonChangeReleasable({
155
155
  relativePackageJsonPath,
156
- tagCommit,
156
+ fromCommit,
157
157
  workspacesCwd,
158
158
  });
159
159
 
package/CHANGELOG.md DELETED
@@ -1,750 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### [6.3.1](https://github.com/CrowdStrike/monorepo-next/compare/v6.3.0...v6.3.1) (2021-08-23)
6
-
7
-
8
- ### Bug Fixes
9
-
10
- * **deps:** update dependency npm-packlist to v3 ([8b43e29](https://github.com/CrowdStrike/monorepo-next/commit/8b43e2945829562d1bd1f577549980a27a2f70ce))
11
-
12
- ## [6.3.0](https://github.com/CrowdStrike/monorepo-next/compare/v6.2.2...v6.3.0) (2021-08-20)
13
-
14
-
15
- ### Features
16
-
17
- * globs for changedFiles ([e67e7ca](https://github.com/CrowdStrike/monorepo-next/commit/e67e7ca99d25c3b789b803e41484b48ce0e9af83))
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * case for missing globs & exts ([c29d23b](https://github.com/CrowdStrike/monorepo-next/commit/c29d23b57e693d332553a6a567248d5c41bac14c))
23
- * make the changedFiles code easier to reason about ([2963ab3](https://github.com/CrowdStrike/monorepo-next/commit/2963ab31ee7595a2242498add54c74e89772ae64))
24
- * refactor globs to use globs ([5b60cd6](https://github.com/CrowdStrike/monorepo-next/commit/5b60cd621172f0efdd9cfa23ad767553cfab32b7))
25
- * remove duplicated tests ([b5d1347](https://github.com/CrowdStrike/monorepo-next/commit/b5d13479217dbbd95184eeeb4c5add52b3b992f2))
26
-
27
- ### [6.2.2](https://github.com/CrowdStrike/monorepo-next/compare/v6.2.1...v6.2.2) (2021-07-21)
28
-
29
-
30
- ### Bug Fixes
31
-
32
- * assert for unexpected dirs ([292a72c](https://github.com/CrowdStrike/monorepo-next/commit/292a72c0c85a17c806da62e20b623377c57b1dbd))
33
- * strip dirs from git status ([163b37e](https://github.com/CrowdStrike/monorepo-next/commit/163b37ed6ac6ec3f2b84ba8d5abb5ee1eae1f0be))
34
-
35
- ### [6.2.1](https://github.com/CrowdStrike/monorepo-next/compare/v6.2.0...v6.2.1) (2021-07-14)
36
-
37
-
38
- ### Bug Fixes
39
-
40
- * **deps:** update dependency standard-version to v9.3.1 ([0c997d2](https://github.com/CrowdStrike/monorepo-next/commit/0c997d2e043ee172d0f97e1732fa4c7ec8a340cf))
41
-
42
- ## [6.2.0](https://github.com/CrowdStrike/monorepo-next/compare/v6.1.0...v6.2.0) (2021-07-01)
43
-
44
-
45
- ### Features
46
-
47
- * add debug logging to git ([1f3bdca](https://github.com/CrowdStrike/monorepo-next/commit/1f3bdcabda8065d9bcadb0d8df8fbf88b5aa05fc))
48
-
49
- ## [6.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v6.0.0...v6.1.0) (2021-06-16)
50
-
51
-
52
- ### Features
53
-
54
- * clean up commit and tags after failed push ([a1d9171](https://github.com/CrowdStrike/monorepo-next/commit/a1d91714de846e346fd80a4e5ba50f6102907b80))
55
-
56
- ## [6.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v5.1.1...v6.0.0) (2021-05-08)
57
-
58
-
59
- ### ⚠ BREAKING CHANGES
60
-
61
- * bump node 12
62
-
63
- ### Features
64
-
65
- * bump node 12 ([0fbd705](https://github.com/CrowdStrike/monorepo-next/commit/0fbd70557e6288010a38b9ff573e43709d90dcf4))
66
-
67
-
68
- ### Bug Fixes
69
-
70
- * **deps:** update dependency inquirer to v8 ([ee7304d](https://github.com/CrowdStrike/monorepo-next/commit/ee7304d51ff2e869ad1b108ec084c0af9632561c))
71
- * **deps:** update dependency standard-version to v9.3.0 ([9928d9a](https://github.com/CrowdStrike/monorepo-next/commit/9928d9ab1812c7e45e4d933f19f491f0532dd90d))
72
- * **deps:** update dependency yargs to v17 ([7036e39](https://github.com/CrowdStrike/monorepo-next/commit/7036e396bc22a06fc107b7a1a95ab6bbc6e43402))
73
-
74
- ### [5.1.1](https://github.com/CrowdStrike/monorepo-next/compare/v5.1.0...v5.1.1) (2021-04-23)
75
-
76
-
77
- ### Bug Fixes
78
-
79
- * `fromCommitIfNewer` ignores deleted commits ([1023d71](https://github.com/CrowdStrike/monorepo-next/commit/1023d71c95995414d249b02b310249b6a23cfbf3))
80
-
81
- ## [5.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v5.0.0...v5.1.0) (2021-04-16)
82
-
83
-
84
- ### Features
85
-
86
- * add `fromCommitIfNewer` ([3406876](https://github.com/CrowdStrike/monorepo-next/commit/3406876adf76e53eb7f15d2314738d66dea006f8))
87
-
88
- ## [5.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v4.3.4...v5.0.0) (2021-04-15)
89
-
90
-
91
- ### ⚠ BREAKING CHANGES
92
-
93
- * The `silent` option is removed from the js functions, and the js functions no longer log to console.
94
-
95
- ### Bug Fixes
96
-
97
- * remove logging of js `changed` and `changedFiles` ([2fd8921](https://github.com/CrowdStrike/monorepo-next/commit/2fd89213a959727e18b856aba212dc03621977bf))
98
-
99
- ### [4.3.4](https://github.com/CrowdStrike/monorepo-next/compare/v4.3.3...v4.3.4) (2021-04-07)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * **deps:** update dependency standard-version to v9.2.0 ([536d9ed](https://github.com/CrowdStrike/monorepo-next/commit/536d9edd38b96579a13081f487f06e17cf0e7b4b))
105
-
106
- ### [4.3.3](https://github.com/CrowdStrike/monorepo-next/compare/v4.3.2...v4.3.3) (2021-03-29)
107
-
108
-
109
- ### Bug Fixes
110
-
111
- * assume patch level as default ([f446d5d](https://github.com/CrowdStrike/monorepo-next/commit/f446d5d4c41a49a392b8c162193adb6feda83117))
112
-
113
- ### [4.3.2](https://github.com/CrowdStrike/monorepo-next/compare/v4.3.1...v4.3.2) (2021-03-25)
114
-
115
-
116
- ### Bug Fixes
117
-
118
- * undefined `from` is overwriting any default value internally ([7d2c2e8](https://github.com/CrowdStrike/monorepo-next/commit/7d2c2e8bc8500267254989dabfa70f8a1c7be6e3))
119
-
120
- ### [4.3.1](https://github.com/CrowdStrike/monorepo-next/compare/v4.3.0...v4.3.1) (2021-03-23)
121
-
122
-
123
- ### Bug Fixes
124
-
125
- * **deps:** update dependency semver to v7.3.5 ([e88f02c](https://github.com/CrowdStrike/monorepo-next/commit/e88f02c052fe35f6b45592ea75aeef65e054f471))
126
-
127
- ## [4.3.0](https://github.com/CrowdStrike/monorepo-next/compare/v4.2.1...v4.3.0) (2021-03-22)
128
-
129
-
130
- ### Features
131
-
132
- * exclude manual devDependency changes from releasability ([eb10971](https://github.com/CrowdStrike/monorepo-next/commit/eb10971b27e2a41b802595ec625fdc0167cc02d8))
133
-
134
-
135
- ### Bug Fixes
136
-
137
- * add option to exclude monorepo devDependency changes from releasability ([63ecd3c](https://github.com/CrowdStrike/monorepo-next/commit/63ecd3c4df323004d6ebfe984c1df973b7f671ea))
138
-
139
- ### [4.2.1](https://github.com/CrowdStrike/monorepo-next/compare/v4.2.0...v4.2.1) (2021-03-22)
140
-
141
-
142
- ### Bug Fixes
143
-
144
- * don't accidentally wipe injected files ([cf24355](https://github.com/CrowdStrike/monorepo-next/commit/cf243550f37acd78a7f55f7d57a1b35e7d071231))
145
-
146
- ## [4.2.0](https://github.com/CrowdStrike/monorepo-next/compare/v4.1.0...v4.2.0) (2021-03-19)
147
-
148
-
149
- ### Features
150
-
151
- * only consider published code as releasable ([942f3ea](https://github.com/CrowdStrike/monorepo-next/commit/942f3ea540b3bd4b44349aeae378b4bb65348148))
152
-
153
- ## [4.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v4.0.2...v4.1.0) (2021-03-19)
154
-
155
-
156
- ### Features
157
-
158
- * don't cascade npm ignored changes to dependencies ([8a91b08](https://github.com/CrowdStrike/monorepo-next/commit/8a91b08a9a5b72b09c607e9f7010777a9b8b89e8))
159
-
160
- ### [4.0.2](https://github.com/CrowdStrike/monorepo-next/compare/v4.0.1...v4.0.2) (2021-03-18)
161
-
162
-
163
- ### Bug Fixes
164
-
165
- * don't version bump if dev dep changes ([2203d91](https://github.com/CrowdStrike/monorepo-next/commit/2203d917b6013ce9172fc2a2625136e3bfd470bb))
166
-
167
- ### [4.0.1](https://github.com/CrowdStrike/monorepo-next/compare/v4.0.0...v4.0.1) (2021-03-18)
168
-
169
-
170
- ### Bug Fixes
171
-
172
- * don't attempt publish if can't version bump ([426ac5e](https://github.com/CrowdStrike/monorepo-next/commit/426ac5eb79b5828612c5785504f1e1a6d0e9f9bc))
173
-
174
- ## [4.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v3.2.3...v4.0.0) (2021-03-17)
175
-
176
-
177
- ### ⚠ BREAKING CHANGES
178
-
179
- * rename `bin/index.js` to `bin/next.js`
180
-
181
- * rename `bin/index.js` to `bin/next.js` ([23a9818](https://github.com/CrowdStrike/monorepo-next/commit/23a9818d17022f9079e96da41a0529af7f3c6d8c))
182
-
183
- ### [3.2.3](https://github.com/CrowdStrike/monorepo-next/compare/v3.2.2...v3.2.3) (2021-03-17)
184
-
185
- ### [3.2.2](https://github.com/CrowdStrike/monorepo-next/compare/v3.2.1...v3.2.2) (2021-03-16)
186
-
187
-
188
- ### Bug Fixes
189
-
190
- * ignore dotfile child package changes in root package ([3ac3237](https://github.com/CrowdStrike/monorepo-next/commit/3ac3237531d304130e0e86993f621188ab36390b))
191
-
192
- ### [3.2.1](https://github.com/CrowdStrike/monorepo-next/compare/v3.2.0...v3.2.1) (2021-03-16)
193
-
194
-
195
- ### Bug Fixes
196
-
197
- * ignore catch-all ranges in defrag ([3ce095a](https://github.com/CrowdStrike/monorepo-next/commit/3ce095ad1b04fa92228d38f0be069e7a11293660))
198
-
199
- ## [3.2.0](https://github.com/CrowdStrike/monorepo-next/compare/v3.1.0...v3.2.0) (2021-03-16)
200
-
201
-
202
- ### Features
203
-
204
- * add defrag command ([2a2fb6e](https://github.com/CrowdStrike/monorepo-next/commit/2a2fb6e8d963b5b4169d560c26673160d1b807d7))
205
-
206
- ## [3.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v3.0.3...v3.1.0) (2021-03-15)
207
-
208
-
209
- ### Features
210
-
211
- * store `packagesGlobs` on `workspaceMeta` ([239c430](https://github.com/CrowdStrike/monorepo-next/commit/239c4307a4225f85eb8c37674ad30b2fd3abd9cb))
212
-
213
-
214
- ### Bug Fixes
215
-
216
- * ignores old child package changes in root package ([959644f](https://github.com/CrowdStrike/monorepo-next/commit/959644f988cde83f17c33f4f662d1468826202aa))
217
- * remove unnecessary async ([cf0ed32](https://github.com/CrowdStrike/monorepo-next/commit/cf0ed32e1c9ef24ff938559f40cbd9370ca7e698))
218
-
219
- ### [3.0.3](https://github.com/CrowdStrike/monorepo-next/compare/v3.0.2...v3.0.3) (2021-02-18)
220
-
221
- ### [3.0.2](https://github.com/CrowdStrike/monorepo-next/compare/v3.0.1...v3.0.2) (2021-02-18)
222
-
223
-
224
- ### Bug Fixes
225
-
226
- * **deps:** update dependency standard-version to v9.1.1 ([1ed4461](https://github.com/CrowdStrike/monorepo-next/commit/1ed4461a65f721eaaedec4634e5ec67bbb3a5a42))
227
-
228
- ### [3.0.1](https://github.com/CrowdStrike/monorepo-next/compare/v3.0.0...v3.0.1) (2021-02-09)
229
-
230
- ## [3.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.8.2...v3.0.0) (2021-01-12)
231
-
232
-
233
- ### ⚠ BREAKING CHANGES
234
-
235
- * The object structure has changed.
236
-
237
- ### Features
238
-
239
- * expose old version and release type in `getNewVersions` ([8a83aeb](https://github.com/CrowdStrike/monorepo-next/commit/8a83aebd1bd6a014c3df62304ab03af1ea4a8a5c))
240
-
241
- ### [2.8.2](https://github.com/CrowdStrike/monorepo-next/compare/v2.8.1...v2.8.2) (2020-12-31)
242
-
243
-
244
- ### Bug Fixes
245
-
246
- * **deps:** update dependency conventional-recommended-bump to v6.1.0 ([61e62f2](https://github.com/CrowdStrike/monorepo-next/commit/61e62f20f517c3f687100fe20abe29c29dce7c1e))
247
- * **deps:** update dependency standard-version to v9.1.0 ([cd15194](https://github.com/CrowdStrike/monorepo-next/commit/cd1519466e6d845f7cfdba421623f73a847a4450))
248
-
249
- ### [2.8.1](https://github.com/CrowdStrike/monorepo-next/compare/v2.8.0...v2.8.1) (2020-12-22)
250
-
251
-
252
- ### Bug Fixes
253
-
254
- * **deps:** update dependency semver to v7.3.4 ([6d1529d](https://github.com/CrowdStrike/monorepo-next/commit/6d1529d3bc968dbacbe7e943664eadb435d8dc90))
255
- * fix change in semver package ([ad3bfce](https://github.com/CrowdStrike/monorepo-next/commit/ad3bfcec2c6843b4199ef19257c64cbe491192ff))
256
- * pin semver package ([6526e60](https://github.com/CrowdStrike/monorepo-next/commit/6526e607a8d98445e1132f88d22aae6d301519bb))
257
- * support the internal semver change ([03e2d48](https://github.com/CrowdStrike/monorepo-next/commit/03e2d48aa4e282e68fd633287590a06f939290c1))
258
- * update semver to 7.3.2 ([d912dca](https://github.com/CrowdStrike/monorepo-next/commit/d912dcaa9356281cc50d52a29058ac7287e73e2f))
259
- * update to last non-breaking semver version ([e93f683](https://github.com/CrowdStrike/monorepo-next/commit/e93f683654560c9e4dd382d645a75e2e7e135123))
260
-
261
- ## [2.8.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.7.2...v2.8.0) (2020-12-22)
262
-
263
-
264
- ### Features
265
-
266
- * don't increment changelog version if going backwards ([5744fc3](https://github.com/CrowdStrike/monorepo-next/commit/5744fc320cec4ab8a48789c3b9bc517a3d769506))
267
-
268
- ### [2.7.2](https://github.com/CrowdStrike/monorepo-next/compare/v2.7.1...v2.7.2) (2020-12-22)
269
-
270
-
271
- ### Bug Fixes
272
-
273
- * never use `require` to load `package.json` ([4e467c6](https://github.com/CrowdStrike/monorepo-next/commit/4e467c62764940042538dc04838a0f9dfb91e550))
274
-
275
- ### [2.7.1](https://github.com/CrowdStrike/monorepo-next/compare/v2.7.0...v2.7.1) (2020-12-21)
276
-
277
-
278
- ### Bug Fixes
279
-
280
- * fix bad github merge ([c171250](https://github.com/CrowdStrike/monorepo-next/commit/c17125068023eac09a1dc8a73644fd27f482b201))
281
-
282
- ## [2.7.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.6.1...v2.7.0) (2020-12-21)
283
-
284
-
285
- ### Features
286
-
287
- * add caching to git helper ([af9eeea](https://github.com/CrowdStrike/monorepo-next/commit/af9eeea7ca65bd9180ffdc56773ba8df3197b0f8))
288
- * add more git caching ([9054bf3](https://github.com/CrowdStrike/monorepo-next/commit/9054bf3119f2af263fd2ebc5ccebdfdfdb17fdb7))
289
-
290
- ### [2.6.1](https://github.com/CrowdStrike/monorepo-next/compare/v2.6.0...v2.6.1) (2020-12-21)
291
-
292
-
293
- ### Bug Fixes
294
-
295
- * cache `sinceBranchCommit` outside loop ([ca01198](https://github.com/CrowdStrike/monorepo-next/commit/ca011984a5b1329e1760aa1637c95b03c2b63a7e))
296
-
297
- ## [2.6.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.5.0...v2.6.0) (2020-12-04)
298
-
299
-
300
- ### Features
301
-
302
- * create `getNewVersions` public api ([13743b6](https://github.com/CrowdStrike/monorepo-next/commit/13743b62b8a15c8e0106e674c2c1d161e183eb58))
303
-
304
-
305
- ### Bug Fixes
306
-
307
- * **deps:** update dependency execa to v5 ([b6add97](https://github.com/CrowdStrike/monorepo-next/commit/b6add97565195c3b4387356e2f9f58776ee7fd01))
308
-
309
- ## [2.5.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.4.0...v2.5.0) (2020-12-02)
310
-
311
-
312
- ### Features
313
-
314
- * expose `getLatestReleaseCommit` ([827193b](https://github.com/CrowdStrike/monorepo-next/commit/827193b3b8617a074ebf63493bdcc8ab9072c276))
315
-
316
- ## [2.4.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.3.2...v2.4.0) (2020-12-01)
317
-
318
-
319
- ### Features
320
-
321
- * pass `cached` option from `getChangelog` to `buildChangeGraph` ([fe72b65](https://github.com/CrowdStrike/monorepo-next/commit/fe72b6528c2bcfaffc43555a1654503bcb26597f))
322
- * support `fromCommit` in `getChangelog` ([2f1e238](https://github.com/CrowdStrike/monorepo-next/commit/2f1e23894cec4405f1b60cff02dda72cf57404ce))
323
-
324
- ### [2.3.2](https://github.com/CrowdStrike/monorepo-next/compare/v2.3.1...v2.3.2) (2020-11-30)
325
-
326
-
327
- ### Bug Fixes
328
-
329
- * **deps:** update dependency conventional-changelog to v3.1.24 ([77059ae](https://github.com/CrowdStrike/monorepo-next/commit/77059ae4ec7a5aeb8ad95d094cc0747aff73e6e5))
330
- * **deps:** update dependency conventional-recommended-bump to v6.0.11 ([e4d827f](https://github.com/CrowdStrike/monorepo-next/commit/e4d827f328e027f7784743c097511dffa2f32c87))
331
-
332
- ### [2.3.1](https://github.com/CrowdStrike/monorepo-next/compare/v2.3.0...v2.3.1) (2020-10-02)
333
-
334
-
335
- ### Bug Fixes
336
-
337
- * remove unused `sinceBranch` arg ([01b9986](https://github.com/CrowdStrike/monorepo-next/commit/01b9986ad83df9c2b99dd482643780a73981a970))
338
-
339
- ## [2.3.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.2.0...v2.3.0) (2020-10-01)
340
-
341
-
342
- ### Features
343
-
344
- * implement `sinceBranch` ([47f8928](https://github.com/CrowdStrike/monorepo-next/commit/47f89284b4dcfd34f6c6cf876b73eb4b82464358))
345
-
346
- ## [2.2.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.1.0...v2.2.0) (2020-10-01)
347
-
348
-
349
- ### Features
350
-
351
- * allow caching `fromCommit` too ([7085beb](https://github.com/CrowdStrike/monorepo-next/commit/7085beb2d2a2ba1add3c9e3f5b6fee18b0bf23a5))
352
-
353
- ## [2.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v2.0.2...v2.1.0) (2020-09-28)
354
-
355
-
356
- ### Features
357
-
358
- * allow caching git operations ([0342b75](https://github.com/CrowdStrike/monorepo-next/commit/0342b754b90b1938cd98a9fb9921e462a58d41e5))
359
-
360
- ### [2.0.2](https://github.com/CrowdStrike/monorepo-next/compare/v2.0.1...v2.0.2) (2020-09-28)
361
-
362
-
363
- ### Bug Fixes
364
-
365
- * move `getCurrentCommit` to tests ([22c576a](https://github.com/CrowdStrike/monorepo-next/commit/22c576a44ab58c1b4ff32246e459c6e2a9939e08))
366
- * remove unnecessary `getCurrentCommit` call ([6598710](https://github.com/CrowdStrike/monorepo-next/commit/65987103fdb08dd751478b15b7e60d8e14ac7b47))
367
-
368
- ### [2.0.1](https://github.com/CrowdStrike/monorepo-next/compare/v2.0.0...v2.0.1) (2020-09-25)
369
-
370
-
371
- ### Bug Fixes
372
-
373
- * include dot in extension check ([3b5aa1b](https://github.com/CrowdStrike/monorepo-next/commit/3b5aa1b34c5372ac50f51b6015d6c9619a1796e4))
374
-
375
- ## [2.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v1.1.0...v2.0.0) (2020-09-25)
376
-
377
-
378
- ### ⚠ BREAKING CHANGES
379
-
380
- * `ext` string is now `exts` array of strings
381
-
382
- ### Features
383
-
384
- * allow multiple extensions at once ([42a8078](https://github.com/CrowdStrike/monorepo-next/commit/42a8078d7eb01423f4442f2fb31dbe9adf8356af))
385
-
386
- ## [1.1.0](https://github.com/CrowdStrike/monorepo-next/compare/v1.0.0...v1.1.0) (2020-09-25)
387
-
388
-
389
- ### Features
390
-
391
- * allow calculating diff in reverse order ([df39504](https://github.com/CrowdStrike/monorepo-next/commit/df395045d7313b67e2357ec60598910b3afc3ff8))
392
-
393
- ## [1.0.0](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.47...v1.0.0) (2020-09-25)
394
-
395
-
396
- ### ⚠ BREAKING CHANGES
397
-
398
- * bump min node to 10
399
-
400
- ### Features
401
-
402
- * accept `fromCommit` from `changed` and `changedFiles` ([f1f8bb4](https://github.com/CrowdStrike/monorepo-next/commit/f1f8bb49b543e51eee5e740ecfa9d3541eff155b))
403
- * allow `buildChangeGraph` to take a `fromCommit` ([2a6dc32](https://github.com/CrowdStrike/monorepo-next/commit/2a6dc321f7f5dbba8e85e13cad7540cecdc671e7))
404
-
405
-
406
- ### Bug Fixes
407
-
408
- * **deps:** update dependency conventional-changelog to v3.1.23 ([05a7a5e](https://github.com/CrowdStrike/monorepo-next/commit/05a7a5e2ab844da7958b91c3715cc052598dfb86))
409
- * **deps:** update dependency conventional-recommended-bump to v6.0.10 ([a1c90dc](https://github.com/CrowdStrike/monorepo-next/commit/a1c90dce75c3bbd29e98871b161f7593a79d09b0))
410
- * **deps:** update dependency execa to v4 ([c144682](https://github.com/CrowdStrike/monorepo-next/commit/c144682f395d4d3e4958a04415d035062fae09e2))
411
- * **deps:** update dependency standard-version to v8 [security] ([14f9427](https://github.com/CrowdStrike/monorepo-next/commit/14f942788797f7952d44d1ccf199f69b9b1925ca))
412
- * **deps:** update dependency standard-version to v8.0.2 ([de4fd9e](https://github.com/CrowdStrike/monorepo-next/commit/de4fd9e2c2e824144b21497ee2707760a37b6527))
413
- * **deps:** update dependency standard-version to v9 ([14bf302](https://github.com/CrowdStrike/monorepo-next/commit/14bf30227353f8ff0dec6d0015268317b2814381))
414
- * **deps:** update dependency yargs to v16 ([bcaa60c](https://github.com/CrowdStrike/monorepo-next/commit/bcaa60c19c8a4d817b51d8abd183fa9a2346cd95))
415
-
416
-
417
- * track `standard-node-template` ([3c11090](https://github.com/CrowdStrike/monorepo-next/commit/3c110909fe3c7c5c131a3ef75a9f6ba4ffc4aa65))
418
-
419
- ### [0.2.47](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.46...v0.2.47) (2020-07-20)
420
-
421
-
422
- ### Features
423
-
424
- * **#114:** support wildcard versions ([#115](https://github.com/CrowdStrike/monorepo-next/issues/115)) ([86c5499](https://github.com/CrowdStrike/monorepo-next/commit/86c54993cf68c70301bf27b2964325abc77ef97f)), closes [#114](https://github.com/CrowdStrike/monorepo-next/issues/114) [#114](https://github.com/CrowdStrike/monorepo-next/issues/114)
425
-
426
- ### [0.2.46](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.45...v0.2.46) (2020-05-03)
427
-
428
-
429
- ### Bug Fixes
430
-
431
- * fix regression with `&&` in lifecycle script ([17b06ea](https://github.com/CrowdStrike/monorepo-next/commit/17b06ea7daf846f32f1c7eba252a99b2f786e851))
432
-
433
- ### [0.2.45](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.44...v0.2.45) (2020-05-03)
434
-
435
-
436
- ### Bug Fixes
437
-
438
- * retain empty version strings in `buildDAG` ([554f02f](https://github.com/CrowdStrike/monorepo-next/commit/554f02ff21f95b3dd4c308ab10a320e3f7be8561))
439
-
440
- ### [0.2.44](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.43...v0.2.44) (2020-04-30)
441
-
442
-
443
- ### Bug Fixes
444
-
445
- * handle mulitple root commits when package is new ([faafaf4](https://github.com/CrowdStrike/monorepo-next/commit/faafaf40f52eda557f68f63150ba16573eeee53f))
446
-
447
- ### [0.2.43](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.42...v0.2.43) (2020-04-29)
448
-
449
-
450
- ### Bug Fixes
451
-
452
- * ignore empty package dirs ([506112d](https://github.com/CrowdStrike/monorepo-next/commit/506112dfa3782285120bcf7d80df1411334b49c6))
453
-
454
- ### [0.2.42](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.41...v0.2.42) (2020-04-28)
455
-
456
-
457
- ### Features
458
-
459
- * support new packages without an existing version tag ([c44e744](https://github.com/CrowdStrike/monorepo-next/commit/c44e74495cde0b332c990a0e27d803d55f50748b))
460
-
461
- ### [0.2.41](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.40...v0.2.41) (2020-04-28)
462
-
463
-
464
- ### Bug Fixes
465
-
466
- * `getCurrentAtTag` => `getCommitAtTag` typo ([9e59968](https://github.com/CrowdStrike/monorepo-next/commit/9e5996897b1197a9eb200e8ca12b49edcf4d48e8))
467
- * extract some git operations to reusable functions ([00c7809](https://github.com/CrowdStrike/monorepo-next/commit/00c7809098dee4c6b99633918e7bf635b1f33444))
468
-
469
- ### [0.2.40](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.39...v0.2.40) (2020-04-28)
470
-
471
-
472
- ### Bug Fixes
473
-
474
- * only use `execa` for safety ([0275b6b](https://github.com/CrowdStrike/monorepo-next/commit/0275b6b34cd2871c989163585d0dcbd2df262686))
475
-
476
- ### [0.2.39](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.38...v0.2.39) (2020-04-01)
477
-
478
-
479
- ### Bug Fixes
480
-
481
- * handle changelogs where only the dep changed ([1922c56](https://github.com/CrowdStrike/monorepo-next/commit/1922c568658093419c9ae1bf29b5c1293ea97df0))
482
-
483
- ### [0.2.38](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.37...v0.2.38) (2020-03-27)
484
-
485
-
486
- ### Features
487
-
488
- * allow generating changelog for multiple versions ([2bd8580](https://github.com/CrowdStrike/monorepo-next/commit/2bd8580f65cadca4aab0e0f2ef4f55c154058614))
489
-
490
- ### [0.2.37](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.36...v0.2.37) (2020-03-27)
491
-
492
-
493
- ### Bug Fixes
494
-
495
- * uses previous version if no changes ([8d7e968](https://github.com/CrowdStrike/monorepo-next/commit/8d7e9683f2e4ffe020a1c7198800978db78f30a3))
496
-
497
- ### [0.2.36](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.35...v0.2.36) (2020-02-21)
498
-
499
-
500
- ### Features
501
-
502
- * add `getChangelog` ([3b7cda9](https://github.com/CrowdStrike/monorepo-next/commit/3b7cda9f3f91c44107a62ffc60446d5216aa704d))
503
-
504
-
505
- ### Bug Fixes
506
-
507
- * prevent circular requires ([fa8378c](https://github.com/CrowdStrike/monorepo-next/commit/fa8378c16b360babb76fc8be8d3e92095f0ba2fb))
508
-
509
- ### [0.2.35](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.34...v0.2.35) (2020-01-28)
510
-
511
-
512
- ### Bug Fixes
513
-
514
- * really add all ([ea8d50d](https://github.com/CrowdStrike/monorepo-next/commit/ea8d50d04c1f35f365cf4f4037622adcc707a48e))
515
-
516
- ### [0.2.34](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.33...v0.2.34) (2020-01-28)
517
-
518
-
519
- ### Features
520
-
521
- * handle `standard-version` lifecycle scripts if present ([5151258](https://github.com/CrowdStrike/monorepo-next/commit/51512587cfaee27bc51c0e9e92863bcad1997a31))
522
-
523
- ### [0.2.33](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.32...v0.2.33) (2020-01-23)
524
-
525
-
526
- ### Features
527
-
528
- * track dirty changes on top of committed ([24674e6](https://github.com/CrowdStrike/monorepo-next/commit/24674e6ad32fd34842b8b13dcbdfa2ee14a002b7))
529
-
530
- ### [0.2.32](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.31...v0.2.32) (2020-01-23)
531
-
532
-
533
- ### Bug Fixes
534
-
535
- * convert to spawn to allow strings in path ([43260ab](https://github.com/CrowdStrike/monorepo-next/commit/43260ab3dc5a97e8b0604a0c30821acfe7dee345))
536
-
537
- ### [0.2.31](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.30...v0.2.31) (2020-01-22)
538
-
539
-
540
- ### Bug Fixes
541
-
542
- * allow running with defaults ([291a67a](https://github.com/CrowdStrike/monorepo-next/commit/291a67a95f28b4a422a09b2eea8236409b8de443))
543
-
544
- ### [0.2.30](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.29...v0.2.30) (2020-01-22)
545
-
546
-
547
- ### Features
548
-
549
- * match `standard-version` release commit message ([2f4ba64](https://github.com/CrowdStrike/monorepo-next/commit/2f4ba64a2b4d501e351fa81f32d088ff3057a8ac))
550
-
551
- ### [0.2.29](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.28...v0.2.29) (2020-01-22)
552
-
553
-
554
- ### Bug Fixes
555
-
556
- * remove already applied options ([b651720](https://github.com/CrowdStrike/monorepo-next/commit/b651720530b34623f57a5a1d49167cd2302d5e38))
557
-
558
- ### [0.2.28](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.27...v0.2.28) (2020-01-22)
559
-
560
-
561
- ### Features
562
-
563
- * use sensible default for cwd ([7655f09](https://github.com/CrowdStrike/monorepo-next/commit/7655f098e1de7af30012e44617f5db7418656509))
564
-
565
- ### [0.2.27](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.26...v0.2.27) (2020-01-15)
566
-
567
-
568
- ### Bug Fixes
569
-
570
- * `non-fast-forward` error message ([6dbf7f4](https://github.com/CrowdStrike/monorepo-next/commit/6dbf7f42174c43df2348cd4f3e90a1c005ffc62b))
571
-
572
- ### [0.2.26](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.25...v0.2.26) (2020-01-15)
573
-
574
-
575
- ### Features
576
-
577
- * stop swallowing error codes ([bef73b8](https://github.com/CrowdStrike/monorepo-next/commit/bef73b8942482756fd00fdc580ab094fa7e7ff02))
578
-
579
- ### [0.2.25](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.24...v0.2.25) (2020-01-15)
580
-
581
-
582
- ### Bug Fixes
583
-
584
- * support non-atomic remotes ([440c03c](https://github.com/CrowdStrike/monorepo-next/commit/440c03cd74a446e5e0a9cd9ab21d397567b5ffd1))
585
-
586
- ### [0.2.24](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.23...v0.2.24) (2020-01-13)
587
-
588
-
589
- ### Bug Fixes
590
-
591
- * `bumpFiles` ([0e82614](https://github.com/CrowdStrike/monorepo-next/commit/0e826146535e6b742f96265822dab4d3f4ff3a52))
592
- * update standard-version ([ac3c005](https://github.com/CrowdStrike/monorepo-next/commit/ac3c0051d86390ed7db9f160a3802d5440e487df))
593
-
594
- ### [0.2.23](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.22...v0.2.23) (2020-01-13)
595
-
596
-
597
- ### Bug Fixes
598
-
599
- * remove npx call ([67167e5](https://github.com/CrowdStrike/monorepo-next/commit/67167e5f935a7998ca73f1d56cc42160ac388259))
600
-
601
- ### [0.2.22](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.21...v0.2.22) (2020-01-13)
602
-
603
-
604
- ### Features
605
-
606
- * forward `packageFiles` and `bumpFiles` options ([6d2c604](https://github.com/CrowdStrike/monorepo-next/commit/6d2c6040ad02e75b1b0995b6a4a6290e4cf42cee))
607
-
608
- ### [0.2.21](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.20...v0.2.21) (2020-01-13)
609
-
610
-
611
- ### Features
612
-
613
- * support pnpm workspaces ([2ab8bfe](https://github.com/CrowdStrike/monorepo-next/commit/2ab8bfe9f8d62c09bf9f28c7ed8d7885248e1965))
614
-
615
- ### [0.2.20](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.19...v0.2.20) (2020-01-13)
616
-
617
-
618
- ### Bug Fixes
619
-
620
- * pave the way for other monorepo support (pnpm, lerna) ([a8c9a54](https://github.com/CrowdStrike/monorepo-next/commit/a8c9a5450f146bf7cb16ca341e8745ab3e203cc3))
621
-
622
- ### [0.2.19](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.18...v0.2.19) (2020-01-06)
623
-
624
- ### [0.2.18](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.17...v0.2.18) (2020-01-06)
625
-
626
- ### [0.2.17](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.16...v0.2.17) (2019-12-11)
627
-
628
-
629
- ### Bug Fixes
630
-
631
- * treat `optionalDependencies` like other dependency types ([ce79937](https://github.com/CrowdStrike/monorepo-next/commit/ce799378fcf38d2fd74cedc5d11fd4fc4d2e40ce))
632
-
633
- ### [0.2.16](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.15...v0.2.16) (2019-12-11)
634
-
635
-
636
- ### Bug Fixes
637
-
638
- * private projects should track out of range too ([af5afce](https://github.com/CrowdStrike/monorepo-next/commit/af5afcef2505b19e2c6acaf4fc1d5ab3ebe05c49))
639
-
640
- ### [0.2.15](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.14...v0.2.15) (2019-12-11)
641
-
642
- ### [0.2.14](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.13...v0.2.14) (2019-12-11)
643
-
644
-
645
- ### Bug Fixes
646
-
647
- * track newly out of range ([a306115](https://github.com/CrowdStrike/monorepo-next/commit/a3061154fda37b3c4ec8dbfe65a08dff0103595a))
648
-
649
- ### [0.2.13](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.12...v0.2.13) (2019-12-11)
650
-
651
-
652
- ### Bug Fixes
653
-
654
- * fix `shouldInheritGreaterReleaseType` when no changes ([6d598eb](https://github.com/CrowdStrike/monorepo-next/commit/6d598ebd73cc3a916397a6a1e0c7e827b2ae992c))
655
-
656
- ### [0.2.12](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.11...v0.2.12) (2019-11-19)
657
-
658
-
659
- ### Bug Fixes
660
-
661
- * **deps:** update dependency standard-version to v7.0.1 ([d700319](https://github.com/CrowdStrike/monorepo-next/commit/d7003197fb91baed6e5fe202360f16b0ddfe5977))
662
-
663
- ### [0.2.11](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.10...v0.2.11) (2019-11-18)
664
-
665
-
666
- ### Bug Fixes
667
-
668
- * **deps:** update dependency conventional-recommended-bump to v6.0.5 ([2c62f77](https://github.com/CrowdStrike/monorepo-next/commit/2c62f777ca3d81b52fc0fd9cb8be78f80cfb053d))
669
-
670
- ### [0.2.10](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.9...v0.2.10) (2019-11-18)
671
-
672
-
673
- ### Bug Fixes
674
-
675
- * **deps:** update dependency yargs to v15 ([cc8fc4d](https://github.com/CrowdStrike/monorepo-next/commit/cc8fc4d3408156c708c58a53f543eba2df3b58e5))
676
-
677
- ### [0.2.9](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.8...v0.2.9) (2019-11-11)
678
-
679
-
680
- ### Bug Fixes
681
-
682
- * **deps:** update dependency conventional-recommended-bump to v6.0.4 ([89fc33c](https://github.com/CrowdStrike/monorepo-next/commit/89fc33c85497a543e76adc486aaf7d745dcdd76f))
683
-
684
- ### [0.2.8](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.7...v0.2.8) (2019-11-04)
685
-
686
-
687
- ### Bug Fixes
688
-
689
- * **deps:** update dependency conventional-recommended-bump to v6.0.2 ([5d5f24d](https://github.com/CrowdStrike/monorepo-next/commit/5d5f24d))
690
-
691
- ### [0.2.7](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.6...v0.2.7) (2019-11-04)
692
-
693
-
694
- ### Bug Fixes
695
-
696
- * **deps:** update dependency execa to v3 ([e725fab](https://github.com/CrowdStrike/monorepo-next/commit/e725fab))
697
-
698
- ### [0.2.6](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.5...v0.2.6) (2019-09-27)
699
-
700
-
701
- ### Features
702
-
703
- * pass through scripts option ([38fb781](https://github.com/CrowdStrike/monorepo-next/commit/38fb781))
704
-
705
- ### [0.2.5](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.4...v0.2.5) (2019-09-24)
706
-
707
- ### [0.2.4](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.3...v0.2.4) (2019-09-21)
708
-
709
-
710
- ### Bug Fixes
711
-
712
- * fix json formatting on Windows ([317c412](https://github.com/CrowdStrike/monorepo-next/commit/317c412))
713
-
714
- ### [0.2.3](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.2...v0.2.3) (2019-09-21)
715
-
716
-
717
- ### Bug Fixes
718
-
719
- * create annotated tag ([ed5f970](https://github.com/CrowdStrike/monorepo-next/commit/ed5f970))
720
-
721
- ### [0.2.2](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.1...v0.2.2) (2019-09-15)
722
-
723
-
724
- ### Bug Fixes
725
-
726
- * ignore unchanged packages ([48d3b75](https://github.com/CrowdStrike/monorepo-next/commit/48d3b75))
727
-
728
- ### [0.2.1](https://github.com/CrowdStrike/monorepo-next/compare/v0.2.0...v0.2.1) (2019-09-15)
729
-
730
- ## [0.2.0](https://github.com/CrowdStrike/monorepo-next/compare/v0.1.2...v0.2.0) (2019-09-15)
731
-
732
-
733
- ### Features
734
-
735
- * release options ([918fc8f](https://github.com/CrowdStrike/monorepo-next/commit/918fc8f))
736
-
737
- ### [0.1.2](https://github.com/CrowdStrike/monorepo-next/compare/v0.1.1...v0.1.2) (2019-09-12)
738
-
739
-
740
- ### Bug Fixes
741
-
742
- * fix non-package choice naming ([9789ab2](https://github.com/CrowdStrike/monorepo-next/commit/9789ab2))
743
-
744
- ### [0.1.1](https://github.com/CrowdStrike/monorepo-next/compare/v0.1.0...v0.1.1) (2019-09-12)
745
-
746
-
747
- ### Bug Fixes
748
-
749
- * add travis file ([c8389a2](https://github.com/CrowdStrike/monorepo-next/commit/c8389a2))
750
- * update commitlint ([7bfebde](https://github.com/CrowdStrike/monorepo-next/commit/7bfebde))