Skip to content

Release Tracking #250

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

Merged
merged 1 commit into from
Feb 20, 2025
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/kind-shirts-shout.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-jobs-think.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-dryers-remain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-mugs-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-files-remember.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sour-monkeys-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-fishes-begin.md

This file was deleted.

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

## 0.55.0

### Minor Changes

- [#3292](https://github.com/primer/view_components/pull/3292) [`66637a4`](https://github.com/opf/primer_view_components/commit/66637a4869431a53bcb39b24b907da7b930729ed) Thanks [@ktravers](https://github.com/ktravers)! - Improve Details component accessibility by setting aria-label and aria-expanded attributes correctly on initial render and when toggled open/closed.

### Patch Changes

- [#3327](https://github.com/primer/view_components/pull/3327) [`e3e29b0`](https://github.com/opf/primer_view_components/commit/e3e29b0e983b494fce7bdd95390908d4583ede16) Thanks [@acbreton](https://github.com/acbreton)! - Add preventScroll to focus call in Action Menu

- [#3319](https://github.com/primer/view_components/pull/3319) [`42db9dd`](https://github.com/opf/primer_view_components/commit/42db9dd724b0edd3806fdc0661f248d87b0d8f5f) Thanks [@ktravers](https://github.com/ktravers)! - Adds optional autofocus to ToggleSwitch

- [#3291](https://github.com/primer/view_components/pull/3291) [`aeaeb96`](https://github.com/opf/primer_view_components/commit/aeaeb9632f651bbfbb45c630a1d088b1fe3303b8) Thanks [@francinelucca](https://github.com/francinelucca)! - fix(ToggleSwitch): add X-Requested-With header

- [#3318](https://github.com/primer/view_components/pull/3318) [`081e5dd`](https://github.com/opf/primer_view_components/commit/081e5dd9f2912dc3b7070f2af5c235c31b5a306c) Thanks [@kendallgassner](https://github.com/kendallgassner)! - [ActionMenuForm] Add aria-describedby to the ActionMenuForm's button so that the label is describing the button

- [#3316](https://github.com/primer/view_components/pull/3316) [`4552438`](https://github.com/opf/primer_view_components/commit/45524387a016bb8dab7555bd40ff4dd2e84f3bb2) Thanks [@camertron](https://github.com/camertron)! - Correct accessibility issues in FormControl examples and address missing aria attributes

- [#3303](https://github.com/primer/view_components/pull/3303) [`7fbd8da`](https://github.com/opf/primer_view_components/commit/7fbd8da673f4a4c9459712379c240a923784f42d) Thanks [@camertron](https://github.com/camertron)! - Do not populate dynamic label with active item in multi-select mode

## 0.54.1

### Patch 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.54.1)
openproject-primer_view_components (0.55.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
openproject-octicons (>= 19.20.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.54.1)
openproject-primer_view_components (0.55.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
openproject-octicons (>= 19.20.0)
Expand Down
4 changes: 2 additions & 2 deletions lib/primer/view_components/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ module Primer
module ViewComponents
module VERSION
MAJOR = 0
MINOR = 54
PATCH = 1
MINOR = 55
PATCH = 0

STRING = [MAJOR, MINOR, PATCH].join(".")
end
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.54.1",
"version": "0.55.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