Skip to content

Commit ea933b2

Browse files
Merge branch 'main' into iss4466
2 parents c01a83f + 7c394a8 commit ea933b2

355 files changed

Lines changed: 5755 additions & 1051 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.1.0",
34-
"@patternfly/react-code-editor": "^6.1.0",
35-
"@patternfly/react-core": "^6.1.0",
36-
"@patternfly/react-table": "^6.1.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: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,177 @@
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.179 (2025-04-23)
7+
8+
**Note:** Version bump only for package @patternfly/ast-helpers
9+
10+
11+
12+
13+
14+
# 1.4.0-alpha.178 (2025-04-23)
15+
16+
**Note:** Version bump only for package @patternfly/ast-helpers
17+
18+
19+
20+
21+
22+
# 1.4.0-alpha.177 (2025-04-23)
23+
24+
25+
### Bug Fixes
26+
27+
* **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))
28+
29+
30+
31+
32+
33+
# 1.4.0-alpha.176 (2025-04-16)
34+
35+
**Note:** Version bump only for package @patternfly/ast-helpers
36+
37+
38+
39+
40+
41+
# 1.4.0-alpha.175 (2025-04-15)
42+
43+
**Note:** Version bump only for package @patternfly/ast-helpers
44+
45+
46+
47+
48+
49+
# 1.4.0-alpha.174 (2025-04-10)
50+
51+
52+
### Reverts
53+
54+
* 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)
55+
56+
57+
58+
59+
60+
# 1.4.0-alpha.173 (2025-04-10)
61+
62+
63+
### Features
64+
65+
* **ver:** enable react 19 support in framework ([#4515](https://github.com/patternfly/patternfly-org/issues/4515)) ([07ed7ae](https://github.com/patternfly/patternfly-org/commit/07ed7ae30789543204f8c8f5031c96e478164957))
66+
67+
68+
69+
70+
71+
# 1.4.0-alpha.172 (2025-04-09)
72+
73+
74+
### Bug Fixes
75+
76+
* css variables table has colors again & charts dependencies fixed ([#4535](https://github.com/patternfly/patternfly-org/issues/4535)) ([72f4744](https://github.com/patternfly/patternfly-org/commit/72f4744b13636d1252ede299e0ffa7421c0d0974))
77+
78+
79+
80+
81+
82+
# 1.4.0-alpha.171 (2025-04-08)
83+
84+
**Note:** Version bump only for package @patternfly/ast-helpers
85+
86+
87+
88+
89+
90+
# 1.4.0-alpha.170 (2025-04-08)
91+
92+
**Note:** Version bump only for package @patternfly/ast-helpers
93+
94+
95+
96+
97+
98+
# 1.4.0-alpha.169 (2025-04-08)
99+
100+
101+
### Bug Fixes
102+
103+
* update the echarts related documentation ([#4532](https://github.com/patternfly/patternfly-org/issues/4532)) ([660f2ff](https://github.com/patternfly/patternfly-org/commit/660f2ff5095c45767f3c3e1235ead07e188605b6))
104+
105+
106+
107+
108+
109+
# 1.4.0-alpha.168 (2025-04-04)
110+
111+
112+
### Features
113+
114+
* **ver:** update chatbot ver ([#4517](https://github.com/patternfly/patternfly-org/issues/4517)) ([82ceb93](https://github.com/patternfly/patternfly-org/commit/82ceb9368cf24277fdb30caa4c510af8fcb77445))
115+
116+
117+
118+
119+
120+
# 1.4.0-alpha.167 (2025-04-04)
121+
122+
123+
### Bug Fixes
124+
125+
* Updated to latest prerelease. ([#4516](https://github.com/patternfly/patternfly-org/issues/4516)) ([df7ebc4](https://github.com/patternfly/patternfly-org/commit/df7ebc4507e9f12a97aead5df8e8768c87363fcc))
126+
127+
128+
129+
130+
131+
# 1.4.0-alpha.166 (2025-04-03)
132+
133+
**Note:** Version bump only for package @patternfly/ast-helpers
134+
135+
136+
137+
138+
139+
# 1.4.0-alpha.165 (2025-04-02)
140+
141+
**Note:** Version bump only for package @patternfly/ast-helpers
142+
143+
144+
145+
146+
147+
# 1.4.0-alpha.164 (2025-04-02)
148+
149+
**Note:** Version bump only for package @patternfly/ast-helpers
150+
151+
152+
153+
154+
155+
# 1.4.0-alpha.163 (2025-03-28)
156+
157+
158+
### Features
159+
160+
* **ver:** update design tokens version & regenerate screenshots ([#4511](https://github.com/patternfly/patternfly-org/issues/4511)) ([4bd624d](https://github.com/patternfly/patternfly-org/commit/4bd624db116fae1f09aa75a3973ebb79be1aa803))
161+
162+
163+
164+
165+
166+
# 1.4.0-alpha.162 (2025-03-27)
167+
168+
169+
### Features
170+
171+
* **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))
172+
173+
174+
175+
176+
6177
# 1.4.0-alpha.161 (2025-03-18)
7178

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

0 commit comments

Comments
 (0)