Skip to content

Commit

Permalink
Version Packages (#1184)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Nov 28, 2023
1 parent dfd4cca commit 3c03496
Show file tree
Hide file tree
Showing 46 changed files with 309 additions and 104 deletions.
23 changes: 0 additions & 23 deletions .changeset/healthy-cobras-worry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-dodos-shop.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/thin-pumas-remember.md

This file was deleted.

18 changes: 18 additions & 0 deletions packages/apply-release-plan/CHANGELOG.md
@@ -1,5 +1,23 @@
# @changesets/apply-release-plan

## 7.0.0

### Major Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Minor Changes

- [#1236](https://github.com/changesets/changesets/pull/1236) [`dfd4cca`](https://github.com/changesets/changesets/commit/dfd4cca84118df913feedfeac37a4939566ae447) Thanks [@camertron](https://github.com/camertron)! - Avoid using short commit IDs

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/get-version-range-type@0.4.0
- @changesets/config@3.0.0
- @changesets/types@6.0.0
- @changesets/git@3.0.0

## 6.1.4

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/apply-release-plan/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/apply-release-plan",
"version": "6.1.4",
"version": "7.0.0",
"description": "Takes a release plan and applies it to packages",
"main": "dist/changesets-apply-release-plan.cjs.js",
"module": "dist/changesets-apply-release-plan.esm.js",
Expand All @@ -20,10 +20,10 @@
"repository": "https://github.com/changesets/changesets/tree/main/packages/apply-release-plan",
"dependencies": {
"@babel/runtime": "^7.20.1",
"@changesets/config": "^2.3.1",
"@changesets/get-version-range-type": "^0.3.2",
"@changesets/git": "^2.0.0",
"@changesets/types": "^5.2.1",
"@changesets/config": "^3.0.0",
"@changesets/get-version-range-type": "^0.4.0",
"@changesets/git": "^3.0.0",
"@changesets/types": "^6.0.0",
"@manypkg/get-packages": "^1.1.3",
"detect-indent": "^6.0.0",
"fs-extra": "^7.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/apply-release-plan/src/index.ts
Expand Up @@ -52,7 +52,7 @@ async function getCommitsThatAddChangesets(

const legacyPaths = missingIds.map((id) => `.changeset/${id}/changes.json`);
const commitsForLegacyPaths = await git.getCommitsThatAddFiles(legacyPaths, {
cwd
cwd,
});

// Fill in the blanks in the array of commits
Expand Down
13 changes: 13 additions & 0 deletions packages/assemble-release-plan/CHANGELOG.md
@@ -1,5 +1,18 @@
# @changesets/assemble-release-plan

## 6.0.0

### Major Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/get-dependents-graph@2.0.0
- @changesets/errors@0.2.0
- @changesets/types@6.0.0

## 5.2.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/assemble-release-plan/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/assemble-release-plan",
"version": "5.2.4",
"version": "6.0.0",
"description": "Reads changesets and adds information on dependents that need bumping",
"main": "dist/changesets-assemble-release-plan.cjs.js",
"module": "dist/changesets-assemble-release-plan.esm.js",
Expand All @@ -20,9 +20,9 @@
"repository": "https://github.com/changesets/changesets/tree/main/packages/assemble-release-plan",
"dependencies": {
"@babel/runtime": "^7.20.1",
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.6",
"@changesets/types": "^5.2.1",
"@changesets/errors": "^0.2.0",
"@changesets/get-dependents-graph": "^2.0.0",
"@changesets/types": "^6.0.0",
"@manypkg/get-packages": "^1.1.3",
"semver": "^7.5.3"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/changelog-git/CHANGELOG.md
@@ -1,5 +1,16 @@
# @changesets/changelog-git

## 0.2.0

### Minor Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/types@6.0.0

## 0.1.14

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/changelog-git/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/changelog-git",
"version": "0.1.14",
"version": "0.2.0",
"description": "A changelog entry generator for git that writes hashes",
"main": "dist/changesets-changelog-git.cjs.js",
"module": "dist/changesets-changelog-git.esm.js",
Expand All @@ -19,6 +19,6 @@
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-git",
"dependencies": {
"@changesets/types": "^5.2.1"
"@changesets/types": "^6.0.0"
}
}
12 changes: 12 additions & 0 deletions packages/changelog-github/CHANGELOG.md
@@ -1,5 +1,17 @@
# @changesets/changelog-github

## 0.5.0

### Minor Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/get-github-info@0.6.0
- @changesets/types@6.0.0

## 0.4.8

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/changelog-github/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/changelog-github",
"version": "0.4.8",
"version": "0.5.0",
"description": "A changelog entry generator for GitHub that links to commits, PRs and users",
"main": "dist/changesets-changelog-github.cjs.js",
"module": "dist/changesets-changelog-github.esm.js",
Expand All @@ -19,8 +19,8 @@
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-github",
"dependencies": {
"@changesets/get-github-info": "^0.5.2",
"@changesets/types": "^5.2.1",
"@changesets/get-github-info": "^0.6.0",
"@changesets/types": "^6.0.0",
"dotenv": "^8.1.0"
},
"devDependencies": {
Expand Down
27 changes: 27 additions & 0 deletions packages/cli/CHANGELOG.md
@@ -1,5 +1,32 @@
# @changesets/cli

## 2.27.0

### Minor Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

- [#1236](https://github.com/changesets/changesets/pull/1236) [`dfd4cca`](https://github.com/changesets/changesets/commit/dfd4cca84118df913feedfeac37a4939566ae447) Thanks [@camertron](https://github.com/camertron)! - Avoid using short commit IDs

### Patch Changes

- [#1053](https://github.com/changesets/changesets/pull/1053) [`90a870a`](https://github.com/changesets/changesets/commit/90a870af2e7bcbe1551210063492e20c256f4995) Thanks [@paescuj](https://github.com/paescuj)! - Replace the dependency `is-ci` with `ci-info`.

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a), [`dfd4cca`](https://github.com/changesets/changesets/commit/dfd4cca84118df913feedfeac37a4939566ae447)]:
- @changesets/assemble-release-plan@6.0.0
- @changesets/get-dependents-graph@2.0.0
- @changesets/apply-release-plan@7.0.0
- @changesets/get-release-plan@4.0.0
- @changesets/changelog-git@0.2.0
- @changesets/config@3.0.0
- @changesets/errors@0.2.0
- @changesets/logger@0.1.0
- @changesets/types@6.0.0
- @changesets/write@0.3.0
- @changesets/read@0.6.0
- @changesets/git@3.0.0
- @changesets/pre@2.0.0

## 2.26.2

### Patch Changes
Expand Down
28 changes: 14 additions & 14 deletions packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/cli",
"version": "2.26.2",
"version": "2.27.0",
"description": "Organise your package versioning and publishing to make both contributors and maintainers happy",
"bin": {
"changeset": "bin.js"
Expand Down Expand Up @@ -61,19 +61,19 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.1",
"@changesets/apply-release-plan": "^6.1.4",
"@changesets/assemble-release-plan": "^5.2.4",
"@changesets/changelog-git": "^0.1.14",
"@changesets/config": "^2.3.1",
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.6",
"@changesets/get-release-plan": "^3.0.17",
"@changesets/git": "^2.0.0",
"@changesets/logger": "^0.0.5",
"@changesets/pre": "^1.0.14",
"@changesets/read": "^0.5.9",
"@changesets/types": "^5.2.1",
"@changesets/write": "^0.2.3",
"@changesets/apply-release-plan": "^7.0.0",
"@changesets/assemble-release-plan": "^6.0.0",
"@changesets/changelog-git": "^0.2.0",
"@changesets/config": "^3.0.0",
"@changesets/errors": "^0.2.0",
"@changesets/get-dependents-graph": "^2.0.0",
"@changesets/get-release-plan": "^4.0.0",
"@changesets/git": "^3.0.0",
"@changesets/logger": "^0.1.0",
"@changesets/pre": "^2.0.0",
"@changesets/read": "^0.6.0",
"@changesets/types": "^6.0.0",
"@changesets/write": "^0.3.0",
"@manypkg/get-packages": "^1.1.3",
"@types/semver": "^7.5.0",
"ansi-colors": "^4.1.3",
Expand Down
14 changes: 14 additions & 0 deletions packages/config/CHANGELOG.md
@@ -1,5 +1,19 @@
# @changesets/config

## 3.0.0

### Major Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/get-dependents-graph@2.0.0
- @changesets/errors@0.2.0
- @changesets/logger@0.1.0
- @changesets/types@6.0.0

## 2.3.1

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/config",
"version": "2.3.1",
"version": "3.0.0",
"description": "Utilities for reading and parsing Changeset's config",
"main": "dist/changesets-config.cjs.js",
"module": "dist/changesets-config.esm.js",
Expand All @@ -23,10 +23,10 @@
"schema.json"
],
"dependencies": {
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.6",
"@changesets/logger": "^0.0.5",
"@changesets/types": "^5.2.1",
"@changesets/errors": "^0.2.0",
"@changesets/get-dependents-graph": "^2.0.0",
"@changesets/logger": "^0.1.0",
"@changesets/types": "^6.0.0",
"@manypkg/get-packages": "^1.1.3",
"fs-extra": "^7.0.1",
"micromatch": "^4.0.2"
Expand Down
6 changes: 6 additions & 0 deletions packages/errors/CHANGELOG.md
@@ -1,5 +1,11 @@
# @changesets/errors

## 0.2.0

### Minor Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

## 0.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/errors/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/errors",
"version": "0.1.4",
"version": "0.2.0",
"description": "Error classes for @changesets",
"main": "dist/changesets-errors.cjs.js",
"module": "dist/changesets-errors.esm.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/get-dependents-graph/CHANGELOG.md
@@ -1,5 +1,16 @@
# @changesets/get-dependents-graph

## 2.0.0

### Major Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

### Patch Changes

- Updated dependencies [[`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a)]:
- @changesets/types@6.0.0

## 1.3.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/get-dependents-graph/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/get-dependents-graph",
"version": "1.3.6",
"version": "2.0.0",
"description": "Get the graph of dependents in a monorepo",
"main": "dist/changesets-get-dependents-graph.cjs.js",
"module": "dist/changesets-get-dependents-graph.esm.js",
Expand All @@ -19,7 +19,7 @@
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-dependents-graph",
"dependencies": {
"@changesets/types": "^5.2.1",
"@changesets/types": "^6.0.0",
"@manypkg/get-packages": "^1.1.3",
"chalk": "^2.1.0",
"fs-extra": "^7.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/get-github-info/CHANGELOG.md
@@ -1,5 +1,11 @@
# @changesets/get-github-info

## 0.6.0

### Minor Changes

- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package.

## 0.5.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/get-github-info/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/get-github-info",
"version": "0.5.2",
"version": "0.6.0",
"description": "Get the GitHub username and PR number from a commit. Intended for use with changesets.",
"main": "dist/changesets-get-github-info.cjs.js",
"module": "dist/changesets-get-github-info.esm.js",
Expand Down

0 comments on commit 3c03496

Please sign in to comment.