Skip to content

Commit

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

commit 5e00282
Author: Dávid Tóta <d.tota@adguard.com>
Date:   Thu Jun 13 13:12:55 2024 +0300

    .markdownlint.json edited online with Bitbucket

commit b19dbfe
Author: Slava Leleka <v.leleka@adguard.com>
Date:   Thu Jun 13 13:06:37 2024 +0300

    prepare release 1.11

commit a79e957
Author: Slava Leleka <v.leleka@adguard.com>
Date:   Thu Jun 13 13:05:21 2024 +0300

    fix markdownlint config
  • Loading branch information
slavaleleka committed Jun 13, 2024
1 parent b920af0 commit 3772d2b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"line_length": 120
},
"no-multiple-blanks": { "maximum": 2 },
"no-inline-html": { "allowed_elements": ["a"]},
"no-duplicate-header": { "siblings_only": true },
"no-inline-html": { "allowed_elements": ["a"] },
"no-duplicate-heading": { "siblings_only": true },
"no-blanks-blockquote": false,
"no-bare-urls": false,
"ul-style": { "style": "dash" }
Expand Down
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
<!-- TODO: change `@added unknown` tag due to the actual version -->
<!-- during new scriptlets or redirects releasing -->

## [Unreleased]
## [v1.11.1] - 2024-06-13

### Added

- `trusted-dispatch-event` scriptlet [#382]
- `trusted-replace-outbound-text` scriptlet [#410]
- ability to click on the element with specified text in `trusted-click-element` scriptlet [#409]
- ability to click element in closed shadow root in `trusted-click-element` scriptlet [#423]
- `isRedirectResourceCompatibleWithAdg()` method to check compatibility of redirect resources with AdGuard
without needing the full rule text [#420]
- `trusted-replace-outbound-text` scriptlet [#410]
- ability to click on the element with specified text in `trusted-click-element` scriptlet [#409]
- `trusted-dispatch-event` scriptlet [#382]

### Deprecated

Expand All @@ -26,7 +26,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic

- `set-attr` value cannot be set to minimum `0` and maximum `32767` possible value [#425]

[Unreleased]: https://github.com/AdguardTeam/Scriptlets/compare/v1.10.25...HEAD
[v1.11.1]: https://github.com/AdguardTeam/Scriptlets/compare/v1.10.25...v1.11.1
[#425]: https://github.com/AdguardTeam/Scriptlets/issues/425
[#423]: https://github.com/AdguardTeam/Scriptlets/issues/423
[#420]: https://github.com/AdguardTeam/Scriptlets/issues/420
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.10.33",
"version": "1.11.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/trusted-dispatch-event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
* example.org#%#//scriptlet('trusted-dispatch-event', 'load', 'window')
* ```
*
* @added unknown.
* @added v1.11.1.
*/

export function trustedDispatchEvent(
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/trusted-replace-outbound-text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ import {
*
* <!-- markdownlint-enable line-length -->
*
* @added unknown.
* @added v1.11.1.
*/
/* eslint-enable max-len */
export function trustedReplaceOutboundText(
Expand Down

0 comments on commit 3772d2b

Please sign in to comment.