Skip to content

Commit

Permalink
Merge f41b9f4 into 387e87b
Browse files Browse the repository at this point in the history
  • Loading branch information
MarsiBarsi committed Sep 2, 2019
2 parents 387e87b + f41b9f4 commit 69d1535
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.1.1](https://github.com/TinkoffCreditSystems/ng-dompurify/compare/v1.1.0...v1.1.1) (2019-09-02)


### Bug Fixes

* **types:** preserve ReadonlyArray in compiled code to support older TypeScript versions ([387e87b](https://github.com/TinkoffCreditSystems/ng-dompurify/commit/387e87b))

## [1.1.0](https://github.com/TinkoffCreditSystems/ng-dompurify/compare/v1.0.0...v1.1.0) (2019-08-30)

### Features

- **css:** support sanitizing CSS through provided handler ([be0d3a6](https://github.com/TinkoffCreditSystems/ng-dompurify/commit/be0d3a6))
- **css:** support sanitizing CSS through provided handler ([1321a4f](https://github.com/TinkoffCreditSystems/ng-dompurify/commit/1321a4f))
- **NgDompurifySanitizer:** make service a single point of entrance to be able to attach hooks to DOMPurify in its constructor later ([78ccfe9](https://github.com/TinkoffCreditSystems/ng-dompurify/commit/78ccfe9))

## 1.0.0 (2019-08-02)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 17 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tinkoff/ng-dompurify",
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
Expand All @@ -19,9 +19,18 @@
"publish": "npm run build && npm publish ./dist/ng-dompurify"
},
"description": "Inclusive Angular API for DOMPurify",
"keywords": ["angular", "ng", "dompurify", "DomSanitizer", "tinkoff"],
"keywords": [
"angular",
"ng",
"dompurify",
"DomSanitizer",
"tinkoff"
],
"license": "Apache-2.0",
"authors": ["Roman Sedov <r.sedov@tinkoff.ru>", "Alex Inkin <a.inkin@tinkoff.ru>"],
"authors": [
"Roman Sedov <r.sedov@tinkoff.ru>",
"Alex Inkin <a.inkin@tinkoff.ru>"
],
"repository": "https://github.com/TinkoffCreditSystems/ng-dompurify",
"bugs": "https://github.com/TinkoffCreditSystems/ng-dompurify/issues",
"homepage": "https://github.com/TinkoffCreditSystems/ng-dompurify#README",
Expand Down Expand Up @@ -75,12 +84,15 @@
}
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": ["prettier --write", "git add"],
"*.{js,ts,html,md,less,json}": [
"prettier --write",
"git add"
],
"*.ts": "tslint"
},
"standard-version": {
"scripts": {
"postbump": "node scripts/syncVersions.js && git add **/package.json && git add **/package-lock.json"
"postbump": "node scripts/syncVersions.js"
}
}
}
18 changes: 14 additions & 4 deletions projects/ng-dompurify/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
{
"name": "@tinkoff/ng-dompurify",
"version": "1.1.0",
"version": "1.1.1",
"peerDependencies": {
"@angular/core": ">=4.0.0",
"@angular/platform-browser": ">=4.0.0"
},
"description": "Inclusive Angular API for DOMPurify",
"keywords": ["angular", "ng", "dompurify", "sanitizer", "DomSanitizer", "tinkoff"],
"keywords": [
"angular",
"ng",
"dompurify",
"sanitizer",
"DomSanitizer",
"tinkoff"
],
"license": "Apache-2.0",
"authors": ["Roman Sedov <r.sedov@tinkoff.ru>", "Alex Inkin <a.inkin@tinkoff.ru>"],
"authors": [
"Roman Sedov <r.sedov@tinkoff.ru>",
"Alex Inkin <a.inkin@tinkoff.ru>"
],
"repository": "https://github.com/TinkoffCreditSystems/ng-dompurify",
"bugs": "https://github.com/TinkoffCreditSystems/ng-dompurify/issues",
"homepage": "https://github.com/TinkoffCreditSystems/ng-dompurify#README"
}
}

0 comments on commit 69d1535

Please sign in to comment.