@adguard/agtree 1.1.5 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/agtree.cjs +1149 -489
- package/dist/agtree.d.ts +169 -42
- package/dist/agtree.esm.js +1149 -491
- package/dist/agtree.iife.min.js +5 -5
- package/dist/agtree.umd.min.js +5 -5
- package/dist/build.txt +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog][keepachangelog], and this project adheres to [Semantic Versioning][semver].
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## 1.1.7 - 2023-11-07
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Support of `referrerpolicy` modifier [#98](https://github.com/AdguardTeam/tsurlfilter/issues/98)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## 1.1.6 - 2023-09-22
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Converter now returns an object with `result` and `isConverted` properties instead of just `result`
|
|
20
|
+
- Filter list converter now accepts a second argument `tolerant` which allows to convert filter lists with invalid rules
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- `RawRuleConverter` class for converting raw rules
|
|
25
|
+
- `RawFilterListConverter` class for converting raw filter lists
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Improved converter's performance
|
|
30
|
+
|
|
8
31
|
## 1.1.5 - 2023-09-05
|
|
9
32
|
|
|
10
33
|
### Changed
|