-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c90170
commit 3481845
Showing
4 changed files
with
59 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
### 0.8.0 | ||
|
||
_Not Released Yet_ | ||
_Released 2024 Nov 12_ | ||
|
||
#### Overview | ||
|
||
This release was specifically crafted to address a critical bug in the Guild | ||
Wars 2 API which caused header-based authorization to fail. Thus, this release | ||
introduces a mechanism to configure how requests are authenticated: | ||
|
||
- `AuthenticationStrategy.HEADER` will remain the default authentication | ||
strategy and is recommended for most use cases. | ||
- `AuthenticationStrategy.QUERY` is a new authentication strategy that appends | ||
the API key as a query parameter to the request URL. This strategy is | ||
considered unsafe outside of server environments. Use with caution. | ||
|
||
#### Improvements | ||
|
||
- It is now possible to configure how requests are authenticated by configuring | ||
the `AuthenticationStrategy` for a client. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
### 0.7.0 | ||
### 0.8.0 | ||
|
||
_Released 2024 Oct 30_ | ||
_Released 2024 Nov 12_ | ||
|
||
#### Improvements | ||
#### Overview | ||
|
||
This release was specifically crafted to address a critical bug in the Guild | ||
Wars 2 API which caused header-based authorization to fail. Thus, this release | ||
introduces a mechanism to configure how requests are authenticated: | ||
|
||
- Build Kotlin/Wasm (`wasmJs`) binaries for all Kotlin multiplatform modules. | ||
- `AuthenticationStrategy.HEADER` will remain the default authentication | ||
strategy and is recommended for most use cases. | ||
- `AuthenticationStrategy.QUERY` is a new authentication strategy that appends | ||
the API key as a query parameter to the request URL. This strategy is | ||
considered unsafe outside of server environments. Use with caution. | ||
|
||
#### Breaking Changes | ||
#### Improvements | ||
|
||
- The `copy` function of `RequestTemplate` is no longer accessible. | ||
- It is now possible to configure how requests are authenticated by configuring | ||
the `AuthenticationStrategy` for a client. |