Skip to content

Releases: AdguardTeam/tsurlfilter

Logger v1.0.2

23 Sep 12:25
Compare
Choose a tag to compare

We are happy to announce the release of Logger v1.0.2!

Please see the CHANGELOG for more information.

TSUrlFilter v3.1.0-alpha.4

20 Sep 14:12
Compare
Choose a tag to compare

We are happy to announce the release of TSUrlFilter v3.1.0-alpha.4!

Please see the CHANGELOG for more information.

TSUrlFilter v3.0.4

19 Sep 16:36
Compare
Choose a tag to compare

We are happy to announce the release of TSUrlFilter v3.0.4!

Please see the CHANGELOG for more information.

TSUrlFilter v3.0.3

19 Sep 14:30
Compare
Choose a tag to compare

We are happy to announce the release of TSUrlFilter v3.0.3!

Please see the CHANGELOG for more information.

CSS Tokenizer v1.1.1

19 Sep 13:23
Compare
Choose a tag to compare

We are happy to announce the release of CSS Tokenizer v1.1.1!

Please see the CHANGELOG for more information.

AGTree v2.1.2

19 Sep 15:45
Compare
Choose a tag to compare

We are happy to announce the release of AGTree v2.1.2!

Please see the CHANGELOG for more information.

AGTree v2.1.1

19 Sep 13:27
Compare
Choose a tag to compare

We are happy to announce the release of AGTree v2.1.1!

Please see the CHANGELOG for more information.

v0.7.1

09 Sep 16:10
Compare
Choose a tag to compare
  • memory optimisation
  • renamed some public methods in NetworkRule and CosmeticRule classes

v0.6.1

03 Sep 09:18
Compare
Choose a tag to compare
  • Performance issues

However it was necessary to change public methods signatures in this release:

matchRequest


    /**
     * Matches the specified request against the filtering engine and returns the matching result.
     * In case frameRules parameter is not specified, frame rules will be selected matching request.sourceUrl.
     *
     * @param request - request to check
     * @param frameRules - source rules or undefined
     * @return matching result
     */
    matchRequest(request: Request, frameRule: NetworkRule | null = null): MatchingResult
matchFrame
    /**
     * Matches current frame and returns document-level allowlist rule if found.
     *
     * @param frameUrl
     */
    matchFrame(frameUrl: string): NetworkRule | null