Skip to content

Commit

Permalink
resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
zhelvis committed Sep 5, 2023
2 parents f61e5b7 + a624bfa commit 3d283a7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/agtree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog][keepachangelog], and this project adheres to [Semantic Versioning][semver].


## Unreleased
## 1.1.5 - 2023-09-05

### Changed

- Validation of `$csp` and `$permissions` modifiers value
by custom pre-defined validator instead of regular expression

### Added

- Exports to `package.json`

## 1.1.4 - 2023-08-30

### Fixed
Expand Down
6 changes: 4 additions & 2 deletions packages/tswebextension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.3.14] - 2023-09-05

### Fixed
- Domains from the allowlist were not properly escaped before being passed into the regular expression rules. [#2461](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2461).
- Cosmetic rule false positive applying when tab context changed while injection retry [#2459](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2459).
- Domains from the allowlist are not properly escaped before being passed into the regular expression rules
[#2461](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2461).
- Cosmetic rule false positive applying when tab context changed while injection retry
[#2459](https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2459).


## [0.3.13] - 2023-08-25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ export class RequestBlockingApi {
const redirectUrl = redirectsService.createRedirectUrl(rule.getAdvancedModifierValue(), requestUrl);
if (redirectUrl) {
RequestBlockingApi.logRuleApplying(eventId, rule, tabId);
// redirects should be considered as blocked for the tab blocked request count
// which is displayed on the extension badge
// https://github.com/AdguardTeam/AdguardBrowserExtension/issues/2443
tabsApi.incrementTabBlockedRequestCount(tabId);
return { redirectUrl };
}
}
Expand Down

0 comments on commit 3d283a7

Please sign in to comment.