Remove bulk commands, bump courier-go to v4.20.0 (C-19507)#73
Merged
Conversation
The /bulk endpoints were removed from the API spec, so courier-go v4.20.0 no longer exposes the Bulk service. Bump the SDK pin and drop the hand-written bulk command layer (pkg/cmd/bulk.go, its registration in cmd.go, and bulk_test.go) that wrapped it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
The
/bulkendpoints were removed from the Courier API spec (api-spec #171), socourier-gov4.20.0 no longer exposes theBulkservice or its param types. This bumps the SDK pin and removes the hand-written bulk command layer that wrapped it, which otherwise fails to compile (undefined: courier.BulkAddUsersParams,client.Bulk.* undefined).Changes
github.com/trycourier/courier-go/v4v4.18.1→v4.20.0(+go mod tidy).pkg/cmd/bulk.go(thebulk add-users / create-job / list-users / retrieve-job / run-jobcommands and handlers).bulkresource registration block frompkg/cmd/cmd.go.pkg/cmd/bulk_test.go.Validation
go build ./...✅go vet ./...✅go test ./...✅ (all packages pass)client.Bulk/courier.Bulk*references.Linear: C-19507
🤖 Generated with Claude Code