| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,11 @@ | |||
| 1 | + 2.1.0 / 2025-01-20 | ||
| 2 | + ================== | ||
| 3 | + | ||
| 4 | + * Fix Http client proxy | ||
| 5 | + * Fix Http client system properties support | ||
| 6 | + * Add Cloudinary constructor for `Configuration` | ||
| 7 | + * Fix Register strategy functions | ||
| 8 | + | ||
| 1 | 9 | 2.0.0 / 2024-09-29 | |
| 2 | 10 | ================== | |
| 3 | 11 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -28,7 +28,7 @@ For the complete documentation, see the [Java SDK Guide](https://cloudinary.com/ | |||
| 28 | 28 | | SDK Version | Java 6+ | Java 8 | | |
| 29 | 29 | |----------------|---------|--------| | |
| 30 | 30 | | 1.1.0 - 1.39.0 | V | | | |
| 31 | - | 2.0.0 | | V | | ||
| 31 | + | 2.0.0+ | | V | | ||
| 32 | 32 | ||
| 33 | 33 | ||
| 34 | 34 | ||
@@ -39,7 +39,7 @@ The cloudinary_java library is available in [Maven Central](https://mvnrepositor | |||
| 39 | 39 | <dependency> | |
| 40 | 40 | <groupId>com.cloudinary</groupId> | |
| 41 | 41 | <artifactId>cloudinary-http45</artifactId> | |
| 42 | - <version>2.0.0</version> | ||
| 42 | + <version>2.1.0</version> | ||
| 43 | 43 | </dependency> | |
| 44 | 44 | ``` | |
| 45 | 45 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -32,7 +32,7 @@ public class Cloudinary { | |||
| 32 | 32 | public final static String AKAMAI_SHARED_CDN = "res.cloudinary.com"; | |
| 33 | 33 | public final static String SHARED_CDN = AKAMAI_SHARED_CDN; | |
| 34 | 34 | ||
| 35 | - public final static String VERSION = "2.0.0"; | ||
| 35 | + public final static String VERSION = "2.1.0"; | ||
| 36 | 36 | static String USER_AGENT_PREFIX = "CloudinaryJava"; | |
| 37 | 37 | public final static String USER_AGENT_JAVA_VERSION = "(Java " + System.getProperty("java.version") + ")"; | |
| 38 | 38 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,7 @@ developerEmail=info@cloudinary.com | |||
| 13 | 13 | ||
| 14 | 14 | # These two properties must use these exact names to be compatible with 'gradle install' plugin. | |
| 15 | 15 | group=com.cloudinary | |
| 16 | - version=2.0.0 | ||
| 16 | + version=2.1.0 | ||
| 17 | 17 | ||
| 18 | 18 | gnsp.disableApplyOnlyOnRootProjectEnforcement=true | |
| 19 | 19 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments