File tree 6 files changed +23
-7
lines changed
6 files changed +23
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 1.23.0 "
2
+ "." : " 1.23.1 "
3
3
}
Original file line number Diff line number Diff line change 1
1
configured_endpoints : 46
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-46640c1b468813b828be61b1af5cb5450f9555c4c757c5a740189906a8d56672 .yml
3
- openapi_spec_hash : 1d5845ae61d2c0a143db43d579b048c5
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-994dba9c79ac2c892333168717abd8ffe2cb4d84d67d7e69c6cf9e566500d4dd .yml
3
+ openapi_spec_hash : 9720f3c873048c15f1f3c8f95f15ecd3
4
4
config_hash : 53778a0b839c4f6ad34fbba051f5e8a6
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.23.1 (2025-04-22)
4
+
5
+ Full Changelog: [ v1.23.0...v1.23.1] ( https://github.com/Finch-API/finch-api-python/compare/v1.23.0...v1.23.1 )
6
+
7
+ ### Bug Fixes
8
+
9
+ * ** client:** revert "send all configured auth headers" ([ 8a2045e] ( https://github.com/Finch-API/finch-api-python/commit/8a2045ebf381fe2081ced51d743dfd5687171133 ) )
10
+
3
11
## 1.23.0 (2025-04-21)
4
12
5
13
Full Changelog: [ v1.22.0...v1.23.0] ( https://github.com/Finch-API/finch-api-python/compare/v1.22.0...v1.23.0 )
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " finch-api"
3
- version = " 1.23.0 "
3
+ version = " 1.23.1 "
4
4
description = " The official Python library for the Finch API"
5
5
dynamic = [" readme" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change @@ -147,7 +147,11 @@ def qs(self) -> Querystring:
147
147
@property
148
148
@override
149
149
def auth_headers (self ) -> dict [str , str ]:
150
- return {** self ._bearer_auth , ** self ._basic_auth }
150
+ if self ._bearer_auth :
151
+ return self ._bearer_auth
152
+ if self ._basic_auth :
153
+ return self ._basic_auth
154
+ return {}
151
155
152
156
@property
153
157
def _bearer_auth (self ) -> dict [str , str ]:
@@ -451,7 +455,11 @@ def qs(self) -> Querystring:
451
455
@property
452
456
@override
453
457
def auth_headers (self ) -> dict [str , str ]:
454
- return {** self ._bearer_auth , ** self ._basic_auth }
458
+ if self ._bearer_auth :
459
+ return self ._bearer_auth
460
+ if self ._basic_auth :
461
+ return self ._basic_auth
462
+ return {}
455
463
456
464
@property
457
465
def _bearer_auth (self ) -> dict [str , str ]:
Original file line number Diff line number Diff line change 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
3
__title__ = "finch"
4
- __version__ = "1.23.0 " # x-release-please-version
4
+ __version__ = "1.23.1 " # x-release-please-version
You can’t perform that action at this time.
0 commit comments