You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs(release-highlights): Adds highlights for 6.2 release. (#4493)
* docs(release-highlights): Adds highlights for 6.2 release.
* couple typos
* Expands on chatbot updates and reorganizes some
* Remove chatbot line
* Adds notes from closed React issues.
* Apply suggestions from code review
* Update a few component notes.
* Update with recently completed core and react issues.
* Adds more notes and changes timestamps.
* Adjust timestamps.
* A couple of edits
* Add preliminary package list.
* Update packages/documentation-site/patternfly-docs/content/get-started/release-highlights.md
* ChatBot design guidelines pr merged
* Update animation line
* Re-craft highlights into a few narratives.
* Change timestamp for 6.2.
* Change details for nav animation.
* Some phrasing changes.
For the Q2 2025 PatternFly release we made progress in a few of our key initiatives, including PatternFly 6 migration enablement, component animations, React 19 support, and the continued evolution of PatternFly AI. Updates for these key areas can be found here, in this quarter's release highlights.
14
+
15
+
### Promoted package versions
16
+
17
+
The following packages were promoted with this release. Outside of our primary initiatives for this release, we addressed reported bugs and continued to enhance PatternFly with new features, as detailed in the linked changelogs.
As products have continued their PatternFly 6 migration journeys, we've received helpful feedback on the upgrade process, including common roadblocks and situations that could use more guidance. So, we expanded and reorganized the [PatternFly 6 upgrade guide](/get-started/upgrade) to more clearly and comprehensively support the upgrade process.
43
+
44
+
### Component animations
45
+
46
+
Our highly-anticipated animations project focuses on integrating motion design into PatternFly components, to enhance user experiences and provide additional cues for interaction. You can keep track of this project via [our micro-animations roadmap](https://github.com/orgs/patternfly/projects/16/views/23?pane=issue&itemId=86507128&issue=patternfly%7Cpf-roadmap%7C215).
47
+
48
+
Note that animations will either be specified as opt-in or opt-out:
49
+
-**Opt-in:** Requires additional updates to your codebase in order to function properly. These could cause test failures, depending on how your testing is set up, so you must manually opt into these animations and configure them appropriately.
50
+
-**Opt-out:** Turned on by default. To disable these animations, work with the PatternFly team to find a solution.
51
+
52
+
With this release, 3 components now support animations:
53
+
54
+
1.[Alert](/components/alert)
55
+
-**Animation type:** Opt-in.
56
+
-**Animation behavior:** For alerts within a group, there's a slide-in animation as new alerts are received and a slide-out animation as alerts are dismissed.
57
+
-**Example:** To visualize the motion behavior, you can interact with our website examples, which have opted in to animations.
58
+
-**Note:** By default, alert animations are opt-in and will only apply to alerts within an alert group. Opting into animations could require test updates. To ensure your test pass, the quickest solution is to set `hasAnimations` to `false`. Additionally, when alerts are dynamically added to a group, you must ensure that new alerts are prepended to the alert group list, rather than appended to the end of it.
59
+
1.[Navigation](/components/navigation)
60
+
-**Animation type:** Opt-out.
61
+
-**Animation behavior:** For expandable navigation items, the sub-menu fades in and out as navigation items are expanded and collapsed.
62
+
-**Example:** As an opt-out animation, you can see this motion behavior by default across expandable navigation items.
-**Animation behavior:** When the animation is triggered (for example, when a new notification arrives), the bell icon has a "ring" animation.
66
+
-**Example:** To illustrate the motion behavior of this animation, we added a [notification badge "With animations" example](/components/notification-badge#with-animation).
67
+
68
+
### React 19 support
69
+
70
+
We’ve made significant progress towards React 19 support in PatternFly, which is being tracked in [the React 19 roadmap](https://github.com/patternfly/pf-roadmap/issues/201). Our remaining work involves updating our React dependencies, testing version support, and creating any necessary support resources or documentation.
71
+
72
+
### PatternFly AI
73
+
74
+
In the world of PatternFly AI, we've continued our focus on expanding our ChatBot extension. As more Flyers have used ChatBot, we've gained insight into the types of new features that would have the most impact. To make progress on growing ChatBot needs, this release adds *many* new features, including [an inline drawer display mode](https://patternfly-org-pr-4493-site.surge.sh/patternfly-ai/chatbot/overview/demo/#inline-drawer-chatbot), the ability for users to give [message feedback](https://patternfly-org-pr-4493-site.surge.sh/patternfly-ai/chatbot/messages#message-feedback), [support for quick starts](https://patternfly-org-pr-4493-site.surge.sh/patternfly-ai/chatbot/messages#messages-with-quick-start-tiles), additional content types for [messages](/patternfly-ai/chatbot/messages#bot-messages), and much more.
75
+
76
+
To see a complete list of new ChatBot features, [view the changelog](https://github.com/patternfly/chatbot/releases/tag/v2.2.0).
77
+
78
+
Along with these new features, we've updated our documentation:
79
+
-[The ChatBot design guidelines](/patternfly-ai/chatbot/overview/design-guidelines) have been updated to reflect new features, expand on previous guidance, and add higher-level patterns for ChatBots usage in products.
80
+
- New [ChatBot analytics documentation](/patternfly-ai/chatbot/analytics) is also now available, which provides general guidance on the implementation of analytics tracking.
81
+
82
+
### Notable changes
83
+
84
+
Outside of our key initiatives, there are a few notable changes that may require changes to your codebase and tests.
85
+
86
+
#### Components
87
+
- Button
88
+
-**Change:** The `aria-disabled` will now only render when `true`, not on elements where it is `false` or `undefined`.
89
+
-**Required update:** Update tests that either:
90
+
- Check for `aria-disabled` to be `false`
91
+
- Match the disabled property
92
+
- Charts
93
+
-**Change:** Errors related to Victory 37.3.4 have been addressed.
94
+
-**Required update:** If you're using PatternFly 5, use [react-charts](https://www.npmjs.com/package/@patternfly/react-charts) v7.4.8 with Victory v37.3.4 or later.
95
+
96
+
- Table
97
+
-**Change:** The [column management](/components/table/react-demos#column-management) and [column management with draggable](/components/table/react-demos#column-management-with-draggable) features have been rewritten to replace the use of the deprecated `<DragDrop>` component.
98
+
-**Required update:** Remove the deprecated `<DragDrop>` component by referring to the updated table demos.
99
+
100
+
#### Extensions
101
+
- ChatBot
102
+
-**Change:** DOMpurify is no longer a dependency.
103
+
-**Required update:** Uninstall/remove DOMpurify from your codebases.
104
+
- ChatBot
105
+
-**Change:**`<MessageBar>` is now a [PatternFly `<TextArea>`](/components/forms/text-area), which leads to the following type changes for `<MessageBarProps>`:
-**Required update:** Where relevant, update the Typescript types for `<MessageBarProps>`.
113
+
- Quick starts
114
+
-**Change:** The markdown parser has been changed to one that's more actively being maintained.
115
+
-**Required update:** Verify that any custom markdown extensions you use still work properly. This is where bugs are most likely from this change.
116
+
- If you see issues with custom markdown extensions, or any other issues with markdown parsing after this change, please [raise an issue](https://github.com/patternfly/patternfly-quickstarts/issues).
117
+
118
+
### What's next?
119
+
120
+
For the Q3 release of PatternFly, we will continue to focus on the initiatives mentioned in this release, fix bugs, and address any new, critical priorities that come up. To stay up to date with our primary focus areas, you can keep track of [the PatternFly Roadmap initiatives board](https://github.com/orgs/patternfly/projects/16/views/23).
The official release of PatternFly 6 is here! It contains all of the previous features from our alpha and beta releases, but also adds everything described in these release highlights.
@@ -142,7 +256,7 @@ We made many updates to our [component groups extension](/component-groups/about
We’re excited to share the next milestone in our journey to PatternFly 6–our beta release! This beta introduces more improvements and refinement, and contains all major PatternFly 6 features.
@@ -233,7 +347,7 @@ We made more improvements to our website docs, to ensure that they're accurate a
-[Develop with tokens](/tokens/develop-with-tokens)
235
349
-[Design with tokens](/tokens/design-with-tokens)
236
-
-**Note:** Any @patternfly/react-tokens referencing global variables will need to be updated, since global variables have been replaced with tokens. Following our [token migration instructions](/tokens/develop-with-tokens#migrate-to-tokens) will help you determine the correct token to use.
350
+
-**Note:*- Any @patternfly/react-tokens referencing global variables will need to be updated, since global variables have been replaced with tokens. Following our [token migration instructions](/tokens/develop-with-tokens#migrate-to-tokens) will help you determine the correct token to use.
237
351
- Our design foundations
238
352
-[Colors](/design-foundations/colors)
239
353
-[Icons](/design-foundations/icons)
@@ -290,7 +404,7 @@ We applied PatternFly 6 styles to the rest of our extensions. All have now been
290
404
- Catalog view
291
405
- Quickstarts
292
406
293
-
Related design resources can also be found in [our PatternFly 6 Figma kit.](https://www.figma.com/@patternfly)
407
+
Related design resources can also be found in [our PatternFly 6 Figma kit](https://www.figma.com/@patternfly).
294
408
295
409
### Bug fixes
296
410
We fixed bugs that were reported throughout the alpha period including. We:
@@ -302,7 +416,7 @@ We fixed bugs that were reported throughout the alpha period including. We:
@@ -316,8 +430,8 @@ All of our components have a new look to match. As you use the alpha website, ta
316
430
317
431
### Design tokens
318
432
319
-
In order to support PatternFly 6, and any future visual theming capabilities, we have implemented a design token system for PatternFly. For more details and instructions on how to use tokens, you can refer to our new [design token documentation.](/tokens/about-tokens)
433
+
In order to support PatternFly 6, and any future visual theming capabilities, we have implemented a design token system for PatternFly. For more details and instructions on how to use tokens, you can refer to our new [design token documentation](/tokens/about-tokens).
320
434
321
435
Our tokens cover both dark and light themes, and make it easier to support both in your product. We also updated our [dark theme handbook](/developer-resources/dark-theme-handbook) to align with our tokens.
322
436
323
-
**Note:** The PatternFly 5 design library is not built with tokens. To take advantage of our token system, you must [upgrade your product to PatternFly 6.](/get-started/upgrade)
437
+
**Note:*- The PatternFly 5 design library is not built with tokens. To take advantage of our token system, you must [upgrade your product to PatternFly 6](/get-started/upgrade).
0 commit comments