Skip to content

Commit 89899a6

Browse files
authored
Merge branch 'main' into iss4898
2 parents 200e4ca + 496e178 commit 89899a6

402 files changed

Lines changed: 2199 additions & 5935 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows-src/partials/build-astro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
with:
1010
path: "packages/documentation-site/.cache"
1111
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
12-
- run: yarn build:doc-core
12+
- run: yarn ci:build:doc-core
1313
name: Build astro docs

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ lerna-debug.log
4646
!.yarn/releases
4747
!.yarn/sdks
4848
!.yarn/versions
49+
50+
*.tsbuildinfo

package.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"build": "yarn workspace patternfly-org build && yarn copy",
1515
"build:extensions": "EXTENSIONS_ONLY=true PRERELEASE=true yarn build",
1616
"build:doc-core": "yarn workspace site build",
17+
"ci:build:doc-core": "yarn workspace site ci:build",
1718
"preview:doc-core": "yarn workspace site wrangler:preview",
1819
"build:ts": "yarn workspace patternfly-org build:ts",
1920
"build:ts:watch": "yarn build:ts --watch",
@@ -28,7 +29,8 @@
2829
"start:doc-core": "yarn workspace site dev",
2930
"uninstall": "find . -name node_modules | xargs rm -rf",
3031
"workflows": "node .github/generate-workflows",
31-
"test:a11y": "yarn workspace patternfly-org test:a11y"
32+
"test:a11y": "yarn workspace patternfly-org test:a11y",
33+
"generate:content": "yarn workspace site generate:content"
3234
},
3335
"workspaces": {
3436
"packages": [
@@ -37,10 +39,10 @@
3739
},
3840
"devDependencies": {
3941
"@octokit/rest": "^19.0.13",
40-
"@patternfly/patternfly": "^6.5.0-prerelease.46",
41-
"@patternfly/react-code-editor": "^6.5.0-prerelease.39",
42-
"@patternfly/react-core": "^6.5.0-prerelease.36",
43-
"@patternfly/react-table": "^6.5.0-prerelease.37",
42+
"@patternfly/patternfly": "^6.5.0-prerelease.64",
43+
"@patternfly/react-code-editor": "^6.5.0-prerelease.52",
44+
"@patternfly/react-core": "^6.5.0-prerelease.49",
45+
"@patternfly/react-table": "^6.5.0-prerelease.50",
4446
"glob": "^8.1.0",
4547
"lerna": "^9.0.5",
4648
"monaco-editor": "0.54.0",
@@ -72,9 +74,9 @@
7274
"ajv": ">=6.14.0",
7375
"qs": ">=6.15.0",
7476
"@isaacs/brace-expansion": ">=5.0.1",
75-
"@patternfly/react-code-editor": "^6.5.0-prerelease.39",
76-
"@patternfly/react-core": "^6.5.0-prerelease.36",
77-
"@patternfly/react-table": "^6.5.0-prerelease.37",
77+
"@patternfly/react-code-editor": "^6.5.0-prerelease.52",
78+
"@patternfly/react-core": "^6.5.0-prerelease.49",
79+
"@patternfly/react-table": "^6.5.0-prerelease.50",
7880
"monaco-editor": "0.54.0"
7981
}
8082
}

