diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2be9c43..0ee8c01 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.3.0" } diff --git a/.stats.yml b/.stats.yml index b03576e..4fd2e98 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 3 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/warp-bnavetta%2Fwarp-api-c4c5f89f67a73e4d17377d2b96fc201a63cd5458cbebaa23e78f92b59b90cc5b.yml openapi_spec_hash: 931c6189a4fc4ee320963646b1b7edbe -config_hash: f555d17517c40197d3ba9240ca35e1ee +config_hash: 9c6b93a5f4b658b946f0ab7fcfedbaa3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f5b798..335ccda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.3.0 (2026-01-05) + +Full Changelog: [v0.2.0...v0.3.0](https://github.com/warpdotdev/warp-sdk-typescript/compare/v0.2.0...v0.3.0) + +### Features + +* **api:** fix array query parameter formatting ([2d9b185](https://github.com/warpdotdev/warp-sdk-typescript/commit/2d9b18571e9964a5b50a228757880e50fd35530e)) + ## 0.2.0 (2025-12-17) Full Changelog: [v0.1.0...v0.2.0](https://github.com/warpdotdev/warp-sdk-typescript/compare/v0.1.0...v0.2.0) diff --git a/LICENSE b/LICENSE index 091352e..93fb21c 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2025 Warp API + Copyright 2026 Warp API Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/package.json b/package.json index 98cda1b..c073db8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "warp-agent-sdk", - "version": "0.2.0", + "version": "0.3.0", "description": "The official TypeScript library for the Warp API API", "author": "Warp API <>", "types": "dist/index.d.ts", diff --git a/src/client.ts b/src/client.ts index fda5bb7..1ffed36 100644 --- a/src/client.ts +++ b/src/client.ts @@ -213,7 +213,7 @@ export class WarpAPI { } protected stringifyQuery(query: Record): string { - return qs.stringify(query, { arrayFormat: 'comma' }); + return qs.stringify(query, { arrayFormat: 'repeat' }); } private getUserAgent(): string { diff --git a/src/version.ts b/src/version.ts index bade2ff..88f4d40 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.2.0'; // x-release-please-version +export const VERSION = '0.3.0'; // x-release-please-version