-
Notifications
You must be signed in to change notification settings - Fork 0
chore: reconcile main release line into develop #185
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
Merged
Merged
Changes from 32 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
3bd9119
feat: implement rehearsal workspace design
seonghobae 37b89bd
Merge origin/main into feature/issue-107-harmonic-pitch
seonghobae 7e17b0c
Fix test configuration and typing issues
seonghobae e48bd7a
fix: add missing docstrings to tests
seonghobae 51100b4
style: fix ruff import sorting and formatting errors
seonghobae 3f95b63
fix(security): resolve npm audit vulnerabilities
seonghobae 0109bb5
fix(security): upgrade pytest to 9.0.3 to fix GHSA-6w46-j5rx-g56g
seonghobae 31998fd
ci: add bandit github actions workflow
seonghobae 4ffc797
ci: add bandit dependencies to pyproject.toml and package.json scripts
seonghobae 6fc6827
ci: add bandit security scan workflow
seonghobae 708f568
chore: bump version and changelog (v0.1.1)
seonghobae 08afa94
Merge pull request #159 from seonghobae/feature/issue-107-harmonic-pitch
seonghobae 6b6a2fa
fix(ci): add repo flag to gh release upload (#161)
seonghobae 5986e6c
test: update packaging tests (#163)
seonghobae b8d2c57
fix(release): output actual DMG and EXE installers (#162)
seonghobae adde1b4
feat(ui): redesign workspace with shadcn and tailwind v4 (#164)
seonghobae ab29458
fix: stabilize desktop YouTube import fallback (#165)
seonghobae 3175d38
fix(ci): guard OSSF Scorecard on release branch (#166)
seonghobae 150765c
chore: prepare v0.1.2 release (#174)
seonghobae f9b2028
fix(release): publish immutable release assets before publication
seonghobae 6aafe3d
Merge pull request #175 from seonghobae/fix/immutable-release-publishing
seonghobae 92f3302
chore: prepare v0.1.3 release
seonghobae a449d74
chore: prepare v0.1.3 release
seonghobae 6dcd654
feat(ui): finalize rehearsal console redesign
seonghobae da3897d
Merge pull request #177 from seonghobae/feature/rehearsal-console-red…
seonghobae 288be8d
chore: reconcile main release line into develop
seonghobae f491f8c
fix: resolve review blockers for develop reconcile
seonghobae 904c113
fix: address reconcile review blockers
seonghobae 8dc9278
fix: harden release asset allowlist
seonghobae 008fed9
fix: tighten npx workflow policy
seonghobae 65d02da
fix: harden supply-chain review gates
seonghobae 47fb3a6
fix: close supply-chain review gaps
seonghobae aeb856f
fix: address review follow-ups
seonghobae 62acb61
fix: resolve review gate findings
seonghobae 9018d40
fix: resolve current review findings
seonghobae 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 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,29 @@ | ||
| name: bandit | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - develop | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - develop | ||
| - main | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| bandit-scan: | ||
| name: Bandit Security Scan | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 | ||
| with: | ||
| version: "0.8.6" | ||
| - name: Sync Python dependencies | ||
| run: uv sync --project services/analysis-engine --group dev --frozen | ||
| - name: Run Bandit | ||
| working-directory: services/analysis-engine | ||
| run: uv run bandit -c pyproject.toml -r src |
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
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
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 @@ | ||
| 0.1.3 |
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,25 @@ | ||
| { | ||
| "$schema": "https://ui.shadcn.com/schema.json", | ||
| "style": "base-nova", | ||
| "rsc": false, | ||
| "tsx": true, | ||
| "tailwind": { | ||
| "config": "", | ||
| "css": "src/index.css", | ||
| "baseColor": "neutral", | ||
| "cssVariables": true, | ||
| "prefix": "" | ||
| }, | ||
| "iconLibrary": "lucide", | ||
| "rtl": false, | ||
| "aliases": { | ||
| "components": "@/components", | ||
| "utils": "@/lib/utils", | ||
| "ui": "@/components/ui", | ||
| "lib": "@/lib", | ||
| "hooks": "@/hooks" | ||
| }, | ||
| "menuColor": "default", | ||
| "menuAccent": "subtle", | ||
| "registries": {} | ||
| } |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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.