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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.15.0"
".": "1.16.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -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=
Expand Down
10 changes: 0 additions & 10 deletions pkg/cmd/betamemorystorememory.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
2 changes: 0 additions & 2 deletions pkg/cmd/betamemorystorememory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package cmd

const Version = "1.15.0" // x-release-please-version
const Version = "1.16.0" // x-release-please-version
Loading