[PR #27] [MERGED] release: 0.19.0 #28

Closed
opened 2026-02-27 19:12:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/cjavdev/spotted-cli/pull/27
Author: @stainless-app[bot]
Created: 1/7/2026
Status: Merged
Merged: 1/14/2026
Merged by: @cjavdev

Base: mainHead: release-please--branches--main--changes--next


📝 Commits (10+)

  • 88ce484 feat: improved behavior for exploring paginated/streamed endpoints
  • 803dba1 feat: added support for --foo.baz inner field flags
  • 03963ac codegen metadata
  • 6a9cdad codegen metadata
  • 76e6604 codegen metadata
  • 6adb7d1 codegen metadata
  • 73c9fd3 feat: enable CI tests
  • de3ca69 fix: remove unsupported methods
  • 55e6c74 chore(internal): codegen related update
  • 30f1ba7 chore(internal): codegen related update

📊 Changes

60 files changed (+1397 additions, -1864 deletions)

View changed files

📝 .github/workflows/ci.yml (+19 -0)
📝 .release-please-manifest.json (+1 -1)
📝 .stats.yml (+1 -1)
📝 CHANGELOG.md (+27 -0)
📝 go.mod (+3 -2)
📝 go.sum (+2 -4)
📝 internal/jsonview/explorer.go (+198 -13)
internal/requestflag/innerflag.go (+262 -0)
internal/requestflag/innerflag_test.go (+319 -0)
📝 internal/requestflag/requestflag.go (+159 -128)
📝 internal/requestflag/requestflag_test.go (+27 -0)
📝 pkg/cmd/album.go (+10 -16)
📝 pkg/cmd/artist.go (+16 -20)
📝 pkg/cmd/audioanalysis.go (+3 -2)
📝 pkg/cmd/audiobook.go (+10 -16)
📝 pkg/cmd/audiofeature.go (+6 -4)
📝 pkg/cmd/browse.go (+6 -4)
📝 pkg/cmd/browsecategory.go (+10 -16)
📝 pkg/cmd/chapter.go (+6 -4)
📝 pkg/cmd/cmd.go (+31 -0)

...and 40 more files

📄 Description

Automated Release PR

0.19.0 (2026-01-14)

Full Changelog: v0.18.2...v0.19.0

Features

  • added support for --foo.baz inner field flags (803dba1)
  • enable CI tests (73c9fd3)
  • enable suggestion for mistyped commands and flags (ae0f6b2)
  • improved behavior for exploring paginated/streamed endpoints (88ce484)

Bug Fixes

  • client: do not use pager for short paginated responses (54a2007)
  • fix for paginated output not writing to pager correctly (0d32db3)
  • remove unsupported methods (de3ca69)

Chores

  • internal: codegen related update (b11ded9)
  • internal: codegen related update (9084f02)
  • internal: codegen related update (30f1ba7)
  • internal: codegen related update (55e6c74)
  • update Go SDK version (25f3662)

This pull request is managed by Stainless's GitHub App.

The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.

For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.

🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/cjavdev/spotted-cli/pull/27 **Author:** [@stainless-app[bot]](https://github.com/apps/stainless-app) **Created:** 1/7/2026 **Status:** ✅ Merged **Merged:** 1/14/2026 **Merged by:** [@cjavdev](https://github.com/cjavdev) **Base:** `main` ← **Head:** `release-please--branches--main--changes--next` --- ### 📝 Commits (10+) - [`88ce484`](https://github.com/cjavdev/spotted-cli/commit/88ce484bcd3b7210016bc3f3a76347f23217db06) feat: improved behavior for exploring paginated/streamed endpoints - [`803dba1`](https://github.com/cjavdev/spotted-cli/commit/803dba10bcefdfe3c5959a27ac5c4a3868b8a647) feat: added support for --foo.baz inner field flags - [`03963ac`](https://github.com/cjavdev/spotted-cli/commit/03963ac001c1b66c1cb73a5b974e6c82d40cc868) codegen metadata - [`6a9cdad`](https://github.com/cjavdev/spotted-cli/commit/6a9cdad418dae4684df308c6726414e09c37577c) codegen metadata - [`76e6604`](https://github.com/cjavdev/spotted-cli/commit/76e6604326a7c2900b7034b40d11af15486d5822) codegen metadata - [`6adb7d1`](https://github.com/cjavdev/spotted-cli/commit/6adb7d1be23781b7fabba99142346ceca795a73b) codegen metadata - [`73c9fd3`](https://github.com/cjavdev/spotted-cli/commit/73c9fd350d89410875d5f2b65bd75d8d526a1101) feat: enable CI tests - [`de3ca69`](https://github.com/cjavdev/spotted-cli/commit/de3ca69393e73e38e1b8adc16c99e4c9c1c99f19) fix: remove unsupported methods - [`55e6c74`](https://github.com/cjavdev/spotted-cli/commit/55e6c7488411d8f0734405b3bbf34ed9dff4fc86) chore(internal): codegen related update - [`30f1ba7`](https://github.com/cjavdev/spotted-cli/commit/30f1ba73daccf1e29e8a34ccf2b48481a8b49a24) chore(internal): codegen related update ### 📊 Changes **60 files changed** (+1397 additions, -1864 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+19 -0) 📝 `.release-please-manifest.json` (+1 -1) 📝 `.stats.yml` (+1 -1) 📝 `CHANGELOG.md` (+27 -0) 📝 `go.mod` (+3 -2) 📝 `go.sum` (+2 -4) 📝 `internal/jsonview/explorer.go` (+198 -13) ➕ `internal/requestflag/innerflag.go` (+262 -0) ➕ `internal/requestflag/innerflag_test.go` (+319 -0) 📝 `internal/requestflag/requestflag.go` (+159 -128) 📝 `internal/requestflag/requestflag_test.go` (+27 -0) 📝 `pkg/cmd/album.go` (+10 -16) 📝 `pkg/cmd/artist.go` (+16 -20) 📝 `pkg/cmd/audioanalysis.go` (+3 -2) 📝 `pkg/cmd/audiobook.go` (+10 -16) 📝 `pkg/cmd/audiofeature.go` (+6 -4) 📝 `pkg/cmd/browse.go` (+6 -4) 📝 `pkg/cmd/browsecategory.go` (+10 -16) 📝 `pkg/cmd/chapter.go` (+6 -4) 📝 `pkg/cmd/cmd.go` (+31 -0) _...and 40 more files_ </details> ### 📄 Description Automated Release PR --- ## 0.19.0 (2026-01-14) Full Changelog: [v0.18.2...v0.19.0](https://github.com/cjavdev/spotted-cli/compare/v0.18.2...v0.19.0) ### Features * added support for --foo.baz inner field flags ([803dba1](https://github.com/cjavdev/spotted-cli/commit/803dba10bcefdfe3c5959a27ac5c4a3868b8a647)) * enable CI tests ([73c9fd3](https://github.com/cjavdev/spotted-cli/commit/73c9fd350d89410875d5f2b65bd75d8d526a1101)) * enable suggestion for mistyped commands and flags ([ae0f6b2](https://github.com/cjavdev/spotted-cli/commit/ae0f6b2218c85e51b5af2989a416a47ecb3f44ac)) * improved behavior for exploring paginated/streamed endpoints ([88ce484](https://github.com/cjavdev/spotted-cli/commit/88ce484bcd3b7210016bc3f3a76347f23217db06)) ### Bug Fixes * **client:** do not use pager for short paginated responses ([54a2007](https://github.com/cjavdev/spotted-cli/commit/54a20075a96c179d9397655dd2796b9e58c46f49)) * fix for paginated output not writing to pager correctly ([0d32db3](https://github.com/cjavdev/spotted-cli/commit/0d32db3ef4e5e9a1243fda2c65d582d928f6b61e)) * remove unsupported methods ([de3ca69](https://github.com/cjavdev/spotted-cli/commit/de3ca69393e73e38e1b8adc16c99e4c9c1c99f19)) ### Chores * **internal:** codegen related update ([b11ded9](https://github.com/cjavdev/spotted-cli/commit/b11ded9253714c2f6461cb5cb2248f6e3f0e7334)) * **internal:** codegen related update ([9084f02](https://github.com/cjavdev/spotted-cli/commit/9084f02a1112d0cc3c771d0abf7549ef29b77401)) * **internal:** codegen related update ([30f1ba7](https://github.com/cjavdev/spotted-cli/commit/30f1ba73daccf1e29e8a34ccf2b48481a8b49a24)) * **internal:** codegen related update ([55e6c74](https://github.com/cjavdev/spotted-cli/commit/55e6c7488411d8f0734405b3bbf34ed9dff4fc86)) * update Go SDK version ([25f3662](https://github.com/cjavdev/spotted-cli/commit/25f36621437fe6cc17ba763c1964fa69a96885c1)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:support@stainlessapi.com) for help or questions --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 19:12:23 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotted-cli#28
No description provided.