@patternfly/documentation-framework 6.5.19 → 6.6.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/scripts/webpack/webpack.base.config.js +27 -23
- package/versions.json +27 -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.6.0 (2025-03-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ver:** update to 6.2 prerelease versions ([#4510](https://github.com/patternfly/patternfly-org/issues/4510)) ([8a2f9b1](https://github.com/patternfly/patternfly-org/commit/8a2f9b1f89a2b930d38379e10caf943af57ae51f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## 6.5.20 (2025-03-18)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## 6.5.19 (2025-03-12)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
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.6.0",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@babel/preset-env": "^7.24.3",
|
|
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.162",
|
|
16
16
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
17
17
|
"autoprefixer": "9.8.6",
|
|
18
18
|
"babel-loader": "^9.1.3",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"webpack-merge": "5.8.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
|
-
"@patternfly/patternfly": "^6.
|
|
76
|
-
"@patternfly/react-code-editor": "^6.
|
|
77
|
-
"@patternfly/react-core": "^6.
|
|
78
|
-
"@patternfly/react-table": "^6.
|
|
75
|
+
"@patternfly/patternfly": "^6.2.0-prerelease.26",
|
|
76
|
+
"@patternfly/react-code-editor": "^6.2.0-prerelease.36",
|
|
77
|
+
"@patternfly/react-core": "^6.2.0-prerelease.34",
|
|
78
|
+
"@patternfly/react-table": "^6.2.0-prerelease.35",
|
|
79
79
|
"react": "^17.0.0 || ^18.0.0",
|
|
80
80
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "53e79d9743238624dca7f39c71656ff5cacb71d3"
|
|
83
83
|
}
|
|
@@ -28,7 +28,7 @@ module.exports = (_env, argv) => {
|
|
|
28
28
|
publicPath: '/',
|
|
29
29
|
pathinfo: false, // https://webpack.js.org/guides/build-performance/#output-without-path-info,
|
|
30
30
|
hashDigestLength: 8,
|
|
31
|
-
clean: true
|
|
31
|
+
clean: true // Clean the output directory before emit.
|
|
32
32
|
},
|
|
33
33
|
amd: false, // We don't use any AMD modules, helps performance
|
|
34
34
|
mode: isProd ? 'production' : 'development',
|
|
@@ -47,9 +47,9 @@ module.exports = (_env, argv) => {
|
|
|
47
47
|
/react-[\w-]+\/patternfly-docs\/.*\/examples/, //fixes for extensions
|
|
48
48
|
/react-[\w-]+\\patternfly-docs\\.*\\examples/,
|
|
49
49
|
path.resolve(__dirname, '../../../../node_modules/@patternfly/design-tokens/patternfly-docs/content')
|
|
50
|
-
].concat(includePaths.map(path => new RegExp(path))),
|
|
50
|
+
].concat(includePaths.map((path) => new RegExp(path))),
|
|
51
51
|
exclude: [
|
|
52
|
-
path.resolve(__dirname, '../../node_modules')
|
|
52
|
+
path.resolve(__dirname, '../../node_modules') // Temporarily compile theme using webpack for development
|
|
53
53
|
],
|
|
54
54
|
use: {
|
|
55
55
|
loader: 'babel-loader',
|
|
@@ -58,13 +58,16 @@ module.exports = (_env, argv) => {
|
|
|
58
58
|
cacheCompression: false,
|
|
59
59
|
presets: [
|
|
60
60
|
'@babel/preset-react',
|
|
61
|
-
[
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
[
|
|
62
|
+
'@babel/preset-env',
|
|
63
|
+
{
|
|
64
|
+
loose: true,
|
|
65
|
+
targets: '> 1%, not dead'
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
]
|
|
66
69
|
}
|
|
67
|
-
}
|
|
70
|
+
}
|
|
68
71
|
},
|
|
69
72
|
{
|
|
70
73
|
test: /\.(png|jpe?g|webp)$/,
|
|
@@ -74,7 +77,7 @@ module.exports = (_env, argv) => {
|
|
|
74
77
|
adapter: require('responsive-loader/sharp'),
|
|
75
78
|
name: '[name].[contenthash].[ext]',
|
|
76
79
|
outputPath: 'images/'
|
|
77
|
-
}
|
|
80
|
+
}
|
|
78
81
|
}
|
|
79
82
|
},
|
|
80
83
|
{
|
|
@@ -101,6 +104,12 @@ module.exports = (_env, argv) => {
|
|
|
101
104
|
filename: 'fonts/[name][ext][query]'
|
|
102
105
|
}
|
|
103
106
|
},
|
|
107
|
+
{
|
|
108
|
+
test: /\.m?js$/,
|
|
109
|
+
resolve: {
|
|
110
|
+
fullySpecified: false
|
|
111
|
+
}
|
|
112
|
+
}
|
|
104
113
|
]
|
|
105
114
|
},
|
|
106
115
|
resolve: {
|
|
@@ -109,23 +118,20 @@ module.exports = (_env, argv) => {
|
|
|
109
118
|
'client-styles': path.resolve(process.cwd(), 'patternfly-docs/patternfly-docs.css.js'),
|
|
110
119
|
'./routes-client': path.resolve(process.cwd(), 'patternfly-docs/patternfly-docs.routes.js'),
|
|
111
120
|
'./routes-generated': path.resolve(process.cwd(), 'patternfly-docs/generated/index.js'),
|
|
112
|
-
process:
|
|
121
|
+
process: 'process/browser'
|
|
113
122
|
},
|
|
114
|
-
modules: [
|
|
115
|
-
'node_modules',
|
|
116
|
-
...module.paths,
|
|
117
|
-
],
|
|
123
|
+
modules: ['node_modules', ...module.paths],
|
|
118
124
|
fallback: {
|
|
119
|
-
|
|
120
|
-
}
|
|
125
|
+
path: require.resolve('path-browserify')
|
|
126
|
+
}
|
|
121
127
|
},
|
|
122
128
|
// Use this module's node_modules first (for use in Core/React workspaces)
|
|
123
129
|
resolveLoader: {
|
|
124
|
-
modules: module.paths
|
|
130
|
+
modules: module.paths
|
|
125
131
|
},
|
|
126
132
|
plugins: [
|
|
127
133
|
new webpack.ProvidePlugin({
|
|
128
|
-
process: 'process/browser'
|
|
134
|
+
process: 'process/browser'
|
|
129
135
|
}),
|
|
130
136
|
new webpack.DefinePlugin({
|
|
131
137
|
'process.env.NODE_ENV': JSON.stringify(mode),
|
|
@@ -144,11 +150,9 @@ module.exports = (_env, argv) => {
|
|
|
144
150
|
'process.env.prurl': JSON.stringify(process.env.CIRCLE_PULL_REQUEST || '')
|
|
145
151
|
}),
|
|
146
152
|
new CopyWebpackPlugin({
|
|
147
|
-
patterns: [
|
|
148
|
-
{ from: path.join(__dirname, '../../assets'), to: 'assets' }
|
|
149
|
-
]
|
|
153
|
+
patterns: [{ from: path.join(__dirname, '../../assets'), to: 'assets' }]
|
|
150
154
|
})
|
|
151
155
|
],
|
|
152
156
|
stats: 'minimal'
|
|
153
157
|
};
|
|
154
|
-
}
|
|
158
|
+
};
|
package/versions.json
CHANGED
|
@@ -1,9 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Releases": [
|
|
3
3
|
{
|
|
4
|
-
"name": "6.
|
|
4
|
+
"name": "6.2.0",
|
|
5
5
|
"date": "2024-12-17",
|
|
6
6
|
"latest": true,
|
|
7
|
+
"versions": {
|
|
8
|
+
"@patternfly/patternfly": "6.2.0-prerelease.26",
|
|
9
|
+
"@patternfly/react-catalog-view-extension": "6.1.0-prerelease.4",
|
|
10
|
+
"@patternfly/react-charts": "8.2.0-prerelease.26",
|
|
11
|
+
"@patternfly/react-code-editor": "6.2.0-prerelease.36",
|
|
12
|
+
"@patternfly/react-component-groups": "6.2.0-prerelease.7",
|
|
13
|
+
"@patternfly/react-core": "6.2.0-prerelease.34",
|
|
14
|
+
"@patternfly/react-drag-drop": "6.2.0-prerelease.36",
|
|
15
|
+
"@patternfly/react-icons": "6.2.0-prerelease.12",
|
|
16
|
+
"@patternfly/react-log-viewer": "6.1.0-prerelease.2",
|
|
17
|
+
"@patternfly/react-styles": "6.2.0-prerelease.11",
|
|
18
|
+
"@patternfly/react-table": "6.2.0-prerelease.35",
|
|
19
|
+
"@patternfly/react-tokens": "6.2.0-prerelease.11",
|
|
20
|
+
"@patternfly/react-topology": "6.2.0-prerelease.6",
|
|
21
|
+
"@patternfly/react-user-feedback": "6.1.0-prerelease.2",
|
|
22
|
+
"@patternfly/react-console": "6.0.0",
|
|
23
|
+
"@patternfly/quickstarts": "6.2.0-prerelease.7",
|
|
24
|
+
"@patternfly/react-virtualized-extension": "6.0.0",
|
|
25
|
+
"@patternfly/react-templates": "6.2.0-prerelease.35",
|
|
26
|
+
"@patternfly/chatbot": "2.2.0-prerelease.37",
|
|
27
|
+
"@patternfly/data-view": "6.1.0"
|
|
28
|
+
}
|
|
29
|
+
},{
|
|
30
|
+
"name": "6.1.0",
|
|
31
|
+
"date": "2024-12-17",
|
|
32
|
+
"hidden": true,
|
|
7
33
|
"versions": {
|
|
8
34
|
"@patternfly/patternfly": "6.1.0",
|
|
9
35
|
"@patternfly/react-catalog-view-extension": "6.0.0",
|