@patternfly/documentation-framework 6.29.0 → 6.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/package.json +7 -7
- package/routes.js +1 -0
- package/scripts/webpack/getHtmlWebpackPlugins.js +13 -6
- package/versions.json +28 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 6.30.0 (2025-11-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **Compass:** add integrations & react-flow compass demo ([#4848](https://github.com/patternfly/patternfly-org/issues/4848)) ([c4ca08e](https://github.com/patternfly/patternfly-org/commit/c4ca08eaf906b48e21aeed80bf24d79feebe9804))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 6.29.1 (2025-11-06)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# 6.29.0 (2025-11-03)
|
|
7
26
|
|
|
8
27
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/documentation-framework",
|
|
3
3
|
"description": "A framework to build documentation for PatternFly.",
|
|
4
|
-
"version": "6.
|
|
4
|
+
"version": "6.30.0",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@babel/preset-env": "7.27.1",
|
|
13
13
|
"@babel/preset-react": "^7.24.1",
|
|
14
14
|
"@mdx-js/util": "1.6.16",
|
|
15
|
-
"@patternfly/ast-helpers": "^1.4.0-alpha.
|
|
15
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.307",
|
|
16
16
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
17
17
|
"autoprefixer": "10.4.19",
|
|
18
18
|
"babel-loader": "^9.1.3",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"webpack-merge": "5.8.0"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@patternfly/patternfly": "^6.
|
|
70
|
-
"@patternfly/react-code-editor": "^6.
|
|
71
|
-
"@patternfly/react-core": "^6.
|
|
72
|
-
"@patternfly/react-table": "^6.
|
|
69
|
+
"@patternfly/patternfly": "^6.5.0-prerelease.20",
|
|
70
|
+
"@patternfly/react-code-editor": "^6.5.0-prerelease.9",
|
|
71
|
+
"@patternfly/react-core": "^6.5.0-prerelease.9",
|
|
72
|
+
"@patternfly/react-table": "^6.5.0-prerelease.9",
|
|
73
73
|
"react": "^17.0.0 || ^18.0.0",
|
|
74
74
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
75
75
|
},
|
|
@@ -89,5 +89,5 @@
|
|
|
89
89
|
"http-cache-semantics": ">=4.1.1",
|
|
90
90
|
"nanoid": "3.3.8"
|
|
91
91
|
},
|
|
92
|
-
"gitHead": "
|
|
92
|
+
"gitHead": "fb05713aba75998b5ecf5299ee3c1a259119bd74"
|
|
93
93
|
}
|
package/routes.js
CHANGED
|
@@ -13,7 +13,12 @@ async function getHtmlWebpackPlugin({ isProd, googleAnalyticsID, algolia, url, t
|
|
|
13
13
|
title: getTitle(title),
|
|
14
14
|
// Don't prerender fullscreen pages (expensive!)
|
|
15
15
|
prerendering:
|
|
16
|
-
isProd &&
|
|
16
|
+
isProd &&
|
|
17
|
+
!isFullscreen &&
|
|
18
|
+
!url.includes('chatbot') &&
|
|
19
|
+
!url.includes('topology') &&
|
|
20
|
+
!url.includes('extensions') &&
|
|
21
|
+
!url.includes('generative-uis')
|
|
17
22
|
? await prerender(url)
|
|
18
23
|
: null,
|
|
19
24
|
// Don't use GA in dev mode
|
|
@@ -37,9 +42,10 @@ async function getHtmlWebpackPlugins(options) {
|
|
|
37
42
|
templateParameters: {
|
|
38
43
|
urls: Object.entries(routes)
|
|
39
44
|
.map(([path, { sources }]) => [
|
|
40
|
-
path,
|
|
41
|
-
...(sources || [])
|
|
42
|
-
.
|
|
45
|
+
path,
|
|
46
|
+
...(sources || [])
|
|
47
|
+
.slice(1)
|
|
48
|
+
.filter((source) => source.slug !== path) // Filter out sources that would create duplicate routes
|
|
43
49
|
.map((source) => source.slug)
|
|
44
50
|
])
|
|
45
51
|
.flat()
|
|
@@ -60,8 +66,9 @@ async function getHtmlWebpackPlugins(options) {
|
|
|
60
66
|
.map(([url, { sources = [], title, isFullscreen }]) => [
|
|
61
67
|
[url, { title, isFullscreen }],
|
|
62
68
|
// Add pages for sources, but filter out duplicates
|
|
63
|
-
...sources
|
|
64
|
-
.
|
|
69
|
+
...sources
|
|
70
|
+
.slice(1)
|
|
71
|
+
.filter((source) => source.slug !== url) // Filter out sources that would create duplicate routes
|
|
65
72
|
.map((source) => [source.slug, source])
|
|
66
73
|
])
|
|
67
74
|
.flat()
|
package/versions.json
CHANGED
|
@@ -1,9 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Releases": [
|
|
3
|
+
{
|
|
4
|
+
"name": "6.5.0-prerelease.9",
|
|
5
|
+
"date": "2025-11-06",
|
|
6
|
+
"latest": true,
|
|
7
|
+
"versions": {
|
|
8
|
+
"@patternfly/patternfly": "6.5.0-prerelease.20",
|
|
9
|
+
"@patternfly/react-catalog-view-extension": "6.2.0",
|
|
10
|
+
"@patternfly/react-charts": "8.5.0-prerelease.4",
|
|
11
|
+
"@patternfly/react-code-editor": "6.5.0-prerelease.9",
|
|
12
|
+
"@patternfly/react-component-groups": "6.4.0",
|
|
13
|
+
"@patternfly/react-core": "6.5.0-prerelease.9",
|
|
14
|
+
"@patternfly/react-drag-drop": "6.5.0-prerelease.9",
|
|
15
|
+
"@patternfly/react-icons": "6.5.0-prerelease.4",
|
|
16
|
+
"@patternfly/react-log-viewer": "6.3.0",
|
|
17
|
+
"@patternfly/react-styles": "6.5.0-prerelease.4",
|
|
18
|
+
"@patternfly/react-table": "6.5.0-prerelease.9",
|
|
19
|
+
"@patternfly/react-tokens": "6.5.0-prerelease.4",
|
|
20
|
+
"@patternfly/react-topology": "6.4.0",
|
|
21
|
+
"@patternfly/react-user-feedback": "6.2.0",
|
|
22
|
+
"@patternfly/react-console": "6.1.0",
|
|
23
|
+
"@patternfly/quickstarts": "6.4.0",
|
|
24
|
+
"@patternfly/react-virtualized-extension": "6.1.0",
|
|
25
|
+
"@patternfly/react-templates": "6.5.0-prerelease.9",
|
|
26
|
+
"@patternfly/chatbot": "6.5.0-prerelease.10",
|
|
27
|
+
"@patternfly/react-data-view": "6.4.0"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
3
30
|
{
|
|
4
31
|
"name": "6.4.0",
|
|
5
32
|
"date": "2025-10-17",
|
|
6
|
-
"
|
|
33
|
+
"hidden": true,
|
|
7
34
|
"versions": {
|
|
8
35
|
"@patternfly/patternfly": "6.4.0",
|
|
9
36
|
"@patternfly/react-catalog-view-extension": "6.2.0",
|