Skip to content

Commit 5d2753c

Browse files
committed
chore: Adding non-java diffs
1 parent c114fb5 commit 5d2753c

2,290 files changed

Lines changed: 83667 additions & 6902 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
docker:
15+
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16+
digest: sha256:6566dc8226f20993af18e5a4e7a2b1ba85a292b02dedb6a1634cf10e1b418fa5
17+
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
docker:
16+
image: "gcr.io/cloud-devrel-public-resources/owlbot-java:latest"
1517

1618
deep-remove-regex:
17-
- "/java-accessapproval/grpc-google-.*/src"
18-
- "/java-accessapproval/proto-google-.*/src"
19-
- "/java-accessapproval/google-.*/src"
20-
- "/java-accessapproval/samples/snippets/generated"
19+
- "/grpc-google-.*/src"
20+
- "/proto-google-.*/src"
21+
- "/google-.*/src"
22+
- "/samples/snippets/generated"
2123

2224
deep-preserve-regex:
23-
- "/java-accessapproval/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/it"
25+
- "/google-cloud-accessapproval/src/test/java/com/google/cloud/accessapproval/v1/it"
2426

2527
deep-copy-regex:
2628
- source: "/google/cloud/accessapproval/(v.*)/.*-java/proto-google-.*/src"
27-
dest: "/owl-bot-staging/java-accessapproval/$1/proto-google-cloud-accessapproval-$1/src"
29+
dest: "/owl-bot-staging/$1/proto-google-cloud-accessapproval-$1/src"
2830
- source: "/google/cloud/accessapproval/(v.*)/.*-java/grpc-google-.*/src"
29-
dest: "/owl-bot-staging/java-accessapproval/$1/grpc-google-cloud-accessapproval-$1/src"
31+
dest: "/owl-bot-staging/$1/grpc-google-cloud-accessapproval-$1/src"
3032
- source: "/google/cloud/accessapproval/(v.*)/.*-java/gapic-google-.*/src"
31-
dest: "/owl-bot-staging/java-accessapproval/$1/google-cloud-accessapproval/src"
33+
dest: "/owl-bot-staging/$1/google-cloud-accessapproval/src"
3234
- source: "/google/cloud/accessapproval/(v.*)/.*-java/samples/snippets/generated"
33-
dest: "/owl-bot-staging/java-accessapproval/$1/samples/snippets/generated"
34-
35-
api-name: accessapproval
35+
dest: "/owl-bot-staging/$1/samples/snippets/generated"

java-accessapproval/.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

java-accessapproval/.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

java-accessapproval/.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

java-accessapproval/.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
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

java-accessapproval/.kokoro/requirements.txt

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

java-accessapproval/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## [2.4.8](https://github.com/googleapis/java-accessapproval/compare/v2.4.7...v2.4.8) (2022-09-21)
4+
5+
6+
### Dependencies
7+
8+
* Update dependency com.google.cloud:google-cloud-core to v2.8.14 ([#817](https://github.com/googleapis/java-accessapproval/issues/817)) ([7423e8c](https://github.com/googleapis/java-accessapproval/commit/7423e8c3975938530abc367cb8a5aef8721d34cd))
9+
10+
## [2.4.7](https://github.com/googleapis/java-accessapproval/compare/v2.4.6...v2.4.7) (2022-09-20)
11+
12+
13+
### Dependencies
14+
15+
* Update dependency com.google.cloud:google-cloud-core to v2.8.13 ([#813](https://github.com/googleapis/java-accessapproval/issues/813)) ([25820fb](https://github.com/googleapis/java-accessapproval/commit/25820fb379c7c286a6c7ae235bbe80c3c10405cd))
16+
17+
## [2.4.6](https://github.com/googleapis/java-accessapproval/compare/v2.4.5...v2.4.6) (2022-09-20)
18+
19+
20+
### Dependencies
21+
22+
* Update dependency com.google.cloud:google-cloud-core to v2.8.12 ([#805](https://github.com/googleapis/java-accessapproval/issues/805)) ([d6a7cf4](https://github.com/googleapis/java-accessapproval/commit/d6a7cf444c50179122e9ad9908a9aa99cf0230bc))
23+
24+
## [2.4.5](https://github.com/googleapis/java-accessapproval/compare/v2.4.4...v2.4.5) (2022-09-15)
25+
26+
27+
### Documentation
28+
29+
* Added Cloud Dataproc and Secret Manager to the list of supported services ([#799](https://github.com/googleapis/java-accessapproval/issues/799)) ([29055aa](https://github.com/googleapis/java-accessapproval/commit/29055aaeef5788e360c074dbca8bea64e04c3426))
30+
31+
32+
### Dependencies
33+
34+
* Update dependency com.google.cloud:google-cloud-core to v2.8.10 ([#797](https://github.com/googleapis/java-accessapproval/issues/797)) ([d550d8f](https://github.com/googleapis/java-accessapproval/commit/d550d8f11116b816820304d5efb2fd4e66a92a01))
35+
* Update dependency com.google.cloud:google-cloud-core to v2.8.11 ([#802](https://github.com/googleapis/java-accessapproval/issues/802)) ([67eb6cc](https://github.com/googleapis/java-accessapproval/commit/67eb6ccf2c64fd0dbc53c64f29af283e0588dadb))
36+
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.2 ([#803](https://github.com/googleapis/java-accessapproval/issues/803)) ([799422a](https://github.com/googleapis/java-accessapproval/commit/799422a6f42cb904e640cd04e4eb533c882ff948))
37+
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.3 ([#806](https://github.com/googleapis/java-accessapproval/issues/806)) ([ca10a33](https://github.com/googleapis/java-accessapproval/commit/ca10a3308abb92b03ff01c5759584c81d59845a6))
38+
339
## [2.4.4](https://github.com/googleapis/java-accessapproval/compare/v2.4.3...v2.4.4) (2022-08-18)
440

541

java-accessapproval/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.1.1</version>
22+
<version>26.1.2</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -41,28 +41,28 @@ If you are using Maven without BOM, add this to your dependencies:
4141
<dependency>
4242
<groupId>com.google.cloud</groupId>
4343
<artifactId>google-cloud-accessapproval</artifactId>
44-
<version>2.4.4</version>
44+
<version>2.4.8</version>
4545
</dependency>
4646

4747
```
4848

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-accessapproval'
5555
```
5656
If you are using Gradle without BOM, add this to your dependencies:
5757

5858
```Groovy
59-
implementation 'com.google.cloud:google-cloud-accessapproval:2.4.4'
59+
implementation 'com.google.cloud:google-cloud-accessapproval:2.4.8'
6060
```
6161

6262
If you are using SBT, add this to your dependencies:
6363

6464
```Scala
65-
libraryDependencies += "com.google.cloud" % "google-cloud-accessapproval" % "2.4.4"
65+
libraryDependencies += "com.google.cloud" % "google-cloud-accessapproval" % "2.4.8"
6666
```
6767

6868
## Authentication

0 commit comments

Comments
 (0)