You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,33 @@
1
1
# Changelog
2
2
3
+
## 4.0.0 (2025-01-09)
4
+
5
+
Full Changelog: [v3.14.0...v4.0.0](https://github.com/DataMini/asktable-python/compare/v3.14.0...v4.0.0)
6
+
7
+
### ⚠ BREAKING CHANGES
8
+
9
+
***api:** better support union schemas with common properties ([#116](https://github.com/DataMini/asktable-python/issues/116))
10
+
11
+
### Features
12
+
13
+
***api:** api update ([#117](https://github.com/DataMini/asktable-python/issues/117)) ([08bb9e3](https://github.com/DataMini/asktable-python/commit/08bb9e3eab139c7bdb5b19d0a068080e21dade45))
***api:** better support union schemas with common properties ([#116](https://github.com/DataMini/asktable-python/issues/116)) ([dced8d4](https://github.com/DataMini/asktable-python/commit/dced8d4627b4ab2264b1d6786d25ea27abc41f66))
20
+
21
+
22
+
### Chores
23
+
24
+
***internal:** codegen related update ([#115](https://github.com/DataMini/asktable-python/issues/115)) ([fbf67b0](https://github.com/DataMini/asktable-python/commit/fbf67b023055838adee929909c610df65027848b))
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,7 +164,7 @@ except asktable.APIStatusError as e:
164
164
print(e.response)
165
165
```
166
166
167
-
Error codes are as followed:
167
+
Error codes are as follows:
168
168
169
169
| Status Code | Error Type |
170
170
| ----------- | -------------------------- |
@@ -303,8 +303,7 @@ If you need to access undocumented endpoints, params, or response properties, th
303
303
#### Undocumented endpoints
304
304
305
305
To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
306
-
http verbs. Options on the client will be respected (such as retries) will be respected when making this
307
-
request.
306
+
http verbs. Options on the client will be respected (such as retries) when making this request.
308
307
309
308
```py
310
309
import httpx
@@ -376,7 +375,7 @@ with Asktable() as client:
376
375
This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
377
376
378
377
1. Changes that only affect static types, without breaking runtime behavior.
379
-
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_.
378
+
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
380
379
3. Changes that we do not expect to impact the vast majority of users in practice.
381
380
382
381
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
0 commit comments