Skip to content

Commit fcf5e46

Browse files
Version Packages (changesets#777)
1 parent c87eba6 commit fcf5e46

39 files changed

+204
-88
lines changed

.changeset/funny-cooks-clap.md

-5
This file was deleted.

.changeset/rare-meals-switch.md

-5
This file was deleted.

.changeset/sharp-tools-yell.md

-5
This file was deleted.

.changeset/silly-sloths-brush.md

-5
This file was deleted.

.changeset/stupid-dogs-eat.md

-5
This file was deleted.

.changeset/tough-rivers-decide.md

-5
This file was deleted.

.changeset/yellow-cows-juggle.md

-5
This file was deleted.

packages/apply-release-plan/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @changesets/apply-release-plan
22

3+
## 6.0.0
4+
5+
### Major Changes
6+
7+
- [#768](https://github.com/changesets/changesets/pull/768) [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c) Thanks [@rohit-gohri](https://github.com/rohit-gohri)! - This module is no longer responsible for commiting files - this responsibility has been moved entirely to `@changesets/cli`.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c), [`eb86652`](https://github.com/changesets/changesets/commit/eb86652cbd21c49f90d2a03caa9a578593c4d102), [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
12+
- @changesets/types@5.0.0
13+
- @changesets/git@1.3.2
14+
- @changesets/config@2.0.0
15+
316
## 5.0.5
417

518
### Patch Changes

packages/apply-release-plan/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@changesets/apply-release-plan",
3-
"version": "5.0.5",
3+
"version": "6.0.0",
44
"description": "Takes a release plan and applies it to packages",
55
"main": "dist/apply-release-plan.cjs.js",
66
"module": "dist/apply-release-plan.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/apply-release-plan",
99
"dependencies": {
1010
"@babel/runtime": "^7.10.4",
11-
"@changesets/config": "^1.7.0",
11+
"@changesets/config": "^2.0.0",
1212
"@changesets/get-version-range-type": "^0.3.2",
13-
"@changesets/git": "^1.3.1",
14-
"@changesets/types": "^4.1.0",
13+
"@changesets/git": "^1.3.2",
14+
"@changesets/types": "^5.0.0",
1515
"@manypkg/get-packages": "^1.1.3",
1616
"detect-indent": "^6.0.0",
1717
"fs-extra": "^7.0.1",

packages/assemble-release-plan/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @changesets/assemble-release-plan
22

3+
## 5.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
- @changesets/get-dependents-graph@1.3.2
10+
311
## 5.1.1
412

513
### Patch Changes

packages/assemble-release-plan/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@changesets/assemble-release-plan",
3-
"version": "5.1.1",
3+
"version": "5.1.2",
44
"description": "Reads changesets and adds information on dependents that need bumping",
55
"main": "dist/assemble-release-plan.cjs.js",
66
"module": "dist/assemble-release-plan.esm.js",
@@ -9,8 +9,8 @@
99
"dependencies": {
1010
"@babel/runtime": "^7.10.4",
1111
"@changesets/errors": "^0.1.4",
12-
"@changesets/get-dependents-graph": "^1.3.1",
13-
"@changesets/types": "^4.1.0",
12+
"@changesets/get-dependents-graph": "^1.3.2",
13+
"@changesets/types": "^5.0.0",
1414
"@manypkg/get-packages": "^1.1.3",
1515
"semver": "^5.4.1"
1616
},

packages/changelog-git/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @changesets/changelog-git
22

3+
## 0.1.11
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
310
## 0.1.10
411

512
### Patch Changes

packages/changelog-git/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@changesets/changelog-git",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "A changelog entry generator for git that writes hashes",
55
"main": "dist/changelog-git.cjs.js",
66
"module": "dist/changelog-git.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-git",
99
"dependencies": {
10-
"@changesets/types": "^4.1.0"
10+
"@changesets/types": "^5.0.0"
1111
}
1212
}

packages/changelog-github/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @changesets/changelog-github
22

3+
## 0.4.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
310
## 0.4.3
411

512
### Patch Changes

packages/changelog-github/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "@changesets/changelog-github",
3-
"version": "0.4.3",
3+
"version": "0.4.4",
44
"description": "A changelog entry generator for GitHub that links to commits, PRs and users",
55
"main": "dist/changelog-github.cjs.js",
66
"module": "dist/changelog-github.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-github",
99
"dependencies": {
1010
"@changesets/get-github-info": "^0.5.0",
11-
"@changesets/types": "^4.1.0",
11+
"@changesets/types": "^5.0.0",
1212
"dotenv": "^8.1.0"
1313
},
1414
"devDependencies": {

packages/cli/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# @changesets/cli
22

3+
## 2.22.0
4+
5+
### Minor Changes
6+
7+
- [#768](https://github.com/changesets/changesets/pull/768) [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c) Thanks [@rohit-gohri](https://github.com/rohit-gohri)! - Allow `"commit"` option to be more configurable. You can now point to a module (using a module name or a relative path) that might contain `getAddMessage` and/or `getVersionMessage`. This allows you to configure how the commit message is generated, if `[skip ci]` gets included, etc.
8+
9+
### Patch Changes
10+
11+
- [#776](https://github.com/changesets/changesets/pull/776) [`ad7506d`](https://github.com/changesets/changesets/commit/ad7506dc6973293a6f913653c2a6a15ba5b8b500) Thanks [@janosh](https://github.com/janosh)! - `changeset init` will now configure `baseBranch: "main"` in the `.changeset/config.json` as the default value.
12+
13+
* [#770](https://github.com/changesets/changesets/pull/770) [`eb86652`](https://github.com/changesets/changesets/commit/eb86652cbd21c49f90d2a03caa9a578593c4d102) Thanks [@alizeait](https://github.com/alizeait)! - `changeset add` and `changeset status` should now properly handle the situation where Changesets are managed from a directory different than the root of the repository.
14+
15+
* Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c), [`eb86652`](https://github.com/changesets/changesets/commit/eb86652cbd21c49f90d2a03caa9a578593c4d102), [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c), [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
16+
- @changesets/types@5.0.0
17+
- @changesets/git@1.3.2
18+
- @changesets/apply-release-plan@6.0.0
19+
- @changesets/config@2.0.0
20+
- @changesets/assemble-release-plan@5.1.2
21+
- @changesets/changelog-git@0.1.11
22+
- @changesets/get-dependents-graph@1.3.2
23+
- @changesets/get-release-plan@3.0.8
24+
- @changesets/pre@1.0.11
25+
- @changesets/read@0.5.5
26+
- @changesets/write@0.1.8
27+
328
## 2.21.1
429

530
### Patch Changes

packages/cli/package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@changesets/cli",
3-
"version": "2.21.1",
3+
"version": "2.22.0",
44
"description": "Organise your package versioning and publishing to make both contributors and maintainers happy",
55
"bin": {
66
"changeset": "bin.js"
@@ -31,19 +31,19 @@
3131
"license": "MIT",
3232
"dependencies": {
3333
"@babel/runtime": "^7.10.4",
34-
"@changesets/apply-release-plan": "^5.0.5",
35-
"@changesets/assemble-release-plan": "^5.1.1",
36-
"@changesets/changelog-git": "^0.1.10",
37-
"@changesets/config": "^1.7.0",
34+
"@changesets/apply-release-plan": "^6.0.0",
35+
"@changesets/assemble-release-plan": "^5.1.2",
36+
"@changesets/changelog-git": "^0.1.11",
37+
"@changesets/config": "^2.0.0",
3838
"@changesets/errors": "^0.1.4",
39-
"@changesets/get-dependents-graph": "^1.3.1",
40-
"@changesets/get-release-plan": "^3.0.7",
41-
"@changesets/git": "^1.3.1",
39+
"@changesets/get-dependents-graph": "^1.3.2",
40+
"@changesets/get-release-plan": "^3.0.8",
41+
"@changesets/git": "^1.3.2",
4242
"@changesets/logger": "^0.0.5",
43-
"@changesets/pre": "^1.0.10",
44-
"@changesets/read": "^0.5.4",
45-
"@changesets/types": "^4.1.0",
46-
"@changesets/write": "^0.1.7",
43+
"@changesets/pre": "^1.0.11",
44+
"@changesets/read": "^0.5.5",
45+
"@changesets/types": "^5.0.0",
46+
"@changesets/write": "^0.1.8",
4747
"@manypkg/get-packages": "^1.1.3",
4848
"@types/is-ci": "^3.0.0",
4949
"@types/semver": "^6.0.0",

packages/config/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @changesets/config
22

3+
## 2.0.0
4+
5+
### Major Changes
6+
7+
- [#768](https://github.com/changesets/changesets/pull/768) [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c) Thanks [@rohit-gohri](https://github.com/rohit-gohri)! - The parsed config now normalzied the commit option to either `false` or a tuple describing what module should be loaded to resolve commit functions.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
12+
- @changesets/types@5.0.0
13+
- @changesets/get-dependents-graph@1.3.2
14+
315
## 1.7.0
416

517
### Minor Changes

packages/config/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@changesets/config",
3-
"version": "1.7.0",
3+
"version": "2.0.0",
44
"description": "Utilities for reading and parsing Changeset's config",
55
"main": "dist/config.cjs.js",
66
"module": "dist/config.esm.js",
@@ -12,9 +12,9 @@
1212
],
1313
"dependencies": {
1414
"@changesets/errors": "^0.1.4",
15-
"@changesets/get-dependents-graph": "^1.3.1",
15+
"@changesets/get-dependents-graph": "^1.3.2",
1616
"@changesets/logger": "^0.0.5",
17-
"@changesets/types": "^4.1.0",
17+
"@changesets/types": "^5.0.0",
1818
"@manypkg/get-packages": "^1.1.3",
1919
"fs-extra": "^7.0.1",
2020
"micromatch": "^4.0.2"

packages/get-dependents-graph/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @changesets/get-dependents-graph
22

3+
## 1.3.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
310
## 1.3.1
411

512
### Patch Changes

packages/get-dependents-graph/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@changesets/get-dependents-graph",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Get the graph of dependents in a monorepo",
55
"main": "dist/get-dependents-graph.cjs.js",
66
"module": "dist/get-dependents-graph.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-dependents-graph",
99
"dependencies": {
10-
"@changesets/types": "^4.1.0",
10+
"@changesets/types": "^5.0.0",
1111
"@manypkg/get-packages": "^1.1.3",
1212
"chalk": "^2.1.0",
1313
"fs-extra": "^7.0.1",

packages/get-release-plan/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @changesets/get-release-plan
22

3+
## 3.0.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c), [`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
- @changesets/config@2.0.0
10+
- @changesets/assemble-release-plan@5.1.2
11+
- @changesets/pre@1.0.11
12+
- @changesets/read@0.5.5
13+
314
## 3.0.7
415

516
### Patch Changes
+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "@changesets/get-release-plan",
3-
"version": "3.0.7",
3+
"version": "3.0.8",
44
"description": "Reads changesets and adds information on dependents that need bumping",
55
"main": "dist/get-release-plan.cjs.js",
66
"module": "dist/get-release-plan.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-release-plan",
99
"dependencies": {
1010
"@babel/runtime": "^7.10.4",
11-
"@changesets/assemble-release-plan": "^5.1.1",
12-
"@changesets/config": "^1.7.0",
13-
"@changesets/pre": "^1.0.10",
14-
"@changesets/read": "^0.5.4",
15-
"@changesets/types": "^4.1.0",
11+
"@changesets/assemble-release-plan": "^5.1.2",
12+
"@changesets/config": "^2.0.0",
13+
"@changesets/pre": "^1.0.11",
14+
"@changesets/read": "^0.5.5",
15+
"@changesets/types": "^5.0.0",
1616
"@manypkg/get-packages": "^1.1.3"
1717
}
1818
}

packages/get-workspaces/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# get-workspaces
22

3+
## 1.0.7
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
8+
- @changesets/types@5.0.0
9+
310
## 1.0.6
411

512
### Patch Changes

packages/get-workspaces/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "get-workspaces",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "Get workspaces for yarn workspaces, bolt workspaces, or the root package for building repo-agnostic tools",
55
"main": "dist/get-workspaces.cjs.js",
66
"module": "dist/get-workspaces.esm.js",
77
"license": "MIT",
88
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-workspaces",
99
"dependencies": {
10-
"@changesets/types": "^4.1.0",
10+
"@changesets/types": "^5.0.0",
1111
"fs-extra": "^7.0.1",
1212
"globby": "^9.2.0",
1313
"read-yaml-file": "^1.1.0"

packages/git/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @changesets/git
22

3+
## 1.3.2
4+
5+
### Patch Changes
6+
7+
- [#770](https://github.com/changesets/changesets/pull/770) [`eb86652`](https://github.com/changesets/changesets/commit/eb86652cbd21c49f90d2a03caa9a578593c4d102) Thanks [@alizeait](https://github.com/alizeait)! - `getChangedFilesSince` and `getChangedPackagesSinceRef` will now return the correct absolute paths of the changed files when the passed `cwd` is different from the repository's root.
8+
9+
- Updated dependencies [[`c87eba6`](https://github.com/changesets/changesets/commit/c87eba6f80a34563b7382f87472c29f6dafb546c)]:
10+
- @changesets/types@5.0.0
11+
312
## 1.3.1
413

514
### Patch Changes

0 commit comments

Comments
 (0)