Skip to content

Commit c6786a0

Browse files
Nbehrens/merge public back to private (#110)
* Push to artifactory and other package updates * Add new BAL capabilities to the private SDK (#106) * Set maven build to be published with a URL from parameters (#107) * update public version to snapshot * Update ci_cd.yml to use ubuntu-latest runner in public branch * Add quotes around runner values in ci_cd yml * Update changelog and 6.4.0 release version * 6.5.0-snapshot * Add links for tags and unreleased * Set version back to -PRIVATE --------- Co-authored-by: Rena Hryckewicz <[email protected]>
1 parent 340e5ae commit c6786a0

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/ci_cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ env:
2222

2323
jobs:
2424
build:
25-
runs-on: self-hosted
25+
runs-on: ${{ github.repository == 'Backblaze/b2-sdk-java-private' && 'self-hosted'|| 'ubuntu-latest' }}
2626
steps:
2727
- uses: actions/checkout@v4
2828
with:

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
2-
## [Unreleased] - TBD
2+
## [6.5.0] - TBD
3+
## [6.4.0] - 2025-05-14
4+
### Added
5+
* Add `readBucketLogging` and `writeBucketLogging` capabilities.
6+
* Close idle connections after 4 seconds of inactivity.
7+
38
## [6.3.0] - 2024-11-08
49
### Added
510
* Fixed `B2StorageClient.deleteAllFilesInBucket` so it uses `fileVersions` instead of `fileNames`.
@@ -241,7 +246,8 @@
241246
* These changes were driven by switching our internal b2-sdk uses to use the http client from the sdk instead of a
242247
different, custom interface.
243248

244-
[Unreleased]: https://github.com/Backblaze/b2-sdk-java/compare/v6.2.1...HEAD
249+
[Unreleased]: https://github.com/Backblaze/b2-sdk-java/compare/v6.4.0...HEAD
250+
[6.4.0]: https://github.com/Backblaze/b2-sdk-java/releases/tag/v6.4.0
245251
[6.3.0]: https://github.com/Backblaze/b2-sdk-java/releases/tag/v6.3.0
246252
[6.2.1]: https://github.com/Backblaze/b2-sdk-java/releases/tag/v6.2.1
247253
[6.2.0]: https://github.com/Backblaze/b2-sdk-java/releases/tag/v6.2.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Copyright 2022, Backblaze Inc. All Rights Reserved.
22
# License https://www.backblaze.com/using_b2_code.html
33

4-
version=6.4.0-PRIVATE
4+
version=6.5.0-PRIVATE
55
group=com.backblaze.b2

0 commit comments

Comments
 (0)