Skip to content

Commit

Permalink
Merge pull request #47 from Heatmanofurioso/develop
Browse files Browse the repository at this point in the history
Migrate to Angular V14
  • Loading branch information
Heatmanofurioso authored Jun 3, 2022
2 parents ba38928 + 02a4195 commit 9dd48f5
Show file tree
Hide file tree
Showing 8 changed files with 1,940 additions and 1,432 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
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).

## [1.4.0] - 2022-06-03
- Migrate to Angular V14

## [1.3.2] - 2022-05-23
- Add referrerpolicy option to the img tag configurations
- Update dependencies
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2021 Tiago Casinhas, ngx-avatars
Copyright (c) 2022 Tiago Casinhas, ngx-avatars

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ export class AppModule { }
```

## Release Notes & History
* 1.4.0: Migrate to Angular V14
* 1.3.2: Add referrerpolicy configuration to img tag. Update dependencies. Remove codelyzer.
* 1.3.1: Update dependencies
* 1.3.0: Added ability to disable src cache.
Expand Down
9 changes: 5 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
"version": 1,
"cli": {
"analytics": "1c209c8f-e553-45c3-b475-c1943e1d601f",
"defaultCollection": "@angular-eslint/schematics",
"packageManager": "yarn"
"packageManager": "yarn",
"schematicCollections": [
"@angular-eslint/schematics"
]
},
"newProjectRoot": "projects",
"projects": {
Expand Down Expand Up @@ -185,6 +187,5 @@
}
}
}
},
"defaultProject": "ngx-avatars"
}
}
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,46 +27,46 @@
},
"private": false,
"dependencies": {
"@angular/animations": "^13.3.9",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@angular/router": "^13.3.9",
"@angular/animations": "^14.0.0",
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/forms": "^14.0.0",
"@angular/platform-browser": "^14.0.0",
"@angular/platform-browser-dynamic": "^14.0.0",
"@angular/router": "^14.0.0",
"rxjs": "^7.5.5",
"ts-md5": "^1.2.11",
"tslib": "^2.4.0",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-builders/jest": "13.0.4",
"@angular-devkit/build-angular": "~13.3.6",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular-devkit/build-angular": "^14.0.0",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "~13.3.6",
"@angular/compiler-cli": "^13.3.9",
"@angular/language-service": "^13.3.9",
"@angular/cli": "^14.0.0",
"@angular/compiler-cli": "^14.0.0",
"@angular/language-service": "^14.0.0",
"@testing-library/jest-dom": "5.16.4",
"@types/jest": "27.5.1",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "5.25.0",
"@typescript-eslint/parser": "5.25.0",
"@types/jest": "28.1.0",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.16.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.0",
"eslint-plugin-jsdoc": "39.3.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^8.0.1",
"jest": "28.1.0",
"jest-preset-angular": "12.0.1",
"ng-packagr": "^13.3.1",
"jest-preset-angular": "12.1.0",
"ng-packagr": "^14.0.0",
"protractor": "~7.0.0",
"ts-jest": "28.0.2",
"ts-jest": "28.0.4",
"ts-node": "~10.8.0",
"typescript": "~4.6.4"
},
Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-avatars/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-avatars",
"description": "A universal avatar component for Angular applications that fetches / generates avatar based on the information you have about the user.",
"version": "1.3.2",
"version": "1.4.0",
"keywords": [
"angular",
"avatar",
Expand All @@ -27,7 +27,7 @@
"tslib": "^2.4.0"
},
"peerDependencies": {
"@angular/common": "^13.3.9",
"@angular/core": "^13.3.9"
"@angular/common": "^14.0.0",
"@angular/core": "^14.0.0"
}
}
1 change: 0 additions & 1 deletion src/polyfills.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
import 'zone.js';
import '@angular/localize/init';
Loading

0 comments on commit 9dd48f5

Please sign in to comment.