[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 11a66040036 Updating config from bot
11a66040036 is described below

commit 11a6604003628380a0d94b3877e909bb52c2c223
Author: github-actions 
AuthorDate: Thu May 4 09:27:44 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26541.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26541.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26541.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26541.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch master updated: Run Playground code on Ctrl+Enter on numpad (#26516) (#26517)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new cd9e00577e4 Run Playground code on Ctrl+Enter on numpad (#26516) 
(#26517)
cd9e00577e4 is described below

commit cd9e00577e45cf2d0bb7b98e5a28d30b0019bd2c
Author: alexeyinkin 
AuthorDate: Thu May 4 17:15:14 2023 +0400

Run Playground code on Ctrl+Enter on numpad (#26516) (#26517)

* Run Playground code on Ctrl+Enter on numpad (#26516)

* Upgrade flutter_code_editor (#26516)
---
 .../frontend/lib/shortcuts/shortcuts_manager.dart  | 39 +++---
 learning/tour-of-beam/frontend/pubspec.lock|  4 +--
 .../standalone_run_shortcuts_test.dart | 35 +--
 .../shortcuts/components/shortcuts_manager.dart| 33 +-
 .../lib/src/models/run_shortcut.dart   | 17 --
 .../lib/src/widgets/run_button.dart|  2 +-
 .../frontend/playground_components/pubspec.yaml|  2 +-
 .../playground_components_dev/pubspec.yaml |  2 +-
 playground/frontend/pubspec.lock   |  4 +--
 playground/frontend/pubspec.yaml   |  2 +-
 10 files changed, 78 insertions(+), 62 deletions(-)

diff --git 
a/learning/tour-of-beam/frontend/lib/shortcuts/shortcuts_manager.dart 
b/learning/tour-of-beam/frontend/lib/shortcuts/shortcuts_manager.dart
index 0e992e7d4c4..229c9a18abc 100644
--- a/learning/tour-of-beam/frontend/lib/shortcuts/shortcuts_manager.dart
+++ b/learning/tour-of-beam/frontend/lib/shortcuts/shortcuts_manager.dart
@@ -35,27 +35,28 @@ class TobShortcutsManager extends StatelessWidget {
 return ShortcutsManager(
   shortcuts: [
 ...tourNotifier.playgroundController.shortcuts,
-BeamRunShortcut(
-  onInvoke: () {
-final codeRunner = tourNotifier.playgroundController.codeRunner;
-
-if (codeRunner.canRun) {
-  codeRunner.runCode(
-analyticsData: tourNotifier.tobEventContext.toJson(),
-  );
-
-  PlaygroundComponents.analyticsService.sendUnawaited(
-RunStartedAnalyticsEvent(
-  snippetContext: codeRunner.eventSnippetContext!,
-  trigger: EventTrigger.shortcut,
-  additionalParams: codeRunner.analyticsData,
-),
-  );
-}
-  },
-),
+BeamMainRunShortcut(onInvoke: _onRun),
+BeamNumpadRunShortcut(onInvoke: _onRun),
   ],
   child: child,
 );
   }
+
+  void _onRun() {
+final codeRunner = tourNotifier.playgroundController.codeRunner;
+
+if (codeRunner.canRun) {
+  codeRunner.runCode(
+analyticsData: tourNotifier.tobEventContext.toJson(),
+  );
+
+  PlaygroundComponents.analyticsService.sendUnawaited(
+RunStartedAnalyticsEvent(
+  snippetContext: codeRunner.eventSnippetContext!,
+  trigger: EventTrigger.shortcut,
+  additionalParams: codeRunner.analyticsData,
+),
+  );
+}
+  }
 }
diff --git a/learning/tour-of-beam/frontend/pubspec.lock 
b/learning/tour-of-beam/frontend/pubspec.lock
index 7f071d272f0..bf9dc3abfd2 100644
--- a/learning/tour-of-beam/frontend/pubspec.lock
+++ b/learning/tour-of-beam/frontend/pubspec.lock
@@ -450,10 +450,10 @@ packages:
 dependency: transitive
 description:
   name: flutter_code_editor
-  sha256: 
"88b5d735e838658281dcd2b4b83437d8cdec9152fd174be147233e2f93fb01a9"
+  sha256: 
"53268d72dbe8daaf2a02f13863efd129cc37f599c1dcf85da33a4b34796ca8bd"
   url: "https://pub.dev";
 source: hosted
-version: "0.2.20"
+version: "0.2.21"
   flutter_driver:
 dependency: transitive
 description: flutter
diff --git 
a/playground/frontend/integration_test/standalone_run_shortcuts_test.dart 
b/playground/frontend/integration_test/standalone_run_shortcuts_test.dart
index 3264a963d6f..583015e65bf 100644
--- a/playground/frontend/integration_test/standalone_run_shortcuts_test.dart
+++ b/playground/frontend/integration_test/standalone_run_shortcuts_test.dart
@@ -35,8 +35,7 @@ void main() {
   final controller = wt.findPlaygroundController();
 
   await _checkResetShortcut(wt, controller);
-  await _checkRunShortcut(wt, controller);
-  await _checkClearOutputShortcut(wt, controller);
+  await _checkRunAndClearShortcuts(wt, controller);
 },
   );
 }
@@ -56,26 +55,28 @@ Future _checkResetShortcut(
   expect(startSource, controller.source);
 }
 
-Future _checkRunShortcut(
+Future _checkRunAndClearShortcuts(
   WidgetTester wt,
   PlaygroundController controller,
 ) async {
-  final output = controller.codeRunner.resultLogOutput;
-  await wt.runShortcut(BeamRunShortcut(onInvoke: () {}));
-  await wt.pumpAndSettle();
+  final oldOutput = controller.codeRunner.resultLogO

[beam] branch master updated: [Tour of Beam] [Frontend] Module complexity on the welcome screen (#26541)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new 5975617d090 [Tour of Beam] [Frontend] Module complexity on the welcome 
screen (#26541)
5975617d090 is described below

commit 5975617d09067d66fd520dca5009a9dcae0d9879
Author: Darkhan Nausharipov <31556582+naushari...@users.noreply.github.com>
AuthorDate: Thu May 4 19:16:15 2023 +0600

[Tour of Beam] [Frontend] Module complexity on the welcome screen (#26541)

* complexity in the welcome screen

(https://github.com/akvelon/beam/commit/7d0ce2c4f0b3f2c3638ba0edc8d6196b0063fe19)

* a comment to relaunch CI

* deleted a comment to relaunch CI

* _HomepageLinkLogo

* popUntilBottom

-

Co-authored-by: darkhan.nausharipov 
---
 .../frontend/lib/components/scaffold.dart   | 21 -
 .../frontend/lib/pages/welcome/screen.dart  | 12 ++--
 2 files changed, 26 insertions(+), 7 deletions(-)

diff --git a/learning/tour-of-beam/frontend/lib/components/scaffold.dart 
b/learning/tour-of-beam/frontend/lib/components/scaffold.dart
index bb67351fbff..4b280418c57 100644
--- a/learning/tour-of-beam/frontend/lib/components/scaffold.dart
+++ b/learning/tour-of-beam/frontend/lib/components/scaffold.dart
@@ -16,12 +16,14 @@
  * limitations under the License.
  */
 
+import 'package:app_state/app_state.dart';
 import 'package:firebase_auth/firebase_auth.dart';
 import 'package:flutter/material.dart';
 import 'package:get_it/get_it.dart';
 import 'package:playground_components/playground_components.dart';
 
 import '../pages/tour/widgets/pipeline_options.dart';
+import '../pages/welcome/page.dart';
 import '../state.dart';
 import 'footer.dart';
 import 'login/button.dart';
@@ -43,7 +45,7 @@ class TobScaffold extends StatelessWidget {
 return Scaffold(
   appBar: AppBar(
 automaticallyImplyLeading: false,
-title: const Logo(),
+title: const _HomepageLinkLogo(),
 actions: [
   if (playgroundController != null)
 _PlaygroundControllerActions(
@@ -70,6 +72,23 @@ class TobScaffold extends StatelessWidget {
   }
 }
 
+class _HomepageLinkLogo extends StatelessWidget {
+  const _HomepageLinkLogo();
+
+  @override
+  Widget build(BuildContext context) {
+return MouseRegion(
+  cursor: SystemMouseCursors.click,
+  child: GestureDetector(
+onTap: () {
+  GetIt.instance.get().popUntilBottom();
+},
+child: const Logo(),
+  ),
+);
+  }
+}
+
 class _Profile extends StatelessWidget {
   const _Profile();
 
diff --git a/learning/tour-of-beam/frontend/lib/pages/welcome/screen.dart 
b/learning/tour-of-beam/frontend/lib/pages/welcome/screen.dart
index 2d44a579570..32351a6b43a 100644
--- a/learning/tour-of-beam/frontend/lib/pages/welcome/screen.dart
+++ b/learning/tour-of-beam/frontend/lib/pages/welcome/screen.dart
@@ -367,7 +367,7 @@ class _Module extends StatelessWidget {
   Widget build(BuildContext context) {
 return Column(
   children: [
-_ModuleHeader(title: module.title),
+_ModuleHeader(module: module),
 if (isLast) const _LastModuleBody() else const _ModuleBody(),
   ],
 );
@@ -375,9 +375,9 @@ class _Module extends StatelessWidget {
 }
 
 class _ModuleHeader extends StatelessWidget {
-  final String title;
+  final ModuleModel module;
 
-  const _ModuleHeader({required this.title});
+  const _ModuleHeader({required this.module});
 
   @override
   Widget build(BuildContext context) {
@@ -400,7 +400,7 @@ class _ModuleHeader extends StatelessWidget {
   const SizedBox(width: BeamSizes.size16),
   Expanded(
 child: Text(
-  title,
+  module.title,
   style: Theme.of(context).textTheme.titleLarge,
 ),
   ),
@@ -410,11 +410,11 @@ class _ModuleHeader extends StatelessWidget {
 Row(
   children: [
 Text(
-  'complexity.medium',
+  'complexity.${module.complexity.name}',
   style: Theme.of(context).textTheme.headlineSmall,
 ).tr(),
 const SizedBox(width: BeamSizes.size6),
-const ComplexityWidget(complexity: Complexity.medium),
+ComplexityWidget(complexity: module.complexity),
   ],
 ),
   ],



[beam] branch master updated (5975617d090 -> a638c04e8e8)

2023-05-04 Thread anandinguva
This is an automated email from the ASF dual-hosted git repository.

anandinguva pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


from 5975617d090 [Tour of Beam] [Frontend] Module complexity on the welcome 
screen (#26541)
 add d0e709c8698 Update httplib2 requirement in /sdks/python
 new a638c04e8e8 Update httplib2 requirement from <0.22.0,>=0.8 to 
>=0.8,<0.23.0 in /sdks/python

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[beam] 01/01: Update httplib2 requirement from <0.22.0,>=0.8 to >=0.8,<0.23.0 in /sdks/python

2023-05-04 Thread anandinguva
This is an automated email from the ASF dual-hosted git repository.

anandinguva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git

commit a638c04e8e88d88370f77476d00921342b555feb
Merge: 5975617d090 d0e709c8698
Author: Anand Inguva <34158215+ananding...@users.noreply.github.com>
AuthorDate: Thu May 4 09:18:25 2023 -0400

Update httplib2 requirement from <0.22.0,>=0.8 to >=0.8,<0.23.0 in 
/sdks/python

Update httplib2 requirement from <0.22.0,>=0.8 to >=0.8,<0.23.0 in 
/sdks/python

 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




[beam] branch master updated: Update job_PostCommit_Python_ValidatesRunner_Dataflow.groovy (#26534)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new d910a9df887 Update 
job_PostCommit_Python_ValidatesRunner_Dataflow.groovy (#26534)
d910a9df887 is described below

commit d910a9df88770122a48480001a19009c4d0951a2
Author: Anand Inguva <34158215+ananding...@users.noreply.github.com>
AuthorDate: Thu May 4 09:30:57 2023 -0400

Update job_PostCommit_Python_ValidatesRunner_Dataflow.groovy (#26534)
---
 .../jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy 
b/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
index 574d5493af7..d93a2fb0984 100644
--- a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
+++ b/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
@@ -37,7 +37,7 @@ 
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Py_VR_Dataflow', 'Run Python
 gradle {
   rootBuildScriptDir(commonJobProperties.checkoutDir)
   tasks(':sdks:python:test-suites:dataflow:validatesRunnerBatchTests')
-  switches('-PdisableRunnerV2')
+  switches('-Pdisable_runner_v2_until_v2.50')
   commonJobProperties.setGradleSwitches(delegate)
 }
   }



[beam] branch users/damccorm/v2 created (now ca8f7f8e09c)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a change to branch users/damccorm/v2
in repository https://gitbox.apache.org/repos/asf/beam.git


  at ca8f7f8e09c Enable runner v2 on ValidatesRunner suite

This branch includes the following new commits:

 new ca8f7f8e09c Enable runner v2 on ValidatesRunner suite

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[beam] 01/01: Enable runner v2 on ValidatesRunner suite

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch users/damccorm/v2
in repository https://gitbox.apache.org/repos/asf/beam.git

commit ca8f7f8e09c791b07714983c37e9eeaeef440271
Author: Danny McCormick 
AuthorDate: Thu May 4 09:31:52 2023 -0400

Enable runner v2 on ValidatesRunner suite
---
 .../jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy| 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy 
b/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
index d93a2fb0984..105bc191144 100644
--- a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
+++ b/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
@@ -37,7 +37,6 @@ 
PostcommitJobBuilder.postCommitJob('beam_PostCommit_Py_VR_Dataflow', 'Run Python
 gradle {
   rootBuildScriptDir(commonJobProperties.checkoutDir)
   tasks(':sdks:python:test-suites:dataflow:validatesRunnerBatchTests')
-  switches('-Pdisable_runner_v2_until_v2.50')
   commonJobProperties.setGradleSwitches(delegate)
 }
   }



[beam] branch master updated: Update cachetools requirement in /sdks/python (#26339)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new 42a763a3cca Update cachetools requirement in /sdks/python (#26339)
42a763a3cca is described below

commit 42a763a3ccafbb401f8d0dbb1674fd0dcc301072
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu May 4 09:37:10 2023 -0400

Update cachetools requirement in /sdks/python (#26339)

Updates the requirements on 
[cachetools](https://github.com/tkem/cachetools) to permit the latest version.
- [Release notes](https://github.com/tkem/cachetools/releases)
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/tkem/cachetools/compare/v3.1.0...v5.3.0)

---
updated-dependencies:
- dependency-name: cachetools
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index f11b439493f..6ddd9ba94dd 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -299,7 +299,7 @@ if __name__ == '__main__':
 'hypothesis>5.0.0,<=7.0.0',
   ],
   'gcp': [
-'cachetools>=3.1.0,<5',
+'cachetools>=3.1.0,<6',
 'google-apitools>=0.5.31,<0.5.32',
 # NOTE: Maintainers, please do not require google-auth>=2.x.x
 # Until this issue is closed



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 3a823c9cd9a Updating config from bot
3a823c9cd9a is described below

commit 3a823c9cd9ac3eb0a10290882ed06fba77ee5bd7
Author: github-actions 
AuthorDate: Thu May 4 13:37:51 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26518.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26518.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26518.json
index 242a48d7d3b..37f7ab41238 100644
--- a/scripts/ci/pr-bot/state/pr-state/pr-26518.json
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26518.json
@@ -2,7 +2,7 @@
   "commentedAboutFailingChecks": true,
   "reviewersAssignedForLabels": {},
   "nextAction": "Author",
-  "stopReviewerNotifications": false,
+  "stopReviewerNotifications": true,
   "remindAfterTestsPass": [],
   "committerAssigned": false
 }
\ No newline at end of file



[beam] 01/01: Remove ValidatesRunner_V1 suite

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a commit to branch users/damccorm/validatesRunnerV1
in repository https://gitbox.apache.org/repos/asf/beam.git

commit a10c611d54c1c5aed3283c9086b04c98932d2925
Author: Danny McCormick 
AuthorDate: Thu May 4 09:38:11 2023 -0400

Remove ValidatesRunner_V1 suite
---
 ...stCommit_Python_ValidatesRunner_Dataflow.groovy | 44 --
 1 file changed, 44 deletions(-)

diff --git 
a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy 
b/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
deleted file mode 100644
index d93a2fb0984..000
--- a/.test-infra/jenkins/job_PostCommit_Python_ValidatesRunner_Dataflow.groovy
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import CommonJobProperties as commonJobProperties
-import PostcommitJobBuilder
-
-// This job runs the suite of Python ValidatesRunner tests against the
-// Dataflow runner.
-PostcommitJobBuilder.postCommitJob('beam_PostCommit_Py_VR_Dataflow', 'Run 
Python Dataflow ValidatesRunner',
-'Google Cloud Dataflow Runner Python ValidatesRunner Tests', this) {
-  description('Runs Python ValidatesRunner suite on the Dataflow runner.')
-
-  // Set common parameters.
-  commonJobProperties.setTopLevelMainJobProperties(delegate, 'master', 200)
-
-  publishers {
-archiveJunit('**/pytest*.xml')
-  }
-
-  // Execute gradle task to test Python SDK.
-  steps {
-gradle {
-  rootBuildScriptDir(commonJobProperties.checkoutDir)
-  tasks(':sdks:python:test-suites:dataflow:validatesRunnerBatchTests')
-  switches('-Pdisable_runner_v2_until_v2.50')
-  commonJobProperties.setGradleSwitches(delegate)
-}
-  }
-}



[beam] branch users/damccorm/validatesRunnerV1 created (now a10c611d54c)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a change to branch users/damccorm/validatesRunnerV1
in repository https://gitbox.apache.org/repos/asf/beam.git


  at a10c611d54c Remove ValidatesRunner_V1 suite

This branch includes the following new commits:

 new a10c611d54c Remove ValidatesRunner_V1 suite

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[beam] branch users/damccorm/validatesRunnerV1 updated (a10c611d54c -> 8e0da83c17e)

2023-05-04 Thread damccorm
This is an automated email from the ASF dual-hosted git repository.

damccorm pushed a change to branch users/damccorm/validatesRunnerV1
in repository https://gitbox.apache.org/repos/asf/beam.git


from a10c611d54c Remove ValidatesRunner_V1 suite
 add 8e0da83c17e Remove v2 from naming + update readme

No new revisions were added by this update.

Summary of changes:
 .test-infra/jenkins/README.md  | 1 -
 ...roovy => job_PostCommit_Python_ValidatesRunner_Dataflow.groovy} | 7 +++
 2 files changed, 3 insertions(+), 5 deletions(-)
 rename 
.test-infra/jenkins/{job_PostCommit_Python_ValidatesRunner_Dataflow_V2.groovy 
=> job_PostCommit_Python_ValidatesRunner_Dataflow.groovy} (90%)



[beam] branch master updated (42a763a3cca -> 5fdb13929d7)

2023-05-04 Thread anandinguva
This is an automated email from the ASF dual-hosted git repository.

anandinguva pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


from 42a763a3cca Update cachetools requirement in /sdks/python (#26339)
 add 5fdb13929d7 Add watch_pattern keyword arg to RunInference (#26518)

No new revisions were added by this update.

Summary of changes:
 sdks/python/apache_beam/ml/inference/base.py | 27 ++-
 1 file changed, 26 insertions(+), 1 deletion(-)



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 0d6bac4215f Updating config from bot
0d6bac4215f is described below

commit 0d6bac4215fcb96e0acb3af8e1b7837603210f8e
Author: github-actions 
AuthorDate: Thu May 4 14:48:23 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26548.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26548.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26548.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26548.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch master updated: Bump go.mongodb.org/mongo-driver from 1.11.4 to 1.11.5 in /sdks (#26540)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new bccb9a8b431 Bump go.mongodb.org/mongo-driver from 1.11.4 to 1.11.5 in 
/sdks (#26540)
bccb9a8b431 is described below

commit bccb9a8b431893ca75f5e005531d183968d7395a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu May 4 10:57:49 2023 -0400

Bump go.mongodb.org/mongo-driver from 1.11.4 to 1.11.5 in /sdks (#26540)

Bumps 
[go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) from 
1.11.4 to 1.11.5.
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- 
[Commits](https://github.com/mongodb/mongo-go-driver/compare/v1.11.4...v1.11.5)

---
updated-dependencies:
- dependency-name: go.mongodb.org/mongo-driver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 sdks/go.mod | 2 +-
 sdks/go.sum | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sdks/go.mod b/sdks/go.mod
index cfd4028e622..fea72bf4c86 100644
--- a/sdks/go.mod
+++ b/sdks/go.mod
@@ -51,7 +51,7 @@ require (
github.com/tetratelabs/wazero v1.1.0
github.com/xitongsys/parquet-go v1.6.2
github.com/xitongsys/parquet-go-source 
v0.0.0-20220315005136-aec0fe3e777c
-   go.mongodb.org/mongo-driver v1.11.4
+   go.mongodb.org/mongo-driver v1.11.5
golang.org/x/net v0.9.0
golang.org/x/oauth2 v0.7.0
golang.org/x/sync v0.1.0
diff --git a/sdks/go.sum b/sdks/go.sum
index ddad3d2d9bc..a8f0378d43b 100644
--- a/sdks/go.sum
+++ b/sdks/go.sum
@@ -489,8 +489,8 @@ github.com/zeebo/assert v1.3.0 
h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
 github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
 github.com/zeebo/xxh3 v1.0.2/go.mod 
h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
 go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
-go.mongodb.org/mongo-driver v1.11.4 
h1:4ayjakA013OdpGyL2K3ZqylTac/rMjrJOMZ1EHizXas=
-go.mongodb.org/mongo-driver v1.11.4/go.mod 
h1:PTSz5yu21bkT/wXpkS7WR5f0ddqw5quethTUn9WM+2g=
+go.mongodb.org/mongo-driver v1.11.5 
h1:CLrb1a22ddViSnnPCzGT4+PGrOJsUXI/9SWj8N1uHCM=
+go.mongodb.org/mongo-driver v1.11.5/go.mod 
h1:PTSz5yu21bkT/wXpkS7WR5f0ddqw5quethTUn9WM+2g=
 go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
 go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
 go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=



[beam] branch master updated: Bump google.golang.org/api from 0.120.0 to 0.121.0 in /sdks (#26539)

2023-05-04 Thread riteshghorse
This is an automated email from the ASF dual-hosted git repository.

riteshghorse pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new 5cf7702df44 Bump google.golang.org/api from 0.120.0 to 0.121.0 in 
/sdks (#26539)
5cf7702df44 is described below

commit 5cf7702df79175beb5cce3fdbe7bb8602793
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu May 4 11:10:12 2023 -0400

Bump google.golang.org/api from 0.120.0 to 0.121.0 in /sdks (#26539)

Bumps 
[google.golang.org/api](https://github.com/googleapis/google-api-go-client) 
from 0.120.0 to 0.121.0.
- [Release 
notes](https://github.com/googleapis/google-api-go-client/releases)
- 
[Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- 
[Commits](https://github.com/googleapis/google-api-go-client/compare/v0.120.0...v0.121.0)

---
updated-dependencies:
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 sdks/go.mod |  4 ++--
 sdks/go.sum | 20 ++--
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/sdks/go.mod b/sdks/go.mod
index fea72bf4c86..85afdc03865 100644
--- a/sdks/go.mod
+++ b/sdks/go.mod
@@ -57,7 +57,7 @@ require (
golang.org/x/sync v0.1.0
golang.org/x/sys v0.7.0
golang.org/x/text v0.9.0
-   google.golang.org/api v0.120.0
+   google.golang.org/api v0.121.0
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
google.golang.org/grpc v1.54.0
google.golang.org/protobuf v1.30.0
@@ -117,7 +117,7 @@ require (
github.com/google/flatbuffers v2.0.8+incompatible // indirect
github.com/google/pprof v0.0.0-20221103000818-d260c55eee4c // indirect
github.com/google/renameio/v2 v2.0.0 // indirect
-   github.com/google/s2a-go v0.1.2 // indirect
+   github.com/google/s2a-go v0.1.3 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
diff --git a/sdks/go.sum b/sdks/go.sum
index a8f0378d43b..547f19cff2f 100644
--- a/sdks/go.sum
+++ b/sdks/go.sum
@@ -310,8 +310,8 @@ github.com/google/pprof 
v0.0.0-20221103000818-d260c55eee4c/go.mod h1:dDKJzRmX4S3
 github.com/google/renameio v0.1.0/go.mod 
h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
 github.com/google/renameio/v2 v2.0.0 
h1:UifI23ZTGY8Tt29JbYFiuyIU3eX+RNFtUwefq9qAhxg=
 github.com/google/renameio/v2 v2.0.0/go.mod 
h1:BtmJXm5YlszgC+TD4HOEEUFgkJP3nLxehU6hfe7jRt4=
-github.com/google/s2a-go v0.1.2 h1:WVtYAYuYxKeYajAmThMRYWP6K3wXkcqbGHeUgeubUHY=
-github.com/google/s2a-go v0.1.2/go.mod 
h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM=
+github.com/google/s2a-go v0.1.3 h1:FAgZmpLl/SXurPEZyCMPBIiiYeTbqfjlbdnCNTAkbGE=
+github.com/google/s2a-go v0.1.3/go.mod 
h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A=
 github.com/google/uuid v1.1.2/go.mod 
h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
 github.com/google/uuid v1.2.0/go.mod 
h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
 github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
@@ -485,6 +485,7 @@ github.com/yuin/goldmark v1.1.27/go.mod 
h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
 github.com/yuin/goldmark v1.1.32/go.mod 
h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.2.1/go.mod 
h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.3.5/go.mod 
h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
+github.com/yuin/goldmark v1.4.13/go.mod 
h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
 github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ=
 github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0=
 github.com/zeebo/xxh3 v1.0.2/go.mod 
h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA=
@@ -510,6 +511,7 @@ golang.org/x/crypto 
v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh
 golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod 
h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a/go.mod 
h1:P+XmwS30IXTQdn5tA2iutPOUgjI07+tq3H3K9MVA1s8=
 golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod 
h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
+golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod 
h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
 golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod 
h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
 golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=
 golang.org/x/crypto v0.1.0/go.mod 
h1:RecgLatLF

[beam] branch master updated: Updating libraries bom version (#26525)

2023-05-04 Thread yhu
This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new c7458a3f7c1 Updating libraries bom version (#26525)
c7458a3f7c1 is described below

commit c7458a3f7c1e0d576b4a2977a3fc83e188772e35
Author: Mattie Fu 
AuthorDate: Thu May 4 11:22:28 2023 -0400

Updating libraries bom version (#26525)
---
 .../main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy | 10 +-
 sdks/java/container/license_scripts/dep_urls_java.yaml |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy 
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 373b0994d7d..e0cb81a1767 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -528,15 +528,15 @@ class BeamModulePlugin implements Plugin {
 def dbcp2_version = "2.9.0"
 def errorprone_version = "2.10.0"
 // Try to keep gax_version consistent with gax-grpc version in 
google_cloud_platform_libraries_bom
-def gax_version = "2.23.3"
+def gax_version = "2.26.0"
 def google_clients_version = "2.0.0"
 def google_cloud_bigdataoss_version = "2.2.6"
 // Try to keep google_cloud_spanner_version consistent with 
google_cloud_spanner_bom in google_cloud_platform_libraries_bom
-def google_cloud_spanner_version = "6.38.0"
+def google_cloud_spanner_version = "6.41.0"
 def google_code_gson_version = "2.9.1"
 def google_oauth_clients_version = "1.34.1"
 // Try to keep grpc_version consistent with gRPC version in 
google_cloud_platform_libraries_bom
-def grpc_version = "1.53.0"
+def grpc_version = "1.54.0"
 def guava_version = "31.1-jre"
 def hadoop_version = "2.10.2"
 def hamcrest_version = "2.1"
@@ -672,9 +672,9 @@ class BeamModulePlugin implements Plugin {
 google_cloud_pubsub : 
"com.google.cloud:google-cloud-pubsub", // google_cloud_platform_libraries_bom 
sets version
 google_cloud_pubsublite : 
"com.google.cloud:google-cloud-pubsublite",  // 
google_cloud_platform_libraries_bom sets version
 // The release notes shows the versions set by the BOM:
-// https://github.com/googleapis/java-cloud-bom/releases/tag/v26.11.0
+// https://github.com/googleapis/java-cloud-bom/releases/tag/v26.14.0
 // Update libraries-bom version on 
sdks/java/container/license_scripts/dep_urls_java.yaml
-google_cloud_platform_libraries_bom : 
"com.google.cloud:libraries-bom:26.11.0",
+google_cloud_platform_libraries_bom : 
"com.google.cloud:libraries-bom:26.14.0",
 google_cloud_spanner: 
"com.google.cloud:google-cloud-spanner", // google_cloud_platform_libraries_bom 
sets version
 google_cloud_spanner_test   : 
"com.google.cloud:google-cloud-spanner:$google_cloud_spanner_version:tests",
 google_code_gson: 
"com.google.code.gson:gson:$google_code_gson_version",
diff --git a/sdks/java/container/license_scripts/dep_urls_java.yaml 
b/sdks/java/container/license_scripts/dep_urls_java.yaml
index 51ac33fd19f..86c8ec6ea83 100644
--- a/sdks/java/container/license_scripts/dep_urls_java.yaml
+++ b/sdks/java/container/license_scripts/dep_urls_java.yaml
@@ -42,7 +42,7 @@ jaxen:
   '1.1.6':
 type: "3-Clause BSD"
 libraries-bom:
-  '26.11.0':
+  '26.14.0':
 license: 
"https://raw.githubusercontent.com/GoogleCloudPlatform/cloud-opensource-java/master/LICENSE";
 type: "Apache License 2.0"
 paranamer:



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 891760c68fa Updating config from bot
891760c68fa is described below

commit 891760c68fa8b57fa4388172a674927f6ee061fe
Author: github-actions 
AuthorDate: Thu May 4 15:30:16 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26551.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26551.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26551.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26551.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch asf-site updated: Publishing website 2023/05/04 16:17:26 at commit c7458a3

2023-05-04 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 23d67827cfb Publishing website 2023/05/04 16:17:26 at commit c7458a3
23d67827cfb is described below

commit 23d67827cfb9ffd2c444766119f7d56546456b5f
Author: jenkins 
AuthorDate: Thu May 4 16:17:26 2023 +

Publishing website 2023/05/04 16:17:26 at commit c7458a3
---
 website/generated-content/sitemap.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/generated-content/sitemap.xml 
b/website/generated-content/sitemap.xml
index b5a21e7b4e5..a2a77d5c4f8 100644
--- a/website/generated-content/sitemap.xml
+++ b/website/generated-content/sitemap.xml
@@ -1 +1 @@
-http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";>/case-studies/booking/2023-05-04T09:37:10-04:00/blog/beam-2.46.0/2023-05-04T09:37:10-04:00/categories/blog/2023-05-04T09:37:10-04:00/blog/2023-05-04T09:37:10-04:00http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";>/case-studies/booking/2023-05-04T11:22:28-04:00/blog/beam-2.46.0/2023-05-04T11:22:28-04:00/categories/blog/2023-05-04T11:22:28-04:00/blog/2023-05-04T11:22:28-04:00

[beam] branch release-2.47.0 updated: Push containers for python 3.10 and 3.11 (#26551)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch release-2.47.0
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/release-2.47.0 by this push:
 new a486f513bce Push containers for python 3.10 and 3.11 (#26551)
a486f513bce is described below

commit a486f513bce2b7e867adbe012fab795f12578e69
Author: Jack McCluskey <34928439+jrmcclus...@users.noreply.github.com>
AuthorDate: Thu May 4 12:25:53 2023 -0400

Push containers for python 3.10 and 3.11 (#26551)

Co-authored-by: Danny McCormick 
---
 sdks/python/container/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdks/python/container/build.gradle 
b/sdks/python/container/build.gradle
index 4a957e9214b..da54ef2ebe8 100644
--- a/sdks/python/container/build.gradle
+++ b/sdks/python/container/build.gradle
@@ -47,8 +47,8 @@ tasks.register("pushAll") {
   dependsOn ':sdks:python:container:py37:dockerPush'
   dependsOn ':sdks:python:container:py38:dockerPush'
   dependsOn ':sdks:python:container:py39:dockerPush'
-  dependsOn ':sdks:python:container:py310:docker'
-  dependsOn ':sdks:python:container:py311:docker'
+  dependsOn ':sdks:python:container:py310:dockerPush'
+  dependsOn ':sdks:python:container:py311:dockerPush'
 }
 
 tasks.register("generatePythonRequirementsAll") {



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new d61fbe85355 Updating config from bot
d61fbe85355 is described below

commit d61fbe853557925c83b4588089f34c3c1f6f3d82
Author: github-actions 
AuthorDate: Thu May 4 16:46:35 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26444.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26444.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26444.json
index 8749138f66c..f1aa3565341 100644
--- a/scripts/ci/pr-bot/state/pr-state/pr-26444.json
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26444.json
@@ -4,7 +4,7 @@
 "java": "kennknowles",
 "build": "damccorm"
   },
-  "nextAction": "Reviewers",
+  "nextAction": "Author",
   "stopReviewerNotifications": false,
   "remindAfterTestsPass": [],
   "committerAssigned": false



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 745493740ba Updating config from bot
745493740ba is described below

commit 745493740ba25a8296a7eb882a4ac817b1afb208
Author: github-actions 
AuthorDate: Thu May 4 17:04:14 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26554.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26554.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26554.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26554.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 93bc6b5cf63 Updating config from bot
93bc6b5cf63 is described below

commit 93bc6b5cf63d82039f8fe4492723cd68bff77fbb
Author: github-actions 
AuthorDate: Thu May 4 17:20:38 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26556.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26556.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26556.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26556.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch master updated: Distribute trigger time for daily load tests (#26556)

2023-05-04 Thread yhu
This is an automated email from the ASF dual-hosted git repository.

yhu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new 26f5792c8cc Distribute trigger time for daily load tests (#26556)
26f5792c8cc is described below

commit 26f5792c8cc7f0e2a04a3b94c57a96feabf92156
Author: Yi Hu 
AuthorDate: Thu May 4 13:27:57 2023 -0400

Distribute trigger time for daily load tests (#26556)

* Also, set all Java IO Performance test freq to half a day
  Python Performance test freq to daily as most tests
---
 .test-infra/jenkins/job_CloudMLBenchmarkTests_Python.groovy   | 2 +-
 .test-infra/jenkins/job_InferenceBenchmarkTests_Python.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_CoGBK_Dataflow_V2_Java11.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_CoGBK_Dataflow_V2_Java17.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_CoGBK_Java.groovy   | 4 ++--
 .../job_LoadTests_CoGBK_Java_spark_structured_streaming.groovy| 2 +-
 .test-infra/jenkins/job_LoadTests_Combine_Flink_Go.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_Combine_Flink_Python.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_Combine_Go.groovy   | 2 +-
 .test-infra/jenkins/job_LoadTests_Combine_Java.groovy | 4 ++--
 .../job_LoadTests_Combine_Java_spark_structured_streaming.groovy  | 2 +-
 .test-infra/jenkins/job_LoadTests_Combine_Python.groovy   | 4 ++--
 .test-infra/jenkins/job_LoadTests_GBK_Dataflow_V2_Java11.groovy   | 4 ++--
 .test-infra/jenkins/job_LoadTests_GBK_Dataflow_V2_Java17.groovy   | 4 ++--
 .test-infra/jenkins/job_LoadTests_GBK_Flink_Go.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_GBK_Go.groovy   | 2 +-
 .test-infra/jenkins/job_LoadTests_GBK_Java.groovy | 4 ++--
 .../jenkins/job_LoadTests_GBK_Java_spark_structured_streaming.groovy  | 2 +-
 .test-infra/jenkins/job_LoadTests_GBK_Python.groovy   | 4 ++--
 .test-infra/jenkins/job_LoadTests_GBK_Python_reiterate.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_ParDo_Dataflow_V2_Java11.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_ParDo_Dataflow_V2_Java17.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_ParDo_Flink_Go.groovy   | 2 +-
 .test-infra/jenkins/job_LoadTests_ParDo_Flink_Python.groovy   | 4 ++--
 .test-infra/jenkins/job_LoadTests_ParDo_Go.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_ParDo_Java.groovy   | 4 ++--
 .../job_LoadTests_ParDo_Java_spark_structured_streaming.groovy| 2 +-
 .test-infra/jenkins/job_LoadTests_ParDo_Python.groovy | 4 ++--
 .test-infra/jenkins/job_LoadTests_SideInput_Flink_Go.groovy   | 2 +-
 .test-infra/jenkins/job_LoadTests_SideInput_Go.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_SideInput_Python.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_coGBK_Flink_Go.groovy   | 2 +-
 .test-infra/jenkins/job_LoadTests_coGBK_Go.groovy | 2 +-
 .test-infra/jenkins/job_LoadTests_coGBK_Python.groovy | 4 ++--
 .test-infra/jenkins/job_PerformanceTests_BigQueryIO_Java.groovy   | 2 +-
 .test-infra/jenkins/job_PerformanceTests_Python.groovy| 2 +-
 .../job_PostCommit_Python_Chicago_Taxi_Example_Dataflow.groovy| 2 +-
 .../jenkins/job_PostCommit_Python_Chicago_Taxi_Example_Flink.groovy   | 2 +-
 38 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/.test-infra/jenkins/job_CloudMLBenchmarkTests_Python.groovy 
b/.test-infra/jenkins/job_CloudMLBenchmarkTests_Python.groovy
index 95dab94cb24..1867cccf775 100644
--- a/.test-infra/jenkins/job_CloudMLBenchmarkTests_Python.groovy
+++ b/.test-infra/jenkins/job_CloudMLBenchmarkTests_Python.groovy
@@ -60,7 +60,7 @@ PhraseTriggeringPostCommitBuilder.postCommitJob(
 
 CronJobBuilder.cronJob(
 'beam_CloudML_Benchmarks_Dataflow',
-'H 14 * * *',
+'H H * * *',
 this
 ) {
   cloudMLJob(delegate)
diff --git a/.test-infra/jenkins/job_InferenceBenchmarkTests_Python.groovy 
b/.test-infra/jenkins/job_InferenceBenchmarkTests_Python.groovy
index 975c9c6a7f2..a98b8d17043 100644
--- a/.test-infra/jenkins/job_InferenceBenchmarkTests_Python.groovy
+++ b/.test-infra/jenkins/job_InferenceBenchmarkTests_Python.groovy
@@ -199,7 +199,7 @@ PhraseTriggeringPostCommitBuilder.postCommitJob(
 }
 
 CronJobBuilder.cronJob(
-'beam_Inference_Python_Benchmarks_Dataflow', 'H 15 * * *',
+'beam_Inference_Python_Benchmarks_Dataflow', 'H H * * *',
 this
 ) {
   loadTestJob(delegate)
diff --git a/.test-infra/jenkins/job_LoadTests_CoGBK_Dataflow_V2_Java11.groovy 
b/.test-infra/jenkins/job_LoadTests_CoGBK_Dataflow_V2_Java11.groovy
index bd4b97c07e5..fc7f39d28a0 100644
--- a

[beam] branch release-2.47.0 updated: Merge pull request #26503: fix dataloss bug in batch Storage API sink. (#26512)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch release-2.47.0
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/release-2.47.0 by this push:
 new e80e46a00d0 Merge pull request #26503: fix dataloss bug in batch 
Storage API sink. (#26512)
e80e46a00d0 is described below

commit e80e46a00d0de562672d501afa2e11c4a77e625a
Author: Bruno Volpato 
AuthorDate: Thu May 4 13:35:39 2023 -0400

Merge pull request #26503: fix dataloss bug in batch Storage API sink. 
(#26512)

Co-authored-by: reuvenlax 
---
 .../bigquery/StorageApiWriteUnshardedRecords.java  | 67 ++
 1 file changed, 55 insertions(+), 12 deletions(-)

diff --git 
a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/StorageApiWriteUnshardedRecords.java
 
b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/StorageApiWriteUnshardedRecords.java
index f0015cddc38..3c082752449 100644
--- 
a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/StorageApiWriteUnshardedRecords.java
+++ 
b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/StorageApiWriteUnshardedRecords.java
@@ -31,11 +31,13 @@ import 
com.google.cloud.bigquery.storage.v1.WriteStream.Type;
 import com.google.protobuf.ByteString;
 import com.google.protobuf.DynamicMessage;
 import com.google.protobuf.InvalidProtocolBufferException;
+import io.grpc.Status;
 import java.io.IOException;
 import java.time.Instant;
 import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
+import java.util.Objects;
 import java.util.Random;
 import java.util.Set;
 import java.util.concurrent.ExecutorService;
@@ -224,11 +226,14 @@ public class 
StorageApiWriteUnshardedRecords
   ProtoRows protoRows;
   List timestamps;
 
+  int failureCount;
+
   public AppendRowsContext(
   long offset, ProtoRows protoRows, List 
timestamps) {
 this.offset = offset;
 this.protoRows = protoRows;
 this.timestamps = timestamps;
+this.failureCount = 0;
   }
 }
 
@@ -301,17 +306,20 @@ public class 
StorageApiWriteUnshardedRecords
   }
 
   String getOrCreateStreamName() {
-try {
-  if (!useDefaultStream) {
-this.streamName =
-Preconditions.checkStateNotNull(maybeDatasetService)
-.createWriteStream(tableUrn, Type.PENDING)
-.getName();
-  } else {
-this.streamName = getDefaultStreamName();
+if (Strings.isNullOrEmpty(this.streamName)) {
+  try {
+if (!useDefaultStream) {
+  this.streamName =
+  Preconditions.checkStateNotNull(maybeDatasetService)
+  .createWriteStream(tableUrn, Type.PENDING)
+  .getName();
+  this.currentOffset = 0;
+} else {
+  this.streamName = getDefaultStreamName();
+}
+  } catch (Exception e) {
+throw new RuntimeException(e);
   }
-} catch (Exception e) {
-  throw new RuntimeException(e);
 }
 return this.streamName;
   }
@@ -376,7 +384,6 @@ public class StorageApiWriteUnshardedRecords
   // This pin is "owned" by the current DoFn.
   
Preconditions.checkStateNotNull(newAppendClientInfo.getStreamAppendClient()).pin();
 }
-this.currentOffset = 0;
 nextCacheTickle = 
Instant.now().plus(java.time.Duration.ofMinutes(1));
 this.appendClientInfo = newAppendClientInfo;
   }
@@ -507,6 +514,7 @@ public class StorageApiWriteUnshardedRecords
 
 long offset = -1;
 if (!this.useDefaultStream) {
+  getOrCreateStreamName(); // Force creation of the stream before we 
get offsets.
   offset = this.currentOffset;
   this.currentOffset += inserts.getSerializedRowsCount();
 }
@@ -598,7 +606,42 @@ public class StorageApiWriteUnshardedRecords
   streamName,
   clientNumber,
   retrieveErrorDetails(contexts));
+  failedContext.failureCount += 1;
+
+  // Maximum number of times we retry before we fail the work item.
+  if (failedContext.failureCount > 5) {
+throw new RuntimeException("More than 5 attempts to call 
AppendRows failed.");
+  }
+
+  // The following errors are known to be persistent, so always 
fail the work item in
+  // this case.
+  Throwable error = 
Preconditions.checkStateNotNull(failedContext.getError());
+  Status.Code statusCode = Status.fromThrowable(error).getCode();
+  if (statusCode.equals(Status.Code.OUT_OF_RANGE)
+  || statusCode.equ

[beam] branch master updated (26f5792c8cc -> 193beb27091)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


from 26f5792c8cc Distribute trigger time for daily load tests (#26556)
 add 193beb27091 Bump sqlparse from 0.4.3 to 0.4.4 in 
/sdks/python/container/py310 (#26392)

No new revisions were added by this update.

Summary of changes:
 sdks/python/container/py310/base_image_requirements.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new a86f84ace91 Updating config from bot
a86f84ace91 is described below

commit a86f84ace9112866b36f5035cbb7195707d7292d
Author: github-actions 
AuthorDate: Thu May 4 18:06:09 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26553.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26553.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26553.json
new file mode 100644
index 000..6272b4e797d
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26553.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"python": "AnandInguva"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 9138a3d96f0 Updating config from bot
9138a3d96f0 is described below

commit 9138a3d96f009da3466a3ce6f160ae49bad34e71
Author: github-actions 
AuthorDate: Thu May 4 18:06:11 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-python.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-python.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-python.json
index ec7c89ec50f..1cd490b6426 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-python.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-python.json
@@ -1,7 +1,7 @@
 {
   "label": "python",
   "dateOfLastReviewAssignment": {
-"AnandInguva": 1683009314737,
+"AnandInguva": 1683223567730,
 "yeandy": 1665802753763,
 "TheNeuralBit": 1667896849319,
 "ryanthompson591": 1670002443548,



[beam] branch master updated: Increase streaming wordcount IT timeout again (#26554)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
 new fdc489f2f09 Increase streaming wordcount IT timeout again (#26554)
fdc489f2f09 is described below

commit fdc489f2f09cc2f2865f50ea8c886a98da2e32fc
Author: Jack McCluskey <34928439+jrmcclus...@users.noreply.github.com>
AuthorDate: Thu May 4 14:06:45 2023 -0400

Increase streaming wordcount IT timeout again (#26554)
---
 sdks/python/apache_beam/examples/streaming_wordcount_it_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py 
b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
index 3a2938e20cd..492b3ca02eb 100644
--- a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
+++ b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
@@ -53,7 +53,7 @@ INPUT_SUB = 'wc_subscription_input'
 OUTPUT_SUB = 'wc_subscription_output'
 
 DEFAULT_INPUT_NUMBERS = 500
-WAIT_UNTIL_FINISH_DURATION = 10 * 60 * 1000  # in milliseconds
+WAIT_UNTIL_FINISH_DURATION = 15 * 60 * 1000  # in milliseconds
 
 
 class StreamingWordCountIT(unittest.TestCase):



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new dbe9d695e19 Updating config from bot
dbe9d695e19 is described below

commit dbe9d695e19b0ced054775c3c93ed36bee3b9eaa
Author: github-actions 
AuthorDate: Thu May 4 18:17:39 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26558.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26558.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26558.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26558.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch release-2.47.0 updated (e80e46a00d0 -> d28c5570bd7)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a change to branch release-2.47.0
in repository https://gitbox.apache.org/repos/asf/beam.git


from e80e46a00d0 Merge pull request #26503: fix dataloss bug in batch 
Storage API sink. (#26512)
 add d28c5570bd7 Add Gradle sub-projects to enable parallel running of 
Kafka tests (#26153) (#26263)

No new revisions were added by this update.

Summary of changes:
 .../beam/gradle/kafka/KafkaTestUtilities.groovy| 63 ++
 sdks/java/io/kafka/build.gradle| 59 +---
 .../{go => java/io/kafka/kafka-01103}/build.gradle |  9 ++--
 sdks/{go => java/io/kafka/kafka-100}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-111}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-201}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-211}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-222}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-231}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-241}/build.gradle  |  9 ++--
 sdks/{go => java/io/kafka/kafka-251}/build.gradle  |  9 ++--
 .../kafka/kafka-integration-test.gradle}   | 21 +---
 .../org/apache/beam/sdk/io/kafka/KafkaIOIT.java|  6 +--
 settings.gradle.kts| 18 +++
 14 files changed, 155 insertions(+), 93 deletions(-)
 create mode 100644 
buildSrc/src/main/groovy/org/apache/beam/gradle/kafka/KafkaTestUtilities.groovy
 copy sdks/{go => java/io/kafka/kafka-01103}/build.gradle (87%)
 copy sdks/{go => java/io/kafka/kafka-100}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-111}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-201}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-211}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-222}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-231}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-241}/build.gradle (88%)
 copy sdks/{go => java/io/kafka/kafka-251}/build.gradle (88%)
 copy sdks/java/{extensions/sql/perf-tests/build.gradle => 
io/kafka/kafka-integration-test.gradle} (55%)



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 933b979ad9b Updating config from bot
933b979ad9b is described below

commit 933b979ad9bde9725b8375f390cc52a6d29dc4c3
Author: github-actions 
AuthorDate: Thu May 4 18:35:04 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-io.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-io.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-io.json
index e5ab4ff6c3c..4ccbc59e369 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-io.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-io.json
@@ -2,7 +2,7 @@
   "label": "io",
   "dateOfLastReviewAssignment": {
 "chamikaramj": 1683116082516,
-"johnjcasey": 1682737549495,
+"johnjcasey": 1683225298559,
 "pabloem": 1682943226902,
 "Abacn": 1682975161704,
 "ahmedabu98": 1683052483972



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 8bb3b131748 Updating config from bot
8bb3b131748 is described below

commit 8bb3b131748482bc288516136a17cd106c850263
Author: github-actions 
AuthorDate: Thu May 4 18:35:00 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26557.json | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26557.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26557.json
new file mode 100644
index 000..9ad2820ae6d
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26557.json
@@ -0,0 +1,11 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"java": "robertwb",
+"io": "johnjcasey"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new a69caa7e37b Updating config from bot
a69caa7e37b is described below

commit a69caa7e37b2ae96114371e8fa74e83acea99a63
Author: github-actions 
AuthorDate: Thu May 4 18:35:02 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-java.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-java.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-java.json
index 9761b849531..cfaab84edd3 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-java.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-java.json
@@ -3,7 +3,7 @@
   "dateOfLastReviewAssignment": {
 "lukecwik": 1680701852535,
 "kennknowles": 1683138877474,
-"robertwb": 1683116081497,
+"robertwb": 1683225298558,
 "kileys": 1674428678843,
 "apilloud": 1678822446183,
 "Abacn": 1683116091964



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 88f17c660d9 Updating config from bot
88f17c660d9 is described below

commit 88f17c660d937dbc0a1dd58c51d61c00a262da95
Author: github-actions 
AuthorDate: Thu May 4 19:04:07 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26559.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26559.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26559.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26559.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch release-2.47.0 updated: Increase streaming wordcount IT timeout again (#26554) (#26558)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a commit to branch release-2.47.0
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/release-2.47.0 by this push:
 new 0b1b07398cf Increase streaming wordcount IT timeout again (#26554) 
(#26558)
0b1b07398cf is described below

commit 0b1b07398cf139ee0824a75c6ac1c9d3b49616ce
Author: Jack McCluskey <34928439+jrmcclus...@users.noreply.github.com>
AuthorDate: Thu May 4 15:36:55 2023 -0400

Increase streaming wordcount IT timeout again (#26554) (#26558)
---
 sdks/python/apache_beam/examples/streaming_wordcount_it_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py 
b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
index 3a2938e20cd..492b3ca02eb 100644
--- a/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
+++ b/sdks/python/apache_beam/examples/streaming_wordcount_it_test.py
@@ -53,7 +53,7 @@ INPUT_SUB = 'wc_subscription_input'
 OUTPUT_SUB = 'wc_subscription_output'
 
 DEFAULT_INPUT_NUMBERS = 500
-WAIT_UNTIL_FINISH_DURATION = 10 * 60 * 1000  # in milliseconds
+WAIT_UNTIL_FINISH_DURATION = 15 * 60 * 1000  # in milliseconds
 
 
 class StreamingWordCountIT(unittest.TestCase):



[beam] annotated tag sdks/v2.47.0-RC3 updated (5772bf74cbe -> 855fddf284b)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a change to annotated tag sdks/v2.47.0-RC3
in repository https://gitbox.apache.org/repos/asf/beam.git


*** WARNING: tag sdks/v2.47.0-RC3 was modified! ***

from 5772bf74cbe (commit)
  to 855fddf284b (tag)
 tagging 5772bf74cbe556277976e4883b27e37b7a7e87f0 (commit)
 replaces jupyterlab-sidepanel-v3.0.0
  by jrmccluskey
  on Thu May 4 19:40:09 2023 +

- Log -
Go SDK v2.47.0-RC3
---


No new revisions were added by this update.

Summary of changes:



[beam] annotated tag v2.47.0-RC3 updated (5772bf74cbe -> bd731e99eff)

2023-05-04 Thread jrmccluskey
This is an automated email from the ASF dual-hosted git repository.

jrmccluskey pushed a change to annotated tag v2.47.0-RC3
in repository https://gitbox.apache.org/repos/asf/beam.git


*** WARNING: tag v2.47.0-RC3 was modified! ***

from 5772bf74cbe (commit)
  to bd731e99eff (tag)
 tagging 5772bf74cbe556277976e4883b27e37b7a7e87f0 (commit)
 replaces jupyterlab-sidepanel-v3.0.0
  by jrmccluskey
  on Thu May 4 19:40:09 2023 +

- Log -
v2.47.0-RC3
---


No new revisions were added by this update.

Summary of changes:



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new cdc242ae779 Updating config from bot
cdc242ae779 is described below

commit cdc242ae77962be5503fc5d4e3458537bcf9d6db
Author: github-actions 
AuthorDate: Thu May 4 20:17:54 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26560.json | 8 
 1 file changed, 8 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26560.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26560.json
new file mode 100644
index 000..9c2aa5aa212
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26560.json
@@ -0,0 +1,8 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {},
+  "nextAction": "Author",
+  "stopReviewerNotifications": true,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



svn commit: r61636 - in /dev/beam/2.47.0: apache-beam-2.47.0-source-release.zip apache-beam-2.47.0-source-release.zip.asc apache-beam-2.47.0-source-release.zip.sha512

2023-05-04 Thread jrmccluskey
Author: jrmccluskey
Date: Thu May  4 21:12:11 2023
New Revision: 61636

Log:
Staging Java artifacts for Apache Beam 2.47.0 RC3

Added:
dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip   (with props)
Modified:
dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.asc
dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.sha512

Added: dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip
==
Binary file - no diff available.

Propchange: dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip
--
svn:mime-type = application/octet-stream

Modified: dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.asc
==
--- dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.asc (original)
+++ dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.asc Thu May  4 
21:12:11 2023
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRRcqoACgkQ3zy6Tz9B
-mfRy1w//dOsg+yjtOX8cMG8Y6FfLy3p4KS0/qpf8rlMj+Ny76nZy+MtvwerqwcBB
-qZQ87tzPO/9l7U/mVV6iHTtjQmbsMeJLoMG0aV3yVIGVCtPFb+SCZgDz7siOsZpq
-xMg9Wl/2kbgAC+UTgdG9+AoPtDQwigRyUyFRzc/OqPvWVm+B1sSNZX8E1Ks6UqgR
-zZTtDhR6JoYqUAz40BuCBbaE4A3EseHlD/Z3n1/tRuFNDQO+iW9g+5XHcGTssR3m
-La82EbSU5wO0kQCn5PCYikOWwWBrQq+9BSovTSPUnmy1jCx8ly2QSKFHLQ6iCKVq
-xmWAbEMoM9DqPjfgOjbF5u2knqvcvJnG1tMQmT5WQg+Rd8J31pOZRs1DX1NhJ008
-krAEZtt1Sf2EkSP3IwMr9rgq2xVhqqVjTujxBXGaAACnfBYegVjLG4RjbDsxltwe
-U0gly+GGYBVKSZcW4pdFEEPD7jUr5WqjcZbEegdtyW6VXDkmu3A1zob0huoW+vxz
-AvpCcSD3/VWinnNVt40/T5XIPlMeGQ/W4e52FQesd6tjCKe+hvisVQFcjp9kXOj1
-CUqqk4ZY3Ugjcf5GF0xlMZooWPPM57hxmvj3STuN4X9IzE0Zuiw4MbGiBznxcX2Y
-hsucg+O833p3NYn3BX7/v3Lbx0AP8vo0pp9XXKn+0HwvMDvXkfY=
-=/ypj
+iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRUH5gACgkQ3zy6Tz9B
+mfS77A/9E+zB2K+zz3kD36p74tWwN+DplFlrA8fXEYtx3cgy6bzuVOgtlUIYo9wt
+TG4Ikr/5qiHC4/VD2c5DJQucBB11xz6f+QpIwX54zj2WohPZZcPfv7JXUGftiOzI
+YbrjmmzdizSa4hOqYudG+YVEnr95BsGQ8QKxqwyJCIZgx+fe1PpbYoTZKyS/8JGC
+3bmEGsmdYEk/HQ9D+VRvbsVOcP2w/dOnaseUiYL8Kxo6Z9oPiYZZF/TIkcCkpUmj
+UVcRyF4HpZaWGQs+0tk0HPMr86iVtsK/Ecy2tpBi7Gve81jF9xYY43kXpzQHelXy
+Ym4wSe0yXxg42TYSsSBa3v8h343v60ArkTDmf6mxnea3AyGNh5kVnMaxJs8wWl3I
+12E7rvQ6/TWaRXLZOALRW92C5KXZatfgmwyBhlzulKHaSakpjof4SyzPQyLu9tu0
+A436w/+07cdNTXsNshVT9l4486yj6Iou/jFtzmaFlaMMdE6/ZA7HP/0okgvb6Wgb
+AZky4lFqW4E82M68YzS7zySpBIa5xQwK3fUkW4mFOvs2/X4yVHdGxBmm3JHcSUGg
+niI7HjhWHm4t/3+Q9OWc84bfHdBoyqW2iSwfLb5V/c6Z0BTIPcBddkrBlNfB4n5h
+bd7gihsR6m7TWdiQgR64MqZ6nsoJlJLAVlgPNawuOb8j11svY88=
+=Ghbf
 -END PGP SIGNATURE-

Modified: dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.sha512
==
--- dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.sha512 (original)
+++ dev/beam/2.47.0/apache-beam-2.47.0-source-release.zip.sha512 Thu May  4 
21:12:11 2023
@@ -1 +1 @@
-04d88bff5632c46548b447ea6f07c31ff79b9a5b51cc50937de9a76461cdc081ac4207075d29ab3312c63ee296c78cf0d83a66f34f0daebe41182c1d6e7f233f
  apache-beam-2.47.0-source-release.zip
+459c24e2e678aa2a91f16b2db4cbd236b41329e6ae1a6f6cf827a246d0aa09bd0c53fead1c2cf5ac2a0681b335fc947df4be46856b6de85534c39f41f1dce0dc
  apache-beam-2.47.0-source-release.zip




[beam] branch asf-site updated: Publishing website 2023/05/04 22:16:21 at commit fdc489f

2023-05-04 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 5318f6f7ba5 Publishing website 2023/05/04 22:16:21 at commit fdc489f
5318f6f7ba5 is described below

commit 5318f6f7ba5017677fb3dd44332f54d35c1755b9
Author: jenkins 
AuthorDate: Thu May 4 22:16:22 2023 +

Publishing website 2023/05/04 22:16:21 at commit fdc489f
---
 website/generated-content/sitemap.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/website/generated-content/sitemap.xml 
b/website/generated-content/sitemap.xml
index a2a77d5c4f8..de9bdc3c755 100644
--- a/website/generated-content/sitemap.xml
+++ b/website/generated-content/sitemap.xml
@@ -1 +1 @@
-http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";>/case-studies/booking/2023-05-04T11:22:28-04:00/blog/beam-2.46.0/2023-05-04T11:22:28-04:00/categories/blog/2023-05-04T11:22:28-04:00/blog/2023-05-04T11:22:28-04:00http://www.sitemaps.org/schemas/sitemap/0.9"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml";>/case-studies/booking/2023-05-04T14:06:45-04:00/blog/beam-2.46.0/2023-05-04T14:06:45-04:00/categories/blog/2023-05-04T14:06:45-04:00/blog/2023-05-04T14:06:45-04:00

svn commit: r61639 [1/2] - /dev/beam/2.47.0/python/

2023-05-04 Thread jrmccluskey
Author: jrmccluskey
Date: Fri May  5 00:36:37 2023
New Revision: 61639

Log:
Staging Python artifacts for Apache Beam 2.47.0 RC3

Modified:
dev/beam/2.47.0/python/apache-beam-2.47.0.zip
dev/beam/2.47.0/python/apache-beam-2.47.0.zip.asc
dev/beam/2.47.0/python/apache-beam-2.47.0.zip.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-macosx_10_9_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-macosx_10_9_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-macosx_10_9_x86_64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win32.whl
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win32.whl.asc
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win32.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win_amd64.whl
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win_amd64.whl.asc
dev/beam/2.47.0/python/apache_beam-2.47.0-cp310-cp310-win_amd64.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-macosx_10_9_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-macosx_10_9_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-macosx_10_9_x86_64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win32.whl
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win32.whl.asc
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win32.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win_amd64.whl
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win_amd64.whl.asc
dev/beam/2.47.0/python/apache_beam-2.47.0-cp311-cp311-win_amd64.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-macosx_10_9_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-macosx_10_9_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-macosx_10_9_x86_64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.sha512

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.asc

dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.sha512
dev/beam/2.47.0/python/apache_beam-2.47.0-cp37-cp37m-win32.whl
dev/beam/2.47.0/python/apache_beam-2.47.0-cp

svn commit: r61639 [2/2] - /dev/beam/2.47.0/python/

2023-05-04 Thread jrmccluskey
Modified: 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc
==
--- 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc
 (original)
+++ 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.asc
 Fri May  5 00:36:37 2023
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRRdP0ACgkQ3zy6Tz9B
-mfRg3w/+MklWNrZcQV0nUQUlXNdOM8I0+ymUi4rDrRlOu2WtPCuireqLkH1kOkBB
-ddMevO6EJWBXn253rArDo1Q8sCwtFccCv+0aYJcz6Zz5kli9mmc4AQcFOwlyGDTM
-u0yDcTGE9Njup9dA1xYZ4miNEDMxXDQx7J98OwrNl3vwpvSRLuA6jIBPPrPp3uVw
-HA+Bc7csj/xfJMQ+jGFtGGh8WOvua3ibE/KSYnbGYjX650Y2XyfXnXy9veCLYSP3
-aRBnoy5cz4BHEddCdH7uxSvSxQLE+F/irBLoOkdmd08n3wXl/0dKx4LQGDOeIcxw
-QCMSCYa5PWcLS65nxxLSWc0bYbUpCpWm8BfP3D1NWXzhunC53aDSRGs+NDrAOtQO
-NgfP2BtX5w4ryTeWaqtkTqS0Zhb1mK5m5lH4jlwkgMgRfNFge6M6bH8wThX2T7bd
-zcmrAit/UoDhlngYUrGicvgYfOhGxhoKqbkws4CCi+G+PM/qNZxUy6PdULHq3BKd
-tTYEt/uwjEy5MaHaSNofEeoxn4BaJvcTGrvOJ8YcYynj17N6hqUqh5tPw39CZZr3
-9vaN1prAEQ0n7x/cf9HeNdcv30gSMBHd9yiRitX1HLC8LTz0kt4nK4FwWkPt0TbC
-M/yktD2RyzdJnjSTKRIaWxVLvuG6MyulLjyC7eIHt5YlrboxRRU=
-=OFF2
+iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRUT28ACgkQ3zy6Tz9B
+mfRsSw//Y/HgOFO+xM3NWGv8BZdOKDnXOPUCSdGbr1yl4RxO4U1SvU1qoiDgrGn0
+seyFbz0JyqtweuaGP7GBF3YvuVqcKkQ4FwgOJp2dJURoHon9uuMpojH3OZzOtA20
+4He4dbpl/K5G580TwraA4pQcqGz3ajLemFiFNDDF5iI42/4lErTlvgTPJmJTjRNU
+w4tnow7qvsp7kuxG4QL6v5wBro2t0sjgCkg0B966NNdgBdaTYd88H/fEkaRHloL4
+k3XXhIn9pXfgGmr+LbFBjcVlp8sMBQOZczNlE6wLT4TrWdYUlXgL4kq5EDZhtXE1
+Hn3AM+M4lt48OMxGl5H8IYl1scCNNuBedt/5+kTx14Lpf/uCEObV7oSX8dY0AysF
+89tTDNBHpj7eO53AINfbgyxgMsIgjtSzWSNduuVkYG06yYK3rLIIdBRqDZFbYzQ8
+mGBdkMS3ziaSaKzr4MLSlHaof1O02hyfGVP15N3G6DCvytvF/N8fPKH6ODvArKPa
+IG0sY1q0nOKy0AHN6kvLB/gcMSIeXoNfx9a6sPcmS2ziMVwSBpQWSp04KRvJHQWM
+/8QnGqot6FNy1TEDn7z50irohqJkLaFigPq03x57cXHwSwpFXvbEMw6ZFUduE5hG
+mfam2xMf8EBRpxEEYilvQX5uWTzopJX+DR3vsx9zIX3dlkWNeKA=
+=YdLZ
 -END PGP SIGNATURE-

Modified: 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512
==
--- 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512
 (original)
+++ 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.sha512
 Fri May  5 00:36:37 2023
@@ -1 +1 @@
-3160a281bc270aab795b01335208b9a6861227bd8d1e0b7d526bf65ea43348c8ee027a8316f689f96e34113567b93eb259f30883d4f6960fb71fd8e3bbb7fc21
  apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
+539a0ac2ae0ea77603cddac377f3c053ea2b97844893e29d5816db8181b93097f7a38ab4ff9bef4d3610b014213f1ed1e0d2a4834509bfdaaec8801e8c28c492
  apache_beam-2.47.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Modified: 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
==
Binary files - no diff available.

Modified: 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.asc
==
--- 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.asc
 (original)
+++ 
dev/beam/2.47.0/python/apache_beam-2.47.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.asc
 Fri May  5 00:36:37 2023
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRRdP0ACgkQ3zy6Tz9B
-mfS1rQ/9FD0qyCy62t5xsUkZGsbWhqhL8GnEPXmPFrhN6wEpjTP1OkjVb5eLmc41
-UuQYvRX3mmCxlurI1rqnWerGOQoCTrRPhvE9WdGWcAFtoIIxc11t+b3mwsgJqJX6
-rTs4bsOtMvmNtWKM07zi3YAWcdLUjfravlF/YwJGMx/FTbwa6C+06QGRccp8L97d
-0MUxRu7/xvShFgD3IB3F2Muh6TeTfOTSBZfUI49ijO4nCEWkPN7WVfko2iixX1Jj
-v5seezxuzc/tpnPY/igx93Bp+xP8KZotxQJSSGi7/MqPC/FVCTFSPMreS4W1brO/
-X0Jm4lLOvFoj8eEECsLjEHWugvBsjkjtQfb7OioPDQmdB/XfKhQfdY5Iwu6nSNT1
-Tye7SdnAM8p2xxdXi7wtnq/1KpSZG4412Komc0NG3mkf2+dj/Qn2KNADnkaLHINV
-6+g64YmcT1oiEoIVCN8chafi1k9vyxLnLGBQGYtZid7gT/D5N1toCMvCTf9gMMYT
-fvUnZEa/+LK07xH6hshRxaP8UIVjwi7K+pml1paZw6U8DexZEUHFoENK9t4SHlFG
-ykOCEvpyIiPoE8WHArZ/IiT3I9nuyMqsGi5GQbIInVaqoecAiC+/lLVpMOzPAKy+
-8CPHWBMtWAeVK0+mPmSRZPwGRbu2Cqmp9SHuwHZRz6pKGQ9GCJ0=
-=F3YQ
+iQIzBAABCgAdFiEE5zdAs7rf+VvZLqWu3zy6Tz9BmfQFAmRUT3AACgkQ3zy6Tz9B
+mfTkXw/+Mfl2LRZM2MSNRQTX5reyfUrddzcf2g2ntdyTwUGbhMT1CFSCNiXjnMck
+e+QlQftFa/29u9ADTUYcrV0BVal87BnvoOl2VVK/CptDX4qgoLY9EQGZ8PZwJE9J
+4pzePhoSlrgRWbAq1Qiqs+gpLz3Z6UXcw52KUg26f7eEpEvShyCyHJX9czE1jCsz
+DJF64PoJJcrdMaw6pcgvC5Qi8O+HvHZWpJCXX+jnF1l2loHog4A4nBAAVF+PrMem
+F56Fs7JJJFAbMVjfDUUemuzA77YqJxDy5idhKRPqERK016Ke0gcS3M1UzHNkNy+f
+G2UPBcNJFvVdUa9aSSOQndmcmjSb6ZBQKnqHmW8IPB5sDRa4yY2IUymZSg27us5a
+J3g/K7K/yNs/++E82kNI+5+Wyd2Q4CbcbnTj3/wL

[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 02f30fe4c1a Updating config from bot
02f30fe4c1a is described below

commit 02f30fe4c1a3dad86b9b603a69e2fe344f69de73
Author: github-actions 
AuthorDate: Fri May 5 04:06:15 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26564.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26564.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26564.json
new file mode 100644
index 000..9c51466b9ee
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26564.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"build": "Abacn"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new fcd83f04e3d Updating config from bot
fcd83f04e3d is described below

commit fcd83f04e3d3770919dd0fd7c526b871baddad81
Author: github-actions 
AuthorDate: Fri May 5 04:06:16 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-build.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-build.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-build.json
index eb2ca8773b4..56068ee6224 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-build.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-build.json
@@ -2,6 +2,6 @@
   "label": "build",
   "dateOfLastReviewAssignment": {
 "damccorm": 1683180389130,
-"Abacn": 1683138877474
+"Abacn": 1683259573538
   }
 }
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new affd86bc015 Updating config from bot
affd86bc015 is described below

commit affd86bc01544bd5519a76f7a83b2dd8c3dbbb37
Author: github-actions 
AuthorDate: Fri May 5 04:06:22 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-python.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-python.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-python.json
index 1cd490b6426..236fcc98f6f 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-python.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-python.json
@@ -8,7 +8,7 @@
 "tvalentyn": 1683129988805,
 "pabloem": 1681281324703,
 "y1chi": 1667002607045,
-"damccorm": 1683039462592,
+"damccorm": 1683259578782,
 "jrmccluskey": 1683116091475
   }
 }
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 673dd3c17d8 Updating config from bot
673dd3c17d8 is described below

commit 673dd3c17d8196cddeeb661e5fe41eed236ed8b9
Author: github-actions 
AuthorDate: Fri May 5 04:06:20 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26563.json | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26563.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26563.json
new file mode 100644
index 000..a4fa43152d9
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26563.json
@@ -0,0 +1,11 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"python": "damccorm",
+"go": "riteshghorse"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 60192416354 Updating config from bot
60192416354 is described below

commit 6019241635422374998c685a6ddd51f312ab8185
Author: github-actions 
AuthorDate: Fri May 5 04:06:24 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-go.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-go.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
index 91dffb5a0df..81b848c1182 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-go.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
@@ -5,6 +5,6 @@
 "jrmccluskey": 1683178493799,
 "youngoli": 1657688896155,
 "damccorm": 1680501930289,
-"riteshghorse": 1683178499371
+"riteshghorse": 1683259578782
   }
 }
\ No newline at end of file



[beam] branch nightly-refs/heads/master updated (5b44d3637c8 -> fdc489f2f09)

2023-05-04 Thread github-bot
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 5b44d3637c8 [Playground] derf Stop tickers to avoid leaks. (#26507)
 add cd9e00577e4 Run Playground code on Ctrl+Enter on numpad (#26516) 
(#26517)
 add 5975617d090 [Tour of Beam] [Frontend] Module complexity on the welcome 
screen (#26541)
 add d0e709c8698 Update httplib2 requirement in /sdks/python
 add a638c04e8e8 Update httplib2 requirement from <0.22.0,>=0.8 to 
>=0.8,<0.23.0 in /sdks/python
 add d910a9df887 Update 
job_PostCommit_Python_ValidatesRunner_Dataflow.groovy (#26534)
 add 42a763a3cca Update cachetools requirement in /sdks/python (#26339)
 add 5fdb13929d7 Add watch_pattern keyword arg to RunInference (#26518)
 add bccb9a8b431 Bump go.mongodb.org/mongo-driver from 1.11.4 to 1.11.5 in 
/sdks (#26540)
 add 5cf7702df44 Bump google.golang.org/api from 0.120.0 to 0.121.0 in 
/sdks (#26539)
 add c7458a3f7c1 Updating libraries bom version (#26525)
 add 26f5792c8cc Distribute trigger time for daily load tests (#26556)
 add 193beb27091 Bump sqlparse from 0.4.3 to 0.4.4 in 
/sdks/python/container/py310 (#26392)
 add fdc489f2f09 Increase streaming wordcount IT timeout again (#26554)

No new revisions were added by this update.

Summary of changes:
 .../job_CloudMLBenchmarkTests_Python.groovy|  2 +-
 .../job_InferenceBenchmarkTests_Python.groovy  |  2 +-
 .../job_LoadTests_CoGBK_Dataflow_V2_Java11.groovy  |  4 +--
 .../job_LoadTests_CoGBK_Dataflow_V2_Java17.groovy  |  4 +--
 .../jenkins/job_LoadTests_CoGBK_Java.groovy|  4 +--
 ...ts_CoGBK_Java_spark_structured_streaming.groovy |  2 +-
 .../jenkins/job_LoadTests_Combine_Flink_Go.groovy  |  2 +-
 .../job_LoadTests_Combine_Flink_Python.groovy  |  4 +--
 .../jenkins/job_LoadTests_Combine_Go.groovy|  2 +-
 .../jenkins/job_LoadTests_Combine_Java.groovy  |  4 +--
 ..._Combine_Java_spark_structured_streaming.groovy |  2 +-
 .../jenkins/job_LoadTests_Combine_Python.groovy|  4 +--
 .../job_LoadTests_GBK_Dataflow_V2_Java11.groovy|  4 +--
 .../job_LoadTests_GBK_Dataflow_V2_Java17.groovy|  4 +--
 .../jenkins/job_LoadTests_GBK_Flink_Go.groovy  |  2 +-
 .test-infra/jenkins/job_LoadTests_GBK_Go.groovy|  2 +-
 .test-infra/jenkins/job_LoadTests_GBK_Java.groovy  |  4 +--
 ...ests_GBK_Java_spark_structured_streaming.groovy |  2 +-
 .../jenkins/job_LoadTests_GBK_Python.groovy|  4 +--
 .../job_LoadTests_GBK_Python_reiterate.groovy  |  4 +--
 .../job_LoadTests_ParDo_Dataflow_V2_Java11.groovy  |  4 +--
 .../job_LoadTests_ParDo_Dataflow_V2_Java17.groovy  |  4 +--
 .../jenkins/job_LoadTests_ParDo_Flink_Go.groovy|  2 +-
 .../job_LoadTests_ParDo_Flink_Python.groovy|  4 +--
 .test-infra/jenkins/job_LoadTests_ParDo_Go.groovy  |  2 +-
 .../jenkins/job_LoadTests_ParDo_Java.groovy|  4 +--
 ...ts_ParDo_Java_spark_structured_streaming.groovy |  2 +-
 .../jenkins/job_LoadTests_ParDo_Python.groovy  |  4 +--
 .../job_LoadTests_SideInput_Flink_Go.groovy|  2 +-
 .../jenkins/job_LoadTests_SideInput_Go.groovy  |  2 +-
 .../jenkins/job_LoadTests_SideInput_Python.groovy  |  2 +-
 .../jenkins/job_LoadTests_coGBK_Flink_Go.groovy|  2 +-
 .test-infra/jenkins/job_LoadTests_coGBK_Go.groovy  |  2 +-
 .../jenkins/job_LoadTests_coGBK_Python.groovy  |  4 +--
 .../job_PerformanceTests_BigQueryIO_Java.groovy|  2 +-
 .../jenkins/job_PerformanceTests_Python.groovy |  2 +-
 ...mit_Python_Chicago_Taxi_Example_Dataflow.groovy |  2 +-
 ...Commit_Python_Chicago_Taxi_Example_Flink.groovy |  2 +-
 ...stCommit_Python_ValidatesRunner_Dataflow.groovy |  2 +-
 .../org/apache/beam/gradle/BeamModulePlugin.groovy | 10 +++---
 .../frontend/lib/components/scaffold.dart  | 21 +++-
 .../frontend/lib/pages/welcome/screen.dart | 12 +++
 .../frontend/lib/shortcuts/shortcuts_manager.dart  | 39 +++---
 learning/tour-of-beam/frontend/pubspec.lock|  4 +--
 .../standalone_run_shortcuts_test.dart | 35 +--
 .../shortcuts/components/shortcuts_manager.dart| 33 +-
 .../lib/src/models/run_shortcut.dart   | 17 --
 .../lib/src/widgets/run_button.dart|  2 +-
 .../frontend/playground_components/pubspec.yaml|  2 +-
 .../playground_components_dev/pubspec.yaml |  2 +-
 playground/frontend/pubspec.lock   |  4 +--
 playground/frontend/pubspec.yaml   |  2 +-
 sdks/go.mod|  6 ++--
 sdks/go.sum| 24 -
 .../container/license_scripts/dep_urls_java.yaml   |  2 +-
 .../examples/streaming_wordcount_it_test.py|  2 +-
 sdks/python/apache_beam/ml/inference/base.py   | 27 ++-
 .../container/py310/base_image

[beam] branch dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/service/s3-1.33.1 created (now 92da8c69d1d)

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/service/s3-1.33.1
in repository https://gitbox.apache.org/repos/asf/beam.git


  at 92da8c69d1d Bump github.com/aws/aws-sdk-go-v2/service/s3 in /sdks

No new revisions were added by this update.



[beam] branch dependabot/go_modules/sdks/cloud.google.com/go/bigquery-1.51.1 created (now c06d7a66bbd)

2023-05-04 Thread github-bot
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/bigquery-1.51.1
in repository https://gitbox.apache.org/repos/asf/beam.git


  at c06d7a66bbd Bump cloud.google.com/go/bigquery from 1.51.0 to 1.51.1 in 
/sdks

No new revisions were added by this update.



[beam] branch dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/config-1.18.23 created (now 0a74f457d7d)

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/config-1.18.23
in repository https://gitbox.apache.org/repos/asf/beam.git


  at 0a74f457d7d Bump github.com/aws/aws-sdk-go-v2/config in /sdks

No new revisions were added by this update.



[beam] branch dependabot/go_modules/sdks/google.golang.org/grpc-1.55.0 created (now be511c1c4a6)

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/go_modules/sdks/google.golang.org/grpc-1.55.0
in repository https://gitbox.apache.org/repos/asf/beam.git


  at be511c1c4a6 Bump google.golang.org/grpc from 1.54.0 to 1.55.0 in /sdks

No new revisions were added by this update.



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new acd29259c02 Updating config from bot
acd29259c02 is described below

commit acd29259c02270deb3239b6636fa19539de7ec81
Author: github-actions 
AuthorDate: Fri May 5 05:34:59 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26568.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26568.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26568.json
new file mode 100644
index 000..1c2c2e31975
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26568.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"go": "jrmccluskey"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 72129798169 Updating config from bot
72129798169 is described below

commit 721297981698d61e92f21b2d00491b017f0adffe
Author: github-actions 
AuthorDate: Fri May 5 05:35:05 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26567.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26567.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26567.json
new file mode 100644
index 000..8ea94810368
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26567.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"go": "lostluck"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new b28ea3b61a7 Updating config from bot
b28ea3b61a7 is described below

commit b28ea3b61a7636cf0490bbbe57e34bfd28f349d3
Author: github-actions 
AuthorDate: Fri May 5 05:35:11 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26566.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26566.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26566.json
new file mode 100644
index 000..aa3638a74ec
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26566.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"go": "riteshghorse"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 869ae1d0f59 Updating config from bot
869ae1d0f59 is described below

commit 869ae1d0f59dfc4e3913abf4e48daa5d0fb559f3
Author: github-actions 
AuthorDate: Fri May 5 05:35:02 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-go.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-go.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
index 81b848c1182..7d234de068c 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-go.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
@@ -2,7 +2,7 @@
   "label": "go",
   "dateOfLastReviewAssignment": {
 "lostluck": 1683178505233,
-"jrmccluskey": 1683178493799,
+"jrmccluskey": 1683264897870,
 "youngoli": 1657688896155,
 "damccorm": 1680501930289,
 "riteshghorse": 1683259578782



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 3373ca1a2c9 Updating config from bot
3373ca1a2c9 is described below

commit 3373ca1a2c99ffa821ca917ef099532f29e860d0
Author: github-actions 
AuthorDate: Fri May 5 05:35:13 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-go.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-go.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
index 763c1e370bf..6284f63f031 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-go.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
@@ -5,6 +5,6 @@
 "jrmccluskey": 1683264897870,
 "youngoli": 1657688896155,
 "damccorm": 1680501930289,
-"riteshghorse": 1683259578782
+"riteshghorse": 1683264909545
   }
 }
\ No newline at end of file



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new eb1e80cfc91 Updating config from bot
eb1e80cfc91 is described below

commit eb1e80cfc919b00d07965e06c4a58f0039369c32
Author: github-actions 
AuthorDate: Fri May 5 05:35:07 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-go.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-go.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
index 7d234de068c..763c1e370bf 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-go.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
@@ -1,7 +1,7 @@
 {
   "label": "go",
   "dateOfLastReviewAssignment": {
-"lostluck": 1683178505233,
+"lostluck": 1683264903762,
 "jrmccluskey": 1683264897870,
 "youngoli": 1657688896155,
 "damccorm": 1680501930289,



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new 35b0c39dce0 Updating config from bot
35b0c39dce0 is described below

commit 35b0c39dce0ebef3987370b5220b8889c22bd62a
Author: github-actions 
AuthorDate: Fri May 5 05:35:19 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/reviewers-for-label-go.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/ci/pr-bot/state/reviewers-for-label-go.json 
b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
index 6284f63f031..de785ddf651 100644
--- a/scripts/ci/pr-bot/state/reviewers-for-label-go.json
+++ b/scripts/ci/pr-bot/state/reviewers-for-label-go.json
@@ -2,7 +2,7 @@
   "label": "go",
   "dateOfLastReviewAssignment": {
 "lostluck": 1683264903762,
-"jrmccluskey": 1683264897870,
+"jrmccluskey": 1683264915148,
 "youngoli": 1657688896155,
 "damccorm": 1680501930289,
 "riteshghorse": 1683264909545



[beam] branch pr-bot-state updated: Updating config from bot

2023-05-04 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch pr-bot-state
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/pr-bot-state by this push:
 new a21aff2fc16 Updating config from bot
a21aff2fc16 is described below

commit a21aff2fc168dba081aed54bd5600a0cd5646a59
Author: github-actions 
AuthorDate: Fri May 5 05:35:16 2023 +

Updating config from bot
---
 scripts/ci/pr-bot/state/pr-state/pr-26565.json | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/scripts/ci/pr-bot/state/pr-state/pr-26565.json 
b/scripts/ci/pr-bot/state/pr-state/pr-26565.json
new file mode 100644
index 000..1c2c2e31975
--- /dev/null
+++ b/scripts/ci/pr-bot/state/pr-state/pr-26565.json
@@ -0,0 +1,10 @@
+{
+  "commentedAboutFailingChecks": false,
+  "reviewersAssignedForLabels": {
+"go": "jrmccluskey"
+  },
+  "nextAction": "Reviewers",
+  "stopReviewerNotifications": false,
+  "remindAfterTestsPass": [],
+  "committerAssigned": false
+}
\ No newline at end of file