diff --git a/.changeset/grumpy-maps-shave.md b/.changeset/grumpy-maps-shave.md deleted file mode 100644 index 2bd49b0acb2..00000000000 --- a/.changeset/grumpy-maps-shave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@primer/react': patch ---- - -Update type exports to prevent missing export warnings - - diff --git a/.changeset/lazy-eyes-bow.md b/.changeset/lazy-eyes-bow.md deleted file mode 100644 index 6103291c1de..00000000000 --- a/.changeset/lazy-eyes-bow.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@primer/react": patch ---- - -Use `control` CSS var with fallback for form component border-color - - diff --git a/.changeset/silly-dots-lick.md b/.changeset/silly-dots-lick.md deleted file mode 100644 index dc22c64df64..00000000000 --- a/.changeset/silly-dots-lick.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@primer/react": minor ---- - -Update ActionList checkbox styles to form checkbox styles (impacts ActionMenu and SelectPanel) - - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d8e711cccc6..78e5f88b0ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,38 +3,33 @@ name: Release on: push: branches: - - main - - next-major + - github_token_release + # - main + # - next-major jobs: - get-access-token: - runs-on: ubuntu-latest - steps: - - id: get-access-token - uses: camertron/github-app-installation-auth-action@v1 - with: - app-id: ${{ vars.PRIMER_APP_ID_SHARED }} - private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }} - client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }} - client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }} - installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }} - release-main: - if: github.ref_name == 'main' + # if: github.ref_name == 'main' name: Main - needs: get-access-token - uses: primer/.github/.github/workflows/release.yml@main + uses: primer/.github/.github/workflows/release_with_app.yml@main secrets: - gh_token: ${{ needs.get-access-token.steps.get-access-token.outputs.access-token }} npm_token: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} + app-id: ${{ vars.PRIMER_APP_ID_SHARED }} + private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }} + client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }} + client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }} + installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }} release-next-major: if: github.ref_name == 'next-major' name: Next major - needs: get-access-token - uses: primer/.github/.github/workflows/release.yml@main + uses: primer/.github/.github/workflows/release_with_app.yml@main with: title: Release tracking (next major) secrets: - gh_token: ${{ needs.get-access-token.steps.get-access-token.outputs.access-token }} npm_token: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} + app-id: ${{ vars.PRIMER_APP_ID_SHARED }} + private-key: ${{ secrets.PRIMER_APP_PRIVATE_KEY_SHARED }} + client-id: ${{ vars.PRIMER_APP_CLIENT_ID_SHARED }} + client-secret: ${{ secrets.PRIMER_APP_CLIENT_SECRET_SHARED }} + installation-id: ${{ vars.PRIMER_APP_INSTALLATION_ID_SHARED }} diff --git a/CHANGELOG.md b/CHANGELOG.md index d29c1e43e08..5ff3b37b7f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # @primer/components +## 35.29.0 + +### Minor Changes + +- [#3607](https://github.com/primer/react/pull/3607) [`c0e22fc1`](https://github.com/primer/react/commit/c0e22fc14697627c81c8a21137c72350e8d1a703) Thanks [@langermank](https://github.com/langermank)! - Update ActionList checkbox styles to form checkbox styles (impacts ActionMenu and SelectPanel) + + + +### Patch Changes + +- [#3662](https://github.com/primer/react/pull/3662) [`2ca670a8`](https://github.com/primer/react/commit/2ca670a882925ce2cbd447d52f1ac390efe29253) Thanks [@joshblack](https://github.com/joshblack)! - Update type exports to prevent missing export warnings + + + +- [#3654](https://github.com/primer/react/pull/3654) [`556d826a`](https://github.com/primer/react/commit/556d826af1dd9cc74f8bf22e7f0f521d185a87d2) Thanks [@langermank](https://github.com/langermank)! - Use `control` CSS var with fallback for form component border-color + + + ## 35.28.0 ### Minor Changes diff --git a/package.json b/package.json index 0919a0d3920..c201231d275 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/react", - "version": "35.28.0", + "version": "35.29.0", "description": "An implementation of GitHub's Primer Design System using React", "main": "lib/index.js", "module": "lib-esm/index.js",