Skip to content

Commit

Permalink
chore: prepare release (#2481)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Apr 27, 2023
1 parent 78c8e44 commit f4f8e95
Show file tree
Hide file tree
Showing 14 changed files with 61 additions and 57 deletions.
5 changes: 0 additions & 5 deletions .changeset/base-tab-id.md

This file was deleted.

4 changes: 0 additions & 4 deletions .changeset/core-string-list-converter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-islands-retire.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/perfect-dragons-double.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/pf-popover.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-clouds-exist.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/test-helper-allupdates.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/two-pugs-add.md

This file was deleted.

12 changes: 12 additions & 0 deletions core/pfe-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @patternfly/pfe-core

## 2.3.0

### Minor Changes

- 78c8e4416: Added `StringListConverter` for managing comma-separated list attributes.

### Patch Changes

- 37c23c398: `overflow-controller`:
- improves display calculations for overflow scroll buttons
- adds smooth scroll behavior

## 2.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion core/pfe-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-core",
"version": "2.2.0",
"version": "2.3.0",
"license": "MIT",
"description": "PatternFly Elements Core Library",
"customElements": "custom-elements.json",
Expand Down
29 changes: 29 additions & 0 deletions elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @patternfly/elements

## 2.1.0

### Minor Changes

- 78c8e4416: ✨ Added `<pf-popover>`

```html
<pf-popover
heading="Popover heading"
body="Popovers are triggered by click rather than hover."
footer="Popover footer"
>
<pf-button>Toggle popover</pf-button>
</pf-popover>
```

- 9266ee5de: `<pf-button>`: expose `button` part for styling the internal button element

### Patch Changes

- 5a6683bf9: `<pf-tabs>`: improved accessibility for elements extending `BaseTab` and
`BaseTabPanel` by assigning random IDs when no exists.
- 32eecd6c1: `BaseTab`:
- fixed Safari focus issue on keyboard navigation
- fixed Safari focus issue on mouse click
- Updated dependencies [78c8e4416]
- Updated dependencies [37c23c398]
- @patternfly/pfe-core@2.3.0

## 2.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions elements/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@patternfly/elements",
"license": "MIT",
"version": "2.0.5",
"version": "2.1.0",
"description": "PatternFly Elements",
"customElements": "custom-elements.json",
"type": "module",
Expand Down Expand Up @@ -117,7 +117,7 @@
"Wes Ruvalcaba"
],
"dependencies": {
"@patternfly/pfe-core": "^2.2.0",
"@patternfly/pfe-core": "^2.3.0",
"lit": "2.6.1",
"tslib": "^2.4.1"
}
Expand Down
16 changes: 16 additions & 0 deletions tools/pfe-tools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @patternfly/pfe-tools

## 1.3.0

### Minor Changes

- 4832b29ab: **Test Helpers**: Added `allUpdates` test helper, which waits until an element
completely finishes updating.

```js
const element = await fixture(html`<my-el></my-el>`);
await allUpdates(element);
```

### Patch Changes

- a4c20b70d: **Dev Server**: updates router to use project subpath configuration

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion tools/pfe-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/pfe-tools",
"version": "1.2.0",
"version": "1.3.0",
"type": "module",
"description": "Development and build tools for PatternFly Elements and related projects",
"keywords": [
Expand Down

0 comments on commit f4f8e95

Please sign in to comment.