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

Merged
merged 1 commit into from
Sep 12, 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/chilly-berries-retire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curly-phones-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-foxes-scream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-zoos-scream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/old-starfishes-sell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-hats-applaud.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-vans-unite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-points-cross.md

This file was deleted.

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

## 0.34.0

### Minor Changes

- [#3062](https://github.com/primer/view_components/pull/3062) [`b45ef04`](https://github.com/primer/view_components/commit/b45ef044eb08788c7abff7cbd962da6d0ca56aa5) Thanks [@dombesz](https://github.com/dombesz)! - Trigger an input event when the primer-text-field clear button is pressed.

### Patch Changes

- [#3054](https://github.com/primer/view_components/pull/3054) [`4434ec0`](https://github.com/primer/view_components/commit/4434ec03af760a950060f58549243aa2842be045) Thanks [@camertron](https://github.com/camertron)! - [SelectPanel] Disallow passing `role:` argument

- [#3077](https://github.com/primer/view_components/pull/3077) [`66488a3`](https://github.com/primer/view_components/commit/66488a30da6cccdf58367d0b20262af5afa597a1) Thanks [@camertron](https://github.com/camertron)! - [SelectPanel] Fix tab index issue in multi-select mode

- [#3044](https://github.com/primer/view_components/pull/3044) [`b57b63a`](https://github.com/primer/view_components/commit/b57b63ab909a3afebd291f91d8e59db5ee9c0998) Thanks [@jamieshark](https://github.com/jamieshark)! - SelectPanel - design bug fixes. Adds a divider below the filter, adjusts min height for loading and error states, moves banner error above input filter."

- [#3053](https://github.com/primer/view_components/pull/3053) [`871c818`](https://github.com/primer/view_components/commit/871c8184c8d3b70565052b419eec04ead2a894e0) Thanks [@camertron](https://github.com/camertron)! - [SelectPanel] Raise an error when remote fetch + hidden filter argument combo

- [#3058](https://github.com/primer/view_components/pull/3058) [`269b02f`](https://github.com/primer/view_components/commit/269b02f221145af4acfb6fa8b4e15ef66c781b4c) Thanks [@langermank](https://github.com/langermank)! - `Label` padding updates to match PRC

- [#3055](https://github.com/primer/view_components/pull/3055) [`ca4eae5`](https://github.com/primer/view_components/commit/ca4eae53c51abcd26b7fbaad78b6722e4c67a7e7) Thanks [@camertron](https://github.com/camertron)! - Remove OpenStruct from primer_octicon cop

- [#3057](https://github.com/primer/view_components/pull/3057) [`96b42db`](https://github.com/primer/view_components/commit/96b42db2e0c0402008d2e00851e481d993b1506e) Thanks [@owenniblock](https://github.com/owenniblock)! - Don't select SelectPanel::Item when item is a link

## 0.33.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:
primer_view_components (0.33.0)
primer_view_components (0.34.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
octicons (>= 18.0.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:
primer_view_components (0.33.0)
primer_view_components (0.34.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
octicons (>= 18.0.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 = 33
MINOR = 34
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": "@primer/view-components",
"version": "0.33.0",
"version": "0.34.0",
"description": "ViewComponents for the Primer Design System",
"main": "app/assets/javascripts/primer_view_components.js",
"module": "app/components/primer/primer.js",
Expand Down
Loading