-
Notifications
You must be signed in to change notification settings - Fork 4
UI UX improvements #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ayagmar
wants to merge
6
commits into
master
Choose a base branch
from
extmgr/scoped-cleanups-release
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e54603a
refactor(discovery): share path and duration helpers
ayagmar 0c4dc00
perf(history): keep global session queries bounded
ayagmar b233fb6
feat(remote): enrich browsing and cached metadata
ayagmar eea69d2
feat(manager): improve unified actions and fallback flows
ayagmar b378081
chore(release): adopt manual release-it workflow
ayagmar a1f5a61
fix(extmgr): harden manager state, cache TTL, and release flow
ayagmar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| name: Release | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| release_type: | ||
| description: Release bump type | ||
| required: true | ||
| type: choice | ||
| options: | ||
| - patch | ||
| - minor | ||
| - major | ||
| default: patch | ||
| first_release: | ||
| description: Use --first-release for initial npm publish | ||
| required: true | ||
| type: boolean | ||
| default: false | ||
|
|
||
| concurrency: | ||
| group: release-${{ github.repository }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| permissions: | ||
| contents: write | ||
|
|
||
| jobs: | ||
| release: | ||
| if: github.ref == 'refs/heads/main' | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 10 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "24" | ||
| registry-url: "https://registry.npmjs.org" | ||
| cache: "pnpm" | ||
|
|
||
| - name: Install dependencies | ||
| run: pnpm install --frozen-lockfile | ||
|
|
||
| - name: Configure git author | ||
| run: | | ||
| git config user.name "github-actions[bot]" | ||
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
|
|
||
| - name: Release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| RELEASE_TYPE: ${{ inputs.release_type }} | ||
| FIRST_RELEASE: ${{ inputs.first_release }} | ||
| run: pnpm run release:ci | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| { | ||
| "git": { | ||
| "commitMessage": "chore(release): v${version}", | ||
| "tagName": "v${version}", | ||
| "requireCleanWorkingDir": true, | ||
| "requireUpstream": true, | ||
| "addUntrackedFiles": true, | ||
| "commit": true, | ||
| "tag": true, | ||
| "push": true | ||
| }, | ||
| "github": { | ||
| "release": true | ||
| }, | ||
| "npm": { | ||
| "publish": true | ||
| }, | ||
| "plugins": { | ||
| "@release-it/conventional-changelog": { | ||
| "preset": "conventionalcommits", | ||
| "infile": "CHANGELOG.md" | ||
| } | ||
| }, | ||
| "hooks": { | ||
| "before:init": "pnpm run check" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Changelog | ||
|
|
||
| ## Unreleased | ||
|
|
||
| - Expected release: TBD | ||
| - PR: TBD | ||
| - Authors: @ayagmar | ||
|
|
||
| ### Added | ||
|
|
||
| - Documented new duration parsing and path identity utility work that supports history filters, scheduling, and path deduplication. | ||
|
|
||
| ### Changed | ||
|
|
||
| - Release automation now serializes manual runs and only publishes from `main`. | ||
| - Community browse caching now follows the shared search-cache path. | ||
|
|
||
| ### Fixed | ||
|
|
||
| - Unified manager interactions keep staged changes, filters, and selection when returning from details, action menus, and stay-in-manager prompts. | ||
| - Disabled local extensions deduplicate correctly, manifest entrypoints only resolve real files, and npm author selection now prefers maintainer usernames before fallback emails. | ||
| - Metadata cache freshness no longer refreshes inherited stale fields. | ||
| - Relative path selection rejects Windows absolute and UNC paths, and unified UI tests now use platform-safe temp directories. | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,6 +27,12 @@ | |
| "smoke-test": "node --import=tsx ./scripts/smoke-test.mjs", | ||
| "test": "node --import=tsx --test ./test/*.test.ts", | ||
| "check": "tsc --noEmit -p tsconfig.json && node --import=tsx ./scripts/smoke-test.mjs && node --import=tsx --test ./test/*.test.ts && pnpm run lint && pnpm run format:check", | ||
| "release": "release-it", | ||
| "release:patch": "release-it patch", | ||
| "release:minor": "release-it minor", | ||
| "release:major": "release-it major", | ||
| "release:first": "release-it --first-release", | ||
| "release:ci": "node --import=tsx ./scripts/release-ci.ts", | ||
| "prepublishOnly": "pnpm run check", | ||
| "prepare": "husky" | ||
| }, | ||
|
|
@@ -45,16 +51,18 @@ | |
| "@biomejs/biome": "^2.4.9", | ||
| "@mariozechner/pi-coding-agent": "^0.63.1", | ||
| "@mariozechner/pi-tui": "^0.63.1", | ||
| "@release-it/conventional-changelog": "^10.0.5", | ||
| "@types/node": "^22.19.10", | ||
| "husky": "^9.1.7", | ||
| "release-it": "^19.2.4", | ||
| "tsx": "^4.21.0", | ||
| "typescript": "^5.9.3" | ||
| }, | ||
| "author": "ayagmar", | ||
| "license": "MIT", | ||
| "packageManager": "[email protected]", | ||
| "engines": { | ||
| "node": ">=22" | ||
| "node": ">=22.20.0" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.