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

Release Tracking #166

Merged
merged 1 commit into from
Aug 22, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/brave-bugs-tap.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/brown-tables-do.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chatty-jokes-walk.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/khaki-waves-lie.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/quick-falcons-cheat.md

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# CHANGELOG

## 0.43.0

### Minor Changes

- [#3009](https://github.com/primer/view_components/pull/3009) [`8f06f7a`](https://github.com/opf/primer_view_components/commit/8f06f7a61bccf684db56ff8ddd275447db10c409) Thanks [@camertron](https://github.com/camertron)! - Include value in event metadata when SelectPanel items are activated

### Patch Changes

- [#2983](https://github.com/primer/view_components/pull/2983) [`5d68193`](https://github.com/opf/primer_view_components/commit/5d681938247c4a957d62b05c2560fef24195ff51) Thanks [@keithamus](https://github.com/keithamus)! - Ensure ActionMenu restores focus on close of a dialog, if a menu item opened that dialog

- [#3010](https://github.com/primer/view_components/pull/3010) [`ebab85a`](https://github.com/opf/primer_view_components/commit/ebab85a3a3d2644079aaf495fd1e6689b89f713b) Thanks [@camertron](https://github.com/camertron)! - Fixes several SelectPanel bugs:

1. If multiple server-rendered items are checked, the panel will only show one item checked.
2. If no `data-value` attributes are provided, panels in single-select mode will allow multiple items to be checked.

- [#3011](https://github.com/primer/view_components/pull/3011) [`9507093`](https://github.com/opf/primer_view_components/commit/9507093d6e9a1f7b04c25d66d51bdbb5da805fdd) Thanks [@JoyceZhu](https://github.com/JoyceZhu)! - Remove "loading" screenreader-only text after Spinner load for
`eventually_local` SelectPanels

- [#3012](https://github.com/primer/view_components/pull/3012) [`adcdddd`](https://github.com/opf/primer_view_components/commit/adcdddd1c1d0524c4d2f6d57980052914d680dc8) Thanks [@orhantoy](https://github.com/orhantoy)! - Fix a bug where all requests from the `ToggleSwitch` view component are being made with a Turbo Accept header.
This started happening after the change in #2964 because `data-turbo=false` gets interpreted as a truthy value.

## 0.42.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
openproject-primer_view_components (0.42.0)
openproject-primer_view_components (0.43.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
openproject-octicons (>= 19.17.0)
Expand Down
2 changes: 1 addition & 1 deletion demo/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
openproject-primer_view_components (0.42.0)
openproject-primer_view_components (0.43.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
openproject-octicons (>= 19.17.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/primer/view_components/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Primer
module ViewComponents
module VERSION
MAJOR = 0
MINOR = 42
MINOR = 43
PATCH = 0

STRING = [MAJOR, MINOR, PATCH].join(".")
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openproject/primer-view-components",
"version": "0.42.0",
"version": "0.43.0",
"description": "ViewComponents of the Primer Design System for OpenProject",
"main": "app/assets/javascripts/primer_view_components.js",
"module": "app/components/primer/primer.js",
Expand Down
Loading