From fd42e20b634504ac5a60fd39d56d20a2151d2fa6 Mon Sep 17 00:00:00 2001 From: patternfly-build Date: Mon, 7 Oct 2024 19:09:08 +0000 Subject: [PATCH] chore(release): releasing packages [ci skip] - @patternfly/react-code-editor@5.4.4 - @patternfly/react-core@5.4.2 - @patternfly/react-docs@6.4.6 - @patternfly/react-drag-drop@5.4.2 - demo-app-ts@5.4.5 - @patternfly/react-table@5.4.2 - @patternfly/react-templates@1.1.2 --- packages/react-code-editor/CHANGELOG.md | 4 ++++ packages/react-code-editor/package.json | 2 +- packages/react-core/CHANGELOG.md | 7 +++++++ packages/react-core/package.json | 2 +- packages/react-docs/CHANGELOG.md | 4 ++++ packages/react-docs/package.json | 2 +- packages/react-drag-drop/CHANGELOG.md | 4 ++++ packages/react-drag-drop/package.json | 2 +- packages/react-integration/demo-app-ts/CHANGELOG.md | 4 ++++ packages/react-integration/demo-app-ts/package.json | 2 +- packages/react-table/CHANGELOG.md | 4 ++++ packages/react-table/package.json | 2 +- packages/react-templates/CHANGELOG.md | 4 ++++ packages/react-templates/package.json | 2 +- 14 files changed, 38 insertions(+), 7 deletions(-) diff --git a/packages/react-code-editor/CHANGELOG.md b/packages/react-code-editor/CHANGELOG.md index 58b4eec1027..e7b52a95e0d 100644 --- a/packages/react-code-editor/CHANGELOG.md +++ b/packages/react-code-editor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.4.4](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@5.4.3...@patternfly/react-code-editor@5.4.4) (2024-10-07) + +**Note:** Version bump only for package @patternfly/react-code-editor + ## [5.4.3](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-code-editor@5.4.2...@patternfly/react-code-editor@5.4.3) (2024-09-23) **Note:** Version bump only for package @patternfly/react-code-editor diff --git a/packages/react-code-editor/package.json b/packages/react-code-editor/package.json index 2d5d0a1c7ab..ffb8bd2c771 100644 --- a/packages/react-code-editor/package.json +++ b/packages/react-code-editor/package.json @@ -1,6 +1,6 @@ { "name": "@patternfly/react-code-editor", - "version": "5.4.3", + "version": "5.4.4", "description": "This package provides a PatternFly wrapper for the Monaco code editor\n", "main": "dist/js/index.js", "module": "dist/esm/index.js", diff --git a/packages/react-core/CHANGELOG.md b/packages/react-core/CHANGELOG.md index 5170f14d101..104a3949633 100644 --- a/packages/react-core/CHANGELOG.md +++ b/packages/react-core/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.4.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-core@5.4.1...@patternfly/react-core@5.4.2) (2024-10-07) + +### Bug Fixes + +- add checks for contentRef to avoid errors in console ([#10870](https://github.com/patternfly/patternfly-react/issues/10870)) ([bd6b854](https://github.com/patternfly/patternfly-react/commit/bd6b854851c9ba8a19065902832eeee39491b857)) +- **nav:** Reverts PR [#10644](https://github.com/patternfly/patternfly-react/issues/10644) that caused regression ([#11099](https://github.com/patternfly/patternfly-react/issues/11099)) ([b5ab02e](https://github.com/patternfly/patternfly-react/commit/b5ab02e415b6e7ef0ce86de00ecf2688f3ab55f4)) + ## [5.4.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-core@5.4.0...@patternfly/react-core@5.4.1) (2024-09-18) ### Bug Fixes diff --git a/packages/react-core/package.json b/packages/react-core/package.json index d304a7127af..c91e413fc03 100644 --- a/packages/react-core/package.json +++ b/packages/react-core/package.json @@ -1,6 +1,6 @@ { "name": "@patternfly/react-core", - "version": "5.4.1", + "version": "5.4.2", "description": "This library provides a set of common React components for use with the PatternFly reference implementation.", "main": "dist/js/index.js", "module": "dist/esm/index.js", diff --git a/packages/react-docs/CHANGELOG.md b/packages/react-docs/CHANGELOG.md index e5a34be6385..a73ee07dac5 100644 --- a/packages/react-docs/CHANGELOG.md +++ b/packages/react-docs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.4.6](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-docs@6.4.5...@patternfly/react-docs@6.4.6) (2024-10-07) + +**Note:** Version bump only for package @patternfly/react-docs + ## [6.4.5](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-docs@6.4.4...@patternfly/react-docs@6.4.5) (2024-09-26) **Note:** Version bump only for package @patternfly/react-docs diff --git a/packages/react-docs/package.json b/packages/react-docs/package.json index 14130e62852..5aac5a64004 100644 --- a/packages/react-docs/package.json +++ b/packages/react-docs/package.json @@ -1,7 +1,7 @@ { "name": "@patternfly/react-docs", "description": "PatternFly React Docs", - "version": "6.4.5", + "version": "6.4.6", "publishConfig": { "access": "public" }, diff --git a/packages/react-drag-drop/CHANGELOG.md b/packages/react-drag-drop/CHANGELOG.md index 635b2fe17b0..d3bac85561d 100644 --- a/packages/react-drag-drop/CHANGELOG.md +++ b/packages/react-drag-drop/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.4.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-drag-drop@5.4.1...@patternfly/react-drag-drop@5.4.2) (2024-10-07) + +**Note:** Version bump only for package @patternfly/react-drag-drop + ## [5.4.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-drag-drop@5.4.0...@patternfly/react-drag-drop@5.4.1) (2024-09-18) **Note:** Version bump only for package @patternfly/react-drag-drop diff --git a/packages/react-drag-drop/package.json b/packages/react-drag-drop/package.json index fd0e87c3c3d..247f408cbb6 100644 --- a/packages/react-drag-drop/package.json +++ b/packages/react-drag-drop/package.json @@ -1,6 +1,6 @@ { "name": "@patternfly/react-drag-drop", - "version": "5.4.1", + "version": "5.4.2", "description": "PatternFly drag and drop solution", "main": "dist/js/index.js", "module": "dist/esm/index.js", diff --git a/packages/react-integration/demo-app-ts/CHANGELOG.md b/packages/react-integration/demo-app-ts/CHANGELOG.md index 653501753bf..5f292a4bd28 100644 --- a/packages/react-integration/demo-app-ts/CHANGELOG.md +++ b/packages/react-integration/demo-app-ts/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.4.5](https://github.com/patternfly/patternfly-react/compare/demo-app-ts@5.4.4...demo-app-ts@5.4.5) (2024-10-07) + +**Note:** Version bump only for package demo-app-ts + ## [5.4.4](https://github.com/patternfly/patternfly-react/compare/demo-app-ts@5.4.3...demo-app-ts@5.4.4) (2024-09-26) **Note:** Version bump only for package demo-app-ts diff --git a/packages/react-integration/demo-app-ts/package.json b/packages/react-integration/demo-app-ts/package.json index 49fe1a37f6e..a512e44edc7 100644 --- a/packages/react-integration/demo-app-ts/package.json +++ b/packages/react-integration/demo-app-ts/package.json @@ -1,7 +1,7 @@ { "name": "demo-app-ts", "private": true, - "version": "5.4.4", + "version": "5.4.5", "type": "module", "scripts": { "dev": "vite", diff --git a/packages/react-table/CHANGELOG.md b/packages/react-table/CHANGELOG.md index 993b3c11aa4..05427d24f68 100644 --- a/packages/react-table/CHANGELOG.md +++ b/packages/react-table/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.4.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-table@5.4.1...@patternfly/react-table@5.4.2) (2024-10-07) + +**Note:** Version bump only for package @patternfly/react-table + ## [5.4.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-table@5.4.0...@patternfly/react-table@5.4.1) (2024-09-18) **Note:** Version bump only for package @patternfly/react-table diff --git a/packages/react-table/package.json b/packages/react-table/package.json index be06936e1ed..0a9dd9aaeb3 100644 --- a/packages/react-table/package.json +++ b/packages/react-table/package.json @@ -1,6 +1,6 @@ { "name": "@patternfly/react-table", - "version": "5.4.1", + "version": "5.4.2", "description": "This library provides a set of React table components for use with the PatternFly 4", "main": "dist/js/index.js", "module": "dist/esm/index.js", diff --git a/packages/react-templates/CHANGELOG.md b/packages/react-templates/CHANGELOG.md index 87ecb851e18..3ca9a5df75d 100644 --- a/packages/react-templates/CHANGELOG.md +++ b/packages/react-templates/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-templates@1.1.1...@patternfly/react-templates@1.1.2) (2024-10-07) + +**Note:** Version bump only for package @patternfly/react-templates + ## [1.1.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-templates@1.1.0...@patternfly/react-templates@1.1.1) (2024-09-18) **Note:** Version bump only for package @patternfly/react-templates diff --git a/packages/react-templates/package.json b/packages/react-templates/package.json index 585ac0b3cd9..bf5ae67c068 100644 --- a/packages/react-templates/package.json +++ b/packages/react-templates/package.json @@ -1,6 +1,6 @@ { "name": "@patternfly/react-templates", - "version": "1.1.1", + "version": "1.1.2", "description": "This package provides wrapped component demos for ease of use\n", "main": "dist/js/index.js", "module": "dist/esm/index.js",