diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7ccfe12..bc845f3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.15.0" + ".": "1.16.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 960a555..e8ebb7b 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 116 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-22e4e7c84b8efa6d1777ad68e350fe88205ca55933c9b1042bcf04fc6437825f.yml -openapi_spec_hash: f61203a73768b7175003b648c986e3f9 -config_hash: 6850143d4cb11e40948430dd9ee88369 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/anthropic/anthropic-506a5ad71d522b4ae56ac3429380486647af1f92eddde80603480fb592d62b54.yml +openapi_spec_hash: d272f069e15d096063103c857fb8e2a7 +config_hash: 7671314e6e5005559d15540f255a2efb diff --git a/CHANGELOG.md b/CHANGELOG.md index d6a3bf6..980eadb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.16.0 (2026-07-02) + +Full Changelog: [v1.15.0...v1.16.0](https://github.com/anthropics/anthropic-cli/compare/v1.15.0...v1.16.0) + +### Features + +* **api:** add agent-memory-2026-07-22 beta header ([4789498](https://github.com/anthropics/anthropic-cli/commit/4789498f89818f216b03d99ce30da1a5b1af88f3)) + ## 1.15.0 (2026-07-01) Full Changelog: [v1.14.1...v1.15.0](https://github.com/anthropics/anthropic-cli/compare/v1.14.1...v1.15.0) diff --git a/go.mod b/go.mod index 69d223c..08f82ce 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/anthropics/anthropic-cli go 1.25 require ( - github.com/anthropics/anthropic-sdk-go v1.55.1 + github.com/anthropics/anthropic-sdk-go v1.56.0 github.com/charmbracelet/bubbles v0.21.0 github.com/charmbracelet/bubbletea v1.3.6 github.com/charmbracelet/lipgloss v1.1.0 diff --git a/go.sum b/go.sum index 3296a47..b54ae4b 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/anthropics/anthropic-sdk-go v1.55.1 h1:GxukHUVou6AFIngxa/Aw1z79hmwg13Hmn++KE9werbM= -github.com/anthropics/anthropic-sdk-go v1.55.1/go.mod h1:3EfIfmFqxH6rbiLcIP4tPFyXL/IHakx2wDG4OU+TIEI= +github.com/anthropics/anthropic-sdk-go v1.56.0 h1:idVU14wOZ06D0GBNEvuhn927xXmBVEquo0469iDwLsc= +github.com/anthropics/anthropic-sdk-go v1.56.0/go.mod h1:3EfIfmFqxH6rbiLcIP4tPFyXL/IHakx2wDG4OU+TIEI= github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k= github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8= github.com/aymanbagabas/go-udiff v0.2.0 h1:TK0fH4MteXUDspT88n8CKzvK0X9O2xu9yQjWpi6yML8= diff --git a/pkg/cmd/betamemorystorememory.go b/pkg/cmd/betamemorystorememory.go index 46c2e8e..fc97106 100644 --- a/pkg/cmd/betamemorystorememory.go +++ b/pkg/cmd/betamemorystorememory.go @@ -160,16 +160,6 @@ var betaMemoryStoresMemoriesList = cli.Command{ Usage: "Maximum number of items to return per page. Must be between 1 and 100. Defaults to 20 when omitted. Capped at 20 when `view=full`. Both `memory` and `memory_prefix` items count toward the limit.", QueryPath: "limit", }, - &requestflag.Flag[string]{ - Name: "order", - Usage: "Query parameter for order", - QueryPath: "order", - }, - &requestflag.Flag[string]{ - Name: "order-by", - Usage: "Query parameter for order_by", - QueryPath: "order_by", - }, &requestflag.Flag[string]{ Name: "page", Usage: "Opaque pagination cursor (a `page_...` value). Pass the `next_page` value from a previous response to fetch the next page; omit for the first page.", diff --git a/pkg/cmd/betamemorystorememory_test.go b/pkg/cmd/betamemorystorememory_test.go index 9573f89..63f37a8 100644 --- a/pkg/cmd/betamemorystorememory_test.go +++ b/pkg/cmd/betamemorystorememory_test.go @@ -120,8 +120,6 @@ func TestBetaMemoryStoresMemoriesList(t *testing.T) { "--memory-store-id", "memory_store_id", "--depth", "0", "--limit", "0", - "--order", "asc", - "--order-by", "order_by", "--page", "page", "--path-prefix", "path_prefix", "--view", "basic", diff --git a/pkg/cmd/version.go b/pkg/cmd/version.go index 8ae26c6..aed34ed 100644 --- a/pkg/cmd/version.go +++ b/pkg/cmd/version.go @@ -2,4 +2,4 @@ package cmd -const Version = "1.15.0" // x-release-please-version +const Version = "1.16.0" // x-release-please-version