Skip to content

Commit bb0992d

Browse files
committed
Merge remote-tracking branch 'origin/main' into sycai_ai_classify_update
2 parents 34fde7c + dd0b295 commit bb0992d

11 files changed

Lines changed: 38 additions & 11 deletions

File tree

.librarian/state.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ libraries:
387387
- packages/google-area120-tables/docs/
388388
tag_format: '{id}-v{version}'
389389
- id: google-auth
390-
version: 2.51.0
390+
version: 2.52.0
391391
last_generated_commit: ""
392392
apis: []
393393
source_roots:
@@ -1361,7 +1361,7 @@ libraries:
13611361
- packages/google-cloud-bigquery-storage/docs/
13621362
tag_format: '{id}-v{version}'
13631363
- id: google-cloud-bigtable
1364-
version: 2.37.0
1364+
version: 2.38.0
13651365
last_generated_commit: a6cbf809c4c165e618ee23a059442af90a80a0f5
13661366
apis:
13671367
- path: google/bigtable/admin/v2

librarian.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ libraries:
224224
metadata_name_override: area120tables
225225
default_version: v1alpha1
226226
- name: google-auth
227-
version: 2.51.0
227+
version: 2.52.0
228228
python:
229229
library_type: AUTH
230230
- name: google-auth-httplib2
@@ -608,7 +608,7 @@ libraries:
608608
metadata_name_override: bigquerystorage
609609
default_version: v1
610610
- name: google-cloud-bigtable
611-
version: 2.37.0
611+
version: 2.38.0
612612
apis:
613613
- path: google/bigtable/v2
614614
- path: google/bigtable/admin/v2
@@ -854,6 +854,7 @@ libraries:
854854
default_version: v1
855855
- name: google-cloud-datacatalog-lineage
856856
version: 0.6.0
857+
skip_generate: true
857858
apis:
858859
- path: google/cloud/datacatalog/lineage/v1
859860
python:
@@ -2196,7 +2197,7 @@ libraries:
21962197
default_version: v1
21972198
- name: google-crc32c
21982199
version: 1.8.0
2199-
skip_release: false
2200+
skip_release: true
22002201
python:
22012202
library_type: OTHER
22022203
- name: google-geo-type

packages/bigframes/tests/system/conftest.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
from datetime import datetime
2323
from typing import Dict, Generator, Optional
2424

25+
import fsspec # type: ignore[import-untyped]
26+
import gcsfs # type: ignore[import-untyped]
2527
import google.api_core.exceptions
2628
import google.cloud.bigquery as bigquery
2729
import google.cloud.bigquery_connection_v1 as bigquery_connection_v1
@@ -70,6 +72,15 @@ def _hash_digest_file(hasher, filepath):
7072
hasher.update(chunk)
7173

7274

75+
@pytest.fixture(scope="session", autouse=True)
76+
def configure_gcsfs():
77+
# gcsfs by default uses a cache that can be stale, causing file loads to
78+
# fail if the file was uploaded indirectly (eg via bq export job) during the
79+
# course of the tests. disable the cache to avoid this.
80+
fsspec.config.conf["gcs"] = {"use_listings_cache": False}
81+
gcsfs.GCSFileSystem.clear_instance_cache()
82+
83+
7384
@pytest.fixture(scope="session")
7485
def tokyo_location() -> str:
7586
return TOKYO_LOCATION

packages/google-auth/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
[1]: https://pypi.org/project/google-auth/#history
66

7+
## [2.52.0](https://github.com/googleapis/google-cloud-python/compare/google-auth-v2.51.0...google-auth-v2.52.0) (2026-05-07)
8+
9+
10+
### Features
11+
12+
* make _CLOUD_RESOURCE_MANAGER URL universe-domain-aware (#16546) ([e938028bf17026cf0157fc7e8ce600fd96ca0955](https://github.com/googleapis/google-cloud-python/commit/e938028bf17026cf0157fc7e8ce600fd96ca0955))
13+
* implement in-place Regional Access Boundary configuration and add public RAB getters (#16987) ([df07fceb9e61f76e70a0954c3d59a52fbb31688d](https://github.com/googleapis/google-cloud-python/commit/df07fceb9e61f76e70a0954c3d59a52fbb31688d))
14+
715
## [2.51.0](https://github.com/googleapis/google-cloud-python/compare/google-auth-v2.50.0...google-auth-v2.51.0) (2026-05-06)
816

917

packages/google-auth/google/auth/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "2.51.0"
15+
__version__ = "2.52.0"

packages/google-cloud-bigtable/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
[1]: https://pypi.org/project/google-cloud-bigtable/#history
66

7+
## [2.38.0](https://github.com/googleapis/google-cloud-python/compare/google-cloud-bigtable-v2.37.0...google-cloud-bigtable-v2.38.0) (2026-05-07)
8+
9+
10+
### Features
11+
12+
* Add ValueBitmask to the filter DSL (#16981) ([3f429f23386a63e5e6773216b8d00dbed4940c0c](https://github.com/googleapis/google-cloud-python/commit/3f429f23386a63e5e6773216b8d00dbed4940c0c))
13+
714
## [2.36.0](https://github.com/googleapis/google-cloud-python/compare/google-cloud-bigtable-v2.35.0...google-cloud-bigtable-v2.36.0) (2026-04-02)
815

916

packages/google-cloud-bigtable/google/cloud/bigtable/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.37.0" # {x-release-please-version}
16+
__version__ = "2.38.0" # {x-release-please-version}

packages/google-cloud-bigtable/google/cloud/bigtable_admin/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.37.0" # {x-release-please-version}
16+
__version__ = "2.38.0" # {x-release-please-version}

packages/google-cloud-bigtable/google/cloud/bigtable_admin_v2/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.37.0" # {x-release-please-version}
16+
__version__ = "2.38.0" # {x-release-please-version}

packages/google-cloud-bigtable/google/cloud/bigtable_v2/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "2.37.0" # {x-release-please-version}
16+
__version__ = "2.38.0" # {x-release-please-version}

0 commit comments

Comments
 (0)