File tree Expand file tree Collapse file tree 5 files changed +64
-8
lines changed
Expand file tree Collapse file tree 5 files changed +64
-8
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ Note that new releases update the API types and services and may change or remove classes, methods, and types without
4+ notice.
5+
6+ ## [ Unreleased]
7+
8+ ## [ 0.3.4] - 2021-12-17
9+
10+ ### Changed
11+ * Add deprecation annotations to types, properties, and methods. Deprecations may be removed in future changes to the
12+ API.
13+
14+ ### Changed
15+ * New service definitions.
16+
17+ ## [ 0.3.3] - 2021-09-15
18+
19+ ### Changed
20+ * Updated services and types.
21+ * Updated dependencies.
22+
23+ ## [ 0.3.2] - 2021-01-20
24+
25+ ### Added
26+ * Added support for Bearer Authentication Token Support.
27+
28+ ``` java
29+ import com.softlayer.api.* ;
30+ ApiClient client = new RestApiClient (). withBearerToken(" qqqqwwwweeeaaassddd...." );
31+ ```
32+
33+ ### Changed
34+ * Updated services and types.
35+
36+ ## [ 0.3.1] - 2021-11-09
37+
38+ ### Changed
39+ * Updated services and types.
40+
41+ ## [ 0.3.0] - 2021-03-25
42+
43+ ### Added
44+ * Added a new ` RestApiClient.BASE_SERVICE_URL ` constant to use the client with the classic infrastructure private
45+ network.
46+
47+ ### Changed
48+ * A breaking change has been made. Coerce return types to whatever the API metadata says should be returned, even if
49+ the type returned by the API does not match (#64 ).
50+
51+ * Updated services and types.
52+
53+ ## [ 0.2.9] - 2020-01-21
54+
55+ ### Changed
56+ * Updated generated services and types.
Original file line number Diff line number Diff line change @@ -40,20 +40,20 @@ additions to the SoftLayer API.
4040<dependency >
4141 <groupId >com.softlayer.api</groupId >
4242 <artifactId >softlayer-api-client</artifactId >
43- <version >0.3.3 </version >
43+ <version >0.3.4 </version >
4444</dependency >
4545```
4646
4747### Gradle
4848
4949``` groovy
50- implementation 'com.softlayer.api:softlayer-api-client:0.3.3 '
50+ implementation 'com.softlayer.api:softlayer-api-client:0.3.4 '
5151```
5252
5353### Kotlin
5454
5555``` kotlin
56- compile(" com.softlayer.api:softlayer-api-client:0.3.3 " )
56+ compile(" com.softlayer.api:softlayer-api-client:0.3.4 " )
5757```
5858
5959### Creating a Client
@@ -74,7 +74,7 @@ ApiClient client = new RestApiClient().withCredentials(myUser, myApiKey);
7474```
7575
7676#### Access Token
77- Information on how to get a temoprary api token can be found on the SLDN
77+ Information on how to get a temporary api token can be found on the SLDN
7878[ Authenticating to the SoftLayer API] ( https://sldn.softlayer.com/article/authenticating-softlayer-api/#temp-token )
7979article.
8080
Original file line number Diff line number Diff line change 88 <artifactId >softlayer-api-client-examples</artifactId >
99 <packaging >jar</packaging >
1010 <!-- Please keep version in sync with README -->
11- <version >0.3.3 </version >
11+ <version >0.3.4 </version >
1212 <name >softlayer-api-client-examples</name >
1313 <url >https://sldn.softlayer.com/</url >
1414 <licenses >
Original file line number Diff line number Diff line change 88 <artifactId >softlayer-api-client-gen</artifactId >
99 <packaging >jar</packaging >
1010 <!-- Please keep version in sync with README -->
11- <version >0.3.3 </version >
11+ <version >0.3.4 </version >
1212 <name >softlayer-api-client-gen</name >
1313 <url >https://sldn.softlayer.com/</url >
1414 <licenses >
Original file line number Diff line number Diff line change 77 <artifactId >softlayer-api-client</artifactId >
88 <packaging >jar</packaging >
99 <!-- Please keep version in sync with README -->
10- <version >0.3.3 </version >
10+ <version >0.3.4 </version >
1111 <name >SoftLayer API Client for Java</name >
1212 <description >API client for accessing the SoftLayer API</description >
1313 <url >https://sldn.softlayer.com</url >
4343 <connection >scm:git:git@github.com:softlayer/softlayer-java.git</connection >
4444 <developerConnection >scm:git:git@github.com:softlayer/softlayer-java.git</developerConnection >
4545 <url >git@github.com:softlayer/softlayer-java.git</url >
46- <tag >0.3.3 </tag >
46+ <tag >0.3.4 </tag >
4747 </scm >
4848 <properties >
4949 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
You can’t perform that action at this time.
0 commit comments