Skip to content

Commit

Permalink
Bump to v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
walsha2 committed Oct 10, 2023
1 parent c5162e5 commit fbc7f76
Show file tree
Hide file tree
Showing 5 changed files with 511 additions and 486 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.5.5

* Client generation using latest `openapi_spec` package (v0.5.13)
* Fix static analysis warning in generated files

## 0.5.4

* Client generation using latest `openapi_spec` package (v0.5.9)
Expand Down
2 changes: 1 addition & 1 deletion lib/src/generated/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class PineconeClient {

// Ensure query parameters are strings or iterable of strings
queryParams = queryParams.map((key, value) {
if (value is List) {
if (value is Iterable) {
return MapEntry(key, value.map((v) => v.toString()));
} else {
return MapEntry(key, value.toString());
Expand Down
Loading

0 comments on commit fbc7f76

Please sign in to comment.