packages/ast-helpers/CHANGELOG.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,68 @@
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+
# 1.4.0-alpha.355 (2026-04-15)
7+
8+
**Note:** Version bump only for package @patternfly/ast-helpers
9+
10+
11+
12+
13+
14+
# 1.4.0-alpha.354 (2026-04-15)
15+
16+
**Note:** Version bump only for package @patternfly/ast-helpers
17+
18+
19+
20+
21+
22+
# 1.4.0-alpha.353 (2026-04-15)
23+
24+
**Note:** Version bump only for package @patternfly/ast-helpers
25+
26+
27+
28+
29+
30+
# 1.4.0-alpha.352 (2026-04-14)
31+
32+
33+
### Features
34+
35+
* **site:** update doc-core to 1.22.0 ([#4946](https://github.com/patternfly/patternfly-org/issues/4946)) ([fc290d0](https://github.com/patternfly/patternfly-org/commit/fc290d030bc34d1728fc9a3948fed4e5b4be5df3))
36+
37+
38+
39+
40+
41+
# 1.4.0-alpha.351 (2026-04-06)
42+
43+
44+
### Features
45+
46+
* bump preleases and update screenshots ([#4986](https://github.com/patternfly/patternfly-org/issues/4986)) ([96b5a86](https://github.com/patternfly/patternfly-org/commit/96b5a86cf62be502b202e5c736a161439d2c5710))
47+
48+
49+
50+
51+
52+
# 1.4.0-alpha.350 (2026-03-25)
53+
54+
**Note:** Version bump only for package @patternfly/ast-helpers
55+
56+
57+
58+
59+
60+
# 1.4.0-alpha.349 (2026-03-18)
61+
62+
**Note:** Version bump only for package @patternfly/ast-helpers
63+
64+
65+
66+
67+
668
# 1.4.0-alpha.348 (2026-03-16)
769

870
**Note:** Version bump only for package @patternfly/ast-helpers

packages/ast-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/ast-helpers",
33
"description": "Acorn AST helpers for working with live code",
4-
"version": "1.4.0-alpha.348",
4+
"version": "1.4.0-alpha.355",
55
"author": "Red Hat",
66
"license": "MIT",
77
"publishConfig": {

packages/documentation-framework/CHANGELOG.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,68 @@
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+
## 6.38.3 (2026-04-15)
7+
8+
**Note:** Version bump only for package @patternfly/documentation-framework
9+
10+
11+
12+
13+
14+
## 6.38.2 (2026-04-15)
15+
16+
**Note:** Version bump only for package @patternfly/documentation-framework
17+
18+
19+
20+
21+
22+
## 6.38.1 (2026-04-15)
23+
24+
**Note:** Version bump only for package @patternfly/documentation-framework
25+
26+
27+
28+
29+
30+
# 6.38.0 (2026-04-14)
31+
32+
33+
### Features
34+
35+
* **site:** update doc-core to 1.22.0 ([#4946](https://github.com/patternfly/patternfly-org/issues/4946)) ([fc290d0](https://github.com/patternfly/patternfly-org/commit/fc290d030bc34d1728fc9a3948fed4e5b4be5df3))
36+
37+
38+
39+
40+
41+
# 6.37.0 (2026-04-06)
42+
43+
44+
### Features
45+
46+
* bump preleases and update screenshots ([#4986](https://github.com/patternfly/patternfly-org/issues/4986)) ([96b5a86](https://github.com/patternfly/patternfly-org/commit/96b5a86cf62be502b202e5c736a161439d2c5710))
47+
48+
49+
50+
51+
52+
## 6.36.8 (2026-03-25)
53+
54+
**Note:** Version bump only for package @patternfly/documentation-framework
55+
56+
57+
58+
59+
60+
## 6.36.7 (2026-03-18)
61+
62+
**Note:** Version bump only for package @patternfly/documentation-framework
63+
64+
65+
66+
67+
668
## 6.36.6 (2026-03-16)
769

870
**Note:** Version bump only for package @patternfly/documentation-framework

packages/documentation-framework/components/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export * from './propsTable/propsTable';
88
export * from './navAnnouncementBanner/navAnnouncementBanner';
99
export * from './sideNav/sideNav';
1010
export * from './topNav/topNav';
11-
export * from './link/link';
11+
export * from './link/link.jsx';
1212
export * from './tableOfContents/tableOfContents';
1313
export * from './inlineAlert/inlineAlert';
1414
export * from './themeSelector/themeSelector';

packages/documentation-framework/components/link/link.js renamed to packages/documentation-framework/components/link/link.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Link as ReachLink, navigate } from '@reach/router';
3-
import { getAsyncComponent } from '../../routes';
3+
const { getAsyncComponent } = require('../../routes');
44

55
const Promiseany = (
66
Promise.any ||

packages/documentation-framework/components/sectionGallery/TextSummary.js renamed to packages/documentation-framework/components/sectionGallery/TextSummary.jsx

File renamed without changes.

packages/documentation-framework/components/sectionGallery/sectionDataListLayout.js renamed to packages/documentation-framework/components/sectionGallery/sectionDataListLayout.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import {
1111
ContentVariants,
1212
Label,
1313
} from "@patternfly/react-core";
14-
import { Link } from "../link/link";
15-
import { TextSummary } from "./TextSummary";
14+
import { Link } from "../link/link.jsx";
15+
import { TextSummary } from "./TextSummary.jsx";
1616

1717
export const SectionDataListLayout = ({
1818
galleryItems,

0 commit comments

Comments
 (0)