Skip to content

Commit

Permalink
Merge pull request #99 from PerimeterX/release/v3.2.2
Browse files Browse the repository at this point in the history
Release/v3.2.2 to master
  • Loading branch information
chen-zimmer-px authored Aug 2, 2023
2 parents 6c48651 + 65308ca commit 2299493
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)

## [3.2.1] - 2023-08-17
## [3.2.2] - 2023-08-02
### Fixed
- Added firstPartyEnabled field to advanced blocking response


## [3.2.1] - 2023-07-17
### Fixed
- Fixed advanced blocking response feature

Expand Down
5 changes: 3 additions & 2 deletions PerimeterXModule/Internals/PxBlock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,9 @@ public void ResponseBlockPage(PxContext pxContext, PxModuleConfigurationSection
Vid = pxContext.Vid,
JsClientSrc = props["jsClientSrc"],
HostUrl = props["hostUrl"],
BlockScript = props["blockScript"]
}, output);
BlockScript = props["blockScript"],
firstPartyEnabled = props["firstPartyEnabled"]
}, output);
content = output.ToString();
}

Expand Down
4 changes: 3 additions & 1 deletion PerimeterXModule/Internals/Templates/JsonResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,7 @@ class JsonResponse : IJsonResponse
public string HostUrl;
[DataMember(Name = "blockScript")]
public string BlockScript;
}
[DataMember(Name = "firstPartyEnabled")]
public string firstPartyEnabled;
}
}
4 changes: 2 additions & 2 deletions PerimeterXModule/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.2.1")]
[assembly: AssemblyFileVersion("3.2.1")]
[assembly: AssemblyVersion("3.2.2")]
[assembly: AssemblyFileVersion("3.2.2")]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[PerimeterX](http://www.perimeterx.com) ASP.NET SDK
===================================================

> Latest stable version: [v3.2.1](https://www.nuget.org/packages/PerimeterXModule/3.2.1)
> Latest stable version: [v3.2.2](https://www.nuget.org/packages/PerimeterXModule/3.2.1)
Table of Contents
-----------------
Expand Down
2 changes: 1 addition & 1 deletion px_metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "3.2.1",
"version": "3.2.2",
"supported_features": [
"additional_activity_handler",
"advanced_blocking_response",
Expand Down

0 comments on commit 2299493

Please sign in to comment.