perimeter_x 2.3.0 → 2.3.1
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.
- checksums.yaml +4 -4
- data/changelog.md +6 -0
- data/lib/perimeterx/utils/templates/block_template.mustache +5 -5
- data/lib/perimeterx/version.rb +1 -1
- data/px_metadata.json +1 -1
- data/readme.md +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6018176a0638b42f0652e82640ef7e1365ab95eb2ab60eb590293abd46c6ada
|
|
4
|
+
data.tar.gz: 9f83381eebbf00b3d5ac3779471ca9b6a3b9f47d20186c73c09baf95e4cffabf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5f68e2053d41f8e2a2e2e668c8db35f8d573c68840c9757210a7d5e52dcd46e38190c5579425c625afd4802df4c5333fe4069f582d71db61aadb6c78ac28c6f9
|
|
7
|
+
data.tar.gz: 1780884b590f3680969333f0c66d7e32b3ec402640fb5341e37cffcfef6904b79dc679c0de07acd291b0ddf7b6a46044add5f41a9713bff3b5bf6be0cd38c250
|
data/changelog.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [2.3.1] - 2022-04-11
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- URLs with query params did not render properly on new block page
|
|
13
|
+
|
|
8
14
|
## [2.3.0] - 2022-04-10
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -14,16 +14,16 @@
|
|
|
14
14
|
window._pxVid = '{{vid}}';
|
|
15
15
|
window._pxUuid = '{{uuid}}';
|
|
16
16
|
window._pxAppId = '{{appId}}';
|
|
17
|
-
window._pxCustomLogo = '{{customLogo}}';
|
|
18
|
-
window._pxHostUrl = '{{hostUrl}}';
|
|
19
|
-
window._pxJsClientSrc = '{{jsClientSrc}}';
|
|
17
|
+
window._pxCustomLogo = '{{{customLogo}}}';
|
|
18
|
+
window._pxHostUrl = '{{{hostUrl}}}';
|
|
19
|
+
window._pxJsClientSrc = '{{{jsClientSrc}}}';
|
|
20
20
|
window._pxFirstPartyEnabled = {{firstPartyEnabled}};
|
|
21
21
|
var script = document.createElement('script');
|
|
22
|
-
script.src = '{{blockScript}}';
|
|
22
|
+
script.src = '{{{blockScript}}}';
|
|
23
23
|
document.head.appendChild(script);
|
|
24
24
|
script.onerror = function () {
|
|
25
25
|
script = document.createElement('script');
|
|
26
|
-
script.src = '{{altBlockScript}}';
|
|
26
|
+
script.src = '{{{altBlockScript}}}';
|
|
27
27
|
script.onerror = window._pxDisplayErrorMessage;
|
|
28
28
|
document.head.appendChild(script);
|
|
29
29
|
};
|
data/lib/perimeterx/version.rb
CHANGED
data/px_metadata.json
CHANGED
data/readme.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[PerimeterX](http://www.perimeterx.com) Ruby SDK
|
|
6
6
|
=============================================================
|
|
7
7
|
|
|
8
|
-
> Latest stable version: [v2.3.
|
|
8
|
+
> Latest stable version: [v2.3.1](https://rubygems.org/gems/perimeter_x)
|
|
9
9
|
|
|
10
10
|
Table of Contents
|
|
11
11
|
-----------------
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: perimeter_x
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nitzan Goldfeder
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|