From 060c523ee55883d6682b1d6aa2f33721535ddf2e Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Mon, 12 Feb 2024 18:32:20 +0300 Subject: [PATCH] prepare release v1.10 Squashed commit of the following: commit a6b4df3d54d7b9354bea2d55ba8796cf9bf73102 Author: Slava Leleka Date: Mon Feb 12 16:37:43 2024 +0200 fix added tag for multiple scriptlets commit a943cd2e4d6e32fdc85102694cc7165ce5515abd Author: Slava Leleka Date: Mon Feb 12 16:37:20 2024 +0200 update changelog commit 7a5e3e6485789ae8126965b4f1a2fdffa53de037 Author: Slava Leleka Date: Mon Feb 12 16:37:09 2024 +0200 bump version --- CHANGELOG.md | 6 +++--- package.json | 2 +- src/scriptlets/call-nothrow.js | 2 +- src/scriptlets/spoof-css.js | 2 +- src/scriptlets/trusted-create-element.ts | 2 +- src/scriptlets/trusted-set-attr.js | 2 +- src/scriptlets/xml-prune.js | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e43d5156d..376ca9375 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. - + -## [Unreleased] +## [v1.10.1] - 2024-02-12 ### Added @@ -339,7 +339,7 @@ prevent inline `onerror` and match `link` tag [#276](https://github.com/AdguardT - `metrika-yandex-tag` [#254](https://github.com/AdguardTeam/Scriptlets/issues/254) - `googlesyndication-adsbygoogle` [#252](https://github.com/AdguardTeam/Scriptlets/issues/252) -[Unreleased]: https://github.com/AdguardTeam/Scriptlets/compare/v1.9.105...HEAD +[v1.10.1]: https://github.com/AdguardTeam/Scriptlets/compare/v1.9.105...v1.10.1 [v1.9.105]: https://github.com/AdguardTeam/Scriptlets/compare/v1.9.101...v1.9.105 [v1.9.101]: https://github.com/AdguardTeam/Scriptlets/compare/v1.9.96...v1.9.101 [v1.9.96]: https://github.com/AdguardTeam/Scriptlets/compare/v1.9.91...v1.9.96 diff --git a/package.json b/package.json index 103b96663..f65ecda7e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@adguard/scriptlets", - "version": "1.9.114", + "version": "1.10.0", "description": "AdGuard's JavaScript library of Scriptlets and Redirect resources", "scripts": { "build": "babel-node -x .js,.ts scripts/build.js", diff --git a/src/scriptlets/call-nothrow.js b/src/scriptlets/call-nothrow.js index 13433a631..76e4428c7 100644 --- a/src/scriptlets/call-nothrow.js +++ b/src/scriptlets/call-nothrow.js @@ -51,7 +51,7 @@ import { * JSON.parse('foo'); * ``` * - * @added unknown. + * @added v1.10.1. */ /* eslint-enable max-len */ export function callNoThrow(source, functionName) { diff --git a/src/scriptlets/spoof-css.js b/src/scriptlets/spoof-css.js index d4725addc..ecc07091e 100644 --- a/src/scriptlets/spoof-css.js +++ b/src/scriptlets/spoof-css.js @@ -47,7 +47,7 @@ import { * ``` * * - * @added unknown. + * @added v1.10.1. */ /* eslint-enable max-len */ diff --git a/src/scriptlets/trusted-create-element.ts b/src/scriptlets/trusted-create-element.ts index 38ce81428..dff73de53 100644 --- a/src/scriptlets/trusted-create-element.ts +++ b/src/scriptlets/trusted-create-element.ts @@ -64,7 +64,7 @@ import type { ParsedAttributePair } from '../helpers/attribute-utils'; * example.com#%#//scriptlet('trusted-create-element', '.container > article', 'p', '', 'Hello world!', 5000) * ``` * - * @added unknown. + * @added v1.10.1. */ /* eslint-enable max-len */ export function trustedCreateElement( diff --git a/src/scriptlets/trusted-set-attr.js b/src/scriptlets/trusted-set-attr.js index 94b0858be..46c567847 100644 --- a/src/scriptlets/trusted-set-attr.js +++ b/src/scriptlets/trusted-set-attr.js @@ -92,7 +92,7 @@ import { * Some text * ``` * - * @added unknown. + * @added v1.10.1. */ /* eslint-enable max-len */ export function trustedSetAttr(source, selector, attr, value = '') { diff --git a/src/scriptlets/xml-prune.js b/src/scriptlets/xml-prune.js index 563e73dd3..d0c0679c7 100644 --- a/src/scriptlets/xml-prune.js +++ b/src/scriptlets/xml-prune.js @@ -82,7 +82,7 @@ import { * example.org#%#//scriptlet('xml-prune', '', '', '.mpd') * ``` * - * @added 1.7.3. + * @added v1.7.3. */ /* eslint-enable max-len */