Skip to content

Commit

Permalink
Revert packages to angular 7
Browse files Browse the repository at this point in the history
- Fixes #17
  • Loading branch information
david-on-github committed Nov 27, 2019
1 parent c263c1a commit be19a36
Show file tree
Hide file tree
Showing 4 changed files with 2,286 additions and 2,348 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Upgrade packages

## [1.0.7] - 2019-10-27
### Fixed
- Revert to angular 7

## [1.0.6] - 2019-08-13
### Fixed
Expand Down Expand Up @@ -41,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First release

[1.0.7]: https://github.com/fileless/ng-oidc-client/compare/v1.0.6...v1.0.7
[1.0.6]: https://github.com/fileless/ng-oidc-client/compare/v1.0.5...v1.0.6
[1.0.5]: https://github.com/fileless/ng-oidc-client/compare/v1.0.4...v1.0.5
[1.0.4]: https://github.com/fileless/ng-oidc-client/compare/v1.0.3...v1.0.4
Expand Down
53 changes: 27 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,39 +18,40 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^8.1.1",
"@angular/cdk": "^8.0.2",
"@angular/common": "^8.1.1",
"@angular/compiler": "^8.1.1",
"@angular/core": "^8.1.1",
"@angular/forms": "^8.1.1",
"@angular/material": "^8.0.2",
"@angular/platform-browser": "^8.1.1",
"@angular/platform-browser-dynamic": "^8.1.1",
"@angular/router": "^8.1.1",
"@ngrx/effects": "^8.1.0",
"@ngrx/router-store": "^8.1.0",
"@ngrx/store": "^8.1.0",
"@ngrx/store-devtools": "^8.1.0",
"@angular/animations": "~7.2.0",
"@angular/cdk": "^7.2.0",
"@angular/common": "~7.2.0",
"@angular/compiler": "~7.2.0",
"@angular/core": "~7.2.0",
"@angular/forms": "~7.2.0",
"@angular/material": "^7.2.0",
"@angular/platform-browser": "~7.2.0",
"@angular/platform-browser-dynamic": "~7.2.0",
"@angular/router": "~7.2.0",
"@ngrx/effects": "^7.0.0",
"@ngrx/router-store": "^7.0.0",
"@ngrx/store": "^7.0.0",
"@ngrx/store-devtools": "^7.0.0",
"core-js": "^2.6.1",
"oidc-client": "^1.8.2",
"oidc-client": "^1.9.0",
"rxjs": "^6.5.2",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.1",
"@angular-devkit/build-ng-packagr": "~0.801.1",
"@angular/cli": "^8.1.1",
"@angular/compiler-cli": "^8.1.1",
"@angular/language-service": "^8.1.1",
"@types/jasmine": "^3.3.4",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^10.12.18",
"@angular-devkit/build-angular": "~0.13.0",
"@angular-devkit/build-ng-packagr": "~0.13.0",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.5.0",
"copyfiles": "^2.1.0",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^3.1.4",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~2.0.1",
Expand All @@ -60,7 +61,7 @@
"ts-node": "~7.0.1",
"tsickle": ">=0.34.0",
"tslib": "^1.9.0",
"tslint": "^5.12.0",
"typescript": "3.4.5"
"tslint": "~5.11.0",
"typescript": "~3.2.2"
}
}
2 changes: 1 addition & 1 deletion projects/ng-oidc-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-oidc-client",
"version": "1.0.6",
"version": "1.0.7",
"main": "index.js",
"description": "An Angular 6+ package wrapping oidc-client library to manage authentication with OpenID Connect (OIDC) and OAuth2 in a reactive way using NgRx.",
"author": "Alexandru Gogan & David Turner",
Expand Down
Loading

0 comments on commit be19a36

Please sign in to comment.