Skip to content

Commit 5999f3e

Browse files
authored
Merge branch 'main' into iss4319
2 parents 2eb8791 + 1d76f14 commit 5999f3e

File tree

85 files changed

+21496
-14763
lines changed

Some content is hidden

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

85 files changed

+21496
-14763
lines changed

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

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
1-
- uses: actions/setup-node@v1
1+
- uses: actions/setup-node@v4
22
with:
3-
node-version: "20"
4-
- uses: actions/cache@v2
5-
id: yarn-cache
6-
name: Load npm deps from cache
7-
with:
8-
path: "**/node_modules"
9-
key: ${{ runner.os }}-yarn-14-${{ hashFiles('yarn.lock') }}
10-
- run: yarn install --frozen-lockfile
11-
if: steps.yarn-cache.outputs.cache-hit != 'true'
3+
node-version: 22
4+
- run: corepack enable
5+
- run: yarn install --immutable
126
# v5 build
137
- uses: actions/cache@v2
148
id: site-cache

.github/workflows/pr-preview.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,11 @@ jobs:
1616
git fetch origin pull/$GH_PR_NUM/head:tmp
1717
git checkout tmp
1818
# Injected by generate-workflows.js
19-
- uses: actions/setup-node@v1
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version: "20"
22-
- uses: actions/cache@v2
23-
id: yarn-cache
24-
name: Load npm deps from cache
25-
with:
26-
path: "**/node_modules"
27-
key: ${{ runner.os }}-yarn-14-${{ hashFiles('yarn.lock') }}
28-
- run: yarn install --frozen-lockfile
29-
if: steps.yarn-cache.outputs.cache-hit != 'true'
21+
node-version: 22
22+
- run: corepack enable
23+
- run: yarn install --immutable
3024
# build
3125
- uses: actions/cache@v2
3226
id: site-cache

.github/workflows/release.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,11 @@ jobs:
1919
with:
2020
token: ${{ secrets.GH_TOKEN_REDALLEN }} # needs to be an admin token to get around branch protection
2121
# Injected by generate-workflows.js
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v4
2323
with:
24-
node-version: "20"
25-
- uses: actions/cache@v2
26-
id: yarn-cache
27-
name: Load npm deps from cache
28-
with:
29-
path: "**/node_modules"
30-
key: ${{ runner.os }}-yarn-14-${{ hashFiles('yarn.lock') }}
31-
- run: yarn install --frozen-lockfile
32-
if: steps.yarn-cache.outputs.cache-hit != 'true'
24+
node-version: 22
25+
- run: corepack enable
26+
- run: yarn install --immutable
3327
# v6 build
3428
- uses: actions/cache@v2
3529
id: site-cache

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,13 @@ static
3333

