This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/sdks/cloud.google.com/go/bigtable-1.18.1
in repository https://gitbox.apache.org/repos/asf/beam.git
discard 24dc2273464 Bump cloud.google.com/go/bigtable from 1.18.0 to 1.18.1 in
/sdks
add 53bcb39378e [Website] add coauthor option to case-studies #24486
(#24475)
add 99674903149 Add panel pointing to docs for ml benchmarks (#24503)
add 2dbf94f75d8 Adding Beam Schemas capability to parse json-schemas. This
is the de-… (#24271)
add 5cfb70e8af8 Bump tensorflow from 2.9.1 to 2.9.3 in
/sdks/python/apache_beam/examples/ml-orchestration/tfx (#24300)
add 14fe7dd5b81 Fix broken typescript tests
add 0f39190c437 Merge pull request #24490 Fix broken typescript tests
add 62964b48957 [SQL extension] Minor fixes to logging applying best
practices (#24328)
add ec91ea4f6b8 Apply task configuration avoidance (#24509)
add 32673a9d553 Bump cloud.google.com/go/profiler from 0.3.0 to 0.3.1 in
/sdks (#24498)
add 452c7e2c8ca Bump cloud.google.com/go/bigtable from 1.18.0 to 1.18.1 in
/sdks
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (24dc2273464)
\
N -- N -- N
refs/heads/dependabot/go_modules/sdks/cloud.google.com/go/bigtable-1.18.1
(452c7e2c8ca)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.github/workflows/typescript_tests.yml | 2 +-
.../Python_ML_RunInference_Benchmark_Tests.json | 33 +--
.../org/apache/beam/gradle/BeamModulePlugin.groovy | 3 +
playground/terraform/build.gradle.kts | 22 +-
sdks/go.mod | 4 +-
sdks/go.sum | 252 +--------------------
sdks/java/core/build.gradle | 9 +
.../apache/beam/sdk/schemas/utils/JsonUtils.java | 143 +++++++++++-
.../beam/sdk/schemas/JsonSchemaConversionTest.java | 201 ++++++++++++++++
.../array_nested_array_json_schema.json | 18 ++
.../resources/json-schema/basic_json_schema.json | 16 ++
.../nested_arrays_objects_json_schema.json | 32 +++
...object_nested_object_and_array_json_schema.json | 40 ++++
.../json-schema/ref_with_ref_json_schema.json | 43 ++++
.../unsupported_nested_tuple_array.json | 38 ++++
.../json-schema/unsupported_tuple_arrays.json | 13 ++
.../datacatalog/DataCatalogTableProvider.java | 2 +-
.../extensions/sql/impl/CalciteQueryPlanner.java | 9 +-
.../extensions/sql/impl/rel/BeamSqlRelUtils.java | 11 +
.../sql/meta/provider/bigquery/BigQueryTable.java | 6 +-
.../sql/meta/provider/mongodb/MongoDbTable.java | 2 +-
.../sql/meta/provider/parquet/ParquetTable.java | 2 +-
.../sql/zetasql/ZetaSQLQueryPlanner.java | 4 +-
.../beam/sdk/tpcds/TableSchemaJSONLoaderTest.java | 17 +-
.../examples/ml-orchestration/tfx/requirements.txt | 2 +-
website/ADD_CASE_STUDY.md | 27 ++-
website/www/site/assets/scss/_case_study.scss | 11 +-
website/www/site/layouts/case-studies/list.html | 37 ++-
28 files changed, 675 insertions(+), 324 deletions(-)
create mode 100644
sdks/java/core/src/test/java/org/apache/beam/sdk/schemas/JsonSchemaConversionTest.java
create mode 100644
sdks/java/core/src/test/resources/json-schema/array_nested_array_json_schema.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/basic_json_schema.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/nested_arrays_objects_json_schema.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/object_nested_object_and_array_json_schema.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/ref_with_ref_json_schema.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/unsupported_nested_tuple_array.json
create mode 100644
sdks/java/core/src/test/resources/json-schema/unsupported_tuple_arrays.json