Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #950

Merged
merged 1 commit into from Oct 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 0 additions & 9 deletions .changeset/fast-jars-thank.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-spiders-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-kangaroos-tie.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/rich-horses-push.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/silent-ants-smell.md

This file was deleted.

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

## 6.1.1

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14), [`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/git@1.5.0
- @changesets/config@2.2.0
- @changesets/types@5.2.0

## 6.1.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/apply-release-plan/package.json
@@ -1,17 +1,17 @@
{
"name": "@changesets/apply-release-plan",
"version": "6.1.0",
"version": "6.1.1",
"description": "Takes a release plan and applies it to packages",
"main": "dist/apply-release-plan.cjs.js",
"module": "dist/apply-release-plan.esm.js",
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/apply-release-plan",
"dependencies": {
"@babel/runtime": "^7.10.4",
"@changesets/config": "^2.1.1",
"@changesets/config": "^2.2.0",
"@changesets/get-version-range-type": "^0.3.2",
"@changesets/git": "^1.4.1",
"@changesets/types": "^5.1.0",
"@changesets/git": "^1.5.0",
"@changesets/types": "^5.2.0",
"@manypkg/get-packages": "^1.1.3",
"detect-indent": "^6.0.0",
"fs-extra": "^7.0.1",
Expand Down
18 changes: 18 additions & 0 deletions packages/assemble-release-plan/CHANGELOG.md
@@ -1,5 +1,23 @@
# @changesets/assemble-release-plan

## 5.2.2

### Patch Changes

- [#949](https://github.com/changesets/changesets/pull/949) [`64585ea`](https://github.com/changesets/changesets/commit/64585ea4323c4cf51a23b0635990b568d1f58b2b) Thanks [@Andarist](https://github.com/Andarist), [@BPScott](https://github.com/BPScott)! - Fixed the issue that caused transitive dependents of dev dependents to be bumped when a package got bumped and when using `___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH.updateInternalDependents: "always"`. To illustrate this with an example:

```
pkg-a - version: 1.0.0
pkg-b - devDependencies['pkg-a']: 1.0.0
pkg-c - dependencies['pkg-b']: 1.0.0
```

With a changeset for `pkg-a` the `pkg-c` could have been sometimes incorrectly released.

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0
- @changesets/get-dependents-graph@1.3.4

## 5.2.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/assemble-release-plan/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/assemble-release-plan",
"version": "5.2.1",
"version": "5.2.2",
"description": "Reads changesets and adds information on dependents that need bumping",
"main": "dist/assemble-release-plan.cjs.js",
"module": "dist/assemble-release-plan.esm.js",
Expand All @@ -9,8 +9,8 @@
"dependencies": {
"@babel/runtime": "^7.10.4",
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.3",
"@changesets/types": "^5.1.0",
"@changesets/get-dependents-graph": "^1.3.4",
"@changesets/types": "^5.2.0",
"@manypkg/get-packages": "^1.1.3",
"semver": "^5.4.1"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/changelog-git/CHANGELOG.md
@@ -1,5 +1,12 @@
# @changesets/changelog-git

## 0.1.13

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0

## 0.1.12

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

## 0.4.7

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0

## 0.4.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/changelog-github/package.json
@@ -1,14 +1,14 @@
{
"name": "@changesets/changelog-github",
"version": "0.4.6",
"version": "0.4.7",
"description": "A changelog entry generator for GitHub that links to commits, PRs and users",
"main": "dist/changelog-github.cjs.js",
"module": "dist/changelog-github.esm.js",
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/changelog-github",
"dependencies": {
"@changesets/get-github-info": "^0.5.1",
"@changesets/types": "^5.1.0",
"@changesets/types": "^5.2.0",
"dotenv": "^8.1.0"
},
"devDependencies": {
Expand Down
37 changes: 37 additions & 0 deletions packages/cli/CHANGELOG.md
@@ -1,5 +1,42 @@
# @changesets/cli

## 2.25.0

### Minor Changes

- [#662](https://github.com/changesets/changesets/pull/662) [`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14) Thanks [@JakeGinnivan](https://github.com/JakeGinnivan)! - Private packages can now be tagged in the same way public packages do when they are published to npm.

To enable set `privatePackages: { version: true, tag: true }` in your config.json.

You can also now opt private packages out of versioning entirely by setting `privatePackages: false`.

### Patch Changes

- [#953](https://github.com/changesets/changesets/pull/953) [`98d63e0`](https://github.com/changesets/changesets/commit/98d63e0a85506175e219b93478a814f8588c52d3) Thanks [@alexamy](https://github.com/alexamy)! - Add a new line at the end of the default config file generated when invoking `changeset init`.

- [#949](https://github.com/changesets/changesets/pull/949) [`64585ea`](https://github.com/changesets/changesets/commit/64585ea4323c4cf51a23b0635990b568d1f58b2b) Thanks [@Andarist](https://github.com/Andarist), [@BPScott](https://github.com/BPScott)! - Fixed the issue that caused transitive dependents of dev dependents to be bumped when a package got bumped and when using `___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH.updateInternalDependents: "always"`. To illustrate this with an example:

```
pkg-a - version: 1.0.0
pkg-b - devDependencies['pkg-a']: 1.0.0
pkg-c - dependencies['pkg-b']: 1.0.0
```

With a changeset for `pkg-a` the `pkg-c` could have been sometimes incorrectly released.

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14), [`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14), [`64585ea`](https://github.com/changesets/changesets/commit/64585ea4323c4cf51a23b0635990b568d1f58b2b)]:
- @changesets/git@1.5.0
- @changesets/config@2.2.0
- @changesets/types@5.2.0
- @changesets/assemble-release-plan@5.2.2
- @changesets/apply-release-plan@6.1.1
- @changesets/read@0.5.8
- @changesets/get-release-plan@3.0.15
- @changesets/changelog-git@0.1.13
- @changesets/get-dependents-graph@1.3.4
- @changesets/pre@1.0.13
- @changesets/write@0.2.1

## 2.24.4

### Patch Changes
Expand Down
24 changes: 12 additions & 12 deletions packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/cli",
"version": "2.24.4",
"version": "2.25.0",
"description": "Organise your package versioning and publishing to make both contributors and maintainers happy",
"bin": {
"changeset": "bin.js"
Expand Down Expand Up @@ -31,19 +31,19 @@
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.10.4",
"@changesets/apply-release-plan": "^6.1.0",
"@changesets/assemble-release-plan": "^5.2.1",
"@changesets/changelog-git": "^0.1.12",
"@changesets/config": "^2.1.1",
"@changesets/apply-release-plan": "^6.1.1",
"@changesets/assemble-release-plan": "^5.2.2",
"@changesets/changelog-git": "^0.1.13",
"@changesets/config": "^2.2.0",
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.3",
"@changesets/get-release-plan": "^3.0.14",
"@changesets/git": "^1.4.1",
"@changesets/get-dependents-graph": "^1.3.4",
"@changesets/get-release-plan": "^3.0.15",
"@changesets/git": "^1.5.0",
"@changesets/logger": "^0.0.5",
"@changesets/pre": "^1.0.12",
"@changesets/read": "^0.5.7",
"@changesets/types": "^5.1.0",
"@changesets/write": "^0.2.0",
"@changesets/pre": "^1.0.13",
"@changesets/read": "^0.5.8",
"@changesets/types": "^5.2.0",
"@changesets/write": "^0.2.1",
"@manypkg/get-packages": "^1.1.3",
"@types/is-ci": "^3.0.0",
"@types/semver": "^6.0.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/config/CHANGELOG.md
@@ -1,5 +1,17 @@
# @changesets/config

## 2.2.0

### Minor Changes

- [#662](https://github.com/changesets/changesets/pull/662) [`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14) Thanks [@JakeGinnivan](https://github.com/JakeGinnivan)! - Added support for the `privatePackages` property in the config.

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0
- @changesets/get-dependents-graph@1.3.4

## 2.1.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/config/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/config",
"version": "2.1.1",
"version": "2.2.0",
"description": "Utilities for reading and parsing Changeset's config",
"main": "dist/config.cjs.js",
"module": "dist/config.esm.js",
Expand All @@ -12,9 +12,9 @@
],
"dependencies": {
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.3.3",
"@changesets/get-dependents-graph": "^1.3.4",
"@changesets/logger": "^0.0.5",
"@changesets/types": "^5.1.0",
"@changesets/types": "^5.2.0",
"@manypkg/get-packages": "^1.1.3",
"fs-extra": "^7.0.1",
"micromatch": "^4.0.2"
Expand Down
7 changes: 7 additions & 0 deletions packages/get-dependents-graph/CHANGELOG.md
@@ -1,5 +1,12 @@
# @changesets/get-dependents-graph

## 1.3.4

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0

## 1.3.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/get-dependents-graph/package.json
@@ -1,13 +1,13 @@
{
"name": "@changesets/get-dependents-graph",
"version": "1.3.3",
"version": "1.3.4",
"description": "Get the graph of dependents in a monorepo",
"main": "dist/get-dependents-graph.cjs.js",
"module": "dist/get-dependents-graph.esm.js",
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-dependents-graph",
"dependencies": {
"@changesets/types": "^5.1.0",
"@changesets/types": "^5.2.0",
"@manypkg/get-packages": "^1.1.3",
"chalk": "^2.1.0",
"fs-extra": "^7.0.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/get-release-plan/CHANGELOG.md
@@ -1,5 +1,16 @@
# @changesets/get-release-plan

## 3.0.15

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14), [`64585ea`](https://github.com/changesets/changesets/commit/64585ea4323c4cf51a23b0635990b568d1f58b2b)]:
- @changesets/config@2.2.0
- @changesets/types@5.2.0
- @changesets/assemble-release-plan@5.2.2
- @changesets/read@0.5.8
- @changesets/pre@1.0.13

## 3.0.14

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/get-release-plan/package.json
@@ -1,18 +1,18 @@
{
"name": "@changesets/get-release-plan",
"version": "3.0.14",
"version": "3.0.15",
"description": "Reads changesets and adds information on dependents that need bumping",
"main": "dist/get-release-plan.cjs.js",
"module": "dist/get-release-plan.esm.js",
"license": "MIT",
"repository": "https://github.com/changesets/changesets/tree/main/packages/get-release-plan",
"dependencies": {
"@babel/runtime": "^7.10.4",
"@changesets/assemble-release-plan": "^5.2.1",
"@changesets/config": "^2.1.1",
"@changesets/pre": "^1.0.12",
"@changesets/read": "^0.5.7",
"@changesets/types": "^5.1.0",
"@changesets/assemble-release-plan": "^5.2.2",
"@changesets/config": "^2.2.0",
"@changesets/pre": "^1.0.13",
"@changesets/read": "^0.5.8",
"@changesets/types": "^5.2.0",
"@manypkg/get-packages": "^1.1.3"
}
}
7 changes: 7 additions & 0 deletions packages/get-workspaces/CHANGELOG.md
@@ -1,5 +1,12 @@
# get-workspaces

## 1.0.9

### Patch Changes

- Updated dependencies [[`8c08469`](https://github.com/changesets/changesets/commit/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14)]:
- @changesets/types@5.2.0

## 1.0.8

### Patch Changes
Expand Down