diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 199d3d7a..226b16ef 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,6 +7,10 @@ jobs: build: strategy: matrix: + # Label only — kept as 1.26.x to match the "Build (1.26.x)" required + # status check on main. actions/setup-go below is pinned to the exact + # patch version go.mod requires, since GitHub's setup-go version + # manifest can lag behind new Go releases. go-version: [1.26.x] runs-on: ubuntu-latest name: Build @@ -14,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v6.5.0 with: - go-version: ${{ matrix.go-version }} + go-version: 1.26.5 id: go - name: Check out code into the Go module directory diff --git a/CHANGELOG.md b/CHANGELOG.md index bb131fdd..223b28a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ +## 1.0.3 + +### AI Task Builder + +- Add schema to dataset create +- Add batch sync command +- Add --auto-sync flag to batch create command +- Add --auto-sync flag to batch update command +- Update dataset upload command to account for new dataset schemas +- Add auto sync enabled to batch create and update response +- Use git cli idiomatic approach to auto sync flaggs with no-auto-sync instead of disable or false flags + +### Core + +- Rename auto_sync request field to auto_sync_enabled + ## 1.0.2 ### AI Task Builder