Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0d0349b
refactor(tools/ai): remove dead `TaskRunner` code (#1993)
aofei Aug 20, 2025
95b2ea0
docs: add design for Database Migration System (#1965)
aofei Aug 21, 2025
a0c30d8
Fix identifier for `waitUntil` (#1999)
nighca Aug 21, 2025
9378ba5
chore(deps): bump github.com/casdoor/casdoor-go-sdk in /spx-backend (…
dependabot[bot] Aug 21, 2025
dfbb71e
feat(spx-gui): use an angle picker in the code editor to control the …
Overu Aug 22, 2025
9669a39
fix(spx-gui): fix the display error of "add button" in Firefox (#1976…
Overu Aug 22, 2025
66010b4
feat(spx-gui): provide duplicate functionality for targets such as sp…
Overu Aug 22, 2025
57df109
Merge pull request #2004 from goplus/dev
nighca Aug 22, 2025
4faf390
chore(deps): bump github.com/stretchr/testify in /spx-backend (#2020)
dependabot[bot] Aug 26, 2025
de61c84
Add iteration & condition statement in API References (#2021)
nighca Aug 26, 2025
78eb84d
Fix exception in PreprocessModal (#2029)
nighca Aug 26, 2025
ff8b789
feat(spx-gui): limit the number of session rounds (#2030)
Overu Aug 27, 2025
aa6543d
Fix sound file extension after editing (#2032)
nighca Aug 27, 2025
f2886be
feat(spx-gui): copilot session style adjustment (#2040)
Overu Aug 28, 2025
9dbc2aa
Quick input for Copilot (#2041)
nighca Aug 28, 2025
32a88ba
chore(deps): bump github.com/stretchr/testify in /spx-backend (#2048)
dependabot[bot] Aug 28, 2025
67d2922
feat(spx-gui): fix width calculation error when Copilot Trigger popup…
Overu Aug 28, 2025
b9fc1bf
chore(deps): bump spx and xgolsw for API redesign (#2033)
aofei Aug 28, 2025
ef05897
feat(spx-gui): update document-base for spx APIs' change (#2018)
Overu Aug 28, 2025
665fb5c
Merge pull request #2051 from goplus/dev
nighca Aug 28, 2025
da2ba91
Update Copilot's knowledge base (#2053)
nighca Aug 29, 2025
6819ce2
Fix copilot context missing when navigating (#2046)
nighca Aug 29, 2025
e20a60e
feat(spx-gui): improve Copilot UI acceptance issues (#2056)
Overu Aug 29, 2025
31f3350
Merge pull request #2062 from goplus/dev
nighca Aug 29, 2025
77f23b4
chore(deps): bump gorm.io/gorm from 1.30.1 to 1.30.2 in /spx-backend …
dependabot[bot] Sep 1, 2025
26ecd68
feat(spx-backend): implement Database Migration System (#2001)
aofei Sep 1, 2025
70f2efc
chore(deps): bump github.com/casdoor/casdoor-go-sdk in /spx-backend (…
dependabot[bot] Sep 2, 2025
f38b958
chore(deps): bump github.com/golang-migrate/migrate/v4 in /spx-backen…
dependabot[bot] Sep 2, 2025
a02cbe3
chore(deps): bump github.com/openai/openai-go from v1 to v2 in spx-ba…
aofei Sep 3, 2025
d98f2bc
feat(spx-backend): add lite model support for AI services (#2079)
aofei Sep 3, 2025
8f1436b
feat(spx-gui): add ``spx-layer-action`` and ``spx-dir-action`` (#2074)
Overu Sep 3, 2025
4c60f75
refactor(tools/ai): optimize timeout and backoff parameters for impro…
aofei Sep 4, 2025
c855f93
chore(deps): bump github.com/goplus/xgolsw in tools/spxls (#2092)
aofei Sep 4, 2025
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
18 changes: 18 additions & 0 deletions .github/workflows/validate-database-migrations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Validate database migrations
on:
push:
paths:
- spx-backend/internal/migration/migrations/**
- scripts/validate-database-migrations.sh
pull_request:
paths:
- spx-backend/internal/migration/migrations/**
- scripts/validate-database-migrations.sh
jobs:
validate-database-migrations:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v5
- name: Run database migration validation
run: ./scripts/validate-database-migrations.sh
4 changes: 0 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@ name: Validate (lint, test & ...)

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
spx-gui-lint:
Expand Down
Loading
Loading