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 #514

Merged
merged 1 commit into from Jan 14, 2021
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
5 changes: 0 additions & 5 deletions .changeset/chatty-plums-watch.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/new-radios-raise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-roses-hammer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/some-other-changeset.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yet-another-core-changeset.md

This file was deleted.

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

## 0.2.8

### Patch Changes

- [`3436c53`](https://github.com/atlassian/changesets/commit/3436c53acf444c2ce19f8548920b7b73461a9c76) [#510](https://github.com/atlassian/changesets/pull/510) Thanks [@tuanddd](https://github.com/tuanddd)! - Added validation rule for invalid `repo` arguments.

- Updated dependencies [[`3436c53`](https://github.com/atlassian/changesets/commit/3436c53acf444c2ce19f8548920b7b73461a9c76)]:
- @changesets/get-github-info@0.4.5

## 0.2.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/changelog-github/package.json
@@ -1,13 +1,13 @@
{
"name": "@changesets/changelog-github",
"version": "0.2.7",
"version": "0.2.8",
"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/master/packages/changelog-github",
"dependencies": {
"@changesets/get-github-info": "^0.4.4",
"@changesets/get-github-info": "^0.4.5",
"@changesets/types": "^3.0.0",
"dotenv": "^8.1.0"
}
Expand Down
13 changes: 13 additions & 0 deletions packages/cli/CHANGELOG.md
@@ -1,5 +1,18 @@
# @changesets/cli

## 2.13.0

### Minor Changes

- [`412b4b9`](https://github.com/atlassian/changesets/commit/412b4b97e53b6326e8e733eb7d4e1f5738e6fed0) [#504](https://github.com/atlassian/changesets/pull/504) Thanks [@vitorbal](https://github.com/vitorbal)! - `changeset status` command no longer errors when no packages have been changed.

* [`24d7bc9`](https://github.com/atlassian/changesets/commit/24d7bc9e56a6dce7c64b39e8f73e50e21762faac) [#495](https://github.com/atlassian/changesets/pull/495) Thanks [@RoystonS](https://github.com/RoystonS)! - Automatically deepen shallow clones in order to determine the correct commit at which changesets were added. This helps Git-based changelog generators to always link to the correct commit. From now on it's not required to configure `fetch-depth: 0` for your `actions/checkout` when using [Changesets GitHub action](https://github.com/changesets/action).

### Patch Changes

- Updated dependencies [[`24d7bc9`](https://github.com/atlassian/changesets/commit/24d7bc9e56a6dce7c64b39e8f73e50e21762faac), [`24d7bc9`](https://github.com/atlassian/changesets/commit/24d7bc9e56a6dce7c64b39e8f73e50e21762faac)]:
- @changesets/git@1.1.0

## 2.12.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/cli",
"version": "2.12.0",
"version": "2.13.0",
"description": "Organise your package versioning and publishing to make both contributors and maintainers happy",
"bin": {
"changeset": "bin.js"
Expand Down Expand Up @@ -30,7 +30,7 @@
"@changesets/errors": "^0.1.4",
"@changesets/get-dependents-graph": "^1.1.3",
"@changesets/get-release-plan": "^2.0.1",
"@changesets/git": "^1.0.6",
"@changesets/git": "^1.1.0",
"@changesets/logger": "^0.0.5",
"@changesets/pre": "^1.0.4",
"@changesets/read": "^0.4.6",
Expand Down
6 changes: 6 additions & 0 deletions packages/get-github-info/CHANGELOG.md
@@ -1,5 +1,11 @@
# @changesets/get-github-info

## 0.4.5

### Patch Changes

- [`3436c53`](https://github.com/atlassian/changesets/commit/3436c53acf444c2ce19f8548920b7b73461a9c76) [#510](https://github.com/atlassian/changesets/pull/510) Thanks [@tuanddd](https://github.com/tuanddd)! - Added validation rule for invalid `repo` arguments.

## 0.4.4

### 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.4.4",
"version": "0.4.5",
"description": "Get the GitHub username and PR number from a commit. Intended for use with changesets.",
"main": "dist/get-github-info.cjs.js",
"module": "dist/get-github-info.esm.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/git/CHANGELOG.md
@@ -1,5 +1,14 @@
# @changesets/git

## 1.1.0

### Minor Changes

- [`24d7bc9`](https://github.com/atlassian/changesets/commit/24d7bc9e56a6dce7c64b39e8f73e50e21762faac) [#495](https://github.com/atlassian/changesets/pull/495) Thanks [@RoystonS](https://github.com/RoystonS)! - Automatically deepen shallow clones in order to determine the correct commit at which changesets were added.

* [`24d7bc9`](https://github.com/atlassian/changesets/commit/24d7bc9e56a6dce7c64b39e8f73e50e21762faac) [#495](https://github.com/atlassian/changesets/pull/495) Thanks [@RoystonS](https://github.com/RoystonS)! - Deprecate the `getCommitThatAddsFile` function. It's replaced with a bulk `getCommitsThatAddFiles` operation which will safely deepen a
shallow repo whilst processing multiple filenames simultaneously.

## 1.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/git/package.json
@@ -1,6 +1,6 @@
{
"name": "@changesets/git",
"version": "1.0.6",
"version": "1.1.0",
"description": "Some git helpers that changesets use to get information",
"main": "dist/git.cjs.js",
"module": "dist/git.esm.js",
Expand Down