3434
size-plugin.json
3535
**/generated/**/*.js
36+
37+
# Yarn
38+
# See: https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
39+
.pnp.*
40+
.yarn/*
41+
!.yarn/patches
42+
!.yarn/plugins
43+
!.yarn/releases
44+
!.yarn/sdks
45+
!.yarn/versions

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ The PatternFly Org is the source for the official documentation for PatternFly.
44

55
## Development
66

7-
Development setup requires yarn. If you do not already have yarn installed on your system, see https://yarnpkg.com/en/.
7+
Development setup requires yarn. If you do not already have yarn installed on your system, see https://yarnpkg.com/getting-started.
88

9-
A Node version greater than 18.16.0 is also required.
9+
A Node version 22 or greater is also required.
1010

1111
### Live Reload Server
1212

@@ -28,8 +28,6 @@ The site can be built with:
2828

2929
The static assets get copied to build/patternfly-org.
3030

31-
If you see errors, make sure that the version of the `package.json` file in `packages/documentation-framework` matches the version of the `"@patternfly/documentation-framework"` dependency in the `package.json` file in `packages/documentation-site`.
32-
3331
### Deploy
3432

3533
When you submit a PR, previews should be automatically generated for you and uploaded as PR comments. This takes between 5-10 minutes.

package.json

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"version": "0.0.1",
55
"main": "index.js",
66
"license": "MIT",
7+
"packageManager": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90",
78
"scripts": {
89
"analyze": "yarn workspace patternfly-org analyze",
910
"develop": "yarn workspace patternfly-org develop",
@@ -24,25 +25,22 @@
2425
},
2526
"workspaces": {
2627
"packages": [
27-
"packages/ast-helpers",
28-
"packages/documentation-framework",
29-
"packages/documentation-site"
28+
"packages/*"
3029
]
3130
},
3231
"devDependencies": {
32+
"@octokit/rest": "^19.0.7",
3333
"@patternfly/patternfly": "^6.1.0",
3434
"@patternfly/react-code-editor": "^6.1.0",
3535
"@patternfly/react-core": "^6.1.0",
3636
"@patternfly/react-table": "^6.1.0",
37-
"@octokit/rest": "^19.0.7",
3837
"glob": "^8.1.0",
3938
"lerna": "^6.4.1",
40-
"surge": "^0.23.1",
4139
"react": "^18",
42-
"react-dom": "^18"
40+
"react-dom": "^18",
41+
"surge": "^0.23.1"
4342
},
4443
"resolutions": {
4544
"node-sass": ">=6.0.1"
46-
},
47-
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
45+
}
4846
}

packages/ast-helpers/CHANGELOG.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,76 @@
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.147 (2025-01-24)
7+
8+
**Note:** Version bump only for package @patternfly/ast-helpers
9+
10+
11+
12+
13+
14+
# 1.4.0-alpha.146 (2025-01-21)
15+
16+
**Note:** Version bump only for package @patternfly/ast-helpers
17+
18+
19+
20+
21+
22+
# 1.4.0-alpha.145 (2025-01-14)
23+
24+
**Note:** Version bump only for package @patternfly/ast-helpers
25+
26+
27+
28+
29+
30+
# 1.4.0-alpha.144 (2025-01-09)
31+
32+
**Note:** Version bump only for package @patternfly/ast-helpers
33+
34+
35+
36+
37+
38+
# 1.4.0-alpha.143 (2025-01-07)
39+
40+
**Note:** Version bump only for package @patternfly/ast-helpers
41+
42+
43+
44+
45+
46+
# 1.4.0-alpha.142 (2025-01-07)
47+
48+
**Note:** Version bump only for package @patternfly/ast-helpers
49+
50+
51+
52+
53+
54+
# 1.4.0-alpha.141 (2024-12-18)
55+
56+
57+
### Features
58+
59+
* **dark theme:** revert localstorage/pref feature ([#4424](https://github.com/patternfly/patternfly-org/issues/4424)) ([0ffa269](https://github.com/patternfly/patternfly-org/commit/0ffa269a06d474a6a3069047e506ca83767d9e9c))
60+
61+
62+
63+
64+
65+
# 1.4.0-alpha.140 (2024-12-17)
66+
67+
68+
### Features
69+
70+
* **ver:** fix release dropdown ([#4421](https://github.com/patternfly/patternfly-org/issues/4421)) ([efd6d87](https://github.com/patternfly/patternfly-org/commit/efd6d87d98fbf9b1f7036e9980da93ac256f7aed))
71+
72+
73+
74+
75+
676
# 1.4.0-alpha.139 (2024-12-17)
777

878

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.139",
4+
"version": "1.4.0-alpha.147",
55
"author": "Red Hat",
66
"license": "MIT",
77
"publishConfig": {

packages/documentation-framework/CHANGELOG.md

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,76 @@
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.5.6 (2025-01-24)
7+
8+
**Note:** Version bump only for package @patternfly/documentation-framework
9+
10+
11+
12+
13+
14+
## 6.5.5 (2025-01-21)
15+
16+
**Note:** Version bump only for package @patternfly/documentation-framework
17+
18+
19+
20+
21+
22+
## 6.5.4 (2025-01-14)
23+
24+
**Note:** Version bump only for package @patternfly/documentation-framework
25+
26+
27+
28+
29+
30+
## 6.5.3 (2025-01-09)
31+
32+
**Note:** Version bump only for package @patternfly/documentation-framework
33+
34+
35+
36+
37+
38+
## 6.5.2 (2025-01-07)
39+
40+
**Note:** Version bump only for package @patternfly/documentation-framework
41+
42+
43+
44+
45+
46+
## 6.5.1 (2025-01-07)
47+
48+
**Note:** Version bump only for package @patternfly/documentation-framework
49+
50+
51+
52+
53+
54+
# 6.5.0 (2024-12-18)
55+
56+
57+
### Features
58+
59+
* **dark theme:** revert localstorage/pref feature ([#4424](https://github.com/patternfly/patternfly-org/issues/4424)) ([0ffa269](https://github.com/patternfly/patternfly-org/commit/0ffa269a06d474a6a3069047e506ca83767d9e9c))
60+
61+
62+
63+
64+
65+
# 6.4.0 (2024-12-17)
66+
67+
68+
### Features
69+
70+
* **ver:** fix release dropdown ([#4421](https://github.com/patternfly/patternfly-org/issues/4421)) ([efd6d87](https://github.com/patternfly/patternfly-org/commit/efd6d87d98fbf9b1f7036e9980da93ac256f7aed))
71+
72+
73+
74+
75+
676
# 6.3.0 (2024-12-17)
777

878

0 commit comments

Comments
 (0)