Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 5 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@ 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
steps:
- 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
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@

<!-- Add manual release notes here. They will be merged into the generated changelog at release time. -->

## 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
Comment thread
SeanAlexanderHarris marked this conversation as resolved.

### Core

- Rename auto_sync request field to auto_sync_enabled

## 1.0.2

### AI Task Builder
Expand Down
Loading