Skip to content

Commit fd6d690

Browse files
Merge branch 'main' into iss#4520
2 parents 10b02ee + 8c176bc commit fd6d690

58 files changed

Lines changed: 1689 additions & 351 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/slack-rotation.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Weekly Slack Monitor Rotation
2+
3+
on:
4+
schedule:
5+
# Runs at 9:00 AM every Monday (UTC)
6+
- cron: '0 9 * * 1'
7+
# Also allow manual trigger for testing
8+
workflow_dispatch:
9+
10+
jobs:
11+
rotate-monitor:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.10'
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install requests
27+
28+
- name: Run rotation script
29+
env:
30+
SLACK_TOKEN: ${{ secrets.SLACK_MONITOR_APP_SLACK_TOKEN }}
31+
CHANNEL_ID: ${{ secrets.TEAM_UXD_PATTERNFLY_CHANNEL_ID }}
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
EXCLUDED_USERS: ${{ secrets.SLACK_MONITOR_EXCLUDED_USERS }}
34+
run: python scripts/slack_monitor_rotation.py
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Weekly Slack Monitor Rotation
2+
3+
on:
4+
schedule:
5+
# Runs at 9:00 AM every Monday (UTC)
6+
- cron: '0 9 * * 1'
7+
# Also allow manual trigger for testing
8+
workflow_dispatch:
9+
10+
jobs:
11+
rotate-monitor:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.10'
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install requests
27+
28+
- name: Run rotation script
29+
env:
30+
SLACK_TOKEN: ${{ secrets.SLACK_MONITOR_APP_SLACK_TOKEN }}
31+
CHANNEL_ID: ${{ secrets.TEAM_UXD_PATTERNFLY_CHANNEL_ID }}
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
EXCLUDED_USERS: ${{ secrets.SLACK_MONITOR_EXCLUDED_USERS }}
34+
run: python scripts/slack_monitor_rotation.py

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
},
3131
"devDependencies": {
3232
"@octokit/rest": "^19.0.7",
33-
"@patternfly/patternfly": "^6.2.0",
34-
"@patternfly/react-code-editor": "^6.2.0",
35-
"@patternfly/react-core": "^6.2.0",
36-
"@patternfly/react-table": "^6.2.0",
33+
"@patternfly/patternfly": "^6.2.3",
34+
"@patternfly/react-code-editor": "^6.2.2",
35+
"@patternfly/react-core": "^6.2.2",
36+
"@patternfly/react-table": "^6.2.2",
3737
"glob": "^8.1.0",
3838
"lerna": "^6.4.1",
3939
"react": "^18",

packages/ast-helpers/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
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.178 (2025-04-23)
7+
8+
**Note:** Version bump only for package @patternfly/ast-helpers
9+
10+
11+
12+
13+
14+
# 1.4.0-alpha.177 (2025-04-23)
15+
16+
17+
### Bug Fixes
18+
19+
* **example:** keeps example content from overflowing content area ([#4550](https://github.com/patternfly/patternfly-org/issues/4550)) ([8a4b648](https://github.com/patternfly/patternfly-org/commit/8a4b648a46aa710608557ce920e8070bf251d5ef))
20+
21+
22+
23+
24+
25+
# 1.4.0-alpha.176 (2025-04-16)
26+
27+
**Note:** Version bump only for package @patternfly/ast-helpers
28+
29+
30+
31+
32+
33+
# 1.4.0-alpha.175 (2025-04-15)
34+
35+
**Note:** Version bump only for package @patternfly/ast-helpers
36+
37+
38+
39+
40+
41+
# 1.4.0-alpha.174 (2025-04-10)
42+
43+
44+
### Reverts
45+
46+
* Revert "feat(ver): enable react 19 support in framework (#4515)" (#4541) ([93ae3ec](https://github.com/patternfly/patternfly-org/commit/93ae3ecc6bf551ae1eb8ab844aa82ca6619cf2bf)), closes [#4515](https://github.com/patternfly/patternfly-org/issues/4515) [#4541](https://github.com/patternfly/patternfly-org/issues/4541)
47+
48+
49+
50+
51+
652
# 1.4.0-alpha.173 (2025-04-10)
753

854

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

packages/documentation-framework/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
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.9.5 (2025-04-23)
7+
8+
**Note:** Version bump only for package @patternfly/documentation-framework
9+
10+
11+
12+
13+
14+
## 6.9.4 (2025-04-23)
15+
16+
17+
### Bug Fixes
18+
19+
* **example:** keeps example content from overflowing content area ([#4550](https://github.com/patternfly/patternfly-org/issues/4550)) ([8a4b648](https://github.com/patternfly/patternfly-org/commit/8a4b648a46aa710608557ce920e8070bf251d5ef))
20+
21+
22+
23+
24+
25+
## 6.9.3 (2025-04-16)
26+
27+
**Note:** Version bump only for package @patternfly/documentation-framework
28+
29+
30+
31+
32+
33+
## 6.9.2 (2025-04-15)
34+
35+
**Note:** Version bump only for package @patternfly/documentation-framework
36+
37+
38+
39+
40+
41+
## 6.9.1 (2025-04-10)
42+
43+
44+
### Reverts
45+
46+
* Revert "feat(ver): enable react 19 support in framework (#4515)" (#4541) ([93ae3ec](https://github.com/patternfly/patternfly-org/commit/93ae3ecc6bf551ae1eb8ab844aa82ca6619cf2bf)), closes [#4515](https://github.com/patternfly/patternfly-org/issues/4515) [#4541](https://github.com/patternfly/patternfly-org/issues/4541)
47+
48+
49+
50+
51+
652
# 6.9.0 (2025-04-10)
753

854

packages/documentation-framework/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@patternfly/documentation-framework",
33
"description": "A framework to build documentation for PatternFly.",
4-
"version": "6.9.0",
4+
"version": "6.9.5",
55
"author": "Red Hat",
66
"license": "MIT",
77
"bin": {
@@ -12,7 +12,7 @@
1212
"@babel/preset-env": "^7.24.3",
1313
"@babel/preset-react": "^7.24.1",
1414
"@mdx-js/util": "1.6.16",
15-
"@patternfly/ast-helpers": "^1.4.0-alpha.173",
15+
"@patternfly/ast-helpers": "^1.4.0-alpha.178",
1616
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
1717
"autoprefixer": "9.8.6",
1818
"babel-loader": "^9.1.3",
@@ -47,7 +47,7 @@
4747
"puppeteer": "^23.6.1",
4848
"puppeteer-cluster": "^0.24.0",
4949
"react-docgen": "5.3.1",
50-
"react-ssr-prepass": "1.6.0",
50+
"react-ssr-prepass": "1.5.0",
5151
"remark-footnotes": "1.0.0",
5252
"remark-frontmatter": "2.0.0",
5353
"remark-mdx": "2.0.0-next.8",
@@ -72,11 +72,11 @@
7272
"webpack-merge": "5.8.0"
7373
},
7474
"peerDependencies": {
75-
"@patternfly/patternfly": "^6.2.0",
76-
"@patternfly/react-code-editor": "^6.2.0",
77-
"@patternfly/react-core": "^6.2.0",
78-
"@patternfly/react-table": "^6.2.0",
79-
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
80-
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
75+
"@patternfly/patternfly": "^6.2.3",
76+
"@patternfly/react-code-editor": "^6.2.2",
77+
"@patternfly/react-core": "^6.2.2",
78+
"@patternfly/react-table": "^6.2.2",
79+
"react": "^17.0.0 || ^18.0.0",
80+
"react-dom": "^17.0.0 || ^18.0.0"
8181
}
8282
}

packages/documentation-framework/templates/mdx.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ p.pf-v6-c-content--p.ws-p {
2323
.ws-back-to-top {
2424
z-index: var(--pf-t--global--z-index--2xl);
2525
}
26+
27+
.ws-example-page-wrapper {
28+
max-width: min(100%, 825px);
29+
}

packages/documentation-framework/templates/mdx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const MDXChildTemplate = ({ Component, source, toc = [], index = 0, id }) => {
110110
const ChildComponent = () => (
111111
<div className={source !== 'landing-pages' ? 'pf-v6-l-flex' : ''}>
112112
{toc.length > 1 && <TableOfContents items={toc} />}
113-
<Stack hasGutter style={{ ...(source !== 'landing-pages' && { maxWidth: '825px' }) }}>
113+
<Stack hasGutter className={(source !== 'landing-pages' && 'ws-example-page-wrapper')}>
114114
{InlineAlerts}
115115
<Component />
116116
{functionDocumentation.length > 0 && (

packages/documentation-framework/versions.json

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
{
22
"Releases": [
3+
{
4+
"name": "6.2.1",
5+
"date": "2025-04-21",
6+
"latest": true,
7+
"versions": {
8+
"@patternfly/patternfly": "6.2.3",
9+
"@patternfly/react-catalog-view-extension": "6.1.0",
10+
"@patternfly/react-charts": "8.2.2",
11+
"@patternfly/react-code-editor": "6.2.2",
12+
"@patternfly/react-component-groups": "6.2.1",
13+
"@patternfly/react-core": "6.2.2",
14+
"@patternfly/react-drag-drop": "6.2.2",
15+
"@patternfly/react-icons": "6.2.2",
16+
"@patternfly/react-log-viewer": "6.1.0",
17+
"@patternfly/react-styles": "6.2.2",
18+
"@patternfly/react-table": "6.2.2",
19+
"@patternfly/react-tokens": "6.2.2",
20+
"@patternfly/react-topology": "6.2.0",
21+
"@patternfly/react-user-feedback": "6.1.0",
22+
"@patternfly/react-console": "6.0.0",
23+
"@patternfly/quickstarts": "6.2.2",
24+
"@patternfly/react-virtualized-extension": "6.0.0",
25+
"@patternfly/react-templates": "6.2.2",
26+
"@patternfly/chatbot": "2.2.1",
27+
"@patternfly/data-view": "6.2.0"
28+
}
29+
},
330
{
431
"name": "6.2.0",
532
"date": "2024-12-17",
6-
"latest": true,
33+
"hidden": true,
734
"versions": {
835
"@patternfly/patternfly": "6.2.0",
936
"@patternfly/react-catalog-view-extension": "6.1.0",

0 commit comments

Comments
 (0)