Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commit 774f2fc

Browse files
chore: exclude requirements.txt file from renovate-bot (#1594) (#791)
Source-Link: googleapis/synthtool@f58d313 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:f14e3fefe8e361e85752bd9890c8e56f2fe25f1e89cbb9597e4e3c7a429203a3
1 parent 144a9ee commit 774f2fc

9 files changed

Lines changed: 493 additions & 6 deletions

File tree

.github/.OwlBot.lock.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
# limitations under the License.
1414
docker:
1515
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest: sha256:7a9a7eb50ca2af5bfffab3abd2f38d408735c990a74bacf9b7fde2af0a086a0b
17-
# created: 2022-08-01T15:27:14.757266067Z
16+
digest: sha256:f14e3fefe8e361e85752bd9890c8e56f2fe25f1e89cbb9597e4e3c7a429203a3

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@
88

99
# The java-samples-reviewers team is the default owner for samples changes
1010
samples/**/*.java @googleapis/java-samples-reviewers
11+
12+
# Generated snippets should not be owned by samples reviewers
13+
samples/snippets/generated/ @googleapis/yoshi-java

.kokoro/release/publish_javadoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828
pushd $(dirname "$0")/../../
2929

3030
# install docuploader package
31-
python3 -m pip install gcp-docuploader
31+
python3 -m pip install --require-hashes -r .kokoro/requirements.txt
3232

3333
# compile all packages
3434
mvn clean install -B -q -DskipTests=true

.kokoro/release/publish_javadoc11.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828
pushd $(dirname "$0")/../../
2929

3030
# install docuploader package
31-
python3 -m pip install gcp-docuploader
31+
python3 -m pip install --require-hashes -r .kokoro/requirements.txt
3232

3333
# compile all packages
3434
mvn clean install -B -q -DskipTests=true

.kokoro/release/stage.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
set -eo pipefail
1717

1818
# Start the releasetool reporter
19-
python3 -m pip install gcp-releasetool
19+
requirementsFile=$(realpath $(dirname "${BASH_SOURCE[0]}")/../requirements.txt)
20+
python3 -m pip install --require-hashes -r $requirementsFile
2021
python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script
2122

2223
source $(dirname "$0")/common.sh

.kokoro/requirements.in

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
gcp-docuploader==0.6.3
2+
google-crc32c==1.3.0
3+
googleapis-common-protos==1.56.3
4+
gcp-releasetool==1.8.7
5+
cachetools==4.2.4
6+
cffi==1.15.1
7+
jeepney==0.7.1
8+
jinja2==3.0.3
9+
markupsafe==2.0.1
10+
keyring==23.4.1
11+
packaging==21.3
12+
protobuf==3.19.5
13+
pyjwt==2.4.0
14+
pyparsing==3.0.9
15+
pycparser==2.21
16+
pyperclip==1.8.2
17+
python-dateutil==2.8.2
18+
requests==2.27.1
19+
importlib-metadata==4.8.3
20+
zipp==3.6.0
21+
google_api_core==2.8.2
22+
google-cloud-storage==2.0.0
23+
google-cloud-core==2.3.1
24+
typing-extensions==4.1.1
25+
urllib3==1.26.12
26+
zipp==3.6.0
27+
rsa==4.9
28+
six==1.16.0
29+
attrs==22.1.0
30+
google-auth==2.11.0
31+
idna==3.4

.kokoro/requirements.txt

Lines changed: 452 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ If you are using Maven without BOM, add this to your dependencies:
4949
If you are using Gradle 5.x or later, add this to your dependencies:
5050

5151
```Groovy
52-
implementation platform('com.google.cloud:libraries-bom:26.1.1')
52+
implementation platform('com.google.cloud:libraries-bom:26.1.2')
5353
5454
implementation 'com.google.cloud:google-cloud-container'
5555
```

renovate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
":maintainLockFilesDisabled",
1111
":autodetectPinVersions"
1212
],
13+
"ignorePaths": [".kokoro/requirements.txt"],
1314
"packageRules": [
1415
{
1516
"packagePatterns": [

0 commit comments

Comments
 (0)