Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ dist/
build/
*.egg-info/
public/
.playwright-cli/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ from v0.1.0 onward.

### Changed

- GitHub Action default `python-version` input changed from `"3.14"`
to `"3.12"`, matching the declared `requires-python` floor and
saving a cold `setup-python` download for downstream consumers
(slice #51).
- GitHub Action runtime no longer installs the `neo4j` driver; only
`playwright` and `pyyaml` are pulled, matching the base package surface
(slice #39).
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ inputs:
python-version:
description: "Python runtime version used to run RADE CLI."
required: false
default: "3.14"
default: "3.12"
fail-on-regression:
description: "If true, fail when reusability drops or accessibility risk rises."
required: false
Expand Down
8 changes: 8 additions & 0 deletions docs/NEXT_EXECUTION_BACKLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,14 @@
- Acceptance: README links to `CHANGELOG.md`; no other changes
- Does NOT include: generating release notes automatically, splitting the changelog by version, or restructuring the README

### 51. Conservative default Python for the GitHub Action + gitignore Playwright CLI traces

- Status: implemented 2026-04-19
- Risk reduced: `action.yml` advertised `python-version` default `"3.14"`, but Python 3.14 is still the newest minor and is not yet universally cached on GitHub-hosted runners — every external consumer using our Action would therefore pay a cold `setup-python` download on every run even though the package fully supports `3.12` (our declared `requires-python` floor). Dropping to `3.12` as the Action default removes that cold-start tax for downstream consumers; maintainers who want newer versions can still opt in via the input. Separately, `.playwright-cli/` trace/console artifacts from local `rade analyze --url` runs were leaking into `git status`, risking accidental commits of browser debugging data.
- Scope: (a) change `action.yml` default `python-version` from `"3.14"` to `"3.12"`; (b) add `.playwright-cli/` to `.gitignore`. No code or test changes.
- Acceptance: 211 pytest pass unchanged; `.playwright-cli/` no longer appears in `git status` after a run; Action users who pin `python-version` are unaffected
- Does NOT include: dropping 3.14 from the matrix (wheel-smoke still tests it), changing `requires-python`, or adding a second Action for a higher floor

### 49. Drop CodeQL badge from README banner

- Status: implemented 2026-04-19
Expand Down