Skip to content

Commit 8e892ec

Browse files
committedMar 2, 2023
chore(release): releasing packages [ci skip]
- @patternfly/react-code-editor@4.82.115 - @patternfly/react-core@4.276.8 - @patternfly/react-docs@5.103.78 - @patternfly/react-inline-edit-extension@4.86.121 - demo-app-ts@4.210.11 - @patternfly/react-table@4.112.42 - @patternfly/react-topology@4.91.38 - @patternfly/react-virtualized-extension@4.88.115

File tree

16 files changed

+88
-21
lines changed

16 files changed

+88
-21
lines changed
 

‎packages/react-code-editor/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.82.115](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@4.82.114...@patternfly/react-code-editor@4.82.115) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-code-editor
9+
10+
11+
12+
13+
614
## 4.82.114 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-code-editor

‎packages/react-code-editor/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-code-editor",
3-
"version": "4.82.114",
3+
"version": "4.82.115",
44
"description": "This package provides a PatternFly wrapper for the Monaco code editor\n",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",
@@ -30,7 +30,7 @@
3030
"clean": "rimraf dist"
3131
},
3232
"dependencies": {
33-
"@patternfly/react-core": "^4.276.7",
33+
"@patternfly/react-core": "^4.276.8",
3434
"@patternfly/react-icons": "^4.93.6",
3535
"@patternfly/react-styles": "^4.92.6",
3636
"react-dropzone": "9.0.0",

‎packages/react-core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.276.8](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-core@4.276.7...@patternfly/react-core@4.276.8) (2023-03-02)
7+
8+
9+
### Bug Fixes
10+
11+
* **TimePicker:** called onChange when pressing Enter ([#8765](https://github.com/patternfly/patternfly-react/issues/8765)) ([38510a3](https://github.com/patternfly/patternfly-react/commit/38510a3bf3be42e0d7dc1d0344ae81cb8864f9e8))
12+
13+
14+
15+
16+
617
## 4.276.7 (2023-03-01)
718

819

‎packages/react-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-core",
3-
"version": "4.276.7",
3+
"version": "4.276.8",
44
"description": "This library provides a set of common React components for use with the PatternFly reference implementation.",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",

‎packages/react-docs/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.103.78](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-docs@5.103.77...@patternfly/react-docs@5.103.78) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-docs
9+
10+
11+
12+
13+
614
## 5.103.77 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-docs

‎packages/react-docs/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/react-docs",
33
"description": "PatternFly React Docs",
4-
"version": "5.103.77",
4+
"version": "5.103.78",
55
"publishConfig": {
66
"access": "public",
77
"tag": "prerelease-v4"
@@ -24,15 +24,15 @@
2424
"dependencies": {
2525
"@patternfly/patternfly": "4.224.2",
2626
"@patternfly/react-charts": "^6.94.19",
27-
"@patternfly/react-code-editor": "^4.82.114",
28-
"@patternfly/react-core": "^4.276.7",
27+
"@patternfly/react-code-editor": "^4.82.115",
28+
"@patternfly/react-core": "^4.276.8",
2929
"@patternfly/react-icons": "^4.93.6",
30-
"@patternfly/react-inline-edit-extension": "^4.86.120",
30+
"@patternfly/react-inline-edit-extension": "^4.86.121",
3131
"@patternfly/react-styles": "^4.92.6",
32-
"@patternfly/react-table": "^4.112.41",
32+
"@patternfly/react-table": "^4.112.42",
3333
"@patternfly/react-tokens": "^4.94.6",
34-
"@patternfly/react-topology": "^4.91.37",
35-
"@patternfly/react-virtualized-extension": "^4.88.114"
34+
"@patternfly/react-topology": "^4.91.38",
35+
"@patternfly/react-virtualized-extension": "^4.88.115"
3636
},
3737
"devDependencies": {
3838
"@patternfly/documentation-framework": "1.8.0",

‎packages/react-inline-edit-extension/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.86.121](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-inline-edit-extension@4.86.120...@patternfly/react-inline-edit-extension@4.86.121) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-inline-edit-extension
9+
10+
11+
12+
13+
614
## 4.86.120 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-inline-edit-extension

‎packages/react-inline-edit-extension/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-inline-edit-extension",
3-
"version": "4.86.120",
3+
"version": "4.86.121",
44
"description": "This library provides inline editing support for PatternFly 4 React table",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",
@@ -30,10 +30,10 @@
3030
"clean": "rimraf dist"
3131
},
3232
"dependencies": {
33-
"@patternfly/react-core": "^4.276.7",
33+
"@patternfly/react-core": "^4.276.8",
3434
"@patternfly/react-icons": "^4.93.6",
3535
"@patternfly/react-styles": "^4.92.6",
36-
"@patternfly/react-table": "^4.112.41"
36+
"@patternfly/react-table": "^4.112.42"
3737
},
3838
"peerDependencies": {
3939
"react": "^16.8 || ^17 || ^18",

‎packages/react-integration/demo-app-ts/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.210.11](https://github.com/patternfly/patternfly-react/compare/demo-app-ts@4.210.10...demo-app-ts@4.210.11) (2023-03-02)
7+
8+
**Note:** Version bump only for package demo-app-ts
9+
10+
11+
12+
13+
614
## [4.210.10](https://github.com/patternfly/patternfly-react/compare/demo-app-ts@4.210.9...demo-app-ts@4.210.10) (2023-03-01)
715

816
**Note:** Version bump only for package demo-app-ts

‎packages/react-integration/demo-app-ts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "demo-app-ts",
33
"private": true,
4-
"version": "4.210.10",
4+
"version": "4.210.11",
55
"scripts": {
66
"build:demo-app": "webpack --mode production",
77
"start:demo-app": "webpack-dev-server",
88
"start:demo-app:hot": "webpack-dev-server --hot=true",
99
"serve:demo-app": "node scripts/serve"
1010
},
1111
"dependencies": {
12-
"@patternfly/react-core": "^4.276.7",
12+
"@patternfly/react-core": "^4.276.8",
1313
"react": "^18",
1414
"react-dom": "^18",
1515
"react-router": "^5.3.3",

‎packages/react-table/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.112.42](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-table@4.112.41...@patternfly/react-table@4.112.42) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-table
9+
10+
11+
12+
13+
614
## 4.112.41 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-table

‎packages/react-table/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-table",
3-
"version": "4.112.41",
3+
"version": "4.112.42",
44
"description": "This library provides a set of React table components for use with the PatternFly 4",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",
@@ -39,7 +39,7 @@
3939
"subpaths": "node scripts/copySubpaths.js"
4040
},
4141
"dependencies": {
42-
"@patternfly/react-core": "^4.276.7",
42+
"@patternfly/react-core": "^4.276.8",
4343
"@patternfly/react-icons": "^4.93.6",
4444
"@patternfly/react-styles": "^4.92.6",
4545
"@patternfly/react-tokens": "^4.94.6",

‎packages/react-topology/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.91.38](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-topology@4.91.37...@patternfly/react-topology@4.91.38) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-topology
9+
10+
11+
12+
13+
614
## 4.91.37 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-topology

‎packages/react-topology/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-topology",
3-
"version": "4.91.37",
3+
"version": "4.91.38",
44
"description": "This library provides a set of React topology view components for use with the PatternFly 4",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",
@@ -28,7 +28,7 @@
2828
"clean": "rimraf dist"
2929
},
3030
"dependencies": {
31-
"@patternfly/react-core": "^4.276.7",
31+
"@patternfly/react-core": "^4.276.8",
3232
"@patternfly/react-icons": "^4.93.6",
3333
"@patternfly/react-styles": "^4.92.6",
3434
"@types/d3": "^5.7.2",

‎packages/react-virtualized-extension/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.88.115](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-virtualized-extension@4.88.114...@patternfly/react-virtualized-extension@4.88.115) (2023-03-02)
7+
8+
**Note:** Version bump only for package @patternfly/react-virtualized-extension
9+
10+
11+
12+
13+
614
## 4.88.114 (2023-03-01)
715

816
**Note:** Version bump only for package @patternfly/react-virtualized-extension

‎packages/react-virtualized-extension/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/react-virtualized-extension",
3-
"version": "4.88.114",
3+
"version": "4.88.115",
44
"description": "This library provides efficient rendering extensions for PatternFly 4 React tables and lists.",
55
"main": "dist/js/index.js",
66
"module": "dist/esm/index.js",
@@ -30,7 +30,7 @@
3030
"clean": "rimraf dist"
3131
},
3232
"dependencies": {
33-
"@patternfly/react-core": "^4.276.7",
33+
"@patternfly/react-core": "^4.276.8",
3434
"@patternfly/react-icons": "^4.93.6",
3535
"@patternfly/react-styles": "^4.92.6",
3636
"linear-layout-vector": "0.0.1",

0 commit comments

Comments
 (0)
Please sign in to comment.