Skip to content

Commit 624e83d

Browse files
committed
Add changelogs
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent 200c5bb commit 624e83d

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
## Release (2025-xx-xx)
2-
- `core`: [v0.3.0](core/CHANGELOG.md#v030)
3-
- **Feature:** New exception types for better error handling
4-
- `AuthenticationException`: New exception for authentication-related failures (token generation, refresh, validation)
2+
- `core`:
3+
- [v0.4.0](core/CHANGELOG.md#v040)
4+
- **Feature:** Added core wait handler structure which can be used by every service waiter implementation.
5+
- [v0.3.0](core/CHANGELOG.md#v030)
6+
- **Feature:** New exception types for better error handling
7+
- `AuthenticationException`: New exception for authentication-related failures (token generation, refresh, validation)
8+
- `resourcemanager`: [v0.3.0](services/resourcemanager/CHANGELOG.md#v030)
9+
- **Feature:** Added waiter for project creation and project deletion
510

611
## Release (2025-09-30)
712
- `core`: [v0.2.0](core/CHANGELOG.md#v020)

CONTRIBUTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Waiters are routines that wait for the completion of asynchronous operations. Th
4949
Let's suppose you want to implement the waiters for the `Create`, `Update` and `Delete` operations of a resource `bar` of service `foo`:
5050

5151
1. Start by creating a new Java package `cloud.stackit.sdk.<service>.wait` inside `services/foo/` project, if it doesn't exist yet
52-
2. Create a file `FooWait.java` inside your new Java package `cloud.stackit.sdk.resourcemanager.wait`, if it doesn't exist yet. The class should be named `FooWait`.
52+
2. Create a file `FooWait.java` inside your new Java package `cloud.stackit.sdk.<service>.wait`, if it doesn't exist yet. The class should be named `FooWait`.
5353
3. Refer to the [Waiter structure](./CONTRIBUTION.md/#waiter-structure) section for details on the structure of the file and the methods
5454
4. Add unit tests to the wait functions
5555

core/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.4.0

services/resourcemanager/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.3.0
2+
- **Feature:** Added waiter for project creation and project deletion
3+
14
## v0.2.0
25
- **Feature:** Support for passing custom OkHttpClient objects
36
- `ApiClient`

services/resourcemanager/VERSION

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

0 commit comments

Comments
 (0)