diff --git a/packages/sdk-angular/CHANGES.md b/packages/sdk-angular/CHANGES.md new file mode 100644 index 0000000..2270eb1 --- /dev/null +++ b/packages/sdk-angular/CHANGES.md @@ -0,0 +1,12 @@ +@fusionauth/angular-sdk Changes + +Changes in 1.0.0 + +Several enhancements are availabe on the `FusionAuthService` + +- `getUserInfoObservable` provides an API that Angular components can subscribe to. Provides an api for handling pending state, as well as callbacks for success and error. +- Adds error handling to the get user info request. +- `FusionAuthService` provides observable `isLoggedIn$` property that updates within the Angular change dectection system if the access token expires. +- `shouldAutoRefresh` option for the SDK to automatically handle refreshing the access token. Defaults to `false`. +- `scope` has been added back to the `FusionAuthProviderConfig` to be more compatible with [FusionAuth v1.50](https://fusionauth.io/docs/release-notes/#version-1-50-0) +- Full API documentation with TypeDoc now available (see official README from NPM). diff --git a/packages/sdk-angular/projects/fusionauth-angular-sdk/package.json b/packages/sdk-angular/projects/fusionauth-angular-sdk/package.json index 46adab2..55940bf 100644 --- a/packages/sdk-angular/projects/fusionauth-angular-sdk/package.json +++ b/packages/sdk-angular/projects/fusionauth-angular-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@fusionauth/angular-sdk", - "version": "0.1.7", + "version": "1.0.0", "peerDependencies": { "@angular/common": "^17.2.0", "@angular/core": "^17.2.0",