Skip to content

Commit 81dede8

Browse files
feat: fix links to repository docs
1 parent c830d28 commit 81dede8

5 files changed

Lines changed: 30 additions & 31 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ If you want to know more about these options and various other capabilities of t
126126
> If your application relies on NgModules, the library still has support for it. See more information on how to configure a [NgModule the application](https://github.com/mauriciovigolo/keycloak-angular/docs/ngmodule.md).
127127
128128
**Additional Resources**
129-
For more details, refer to the [provideKeycloak](https://github.com/mauriciovigolo/keycloak-angular/docs/provide.md) documentation.
129+
For more details, refer to the [provideKeycloak](https://github.com/mauriciovigolo/keycloak-angular/blob/main/docs/provide.md) documentation.
130130

131131
## Example project
132132

@@ -278,7 +278,7 @@ export const appConfig: ApplicationConfig = {
278278
```
279279

280280
**Additional Resources**
281-
For more details on the available interceptors and their configurations, refer to the [Keycloak HttpClient Interceptors](https://github.com/mauriciovigolo/keycloak-angular/docs/interceptors.md) documentation.
281+
For more details on the available interceptors and their configurations, refer to the [Keycloak HttpClient Interceptors](https://github.com/mauriciovigolo/keycloak-angular/blob/main/docs/interceptors.md) documentation.
282282

283283
## Directives
284284

docs/release-notes/v19-0-0.md

Lines changed: 3 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,5 @@
1-
# Keycloak-Angular v19 🚀
1+
# v19.0.1
22

3-
We’re thrilled to release **Keycloak-Angular v19**, packed with modern features and improvements for Angular applications. 🎉
3+
## ✨ Features
44

5-
## ✨ Key Highlights
6-
7-
- **Functional Configuration**: Simplify setup with `provideKeycloak`—no more `KeycloakService` or `KeycloakAngularModule`.
8-
- **Angular Signals**: Reactive handling of Keycloak events for a cleaner, modern approach.
9-
- **Enhanced Interceptors**: Add tokens with explicit configuration using `includeBearerTokenInterceptor` and `customBearerTokenInterceptor`.
10-
- **Role-Based Rendering**: New `*kaHasRoles` directive for conditional rendering based on roles.
11-
- **Modular Features**: Introduced `withAutoRefreshToken` for seamless token refresh and session management.
12-
- **Functional Route Guards**: Create custom guards with `createAuthGuard` for streamlined route protection.
13-
14-
## ⚠️ Breaking Changes
15-
16-
- Deprecated `KeycloakService`, `KeycloakAngularModule`, `KeycloakAuthGuard`, and `keycloakEvents$`.
17-
- Bearer tokens are no longer added automatically to all HTTP requests—explicit configuration required.
18-
19-
## 🛠️ Legacy Version Still Bundled
20-
21-
The legacy implementation of Keycloak-Angular (`KeycloakService`, `KeycloakAngularModule`, etc.) is still bundled in this release for backward compatibility. However, **it is deprecated** and will be removed in a future major version. We strongly encourage migrating to the new APIs.
22-
23-
## 🛠️ Migration Guide
24-
25-
- Migrate to `provideKeycloak` for setup.
26-
- Replace RxJS-based `keycloakEvents$` with Angular Signals.
27-
- Use `*kaHasRoles` for role-based DOM rendering.
28-
29-
For full details, see the [migration guide](https://github.com/mauriciovigolo/keycloak-angular/docs/migration-guides/v19.md). 🚀
5+
- **Fix links in documentation**: fix GitHub repository links with the wrong documentation URL.

docs/release-notes/v19-0-1.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# v19.0.0
2+
3+
## ✨ Key Highlights
4+
5+
- **Functional Configuration**: Simplify setup with `provideKeycloak`—no more `KeycloakService` or `KeycloakAngularModule`.
6+
- **Angular Signals**: Reactive handling of Keycloak events for a cleaner, modern approach.
7+
- **Enhanced Interceptors**: Add tokens with explicit configuration using `includeBearerTokenInterceptor` and `customBearerTokenInterceptor`.
8+
- **Role-Based Rendering**: New `*kaHasRoles` directive for conditional rendering based on roles.
9+
- **Modular Features**: Introduced `withAutoRefreshToken` for seamless token refresh and session management.
10+
- **Functional Route Guards**: Create custom guards with `createAuthGuard` for streamlined route protection.
11+
12+
## ⚠️ Breaking Changes
13+
14+
- Deprecated `KeycloakService`, `KeycloakAngularModule`, `KeycloakAuthGuard`, and `keycloakEvents$`.
15+
- Bearer tokens are no longer added automatically to all HTTP requests—explicit configuration required.
16+
17+
## 🛠️ Legacy Version Still Bundled
18+
19+
The legacy implementation of Keycloak-Angular (`KeycloakService`, `KeycloakAngularModule`, etc.) is still bundled in this release for backward compatibility. However, **it is deprecated** and will be removed in a future major version. We strongly encourage migrating to the new APIs.
20+
21+
## 🛠️ Migration Guide
22+
23+
For full details, see the [migration guide](https://github.com/mauriciovigolo/keycloak-angular/blob/main/docs/migration-guides/v19.md). 🚀

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "keycloak-angular",
3-
"version": "19.0.0",
3+
"version": "19.0.1",
44
"description": "Easy Keycloak setup for Angular applications",
55
"scripts": {
66
"build": "ng build keycloak-angular --configuration production",

projects/keycloak-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "keycloak-angular",
3-
"version": "19.0.0",
3+
"version": "19.0.1",
44
"description": "Easy Keycloak setup for Angular applications",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)