You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2021/10/13 03:44:38 UTC

[beam] tag nightly-master updated (c8e7a4c -> 1ce290b)

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

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


*** WARNING: tag nightly-master was modified! ***

    from c8e7a4c  (commit)
      to 1ce290b  (commit)
    from c8e7a4c  Release 2.33 documentation update (#15543)
     add ef43645  Merge pull request #15441 from [BEAM-8823] Make FnApiRunner work by executing ready elements instead of stages
     add 09b80c4  Merge pull request #15667 from [BEAM-12730] Add custom delimiters to Python TextIO reads
     add a75fe13  Merge pull request #15700 from [BEAM-12987] [Playground] Add page UI elements
     add 9a8595c  Update Dataflow Python container tag
     add bb4c17c  Merge pull request #15707 from ihji/update_python_container_tag
     add 767b329  Revert "[BEAM-10913] - Forcing update of YAML file by running kubectl apply (#15663)"
     add 4b11efd  Merge pull request #15705 from apache/revert-15663-BEAM-10913
     add c21f014  [BEAM-12997] Upgraded labextension to V3
     add 8de36fe  [BEAM-12997] Upgraded labextension to V3
     add 98859fd  [BEAM-7169] Fix singleton assertion in PAssert javadoc.
     add 1ce290b  [BEAM-7169] Fix singleton assertion in PAssert javadoc.

No new revisions were added by this update.

Summary of changes:
 .test-infra/metrics/build.gradle                   |    5 -
 CHANGES.md                                         |    1 +
 build.gradle.kts                                   |    3 +
 playground/frontend/analysis_options.yaml          |    1 +
 playground/frontend/assets/beam.png                |  Bin 0 -> 601 bytes
 playground/frontend/assets/github.svg              |    5 +
 playground/frontend/assets/output_bottom.svg       |    7 +
 playground/frontend/assets/output_left.svg         |    7 +
 playground/frontend/assets/output_right.svg        |    7 +
 playground/frontend/assets/reset.svg               |    5 +
 playground/frontend/assets/send_feedback.svg       |    5 +
 playground/frontend/assets/shortcuts.svg           |   11 +
 playground/frontend/assets/theme.svg               |    8 +
 .../toggle_theme_button/toggle_theme_button.dart   |    7 +-
 playground/frontend/lib/config/theme.dart          |   63 +-
 .../lib/constants/{sizes.dart => assets.dart}      |   22 +-
 .../font_weight.dart}                              |   14 +-
 playground/frontend/lib/constants/sizes.dart       |    9 +-
 .../components/header_icon_button.dart}            |   23 +-
 .../components/new_example_action.dart}            |   18 +-
 .../components/reset_action.dart}                  |   21 +-
 .../components/{output_area.dart => output.dart}   |   13 +-
 .../lib/modules/output/components/output_area.dart |   15 +-
 .../output_header.dart}                            |   25 +-
 .../output_header/output_placements.dart           |   53 +
 .../output_tabs.dart}                              |   15 +-
 .../output_placement.dart}                         |   24 +-
 .../output/models/output_placement_state.dart}     |   17 +-
 .../components/editor_textarea_wrapper.dart        |   30 +-
 .../pages/playground/components/more_actions.dart  |  123 +
 .../components/playground_page_body.dart           |   70 +
 .../components/playground_page_footer.dart         |   71 +
 .../components/playground_page_providers.dart      |    4 +
 .../lib/pages/playground/playground_page.dart      |   44 +-
 .../pages/playground/states/playground_state.dart  |    6 +
 playground/frontend/pubspec.lock                   |  100 +-
 playground/frontend/pubspec.yaml                   |    4 +
 .../playground/states/mocks/example_mock.dart}     |   27 +-
 .../{ => states}/playground_state_test.dart        |   25 +
 .../java/org/apache/beam/sdk/testing/PAssert.java  |    4 +-
 sdks/python/apache_beam/io/iobase.py               |   12 +-
 sdks/python/apache_beam/io/textio.py               |   39 +-
 sdks/python/apache_beam/io/textio_test.py          |   38 +-
 .../apache_beam/runners/dataflow/internal/names.py |    4 +-
 .../apache-beam-jupyterlab-sidepanel/.eslintrc.js  |   28 +-
 .../.prettierrc.json                               |    4 +-
 .../apache-beam-jupyterlab-sidepanel/package.json  |   48 +-
 .../src/SidePanel.ts                               |    4 +-
 .../src/__tests__/common/HtmlView.test.tsx         |    5 +-
 .../__tests__/inspector/InspectableView.test.tsx   |    5 +-
 .../inspector/InspectableViewModel.test.ts         |    6 +-
 .../src/__tests__/inspector/Inspectables.test.tsx  |   12 +-
 .../inspector/InteractiveInspector.test.tsx        |   14 +-
 .../kernel/InterruptKernelButton.test.tsx          |    2 +-
 .../src/__tests__/kernel/KernelModel.test.ts       |   14 +-
 .../src/kernel/KernelModel.ts                      |    4 +-
 .../apache-beam-jupyterlab-sidepanel/tsconfig.json |    3 +-
 .../apache-beam-jupyterlab-sidepanel/yarn.lock     | 5127 ++++++++++++++++----
 .../runners/portability/fn_api_runner/execution.py |  357 +-
 .../runners/portability/fn_api_runner/fn_runner.py |  442 +-
 .../portability/fn_api_runner/fn_runner_test.py    |    5 +
 .../portability/fn_api_runner/translations.py      |   37 +-
 .../portability/fn_api_runner/watermark_manager.py |   15 +-
 .../portability/fn_api_runner/worker_handlers.py   |    3 +
 sdks/python/apache_beam/transforms/util.py         |    3 +
 sdks/python/tox.ini                                |    4 +-
 66 files changed, 5800 insertions(+), 1347 deletions(-)
 create mode 100644 playground/frontend/assets/beam.png
 create mode 100644 playground/frontend/assets/github.svg
 create mode 100644 playground/frontend/assets/output_bottom.svg
 create mode 100644 playground/frontend/assets/output_left.svg
 create mode 100644 playground/frontend/assets/output_right.svg
 create mode 100644 playground/frontend/assets/reset.svg
 create mode 100644 playground/frontend/assets/send_feedback.svg
 create mode 100644 playground/frontend/assets/shortcuts.svg
 create mode 100644 playground/frontend/assets/theme.svg
 copy playground/frontend/lib/constants/{sizes.dart => assets.dart} (70%)
 copy playground/frontend/lib/{modules/output/components/output_area.dart => constants/font_weight.dart} (76%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/header_icon_button.dart} (65%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/new_example_action.dart} (62%)
 copy playground/frontend/lib/modules/{output/components/output_area.dart => actions/components/reset_action.dart} (60%)
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output.dart} (69%)
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output_header/output_header.dart} (58%)
 create mode 100644 playground/frontend/lib/modules/output/components/output_header/output_placements.dart
 copy playground/frontend/lib/modules/output/components/{output_area.dart => output_header/output_tabs.dart} (75%)
 copy playground/frontend/lib/modules/output/{components/output_area.dart => models/output_placement.dart} (66%)
 rename playground/frontend/{test/widget_test.dart => lib/modules/output/models/output_placement_state.dart} (68%)
 create mode 100644 playground/frontend/lib/pages/playground/components/more_actions.dart
 create mode 100644 playground/frontend/lib/pages/playground/components/playground_page_body.dart
 create mode 100644 playground/frontend/lib/pages/playground/components/playground_page_footer.dart
 copy playground/frontend/{lib/constants/sizes.dart => test/pages/playground/states/mocks/example_mock.dart} (66%)
 rename playground/frontend/test/pages/playground/{ => states}/playground_state_test.dart (66%)