Release 1.1.0 - #13
Merged
Merged
Conversation
Set the project version to 1.1.0 and refresh the docs for this release. - Document the File API in the README (feature list, a File Storage usage section, and a "New in 1.1.0" summary covering the HttpClient 5 migration and the removed internal portal endpoints). - Update the install snippets and the JitPack tag example to 1.1.0. - Add the missing static FileOptions.builder() factory, so FileOptions matches the other typed options classes and the documented example compiles. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Covers the full file lifecycle against the test tenant: create with FileOptions, get by uuid and by filename, verify the content round-trips through base64, list with and without a tag filter, replace the tag set, and delete. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Prepares the 1.1.0 release.
Changes
1.1.0-SNAPSHOT→1.1.0inpom.xml.FileOptions.builder(): added the missing static factory. Every other typed options class has one,FileOptionsdid not, so the documentedFileOptions.builder()form did not compile — callers were forced intonew FileOptions.Builder(). Fixed before the release so the API stays consistent.testFileManagementintegration test covering the full file lifecycle — create withFileOptions, get by uuid and by filename, base64 content round-trip, list with and without a tag filter, replace tags, delete.Release contents (since v1.0.0)
preloginUser,loginUser,createCaptcha,getUIConf,getTenantConf) removedVerification
mvn clean package— 13/13 tests pass. The README File Storage example was compile-checked against the built jar.After merge
I'll tag
v1.1.0on the merge commit and create the GitHub Release. Note that main stays at1.1.0(no snapshot bump, per your call) — the workflow deploys on every push to main, so the next push to main will fail its deploy step on a duplicate version until the version is bumped.🤖 Generated with Claude Code