Skip to content

Commit 2b6c6e3

Browse files
chore: prepare release (rc) (#2389)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent dd9aae4 commit 2b6c6e3

File tree

11 files changed

+73
-8
lines changed

11 files changed

+73
-8
lines changed

.changeset/pre.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,25 @@
77
"@patternfly/create-element": "1.0.0-rc.0",
88
"@patternfly/eslint-config-elements": "1.0.0-rc.0",
99
"netlify-plugin-github-actions": "1.0.0-rc.0",
10-
"@patternfly/pfe-tools": "1.0.0-rc.0"
10+
"@patternfly/pfe-tools": "1.0.0-rc.0",
11+
"@patternfly/eslint-plugin-elements": "1.0.0-rc.1"
1112
},
1213
"changesets": [
1314
"chilled-dogs-guess",
15+
"chilly-pens-marry",
16+
"core-overflow-controller",
1417
"core",
1518
"create-element",
1619
"curvy-windows-poke",
1720
"elements",
21+
"eslint-plugin",
22+
"famous-cars-dress",
23+
"giant-trainers-jam",
1824
"itchy-roses-vanish",
25+
"lint-decorator-imports",
1926
"package-dot-export",
2027
"package-entrypoints",
28+
"perfect-fishes-study",
2129
"pf-accordion",
2230
"pf-avatar",
2331
"pf-badge",
@@ -40,6 +48,7 @@
4048
"rc-1",
4149
"silent-penguins-kneel",
4250
"smooth-eyes-thank",
51+
"tabs-update-overflow",
4352
"tools-11ty-anchor",
4453
"tools-analyzer-demos",
4554
"tools-dev-server-demo-exports",

core/pfe-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @patternfly/pfe-core
22

3+
## 2.0.0-rc.2
4+
5+
### Minor Changes
6+
7+
- 530ef7155: ✨ Added `OverflowController`
8+
9+
When added to a container and given a child array of elements,
10+
`OverflowController` checks to see if those elements exceed the bounds of the
11+
container.
12+
13+
- 2e1fb5705: `InternalsController`: added `labels` and `validity` getters; added `setFormValue`, `setValidity`, `checkValidity` and `reportValidity` methods
14+
315
## 2.0.0-rc.1
416

517
### Patch Changes

core/pfe-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/pfe-core",
3-
"version": "2.0.0-rc.1",
3+
"version": "2.0.0-rc.2",
44
"license": "MIT",
55
"description": "PatternFly Elements Core Library",
66
"customElements": "custom-elements.json",

elements/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @patternfly/elements
22

3+
## 2.0.0-rc.6
4+
5+
### Patch Changes
6+
7+
- 67c3c351b: improved performance when loading individual elements
8+
- 530ef7155: `<pf-tabs>`: integrated overflow controller.
9+
- Updated dependencies [530ef7155]
10+
- Updated dependencies [2e1fb5705]
11+
- @patternfly/pfe-core@2.0.0-rc.2
12+
313
## 2.0.0-rc.5
414

515
### Patch Changes

elements/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/elements",
33
"license": "MIT",
4-
"version": "2.0.0-rc.5",
4+
"version": "2.0.0-rc.6",
55
"description": "PatternFly Elements",
66
"customElements": "custom-elements.json",
77
"type": "module",
@@ -116,7 +116,7 @@
116116
"Wes Ruvalcaba"
117117
],
118118
"dependencies": {
119-
"@patternfly/pfe-core": "^2.0.0-rc.1",
119+
"@patternfly/pfe-core": "^2.0.0-rc.2",
120120
"lit": "2.6.1",
121121
"tslib": "^2.4.1"
122122
}

tools/eslint-config/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @patternfly/eslint-config-elements
22

3+
## 1.0.0-rc.2
4+
5+
### Patch Changes
6+
7+
- 67c3c351b: ✨ Added `@patternfly/eslint-plugin-elements`
8+
9+
Initial release contains a single rule:
10+
11+
- `no-lit-decorators-index-import` enforces that decorator imports from lit are
12+
tree-shaken in source
13+
14+
- Updated dependencies [67c3c351b]
15+
- @patternfly/eslint-plugin-elements@1.0.0-rc.2
16+
317
## 1.0.0-rc.1
418

519
### Patch Changes

tools/eslint-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/eslint-config-elements",
3-
"version": "1.0.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"description": "JavaScript Code Standards for PatternFly Elements",
55
"author": "Benny Powers <[email protected]>",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"directory": "tools/eslint-config"
1919
},
2020
"peerDependencies": {
21-
"@patternfly/eslint-plugin-elements": "^1.0.0-rc.1"
21+
"@patternfly/eslint-plugin-elements": "^1.0.0-rc.2"
2222
},
2323
"dependencies": {
2424
"@types/eslint": "^8.4.10",

tools/eslint-plugin/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# @patternfly/eslint-plugin-elements
2+
3+
## 1.0.0-rc.2
4+
5+
### Major Changes
6+
7+
- 67c3c351b: ✨ Added `@patternfly/eslint-plugin-elements`
8+
9+
Initial release contains a single rule:
10+
11+
- `no-lit-decorators-index-import` enforces that decorator imports from lit are
12+
tree-shaken in source

tools/eslint-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/eslint-plugin-elements",
3-
"version": "1.0.0-rc.1",
3+
"version": "1.0.0-rc.2",
44
"description": "JavaScript Code Standards for PatternFly Elements",
55
"author": "Benny Powers <[email protected]>",
66
"license": "MIT",

tools/pfe-tools/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @patternfly/pfe-tools
22

3+
## 1.0.0-rc.8
4+
5+
### Patch Changes
6+
7+
- 0a22a3375: `dev-server`: refresh element css when files change
8+
- f03a41941: 11ty plugin: calculate path to demo files in more circumstances
9+
- 42d5cd9fb: `a11ySnapshot`: fixed typescript types
10+
311
## 1.0.0-rc.7
412

513
### Patch Changes

0 commit comments

Comments
 (0)