From 693d8410cb3a7f92dfc7bd4dab891a41f6d4a4fd Mon Sep 17 00:00:00 2001 From: Tomo Suzuki Date: Tue, 19 Apr 2022 13:12:19 -0400 Subject: [PATCH 1/4] ci: configure the protected branch (#1634) Configures CI for branch --- .github/workflows/ci.yaml | 117 ++++++------- .github/workflows/downstream.yaml | 267 +++++++++++++++--------------- 2 files changed, 189 insertions(+), 195 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 83ef7f9c2..9e24c2abc 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,23 +1,8 @@ -# Copyright 2022 Google LLC -# -# Licensed 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. -# Github action job to test core java library features on -# downstream client libraries before they are released. -on: +'on': push: branches: - - main - pull_request: + - 1.41.x + pull_request: null name: ci jobs: units: @@ -25,63 +10,69 @@ jobs: strategy: fail-fast: false matrix: - java: [8, 11, 17] + java: + - 8 + - 11 + - 17 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: ${{matrix.java}} - - run: java -version - - run: .kokoro/build.sh - env: - JOB_TYPE: test + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: ${{matrix.java}} + - run: java -version + - run: .kokoro/build.sh + env: + JOB_TYPE: test windows: runs-on: windows-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: 8 - - run: java -version - - run: .kokoro/build.bat - env: - JOB_TYPE: test + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: 8 + - run: java -version + - run: .kokoro/build.bat + env: + JOB_TYPE: test dependencies: runs-on: ubuntu-latest strategy: matrix: - java: [8, 11, 17] + java: + - 8 + - 11 + - 17 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: ${{matrix.java}} - - run: java -version - - run: .kokoro/dependencies.sh + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: ${{matrix.java}} + - run: java -version + - run: .kokoro/dependencies.sh lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: 11 - - run: java -version - - run: .kokoro/build.sh - env: - JOB_TYPE: lint + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: 11 + - run: java -version + - run: .kokoro/build.sh + env: + JOB_TYPE: lint clirr: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: 8 - - run: java -version - - run: .kokoro/build.sh - env: - JOB_TYPE: clirr + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: 8 + - run: java -version + - run: .kokoro/build.sh + env: + JOB_TYPE: clirr diff --git a/.github/workflows/downstream.yaml b/.github/workflows/downstream.yaml index 1366d24df..63d032f31 100644 --- a/.github/workflows/downstream.yaml +++ b/.github/workflows/downstream.yaml @@ -1,8 +1,9 @@ -on: +'on': pull_request: - types: [ labeled ] + types: + - labeled branches: - - main + - 1.41.x name: downstream jobs: dependencies: @@ -11,134 +12,136 @@ jobs: strategy: fail-fast: false matrix: - java: [8] + java: + - 8 repo: - # This list needs to be updated manually until an automated solution is in place. - - accessapproval - - accesscontextmanager - - aiplatform - - analytics-admin - - analytics-data - - api-gateway - - apigee-connect - - appengine-admin - - area120-tables - - artifact-registry - - asset - - assured-workloads - - automl - - bigquery - - bigqueryconnection - - bigquerydatatransfer - - bigquerymigration - - bigqueryreservation - - bigtable - - billing - - billingbudgets - - binary-authorization - - channel - - cloudbuild - - compute - - contact-center-insights - - container - - containeranalysis - - data-fusion - - datacatalog - - dataflow - - datalabeling - - dataproc - - dataproc-metastore - - datastore - - datastream - - debugger-client - - deploy - - dialogflow - - dialogflow-cx - - dlp - - dms - - dns - - document-ai - - domains - - errorreporting - - essential-contacts - - eventarc - - filestore - - firestore - - functions - - game-servers - - gke-connect-gateway - - gkehub - - gsuite-addons - - iam-admin - - iamcredentials - - iot - - kms - - language - - life-sciences - - logging - - logging-logback - - managed-identities - - mediatranslation - - memcache - - monitoring - - monitoring-dashboards - - network-management - - network-security - - networkconnectivity - - notebooks - - orchestration-airflow - - orgpolicy - - os-config - - os-login - - phishingprotection - - policy-troubleshooter - - private-catalog - - profiler - - pubsublite - - recaptchaenterprise - - recommendations-ai - - recommender - - redis - - resource-settings - - resourcemanager - - retail - - scheduler - - secretmanager - - security-private-ca - - securitycenter - - securitycenter-settings - - service-control - - service-management - - service-usage - - servicedirectory - - shell - - spanner - - spanner-jdbc - - speech - - storage - - storage-nio - - storage-transfer - - talent - - tasks - - texttospeech - - tpu - - trace - - translate - - video-intelligence - - video-transcoder - - vision - - vpcaccess - - webrisk - - websecurityscanner - - workflow-executions - - workflows + - accessapproval + - accesscontextmanager + - aiplatform + - analytics-admin + - analytics-data + - api-gateway + - apigee-connect + - appengine-admin + - area120-tables + - artifact-registry + - asset + - assured-workloads + - automl + - bigquery + - bigqueryconnection + - bigquerydatatransfer + - bigquerymigration + - bigqueryreservation + - bigtable + - billing + - billingbudgets + - binary-authorization + - channel + - cloudbuild + - compute + - contact-center-insights + - container + - containeranalysis + - data-fusion + - datacatalog + - dataflow + - datalabeling + - dataproc + - dataproc-metastore + - datastore + - datastream + - debugger-client + - deploy + - dialogflow + - dialogflow-cx + - dlp + - dms + - dns + - document-ai + - domains + - errorreporting + - essential-contacts + - eventarc + - filestore + - firestore + - functions + - game-servers + - gke-connect-gateway + - gkehub + - gsuite-addons + - iam-admin + - iamcredentials + - iot + - kms + - language + - life-sciences + - logging + - logging-logback + - managed-identities + - mediatranslation + - memcache + - monitoring + - monitoring-dashboards + - network-management + - network-security + - networkconnectivity + - notebooks + - orchestration-airflow + - orgpolicy + - os-config + - os-login + - phishingprotection + - policy-troubleshooter + - private-catalog + - profiler + - pubsublite + - recaptchaenterprise + - recommendations-ai + - recommender + - redis + - resource-settings + - resourcemanager + - retail + - scheduler + - secretmanager + - security-private-ca + - securitycenter + - securitycenter-settings + - service-control + - service-management + - service-usage + - servicedirectory + - shell + - spanner + - spanner-jdbc + - speech + - storage + - storage-nio + - storage-transfer + - talent + - tasks + - texttospeech + - tpu + - trace + - translate + - video-intelligence + - video-transcoder + - vision + - vpcaccess + - webrisk + - websecurityscanner + - workflow-executions + - workflows steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v3 - with: - distribution: zulu - java-version: ${{matrix.java}} - - run: java -version - - run: sudo apt-get update -y - - run: sudo apt-get install libxml2-utils - - run: .kokoro/downstream-client-library-check.sh google-http-client-bom ${{matrix.repo}} + - uses: actions/checkout@v2 + - uses: actions/setup-java@v3 + with: + distribution: zulu + java-version: ${{matrix.java}} + - run: java -version + - run: sudo apt-get update -y + - run: sudo apt-get install libxml2-utils + - run: >- + .kokoro/downstream-client-library-check.sh google-http-client-bom + ${{matrix.repo}} From da9dd8bca97cc10712ce24054d2edd3d5ac2e571 Mon Sep 17 00:00:00 2001 From: Tomo Suzuki Date: Fri, 29 Apr 2022 15:56:47 -0400 Subject: [PATCH 2/4] deps: downgrade appengine to 1.9.X (#1645) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ca03c3d2a..458ab4ba3 100644 --- a/pom.xml +++ b/pom.xml @@ -561,7 +561,7 @@ - Internally, update the default features.json file --> 1.41.7 - 2.0.4 + 1.9.96 UTF-8 3.0.2 2.9.0 From c7da6f30af1cd102918d27853550e5c80d6d6274 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Fri, 29 Apr 2022 20:04:10 +0000 Subject: [PATCH 3/4] chore(1.41.x): release 1.41.8-SNAPSHOT (#1635) :robot: I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- google-http-client-android-test/pom.xml | 6 ++-- google-http-client-android/pom.xml | 4 +-- google-http-client-apache-v2/pom.xml | 4 +-- google-http-client-appengine/pom.xml | 4 +-- google-http-client-assembly/pom.xml | 4 +-- google-http-client-bom/pom.xml | 22 +++++++-------- google-http-client-findbugs/pom.xml | 4 +-- google-http-client-gson/pom.xml | 4 +-- google-http-client-jackson2/pom.xml | 4 +-- google-http-client-protobuf/pom.xml | 4 +-- google-http-client-test/pom.xml | 4 +-- google-http-client-xml/pom.xml | 4 +-- google-http-client/pom.xml | 4 +-- pom.xml | 4 +-- .../dailymotion-simple-cmdline-sample/pom.xml | 2 +- versions.txt | 28 +++++++++---------- 16 files changed, 53 insertions(+), 53 deletions(-) diff --git a/google-http-client-android-test/pom.xml b/google-http-client-android-test/pom.xml index e0e686dbd..4e8ba9246 100644 --- a/google-http-client-android-test/pom.xml +++ b/google-http-client-android-test/pom.xml @@ -4,7 +4,7 @@ google-http-client google-http-client-android-test Test project for google-http-client-android. - 1.41.7 + 1.41.8-SNAPSHOT apk @@ -53,7 +53,7 @@ com.google.http-client google-http-client-android - 1.41.7 + 1.41.8-SNAPSHOT android @@ -72,7 +72,7 @@ com.google.http-client google-http-client-test - 1.41.7 + 1.41.8-SNAPSHOT junit diff --git a/google-http-client-android/pom.xml b/google-http-client-android/pom.xml index 06820ccce..222357aef 100644 --- a/google-http-client-android/pom.xml +++ b/google-http-client-android/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-android - 1.41.7 + 1.41.8-SNAPSHOT Android Platform Extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-apache-v2/pom.xml b/google-http-client-apache-v2/pom.xml index eb5c83373..6721e64e7 100644 --- a/google-http-client-apache-v2/pom.xml +++ b/google-http-client-apache-v2/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-apache-v2 - 1.41.7 + 1.41.8-SNAPSHOT Apache HTTP transport v2 for the Google HTTP Client Library for Java. diff --git a/google-http-client-appengine/pom.xml b/google-http-client-appengine/pom.xml index acf0dfdb5..e95102967 100644 --- a/google-http-client-appengine/pom.xml +++ b/google-http-client-appengine/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-appengine - 1.41.7 + 1.41.8-SNAPSHOT Google App Engine extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-assembly/pom.xml b/google-http-client-assembly/pom.xml index 7c03aa82a..2dcf18198 100644 --- a/google-http-client-assembly/pom.xml +++ b/google-http-client-assembly/pom.xml @@ -4,12 +4,12 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml com.google.http-client google-http-client-assembly - 1.41.7 + 1.41.8-SNAPSHOT pom Assembly for the Google HTTP Client Library for Java diff --git a/google-http-client-bom/pom.xml b/google-http-client-bom/pom.xml index b13e89eb4..9a21d04d4 100644 --- a/google-http-client-bom/pom.xml +++ b/google-http-client-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.http-client google-http-client-bom - 1.41.7 + 1.41.8-SNAPSHOT pom Google HTTP Client Library for Java BOM @@ -63,52 +63,52 @@ com.google.http-client google-http-client - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-android - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-apache-v2 - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-appengine - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-findbugs - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-gson - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-jackson2 - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-protobuf - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-test - 1.41.7 + 1.41.8-SNAPSHOT com.google.http-client google-http-client-xml - 1.41.7 + 1.41.8-SNAPSHOT diff --git a/google-http-client-findbugs/pom.xml b/google-http-client-findbugs/pom.xml index 7733619d6..c13a58c67 100644 --- a/google-http-client-findbugs/pom.xml +++ b/google-http-client-findbugs/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-findbugs - 1.41.7 + 1.41.8-SNAPSHOT Google APIs Client Library Findbugs custom plugin. diff --git a/google-http-client-gson/pom.xml b/google-http-client-gson/pom.xml index 658a36773..8296c8732 100644 --- a/google-http-client-gson/pom.xml +++ b/google-http-client-gson/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-gson - 1.41.7 + 1.41.8-SNAPSHOT GSON extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-jackson2/pom.xml b/google-http-client-jackson2/pom.xml index f8160f625..b0a15f312 100644 --- a/google-http-client-jackson2/pom.xml +++ b/google-http-client-jackson2/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-jackson2 - 1.41.7 + 1.41.8-SNAPSHOT Jackson 2 extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-protobuf/pom.xml b/google-http-client-protobuf/pom.xml index e5a1dbe6c..8b6bf3fc3 100644 --- a/google-http-client-protobuf/pom.xml +++ b/google-http-client-protobuf/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-protobuf - 1.41.7 + 1.41.8-SNAPSHOT Protocol Buffer extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-test/pom.xml b/google-http-client-test/pom.xml index ff94ef724..4e3e880d6 100644 --- a/google-http-client-test/pom.xml +++ b/google-http-client-test/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-test - 1.41.7 + 1.41.8-SNAPSHOT Shared classes used for testing of artifacts in the Google HTTP Client Library for Java. diff --git a/google-http-client-xml/pom.xml b/google-http-client-xml/pom.xml index f9052874d..a55c2937f 100644 --- a/google-http-client-xml/pom.xml +++ b/google-http-client-xml/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client-xml - 1.41.7 + 1.41.8-SNAPSHOT XML extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client/pom.xml b/google-http-client/pom.xml index c394333db..014a337d1 100644 --- a/google-http-client/pom.xml +++ b/google-http-client/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../pom.xml google-http-client - 1.41.7 + 1.41.8-SNAPSHOT Google HTTP Client Library for Java Google HTTP Client Library for Java. Functionality that works on all supported Java platforms, diff --git a/pom.xml b/pom.xml index 458ab4ba3..b2cdf7ac8 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT pom Parent for the Google HTTP Client Library for Java Google HTTP Client Library for Java @@ -560,7 +560,7 @@ - google-api-java-client/google-api-client-assembly/android-properties (make the filenames match the version here) - Internally, update the default features.json file --> - 1.41.7 + 1.41.8-SNAPSHOT 1.9.96 UTF-8 3.0.2 diff --git a/samples/dailymotion-simple-cmdline-sample/pom.xml b/samples/dailymotion-simple-cmdline-sample/pom.xml index d8d700410..f9710ecee 100644 --- a/samples/dailymotion-simple-cmdline-sample/pom.xml +++ b/samples/dailymotion-simple-cmdline-sample/pom.xml @@ -4,7 +4,7 @@ com.google.http-client google-http-client-parent - 1.41.7 + 1.41.8-SNAPSHOT ../../pom.xml dailymotion-simple-cmdline-sample diff --git a/versions.txt b/versions.txt index de91a3e38..e8042266f 100644 --- a/versions.txt +++ b/versions.txt @@ -1,17 +1,17 @@ # Format: # module:released-version:current-version -google-http-client:1.41.7:1.41.7 -google-http-client-bom:1.41.7:1.41.7 -google-http-client-parent:1.41.7:1.41.7 -google-http-client-android:1.41.7:1.41.7 -google-http-client-android-test:1.41.7:1.41.7 -google-http-client-apache-v2:1.41.7:1.41.7 -google-http-client-appengine:1.41.7:1.41.7 -google-http-client-assembly:1.41.7:1.41.7 -google-http-client-findbugs:1.41.7:1.41.7 -google-http-client-gson:1.41.7:1.41.7 -google-http-client-jackson2:1.41.7:1.41.7 -google-http-client-protobuf:1.41.7:1.41.7 -google-http-client-test:1.41.7:1.41.7 -google-http-client-xml:1.41.7:1.41.7 +google-http-client:1.41.7:1.41.8-SNAPSHOT +google-http-client-bom:1.41.7:1.41.8-SNAPSHOT +google-http-client-parent:1.41.7:1.41.8-SNAPSHOT +google-http-client-android:1.41.7:1.41.8-SNAPSHOT +google-http-client-android-test:1.41.7:1.41.8-SNAPSHOT +google-http-client-apache-v2:1.41.7:1.41.8-SNAPSHOT +google-http-client-appengine:1.41.7:1.41.8-SNAPSHOT +google-http-client-assembly:1.41.7:1.41.8-SNAPSHOT +google-http-client-findbugs:1.41.7:1.41.8-SNAPSHOT +google-http-client-gson:1.41.7:1.41.8-SNAPSHOT +google-http-client-jackson2:1.41.7:1.41.8-SNAPSHOT +google-http-client-protobuf:1.41.7:1.41.8-SNAPSHOT +google-http-client-test:1.41.7:1.41.8-SNAPSHOT +google-http-client-xml:1.41.7:1.41.8-SNAPSHOT From a76ecd9aeb722f5949712fea5d190abae6e84d92 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Mon, 2 May 2022 20:04:10 +0000 Subject: [PATCH 4/4] chore(1.41.x): release 1.41.8 (#1646) :robot: I have created a release *beep* *boop* --- ### [1.41.8](https://github.com/googleapis/google-http-java-client/compare/v1.41.7...v1.41.8) (2022-04-29) ### Dependencies * downgrade appengine to 1.9.X ([#1645](https://github.com/googleapis/google-http-java-client/issues/1645)) ([da9dd8b](https://github.com/googleapis/google-http-java-client/commit/da9dd8bca97cc10712ce24054d2edd3d5ac2e571)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --- CHANGELOG.md | 7 +++++ google-http-client-android-test/pom.xml | 6 ++-- google-http-client-android/pom.xml | 4 +-- google-http-client-apache-v2/pom.xml | 4 +-- google-http-client-appengine/pom.xml | 4 +-- google-http-client-assembly/pom.xml | 4 +-- google-http-client-bom/pom.xml | 22 +++++++-------- google-http-client-findbugs/pom.xml | 4 +-- google-http-client-gson/pom.xml | 4 +-- google-http-client-jackson2/pom.xml | 4 +-- google-http-client-protobuf/pom.xml | 4 +-- google-http-client-test/pom.xml | 4 +-- google-http-client-xml/pom.xml | 4 +-- google-http-client/pom.xml | 4 +-- pom.xml | 4 +-- .../dailymotion-simple-cmdline-sample/pom.xml | 2 +- versions.txt | 28 +++++++++---------- 17 files changed, 60 insertions(+), 53 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6263271..dd6b9582a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [1.41.8](https://github.com/googleapis/google-http-java-client/compare/v1.41.7...v1.41.8) (2022-04-29) + + +### Dependencies + +* downgrade appengine to 1.9.X ([#1645](https://github.com/googleapis/google-http-java-client/issues/1645)) ([da9dd8b](https://github.com/googleapis/google-http-java-client/commit/da9dd8bca97cc10712ce24054d2edd3d5ac2e571)) + ### [1.41.7](https://github.com/googleapis/google-http-java-client/compare/v1.41.6...v1.41.7) (2022-04-11) diff --git a/google-http-client-android-test/pom.xml b/google-http-client-android-test/pom.xml index 4e8ba9246..55b590c25 100644 --- a/google-http-client-android-test/pom.xml +++ b/google-http-client-android-test/pom.xml @@ -4,7 +4,7 @@ google-http-client google-http-client-android-test Test project for google-http-client-android. - 1.41.8-SNAPSHOT + 1.41.8 apk @@ -53,7 +53,7 @@ com.google.http-client google-http-client-android - 1.41.8-SNAPSHOT + 1.41.8 android @@ -72,7 +72,7 @@ com.google.http-client google-http-client-test - 1.41.8-SNAPSHOT + 1.41.8 junit diff --git a/google-http-client-android/pom.xml b/google-http-client-android/pom.xml index 222357aef..46dcceef1 100644 --- a/google-http-client-android/pom.xml +++ b/google-http-client-android/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-android - 1.41.8-SNAPSHOT + 1.41.8 Android Platform Extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-apache-v2/pom.xml b/google-http-client-apache-v2/pom.xml index 6721e64e7..b4ec3a7d6 100644 --- a/google-http-client-apache-v2/pom.xml +++ b/google-http-client-apache-v2/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-apache-v2 - 1.41.8-SNAPSHOT + 1.41.8 Apache HTTP transport v2 for the Google HTTP Client Library for Java. diff --git a/google-http-client-appengine/pom.xml b/google-http-client-appengine/pom.xml index e95102967..7732b0603 100644 --- a/google-http-client-appengine/pom.xml +++ b/google-http-client-appengine/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-appengine - 1.41.8-SNAPSHOT + 1.41.8 Google App Engine extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-assembly/pom.xml b/google-http-client-assembly/pom.xml index 2dcf18198..57121fbb6 100644 --- a/google-http-client-assembly/pom.xml +++ b/google-http-client-assembly/pom.xml @@ -4,12 +4,12 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml com.google.http-client google-http-client-assembly - 1.41.8-SNAPSHOT + 1.41.8 pom Assembly for the Google HTTP Client Library for Java diff --git a/google-http-client-bom/pom.xml b/google-http-client-bom/pom.xml index 9a21d04d4..016df21c8 100644 --- a/google-http-client-bom/pom.xml +++ b/google-http-client-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.http-client google-http-client-bom - 1.41.8-SNAPSHOT + 1.41.8 pom Google HTTP Client Library for Java BOM @@ -63,52 +63,52 @@ com.google.http-client google-http-client - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-android - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-apache-v2 - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-appengine - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-findbugs - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-gson - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-jackson2 - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-protobuf - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-test - 1.41.8-SNAPSHOT + 1.41.8 com.google.http-client google-http-client-xml - 1.41.8-SNAPSHOT + 1.41.8 diff --git a/google-http-client-findbugs/pom.xml b/google-http-client-findbugs/pom.xml index c13a58c67..3aaa7a02c 100644 --- a/google-http-client-findbugs/pom.xml +++ b/google-http-client-findbugs/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-findbugs - 1.41.8-SNAPSHOT + 1.41.8 Google APIs Client Library Findbugs custom plugin. diff --git a/google-http-client-gson/pom.xml b/google-http-client-gson/pom.xml index 8296c8732..d5e44cac9 100644 --- a/google-http-client-gson/pom.xml +++ b/google-http-client-gson/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-gson - 1.41.8-SNAPSHOT + 1.41.8 GSON extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-jackson2/pom.xml b/google-http-client-jackson2/pom.xml index b0a15f312..e5b166f16 100644 --- a/google-http-client-jackson2/pom.xml +++ b/google-http-client-jackson2/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-jackson2 - 1.41.8-SNAPSHOT + 1.41.8 Jackson 2 extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-protobuf/pom.xml b/google-http-client-protobuf/pom.xml index 8b6bf3fc3..a43874cb3 100644 --- a/google-http-client-protobuf/pom.xml +++ b/google-http-client-protobuf/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-protobuf - 1.41.8-SNAPSHOT + 1.41.8 Protocol Buffer extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client-test/pom.xml b/google-http-client-test/pom.xml index 4e3e880d6..c4e143253 100644 --- a/google-http-client-test/pom.xml +++ b/google-http-client-test/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-test - 1.41.8-SNAPSHOT + 1.41.8 Shared classes used for testing of artifacts in the Google HTTP Client Library for Java. diff --git a/google-http-client-xml/pom.xml b/google-http-client-xml/pom.xml index a55c2937f..d1eede331 100644 --- a/google-http-client-xml/pom.xml +++ b/google-http-client-xml/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client-xml - 1.41.8-SNAPSHOT + 1.41.8 XML extensions to the Google HTTP Client Library for Java. diff --git a/google-http-client/pom.xml b/google-http-client/pom.xml index 014a337d1..50f7568cb 100644 --- a/google-http-client/pom.xml +++ b/google-http-client/pom.xml @@ -4,11 +4,11 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../pom.xml google-http-client - 1.41.8-SNAPSHOT + 1.41.8 Google HTTP Client Library for Java Google HTTP Client Library for Java. Functionality that works on all supported Java platforms, diff --git a/pom.xml b/pom.xml index b2cdf7ac8..a407df19f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 pom Parent for the Google HTTP Client Library for Java Google HTTP Client Library for Java @@ -560,7 +560,7 @@ - google-api-java-client/google-api-client-assembly/android-properties (make the filenames match the version here) - Internally, update the default features.json file --> - 1.41.8-SNAPSHOT + 1.41.8 1.9.96 UTF-8 3.0.2 diff --git a/samples/dailymotion-simple-cmdline-sample/pom.xml b/samples/dailymotion-simple-cmdline-sample/pom.xml index f9710ecee..27a146eb9 100644 --- a/samples/dailymotion-simple-cmdline-sample/pom.xml +++ b/samples/dailymotion-simple-cmdline-sample/pom.xml @@ -4,7 +4,7 @@ com.google.http-client google-http-client-parent - 1.41.8-SNAPSHOT + 1.41.8 ../../pom.xml dailymotion-simple-cmdline-sample diff --git a/versions.txt b/versions.txt index e8042266f..0afd77ac7 100644 --- a/versions.txt +++ b/versions.txt @@ -1,17 +1,17 @@ # Format: # module:released-version:current-version -google-http-client:1.41.7:1.41.8-SNAPSHOT -google-http-client-bom:1.41.7:1.41.8-SNAPSHOT -google-http-client-parent:1.41.7:1.41.8-SNAPSHOT -google-http-client-android:1.41.7:1.41.8-SNAPSHOT -google-http-client-android-test:1.41.7:1.41.8-SNAPSHOT -google-http-client-apache-v2:1.41.7:1.41.8-SNAPSHOT -google-http-client-appengine:1.41.7:1.41.8-SNAPSHOT -google-http-client-assembly:1.41.7:1.41.8-SNAPSHOT -google-http-client-findbugs:1.41.7:1.41.8-SNAPSHOT -google-http-client-gson:1.41.7:1.41.8-SNAPSHOT -google-http-client-jackson2:1.41.7:1.41.8-SNAPSHOT -google-http-client-protobuf:1.41.7:1.41.8-SNAPSHOT -google-http-client-test:1.41.7:1.41.8-SNAPSHOT -google-http-client-xml:1.41.7:1.41.8-SNAPSHOT +google-http-client:1.41.8:1.41.8 +google-http-client-bom:1.41.8:1.41.8 +google-http-client-parent:1.41.8:1.41.8 +google-http-client-android:1.41.8:1.41.8 +google-http-client-android-test:1.41.8:1.41.8 +google-http-client-apache-v2:1.41.8:1.41.8 +google-http-client-appengine:1.41.8:1.41.8 +google-http-client-assembly:1.41.8:1.41.8 +google-http-client-findbugs:1.41.8:1.41.8 +google-http-client-gson:1.41.8:1.41.8 +google-http-client-jackson2:1.41.8:1.41.8 +google-http-client-protobuf:1.41.8:1.41.8 +google-http-client-test:1.41.8:1.41.8 +google-http-client-xml:1.41.8:1.41.8