Skip to content
Closed
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
2526c9e
chore(deps): bump docker/metadata-action from 5 to 6
dependabot[bot] Apr 13, 2026
a846bee
chore(deps): bump docker/login-action from 3 to 4
dependabot[bot] Apr 13, 2026
0267dfc
chore(deps): bump softprops/action-gh-release from 2 to 3
dependabot[bot] Apr 13, 2026
96796d6
Merge pull request #538 from alfredo1996/dependabot/github_actions/do…
alfredo1996 Apr 17, 2026
c827ef4
Merge pull request #539 from alfredo1996/dependabot/github_actions/do…
alfredo1996 Apr 17, 2026
cf2cd73
Merge pull request #540 from alfredo1996/dependabot/github_actions/so…
alfredo1996 Apr 17, 2026
0a673c3
fix(hardening): dashboard error boundary + expression tokenizer for n…
alfredo1996 Apr 20, 2026
14f91a5
fix(security): add tenantId to fast-path connection lookup in query r…
alfredo1996 Apr 20, 2026
3af0545
feat(connectors): database selector + per-card write toggle (#568)
alfredorubin96 Apr 29, 2026
3bef6a5
fix(security): address CodeRabbit review findings on PR #631
alfredorubin96 Apr 30, 2026
d0c123b
test(app): add unit tests for database-selector and query route overr…
alfredorubin96 May 1, 2026
ca79033
test(app): add coverage for listDatabases/listSchemas and store datab…
alfredorubin96 May 1, 2026
558aa2c
fix(review): address CodeRabbit round-2 findings on PR #631
alfredorubin96 May 1, 2026
c419ef3
ci: trigger CI after base branch change to release/2.0
alfredorubin96 May 1, 2026
fe45b90
fix(types): fix mock type mismatch in query-executor tests
alfredorubin96 May 1, 2026
f7df09c
refactor: remove redundant credentials alias in list-databases-inline
alfredorubin96 May 1, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
echo "$BODY" > /tmp/release-body.md

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
body_path: /tmp/release-body.md
generate_release_notes: false
Expand All @@ -47,15 +47,15 @@ jobs:
uses: docker/setup-buildx-action@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: ghcr.io/${{ github.repository }}
tags: |
Expand Down
1 change: 1 addition & 0 deletions app/drizzle/migrations/0003_furry_scourge.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "connection" ADD COLUMN "allow_per_card_db" boolean DEFAULT true NOT NULL;
Loading
Loading