Skip to content

Commit

Permalink
Merge pull request #772 from Heatmanofurioso/feature/updateToNG18
Browse files Browse the repository at this point in the history
[Feature] | Update to NG 18
  • Loading branch information
Heatmanofurioso authored Jun 7, 2024
2 parents 6335606 + 7692c8a commit 5dd3f53
Show file tree
Hide file tree
Showing 5 changed files with 3,660 additions and 4,141 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.3.0
- Update to Angular 18
- Update several dependencies

# 2.2.0
- Update to Angular 17
- Update several dependencies
Expand Down
2 changes: 2 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Check out the [demo](https://abacritt.github.io/angularx-social-login/).

| Library Version | Angular Version |
|---------------------------------------|-----------------|
| @abacritt/angularx-social-login:2.3.X | 18 |
| @abacritt/angularx-social-login:2.2.X | 17 |
| @abacritt/angularx-social-login:2.1.X | 16, 17 |
| @abacritt/angularx-social-login:2.0.X | 15, 16 |
| @abacritt/angularx-social-login:1 | 13, 14, 15 |
Expand Down
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,48 +15,48 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.6",
"@angular/common": "^17.0.6",
"@angular/compiler": "^17.0.6",
"@angular/core": "^17.0.6",
"@angular/forms": "^17.0.6",
"@angular/platform-browser": "^17.0.6",
"@angular/platform-browser-dynamic": "^17.0.6",
"@angular/router": "^17.0.6",
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
"tslib": "^2.6.3",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.6",
"@angular-eslint/builder": "17.1.1",
"@angular-eslint/eslint-plugin": "17.1.1",
"@angular-eslint/eslint-plugin-template": "17.1.1",
"@angular-eslint/schematics": "17.1.1",
"@angular-eslint/template-parser": "17.1.1",
"@angular/cli": "^17.0.6",
"@angular/compiler-cli": "^17.0.6",
"@angular/language-service": "^17.0.6",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@types/google.accounts": "^0.0.14",
"@types/jasmine": "^5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"jasmine-core": "~5.1.1",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.0",
"ng-packagr": "^17.0.2",
"lint-staged": "^15.2.5",
"ng-packagr": "^18.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"typescript": "5.2.2"
"typescript": "5.4.5"
},
"engines": {
"node": ">=18.7.0"
Expand Down
12 changes: 6 additions & 6 deletions projects/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@abacritt/angularx-social-login",
"version": "2.2.0",
"description": "Social login and authentication module for Angular 14. Supports authentication with Google, Facebook, Amazon, and VK. Can be extended to other providers also.",
"version": "2.3.0",
"description": "Social login and authentication module for Angular 18. Supports authentication with Google, Facebook, Amazon, and VK. Can be extended to other providers also.",
"repository": {
"type": "git",
"url": "git+https://github.com/abacritt/angularx-social-login.git"
},
"author": "Jaibatrik Dutta <jaibatrik@gmail.com>",
"keywords": [
"angular",
"angular15",
"angular18",
"angular-social-login",
"social-authentication",
"social-login",
Expand All @@ -22,11 +22,11 @@
"url": "https://github.com/abacritt/angularx-social-login/issues"
},
"dependencies": {
"tslib": ">=2.6.2"
"tslib": ">=2.6.3"
},
"peerDependencies": {
"@angular/common": ">=17.0.0",
"@angular/core": ">=17.0.0"
"@angular/common": ">=18.0.1",
"@angular/core": ">=18.0.1"
},
"homepage": "https://github.com/abacritt/angularx-social-login#readme",
"main": "bundles/abacrit-angularx-social-login.umd.js",
Expand Down
Loading

0 comments on commit 5dd3f53

Please sign in to comment.