File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
main/resources/java-sdk-version
test/java/com/transloadit/sdk Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1- ### Unreleased ###
1+ ### 1.0.1 / 2024-11-28 ###
2+ * Added SDK support for generating signed Smart CDN URLs (see https://transloadit.com/docs/topics/signature-authentication/#smart-cdn ).
3+ This functionality ships as Transloadit#getSignedSmartCDNUrl() - Method.
24* Migrated test suite from JUnit4 to JUnit 5
35* Upgrade okhttp to 4.12.0 as a security update
46
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Existing users should take note of the [JCenter shutdown](https://jfrog.com/blog
2020** Gradle:**
2121
2222``` groovy
23- implementation 'com.transloadit.sdk:transloadit:1.0.0 '
23+ implementation 'com.transloadit.sdk:transloadit:1.0.1 '
2424```
2525
2626** Maven:**
@@ -29,7 +29,7 @@ implementation 'com.transloadit.sdk:transloadit:1.0.0'
2929<dependency >
3030 <groupId >com.transloadit.sdk</groupId >
3131 <artifactId >transloadit</artifactId >
32- <version >1.0.0 </version >
32+ <version >1.0.1 </version >
3333</dependency >
3434```
3535
Original file line number Diff line number Diff line change 1- versionNumber =' 1.0.0 '
1+ versionNumber =' 1.0.1 '
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public void get() throws Exception {
6363 mockServerClient .verify (HttpRequest .request ()
6464 .withPath ("/foo" )
6565 .withMethod ("GET" )
66- .withHeader ("Transloadit-Client" , "java-sdk:1.0.0 " ));
66+ .withHeader ("Transloadit-Client" , "java-sdk:1.0.1 " ));
6767
6868 }
6969
You can’t perform that action at this time.
0 commit comments