Skip to content

Commit d271f67

Browse files
committed
Add changelogs
Signed-off-by: Alexander Dahmen <[email protected]>
1 parent d2a1a55 commit d271f67

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
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)
5-
- `resourcemanager`: [v0.3.0](services/resourcemanager/CHANGELOG.md#v030)
6-
- **Feature:** Add `ContainerSearchResult` model class for container search functionality
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`:
9+
- [v0.4.0](services/resourcemanager/CHANGELOG.md#v040)
10+
- **Feature:** Added waiter for project creation and project deletion
11+
- [v0.3.0](services/resourcemanager/CHANGELOG.md#v030)
12+
- **Feature:** Add `ContainerSearchResult` model class for container search functionality
13+
714

815
## Release (2025-09-30)
916
- `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.4.0
2+
- **Feature:** Added waiter for project creation and project deletion
3+
14
## v0.3.0
25
- **Feature:** Add `ContainerSearchResult` model class for container search functionality
36

services/resourcemanager/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

0 commit comments

Comments
 (0)