Skip to content

Commit 5965ce8

Browse files
Merge pull request #210 from PerimeterX/release/v3.10.2
Release/v3.10.2 to master
2 parents ac9dd83 + ea4cd9a commit 5965ce8

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [3.10.2] - 2024-09-11
9+
10+
### Fixed
11+
12+
- Bug that caused custom parameters not to be added to async activities
13+
714
## [3.10.1] - 2022-12-06
815

916
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# [PerimeterX](http://www.perimeterx.com) PHP SDK
88

9-
> Latest stable version: [v3.10.1](https://packagist.org/packages/perimeterx/php-sdk#3.10.1)
9+
> Latest stable version: [v3.10.2](https://packagist.org/packages/perimeterx/php-sdk#3.10.1)
1010
1111
## Table of Contents
1212

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "perimeterx/php-sdk",
33
"description": "PerimeterX SDK for PHP",
4-
"version" : "3.10.1",
4+
"version" : "3.10.2",
55
"keywords": [
66
"perimeterx",
77
"websecurity",

px_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.10.1",
2+
"version": "3.10.2",
33
"supported_features": [
44
"additional_activity_handler",
55
"advanced_blocking_response",

src/Perimeterx.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private function __construct(array $pxConfig = [])
9898
'max_buffer_len' => 1,
9999
'send_page_activities' => true,
100100
'send_block_activities' => true,
101-
'sdk_name' => 'PHP SDK v3.10.1',
101+
'sdk_name' => 'PHP SDK v3.10.2',
102102
'debug_mode' => false,
103103
'perimeterx_server_host' => 'https://sapi-' . strtolower($pxConfig['app_id']) . '.perimeterx.net',
104104
'captcha_script_host' => 'https://captcha.px-cdn.net',

src/PerimeterxActivitiesClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function generateActivity($activityType, $pxCtx, $details) {
173173
}
174174

175175
if (isset($this->pxConfig['enrich_custom_params'])) {
176-
$this->pxUtils->handleCustomParams($this->pxConfig, $pxData['details']);
176+
$this->pxUtils->handleCustomParams($this->pxConfig, $details);
177177
}
178178
}
179179

0 commit comments

Comments
 (0)