Skip to content

Commit e66e8a9

Browse files
authored
Merge pull request #181 from DataMini/release-please--branches--main--changes--next
release: 5.2.0
2 parents 611c8df + a8ad6d6 commit e66e8a9

File tree

10 files changed

+29
-12
lines changed

10 files changed

+29
-12
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "5.1.0"
2+
".": "5.2.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 96
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-02fbb644978089e8596def9999f5729633b652fba35bf04e374dbb71e7630355.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/datamini%2Fasktable-a5dd7235306810ee00a03bee4d754c8af4852a2513fa575bfa142d0287b12d35.yml

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 5.2.0 (2025-03-17)
4+
5+
Full Changelog: [v5.1.0...v5.2.0](https://github.com/DataMini/asktable-python/compare/v5.1.0...v5.2.0)
6+
7+
### Features
8+
9+
* **api:** api update ([#180](https://github.com/DataMini/asktable-python/issues/180)) ([e14c5cd](https://github.com/DataMini/asktable-python/commit/e14c5cd1fbea464aee0e71697c0fd966da6b1a9b))
10+
* **api:** api update ([#182](https://github.com/DataMini/asktable-python/issues/182)) ([dde8d1f](https://github.com/DataMini/asktable-python/commit/dde8d1f767e61d2a2ca6b57c8a1133285b62fe24))
11+
312
## 5.1.0 (2025-03-15)
413

514
Full Changelog: [v5.0.0...v5.1.0](https://github.com/DataMini/asktable-python/compare/v5.0.0...v5.1.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "asktable"
3-
version = "5.1.0"
3+
version = "5.2.0"
44
description = "The official Python library for the Asktable API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/asktable/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "asktable"
4-
__version__ = "5.1.0" # x-release-please-version
4+
__version__ = "5.2.0" # x-release-please-version

src/asktable/resources/datasources/datasources.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,15 @@ def create(
103103
"postgresql",
104104
"oceanbase",
105105
"clickhouse",
106-
"csv",
107106
"excel",
108107
"starrocks",
109108
"hive",
110109
"oracle",
111110
"polardbmysql",
112111
"polardbpg",
113112
"dameng",
113+
"adbmysql",
114+
"adbpostgres",
114115
],
115116
access_config: Optional[datasource_create_params.AccessConfig] | NotGiven = NOT_GIVEN,
116117
name: Optional[str] | NotGiven = NOT_GIVEN,
@@ -201,14 +202,15 @@ def update(
201202
"postgresql",
202203
"oceanbase",
203204
"clickhouse",
204-
"csv",
205205
"excel",
206206
"starrocks",
207207
"hive",
208208
"oracle",
209209
"polardbmysql",
210210
"polardbpg",
211211
"dameng",
212+
"adbmysql",
213+
"adbpostgres",
212214
]
213215
]
214216
| NotGiven = NOT_GIVEN,
@@ -571,14 +573,15 @@ async def create(
571573
"postgresql",
572574
"oceanbase",
573575
"clickhouse",
574-
"csv",
575576
"excel",
576577
"starrocks",
577578
"hive",
578579
"oracle",
579580
"polardbmysql",
580581
"polardbpg",
581582
"dameng",
583+
"adbmysql",
584+
"adbpostgres",
582585
],
583586
access_config: Optional[datasource_create_params.AccessConfig] | NotGiven = NOT_GIVEN,
584587
name: Optional[str] | NotGiven = NOT_GIVEN,
@@ -669,14 +672,15 @@ async def update(
669672
"postgresql",
670673
"oceanbase",
671674
"clickhouse",
672-
"csv",
673675
"excel",
674676
"starrocks",
675677
"hive",
676678
"oracle",
677679
"polardbmysql",
678680
"polardbpg",
679681
"dameng",
682+
"adbmysql",
683+
"adbpostgres",
680684
]
681685
]
682686
| NotGiven = NOT_GIVEN,

src/asktable/types/datasource.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,15 @@ class Datasource(BaseModel):
2222
"postgresql",
2323
"oceanbase",
2424
"clickhouse",
25-
"csv",
2625
"excel",
2726
"starrocks",
2827
"hive",
2928
"oracle",
3029
"polardbmysql",
3130
"polardbpg",
3231
"dameng",
32+
"adbmysql",
33+
"adbpostgres",
3334
]
3435
"""数据源引擎"""
3536

src/asktable/types/datasource_create_params.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@ class DatasourceCreateParams(TypedDict, total=False):
2121
"postgresql",
2222
"oceanbase",
2323
"clickhouse",
24-
"csv",
2524
"excel",
2625
"starrocks",
2726
"hive",
2827
"oracle",
2928
"polardbmysql",
3029
"polardbpg",
3130
"dameng",
31+
"adbmysql",
32+
"adbpostgres",
3233
]
3334
]
3435
"""数据源引擎"""

src/asktable/types/datasource_retrieve_response.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,15 @@ class DatasourceRetrieveResponse(BaseModel):
6767
"postgresql",
6868
"oceanbase",
6969
"clickhouse",
70-
"csv",
7170
"excel",
7271
"starrocks",
7372
"hive",
7473
"oracle",
7574
"polardbmysql",
7675
"polardbpg",
7776
"dameng",
77+
"adbmysql",
78+
"adbpostgres",
7879
]
7980
"""数据源引擎"""
8081

src/asktable/types/datasource_update_params.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ class DatasourceUpdateParams(TypedDict, total=False):
2727
"postgresql",
2828
"oceanbase",
2929
"clickhouse",
30-
"csv",
3130
"excel",
3231
"starrocks",
3332
"hive",
3433
"oracle",
3534
"polardbmysql",
3635
"polardbpg",
3736
"dameng",
37+
"adbmysql",
38+
"adbpostgres",
3839
]
3940
]
4041
"""数据源引擎"""

0 commit comments

Comments
 (0)