-
Notifications
You must be signed in to change notification settings - Fork 84
Comparing changes
Open a pull request
base repository: googleapis/java-storage
base: v2.25.0
head repository: googleapis/java-storage
compare: v2.26.0
- 17 commits
- 58 files changed
- 6 contributors
Commits on Jul 24, 2023
-
chore(deps): update dependency com.google.cloud:google-cloud-storage …
…to v2.25.0 (#2136) * chore(deps): update dependency com.google.cloud:google-cloud-storage to v2.25.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 2bffbfb - Browse repository at this point
Copy the full SHA 2bffbfbView commit details -
chore(main): release 2.25.1-SNAPSHOT (#2135)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8cce2e0 - Browse repository at this point
Copy the full SHA 8cce2e0View commit details
Commits on Jul 25, 2023
-
feat: introduce new BlobWriteSession (#2123)
When writing a new Blob to GCS, there are secondary session related state and actions which can't be represented by WriteChannel. BlobWriteSession provides a new construct to allow retrieving the resultant object which is created after the WritableByteChannel is closed. Along with the new session, configuration for this is now performed at the StorageOptions level where cross session considerations can influence the implementation of the returned session. The configurable option present for this new StorageWriterConfig is chunkSize. In the future new configurations will be added with their corresponding options. For example, in a future release it will be possible to change from in memory buffering to instead buffer to disk thereby reducing heap usage.
Configuration menu - View commit details
-
Copy full SHA for e0191b5 - Browse repository at this point
Copy the full SHA e0191b5View commit details
Commits on Jul 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b61a976 - Browse repository at this point
Copy the full SHA b61a976View commit details
Commits on Jul 28, 2023
-
chore: remove manual grpc version management (#2149)
Now that shared-dependencies is tracking grpc 1.56.1 we no longer need to override it ourselves.
Configuration menu - View commit details
-
Copy full SHA for 0b52f90 - Browse repository at this point
Copy the full SHA 0b52f90View commit details -
chore: update BlobWriteSessionConfig to implement Serializable (#2147)
BlobWriteSessionConfig needs to implement Serializable because it plugs into StorageOptions which is Serializable. Not sure, how the SerializationTest was passing when the PR was posted and now fails on main.
Configuration menu - View commit details
-
Copy full SHA for df9a154 - Browse repository at this point
Copy the full SHA df9a154View commit details
Commits on Jul 31, 2023
-
chore: optimize resumable uploads to allow sending bytes during final…
…ization (#2146) Add new methods to UnbufferedWritableByteChannel to allow writing and closing in a single call * writeAndClose(ByteBuffer) * writeAndClose(ByteBuffer[]) * writeAndClose(ByteBuffer[], int, int) Update grpc and json implementation to leverage new methods and to write and finalize in the same call. DefaultBufferedWritableByteChannel will use the new methods as appropriate.
Configuration menu - View commit details
-
Copy full SHA for b318075 - Browse repository at this point
Copy the full SHA b318075View commit details -
chore: introduce Throughput and ThroughputSink (#2138)
_Pre-work_ In some upcoming work we want to be able to keep a running window of throughput performance in order to provide improved throughput. This PR introduces a new utility class to model and compute throughput, and the concept of a ThroughputSink which values can be appended to.
Configuration menu - View commit details
-
Copy full SHA for a422a70 - Browse repository at this point
Copy the full SHA a422a70View commit details -
feat: implement BufferToDiskThenUpload BlobWriteSessionConfig (#2139)
There are scenarios in which disk space is more plentiful than memory space. This new BlobWriteSessionConfig allows augmenting an instance of storage to prefer buffering to disk rather than keeping things in memory. Once the file on disk is closed, the entire file will then be uploaded to GCS.
Configuration menu - View commit details
-
Copy full SHA for 4dad2d5 - Browse repository at this point
Copy the full SHA 4dad2d5View commit details
Commits on Aug 2, 2023
-
chore(deps): update dependency com.google.cloud:libraries-bom to v26.…
…21.0 (#2144) * chore(deps): update dependency com.google.cloud:libraries-bom to v26.21.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cdf4e26 - Browse repository at this point
Copy the full SHA cdf4e26View commit details -
build(deps): bump certifi from 2023.5.7 to 2023.7.22 in /synthtool/gc…
…p/templates/java_library/.kokoro (#1837) (#2143) build(deps): bump certifi Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2023.7.22. - [Commits](certifi/python-certifi@2023.05.07...2023.07.22) --- updated-dependencies: - dependency-name: certifi dependency-type: indirect ... Source-Link: googleapis/synthtool@d85e1d6 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:3a95f1b9b1102865ca551b76be51d2bdb850900c4db2f6d79269e7af81ac8f84 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f00f843 - Browse repository at this point
Copy the full SHA f00f843View commit details -
Configuration menu - View commit details
-
Copy full SHA for 330e795 - Browse repository at this point
Copy the full SHA 330e795View commit details -
build(deps): bump cryptography from 41.0.2 to 41.0.3 in /.kokoro (#2152)
* build(deps): bump cryptography from 41.0.2 to 41.0.3 in /.kokoro Bumps [cryptography](https://github.com/pyca/cryptography) from 41.0.2 to 41.0.3. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@41.0.2...41.0.3) --- updated-dependencies: - dependency-name: cryptography dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4d8dd89 - Browse repository at this point
Copy the full SHA 4d8dd89View commit details -
Configuration menu - View commit details
-
Copy full SHA for a1c8905 - Browse repository at this point
Copy the full SHA a1c8905View commit details -
deps: update dependency com.google.cloud:google-cloud-shared-dependen…
…cies to v3.14.0 (#2151)
Configuration menu - View commit details
-
Copy full SHA for eba8b6a - Browse repository at this point
Copy the full SHA eba8b6aView commit details
Commits on Aug 3, 2023
-
fix: possible NPE when HttpStorageOptions deserialized (#2153)
Java can dedupe objects in a cyclic traversal, retryingDepsAdapter doesn't need to be transient. b/294399427
Configuration menu - View commit details
-
Copy full SHA for 68ad8e7 - Browse repository at this point
Copy the full SHA 68ad8e7View commit details -
chore(main): release 2.26.0 (#2140)
* chore(main): release 2.26.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e1ce76f - Browse repository at this point
Copy the full SHA e1ce76fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.25.0...v2.26.0