Skip to content

Commit fc7643c

Browse files
chore: generate libraries at Wed Feb 11 15:51:29 UTC 2026
1 parent 989671c commit fc7643c

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/renovate_config_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '24'
19+
node-version: '22'
2020

2121
- name: Install Renovate and Config Validator
2222
run: |

README.md

Lines changed: 3 additions & 3 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.74.0</version>
22+
<version>26.75.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -46,12 +46,12 @@ If you are using Maven without the BOM, add this to your dependencies:
4646
<dependency>
4747
<groupId>com.google.cloud</groupId>
4848
<artifactId>google-cloud-storage</artifactId>
49-
<version>2.62.0</version>
49+
<version>2.62.1</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.google.cloud</groupId>
5353
<artifactId>google-cloud-storage-control</artifactId>
54-
<version>2.62.0</version>
54+
<version>2.62.1</version>
5555
</dependency>
5656

5757
```

google-cloud-storage/src/main/java/com/google/cloud/storage/transfermanager/PathTraversalBlockedException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public PathTraversalBlockedException(String objectName, Path targetDirectory) {
2929
super(
3030
String.format(
3131
Locale.US,
32-
"Download of object '%s' was blocked because it would escape the target directory '%s'.",
32+
"Download of object '%s' was blocked because it would escape the target directory"
33+
+ " '%s'.",
3334
objectName,
3435
targetDirectory));
3536
}

0 commit comments

Comments
 (0)