Compare commits

..

5 Commits

Author SHA1 Message Date
c4b94e572e Merge branch 'master' into feature/kubernetes-management
Some checks failed
PR Review Automation / review (pull_request) Has been cancelled
Test / frontend-tests (pull_request) Has been cancelled
Test / rust-clippy (pull_request) Has been cancelled
Test / rust-tests (pull_request) Has been cancelled
Test / frontend-typecheck (pull_request) Has been cancelled
Test / rust-fmt-check (pull_request) Has been cancelled
2026-06-07 05:44:29 +00:00
gitea-actions[bot]
8a318febc3 chore: update CHANGELOG.md for v1.1.0 [skip ci] 2026-06-07 02:01:54 +00:00
314fc0d1ba Merge pull request 'fix(ci): replace JS-based Renovate action with direct container invocation' (#73) from fix/renovate-no-node-runner into master
Some checks failed
Auto Tag / autotag (push) Successful in 7s
Auto Tag / wiki-sync (push) Successful in 8s
Test / frontend-tests (push) Successful in 1m30s
Test / frontend-typecheck (push) Successful in 1m35s
Auto Tag / changelog (push) Successful in 1m51s
Auto Tag / build-macos-arm64 (push) Successful in 5m45s
Test / rust-tests (push) Has been cancelled
Test / rust-fmt-check (push) Has been cancelled
Test / rust-clippy (push) Has been cancelled
Auto Tag / build-linux-amd64 (push) Successful in 10m26s
Auto Tag / build-linux-arm64 (push) Successful in 13m10s
Auto Tag / build-windows-amd64 (push) Successful in 13m12s
Reviewed-on: #73
2026-06-07 01:59:46 +00:00
5dd4ae0a3c Merge pull request 'feat(kube): Implement complete kubectl port-forward runtime' (#72) from feature/kubernetes-management into master
Some checks failed
Auto Tag / changelog (push) Blocked by required conditions
Auto Tag / build-linux-amd64 (push) Blocked by required conditions
Auto Tag / build-windows-amd64 (push) Blocked by required conditions
Auto Tag / build-linux-arm64 (push) Blocked by required conditions
Test / frontend-tests (push) Waiting to run
Auto Tag / autotag (push) Successful in 6s
Auto Tag / wiki-sync (push) Has been cancelled
Auto Tag / build-macos-arm64 (push) Has been cancelled
Test / rust-fmt-check (push) Has been cancelled
Test / rust-tests (push) Has been cancelled
Test / rust-clippy (push) Has been cancelled
Test / frontend-typecheck (push) Has been cancelled
Reviewed-on: #72
2026-06-07 01:59:38 +00:00
Shaun Arman
30d6e73226 fix(ci): replace JS-based Renovate action with direct container invocation
Some checks failed
PR Review Automation / review (pull_request) Successful in 2m55s
Test / frontend-typecheck (pull_request) Successful in 1m38s
Test / frontend-tests (pull_request) Successful in 1m39s
Test / rust-tests (pull_request) Has been cancelled
Test / rust-fmt-check (pull_request) Has been cancelled
Test / rust-clippy (pull_request) Has been cancelled
The runner environment does not have Node.js in PATH, causing
actions/checkout@v4 and renovatebot/github-action@v41.0.0 (both JS
actions) to fail at startup.

Use renovate/renovate:latest as the job container and invoke the
renovate binary directly via run:, consistent with how all other
workflows in this repo handle checkout and tooling. The Checkout step
was also unnecessary — Renovate manages its own git operations.
2026-06-06 20:48:46 -05:00
2 changed files with 27 additions and 10 deletions

View File

@ -8,17 +8,15 @@ on:
jobs:
renovate:
runs-on: ubuntu-latest
container:
image: renovate/renovate:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Self-hosted Renovate
uses: renovatebot/github-action@v41.0.0
with:
token: ${{ secrets.RENOVATE_TOKEN }}
- name: Run Renovate
run: renovate
env:
RENOVATE_ENDPOINT: https://gogs.tftsr.com/api/v3
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://gogs.tftsr.com/api/v3
RENOVATE_AUTODISCOVER: 'false'
RENOVATE_REPOSITORIES: '["sarman/tftsr-devops_investigation"]'
RENOVATE_AUTOMERGE: 'false'

View File

@ -18,10 +18,28 @@ CI, chore, and build changes are excluded.
- **fmt**: Format code with cargo fmt
- Address clippy warnings
- **fmt**: Format code with cargo fmt
- **changelog**: Use tag range for release notes
- **fmt**: Apply cargo fmt
- Address automated PR review findings
- Address all automated PR review findings
- Properly handle kubectl subprocess with async child management
- Address automated PR review findings
- Add shutdown_port_forwards command for app cleanup
- Add app shutdown cleanup for port forward processes
- **kubernetes**: Address automated PR review findings
- **kube**: Address portforward race condition and temp file leak
- **ci**: Replace JS-based Renovate action with direct container invocation
### Documentation
- **kubernetes**: Add comment about dynamic port allocation limitation
### Features
- **kube**: Add Kubernetes management GUI components
- **kube**: Implement delete_port_forward command
- **kube**: Implement complete kubectl port-forward runtime
- Add comprehensive Windows and Linux command support to shell classifier
- **kubernetes**: Add database persistence for clusters and port_forwards
- **k8s**: Implement clean-room Kubernetes management GUI
## [1.1.0] — 2026-06-06
@ -44,6 +62,7 @@ CI, chore, and build changes are excluded.
- Pin plugin-stronghold npm version to match Rust crate (2.3.1)
### Features
- Full copy from apollo_nxt-trcaa with complete sanitization
- **kube**: Add Kubernetes management support
## [0.3.12] — 2026-06-05