Skip to content

Commit

Permalink
prepare release v1.10
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit a6b4df3
Author: Slava Leleka <v.leleka@adguard.com>
Date:   Mon Feb 12 16:37:43 2024 +0200

    fix added tag for multiple scriptlets

commit a943cd2
Author: Slava Leleka <v.leleka@adguard.com>
Date:   Mon Feb 12 16:37:20 2024 +0200

    update changelog

commit 7a5e3e6
Author: Slava Leleka <v.leleka@adguard.com>
Date:   Mon Feb 12 16:37:09 2024 +0200

    bump version
  • Loading branch information
slavaleleka committed Feb 12, 2024
1 parent 6b1260f commit 060c523
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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].

<!-- TODO: add @added tag to the files with specific version -->
<!-- TODO: change `@added unknown` tag due to the actual version -->
<!-- during new scriptlets or redirects releasing -->

## [Unreleased]
## [v1.10.1] - 2024-02-12

### Added

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/call-nothrow.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import {
* JSON.parse('foo');
* ```
*
* @added unknown.
* @added v1.10.1.
*/
/* eslint-enable max-len */
export function callNoThrow(source, functionName) {
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/spoof-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import {
* ```
*
*
* @added unknown.
* @added v1.10.1.
*/
/* eslint-enable max-len */

Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/trusted-create-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/trusted-set-attr.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import {
* <a class="class" test-attribute="{ playback: false }">Some text</div>
* ```
*
* @added unknown.
* @added v1.10.1.
*/
/* eslint-enable max-len */
export function trustedSetAttr(source, selector, attr, value = '') {
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/xml-prune.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ import {
* example.org#%#//scriptlet('xml-prune', '', '', '.mpd')
* ```
*
* @added 1.7.3.
* @added v1.7.3.
*/
/* eslint-enable max-len */

Expand Down

0 comments on commit 060c523

Please sign in to comment.