Skip to content

Commit fabac6b

Browse files
committed
add changelog entries
1 parent 4f0b36f commit fabac6b

File tree

7 files changed

+56
-3
lines changed

7 files changed

+56
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## Release (2025-XX-XX)
2+
- `core`: [v0.2.0](core/CHANGELOG.md#v020)
3+
- **Feature:** Support for passing custom OkHttpClient objects
4+
- `KeyFlowAuthenticator`: Add new constructors with an `OkHttpClientParam`
5+
- Marked constructors without `OkHttpClient` param as deprecated, use new constructors with `OkHttpClient` instead
6+
- `KeyFlowAuthenticator` implements `okhttp3.Authenticator` interface now
7+
- added method `KeyFlowAuthenticator.authenticate()`
8+
- Marked `KeyFlowInterceptor` class as deprecated, use `KeyFlowAuthenticator` instead
9+
- Marked `SetupAuth` constructors and methods `SetupAuth.init()` and `SetupAuth.getAuthHandler()` as deprecated
10+
- all other methods of `SetupAuth` are marked as `static` now, only these will remain in the future
11+
- `iaas`: [v0.2.0](iaas/CHANGELOG.md#v020)
12+
- **Feature:** Support for passing custom OkHttpClient objects
13+
- `ApiClient`
14+
- Added constructors with `OkHttpClient` param (recommended for production use)
15+
- Use new `KeyFlowAuthenticator` `okhttp3.Authenticator` implementation instead of request interceptor for authentication
16+
- `DefaultApi`: Added constructors with `OkHttpClient` param (recommended for production use)
17+
- `IaasApi`: Added constructors with `OkHttpClient` param (recommended for production use)
18+
- `resourcemanager`: [v0.2.0](resourcemanager/CHANGELOG.md#v020)
19+
- **Feature:** Support for passing custom OkHttpClient objects
20+
- `ApiClient`
21+
- Added constructors with `OkHttpClient` param (recommended for production use)
22+
- Use new `KeyFlowAuthenticator` `okhttp3.Authenticator` implementation instead of request interceptor for authentication
23+
- `DefaultApi`: Added constructors with `OkHttpClient` param (recommended for production use)
24+
- `ResourceManagerApi`: Added constructors with `OkHttpClient` param (recommended for production use)
25+
- `examples`:
26+
- Add example how to use custom `OkHttpClient` object
27+
128
## Release (2025-09-09)
229
- `core`: [v0.1.0](core/CHANGELOG.md#v010)
330
- Initial onboarding of STACKIT Java SDK core lib

core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1+
## v0.2.0
2+
- **Feature:** Support for passing custom OkHttpClient objects
3+
- `KeyFlowAuthenticator`: Add new constructors with an `OkHttpClientParam`
4+
- Marked constructors without `OkHttpClient` param as deprecated, use new constructors with `OkHttpClient` instead
5+
- `KeyFlowAuthenticator` implements `okhttp3.Authenticator` interface now
6+
- added method `KeyFlowAuthenticator.authenticate()`
7+
- Marked `KeyFlowInterceptor` class as deprecated, use `KeyFlowAuthenticator` instead
8+
- Marked `SetupAuth` constructors and methods `SetupAuth.init()` and `SetupAuth.getAuthHandler()` as deprecated
9+
- all other methods of `SetupAuth` are marked as `static` now, only these will remain in the future
10+
111
## v0.1.0
212
- Initial onboarding of STACKIT Java SDK core lib

core/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.2.0

services/iaas/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
## v0.2.0
2+
- **Feature:** Support for passing custom OkHttpClient objects
3+
- `ApiClient`
4+
- Added constructors with `OkHttpClient` param (recommended for production use)
5+
- Use new `KeyFlowAuthenticator` `okhttp3.Authenticator` implementation instead of request interceptor for authentication
6+
- `DefaultApi`: Added constructors with `OkHttpClient` param (recommended for production use)
7+
- `IaasApi`: Added constructors with `OkHttpClient` param (recommended for production use)
8+
19
## v0.1.0
210
- Initial onboarding of STACKIT Java SDK for IaaS service

services/iaas/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.2.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
## v0.2.0
2+
- **Feature:** Support for passing custom OkHttpClient objects
3+
- `ApiClient`
4+
- Added constructors with `OkHttpClient` param (recommended for production use)
5+
- Use new `KeyFlowAuthenticator` `okhttp3.Authenticator` implementation instead of request interceptor for authentication
6+
- `DefaultApi`: Added constructors with `OkHttpClient` param (recommended for production use)
7+
- `ResourceManagerApi`: Added constructors with `OkHttpClient` param (recommended for production use)
8+
19
## v0.1.0
210
- Initial onboarding of STACKIT Java SDK for Resourcemanager service

services/resourcemanager/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.2.0

0 commit comments

Comments
 (0)