This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from 5e528cf  Merge pull request #16621: added GitHub example references to 
Python multilang quickstart
     add e18e2b9  Merge pull request #16579 from Revert "Revert "Merge pull 
request #15863 from [BEAM-13184] Autoshard…
     add 178cb7b  Merge pull request #16606 from [BEAM-13247] [Playground] 
Embedding iframe
     add fd95270  Update Python SDK beam-master tags (#16630)
     add 04fac55  Merge pull request #16592 from [BEAM-13722][Playground] Add 
precompiling of the graph into examples CI/CD
     add a4fcd93  Merge pull request #16505 from [BEAM-13527] [Playground] 
Pipeline options dialog
     add bdee4d0  [BEAM-13751] Don't block on gcloud when attempting to get 
default GCP region.
     add 03a556a  [BEAM-13751] Parameterize wait timeout so test doesn't waste 
2s.
     add 07e903b  [BEAM-13751] Add comment explaining sleep.
     add 51d7e63  Merge pull request #16639 from ibzib/BEAM-13751
     add c06a927  [BEAM-13293] XLang Jdbc IO for Go SDK (#16111)

No new revisions were added by this update.

Summary of changes:
 playground/backend/internal/api/v1/api.pb.go       | 587 +++++++++++++--------
 playground/backend/internal/api/v1/api_grpc.pb.go  |  38 ++
 playground/frontend/lib/api/v1/api.pb.dart         |  96 ++++
 playground/frontend/lib/api/v1/api.pbgrpc.dart     |  33 ++
 playground/frontend/lib/api/v1/api.pbjson.dart     |  20 +
 playground/frontend/lib/config/theme.dart          |  16 +
 playground/frontend/lib/constants/params.dart      |   2 +
 playground/frontend/lib/constants/sizes.dart       |   3 +-
 playground/frontend/lib/l10n/app_en.arb            |  36 ++
 .../modules/editor/components/editor_textarea.dart |  33 +-
 .../pipeline_option_label.dart}                    |  14 +-
 .../pipeline_option_model.dart}                    |  13 +-
 .../pipeline_options_dropdown.dart}                |  52 +-
 .../pipeline_options_dropdown_body.dart            | 229 ++++++++
 .../pipeline_options_dropdown_input.dart}          |  38 +-
 .../pipeline_options_dropdown_separator.dart}      |  20 +-
 .../pipeline_options_form.dart                     |  86 +++
 .../pipeline_options_text_field.dart               |  66 +++
 .../components/pipeline_options_text_field.dart    |  81 ---
 .../lib/modules/editor/components/run_button.dart  |   2 +-
 .../lib/modules/output/components/output.dart      |   9 +-
 .../components/output_header/output_header.dart    |   4 +-
 .../components/embedded_actions.dart               |  34 +-
 .../components/embedded_appbar_title.dart          |  85 +++
 .../components/embedded_editor.dart                |   7 +-
 .../components/embedded_split_view.dart            |  90 ++++
 .../embedded_page_providers.dart}                  |  98 ++--
 .../embedded_playground_page.dart                  |  39 +-
 .../components/editor_textarea_wrapper.dart        |   8 +-
 .../components/playground_page_body.dart           |   4 +-
 .../lib/pages/playground/playground_page.dart      |   7 +-
 .../pages/playground/states/playground_state.dart  |   1 +
 playground/frontend/lib/pages/routes.dart          |   4 +-
 playground/frontend/pubspec.lock                   |   2 +-
 playground/frontend/pubspec.yaml                   |   1 +
 playground/infrastructure/api/v1/api_pb2.py        | 188 +++++--
 playground/infrastructure/api/v1/api_pb2_grpc.py   |  34 ++
 playground/infrastructure/cd_helper.py             |  16 +-
 playground/infrastructure/config.py                |   1 +
 playground/infrastructure/grpc_client.py           |  19 +
 playground/infrastructure/helper.py                |   1 +
 .../dataflow/options/DefaultGcpRegionFactory.java  |  21 +-
 .../options/DataflowPipelineOptionsTest.java       |  92 +++-
 sdks/go.mod                                        |   8 +-
 sdks/go.sum                                        | 540 ++++++++++++++++++-
 sdks/go/pkg/beam/core/graph/coder/row_decoder.go   |   2 +-
 sdks/go/pkg/beam/io/xlang/jdbcio/jdbc.go           | 235 +++++++++
 sdks/go/test/integration/integration.go            |   3 +
 sdks/go/test/integration/io/xlang/jdbc/jdbc.go     |  68 +++
 .../go/test/integration/io/xlang/jdbc/jdbc_test.go | 113 ++++
 sdks/java/container/boot.go                        |   4 +-
 sdks/java/container/build.gradle                   |   4 +-
 .../java/org/apache/beam/sdk/io/jdbc/JdbcIO.java   | 112 +++-
 .../java/org/apache/beam/sdk/io/jdbc/JdbcIOIT.java |  39 ++
 .../org/apache/beam/sdk/io/jdbc/JdbcIOTest.java    |  30 ++
 .../apache_beam/runners/dataflow/internal/names.py |   4 +-
 .../content/en/get-started/try-beam-playground.md  |   2 +-
 .../www/site/layouts/shortcodes/playground.html    |   4 +-
 58 files changed, 2811 insertions(+), 587 deletions(-)
 copy 
playground/frontend/lib/{pages/playground/components/close_listener_nonweb.dart 
=> 
modules/editor/components/pipeline_options_dropdown/pipeline_option_label.dart} 
(70%)
 copy playground/frontend/lib/{constants/font_weight.dart => 
modules/editor/components/pipeline_options_dropdown/pipeline_option_model.dart} 
(74%)
 copy 
playground/frontend/lib/modules/{examples/components/filter/type_filter.dart => 
editor/components/pipeline_options_dropdown/pipeline_options_dropdown.dart} 
(52%)
 create mode 100644 
playground/frontend/lib/modules/editor/components/pipeline_options_dropdown/pipeline_options_dropdown_body.dart
 copy 
playground/frontend/lib/modules/{output/components/output_header/output_header.dart
 => 
editor/components/pipeline_options_dropdown/pipeline_options_dropdown_input.dart}
 (54%)
 copy 
playground/frontend/lib/{components/loading_indicator/loading_indicator.dart => 
modules/editor/components/pipeline_options_dropdown/pipeline_options_dropdown_separator.dart}
 (71%)
 create mode 100644 
playground/frontend/lib/modules/editor/components/pipeline_options_dropdown/pipeline_options_form.dart
 create mode 100644 
playground/frontend/lib/modules/editor/components/pipeline_options_dropdown/pipeline_options_text_field.dart
 delete mode 100644 
playground/frontend/lib/modules/editor/components/pipeline_options_text_field.dart
 create mode 100644 
playground/frontend/lib/pages/embedded_playground/components/embedded_appbar_title.dart
 create mode 100644 
playground/frontend/lib/pages/embedded_playground/components/embedded_split_view.dart
 copy 
playground/frontend/lib/pages/{playground/components/playground_page_providers.dart
 => embedded_playground/embedded_page_providers.dart} (52%)
 create mode 100644 sdks/go/pkg/beam/io/xlang/jdbcio/jdbc.go
 create mode 100644 sdks/go/test/integration/io/xlang/jdbc/jdbc.go
 create mode 100644 sdks/go/test/integration/io/xlang/jdbc/jdbc_test.go

Reply via email to