Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## 1.0.0 (2026-04-27)

### Features

* automated release pipeline with semantic-release ([552dc6e](https://github.com/convertcom/php-sdk/commit/552dc6e91d06d053a38b7ef3f59392499959df48))
* **utils:** add LogUtils::toLoggable helper for safe logging of OpenAPI models ([d90e56a](https://github.com/convertcom/php-sdk/commit/d90e56a2118aedfcc59fa9416ca0311f0dd1cee9)), closes [#11](https://github.com/convertcom/php-sdk/issues/11)

### Bug Fixes

* ConvertSDK test update ([d4340d6](https://github.com/convertcom/php-sdk/commit/d4340d6c80f4cfa5888706b332699e57df0d75af))
* **data,experience,bucketing,api:** wrap remaining log contexts via LogUtils::toLoggable ([3d22905](https://github.com/convertcom/php-sdk/commit/3d22905f2af4e9a33c84fc72b66c7628e6b72f4e)), closes [#11](https://github.com/convertcom/php-sdk/issues/11)
* integration test updates, CI and README fixes ([67ea9fe](https://github.com/convertcom/php-sdk/commit/67ea9fe5d3621208c8fc6a09148e650dd97f0991))
* **release:** migrate rollover-version-plugin to conventional-commits-parser v6 API ([9ff166a](https://github.com/convertcom/php-sdk/commit/9ff166a583a19df7ce67b64ceef5b7626e3e6d55))
* **release:** repair Packagist publishing pipeline ([d56be10](https://github.com/convertcom/php-sdk/commit/d56be107cde6da238a47dc974fe097a680e7e39a))
* **release:** use node-modules linker for semantic-release compatibility ([47dddf1](https://github.com/convertcom/php-sdk/commit/47dddf1f275058849d59f0dd97b98c4f5f2afd3b))
* rollover version plugin and release docs update ([8fd48d9](https://github.com/convertcom/php-sdk/commit/8fd48d9f2c1bb9ed2914ea90ba11566a95bf324e))
* **rules:** wrap log context to prevent OpenAPI enum serialization error ([e6ea094](https://github.com/convertcom/php-sdk/commit/e6ea094abb0b0e60defab1096175d6289a682966)), closes [#11](https://github.com/convertcom/php-sdk/issues/11) [#11](https://github.com/convertcom/php-sdk/issues/11)
* test fixes and cleanup ([692664b](https://github.com/convertcom/php-sdk/commit/692664b22fe8d6b3598993e79fc525f64c50e0e0))
* update CI workflow configuration ([caa6917](https://github.com/convertcom/php-sdk/commit/caa69179af03af7f5e8ef123281d37eb65ee3db2))
* update full-chain integration test ([463c69a](https://github.com/convertcom/php-sdk/commit/463c69a36f632772115b702703847c9a37b972fe))

### Refactoring

* reorganize Types package — move OpenAPI models to Generated/ ([a143a1d](https://github.com/convertcom/php-sdk/commit/a143a1d60df2aa22d26b71c0f2666c9b503b4473))
* **sdk:** address adversarial-review findings on PR [#29](https://github.com/convertcom/php-sdk/issues/29) ([1d9d751](https://github.com/convertcom/php-sdk/commit/1d9d7515c1b4cd5e0ae8a45cee23cf1864cfe0dd))
10 changes: 5 additions & 5 deletions packages/Api/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
"psr/http-factory": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"php-http/discovery": "^1.19",
"convertcom/php-sdk-enums": ">=1.0.0",
"convertcom/php-sdk-event": ">=1.0.0",
"convertcom/php-sdk-utils": ">=1.0.0",
"convertcom/php-sdk-logger": ">=1.0.0",
"convertcom/php-sdk-types": ">=1.0.0"
"convertcom/php-sdk-enums": "^1.0.0",
"convertcom/php-sdk-event": "^1.0.0",
"convertcom/php-sdk-utils": "^1.0.0",
"convertcom/php-sdk-logger": "^1.0.0",
"convertcom/php-sdk-types": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
Expand Down
14 changes: 7 additions & 7 deletions packages/Bucketing/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
],
"require": {
"php": "^8.2",
"convertcom/php-sdk-api": ">=1.0.0",
"convertcom/php-sdk-enums": ">=1.0.0",
"convertcom/php-sdk-logger": ">=1.0.0",
"convertcom/php-sdk-utils": ">=1.0.0",
"convertcom/php-sdk-event": ">=1.0.0",
"convertcom/php-sdk-types": ">=1.0.0"
"convertcom/php-sdk-api": "^1.0.0",
"convertcom/php-sdk-enums": "^1.0.0",
"convertcom/php-sdk-logger": "^1.0.0",
"convertcom/php-sdk-utils": "^1.0.0",
"convertcom/php-sdk-event": "^1.0.0",
"convertcom/php-sdk-types": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
Expand All @@ -56,4 +56,4 @@
"build": "php build.php"
},
"version": "1.0.0"
}
}
104 changes: 52 additions & 52 deletions packages/Data/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,60 +5,60 @@
"license": "Apache-2.0",
"version": "1.0.0",
Comment thread
abbaseya marked this conversation as resolved.
"authors": [
{
"name": "Convert Insights, Inc"
}
{
"name": "Convert Insights, Inc"
}
],
"autoload": {
"psr-4": {
"ConvertSdk\\": "src/",
"ConvertSdk\\Config\\": "../Php-sdk/src/Config/"
}
"psr-4": {
"ConvertSdk\\": "src/",
"ConvertSdk\\Config\\": "../Php-sdk/src/Config/"
Comment thread
abbaseya marked this conversation as resolved.
}
},
"repositories": {
"Enums": {
"type": "path",
"url": "../Enums"
},
"Api": {
"type": "path",
"url": "../Api"
},
"Logger": {
"type": "path",
"url": "../Logger"
},
"Utils": {
"type": "path",
"url": "../Utils"
},
"Event": {
"type": "path",
"url": "../Event"
},
"Bucketing": {
"type": "path",
"url": "../Bucketing"
},
"Rules": {
"type": "path",
"url": "../Rules"
},
"Types": {
"type": "path",
"url": "../Types"
}
"Enums": {
"type": "path",
"url": "../Enums"
},
"Api": {
"type": "path",
"url": "../Api"
},
"Logger": {
"type": "path",
"url": "../Logger"
},
"Utils": {
"type": "path",
"url": "../Utils"
},
"Event": {
"type": "path",
"url": "../Event"
},
"Bucketing": {
"type": "path",
"url": "../Bucketing"
},
"Rules": {
"type": "path",
"url": "../Rules"
},
"Types": {
"type": "path",
"url": "../Types"
}
},
"require": {
"php": "^8.2",
"convertcom/php-sdk-api": ">=1.0.0",
"convertcom/php-sdk-bucketing": ">=1.0.0",
"convertcom/php-sdk-enums": ">=1.0.0",
"convertcom/php-sdk-event": ">=1.0.0",
"convertcom/php-sdk-logger": ">=1.0.0",
"convertcom/php-sdk-rules": ">=1.0.0",
"convertcom/php-sdk-types": ">=1.0.0",
"convertcom/php-sdk-utils": ">=1.0.0",
"convertcom/php-sdk-api": "^1.0.0",
"convertcom/php-sdk-bucketing": "^1.0.0",
"convertcom/php-sdk-enums": "^1.0.0",
"convertcom/php-sdk-event": "^1.0.0",
"convertcom/php-sdk-logger": "^1.0.0",
"convertcom/php-sdk-rules": "^1.0.0",
"convertcom/php-sdk-types": "^1.0.0",
"convertcom/php-sdk-utils": "^1.0.0",
"psy/psysh": "@stable"
},
"require-dev": {
Expand All @@ -67,11 +67,11 @@
"phpunit/phpunit": "^11.0"
},
"scripts": {
"test": "phpunit",
"coverage": "vendor/bin/phpunit --coverage-text"
"test": "phpunit",
"coverage": "vendor/bin/phpunit --coverage-text"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
"optimize-autoloader": true,
"sort-packages": true
}
}
}
40 changes: 20 additions & 20 deletions packages/Enums/composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "convertcom/php-sdk-enums",
"description": "PHP implementation of Convert JS SDK enums",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Convert Insights, Inc"
}
],
"autoload": {
"psr-4": {
"ConvertSdk\\Enums\\": "src/"
}
},
"require": {
"php": "^8.2"
},
"minimum-stability": "stable",
"prefer-stable": true,
"version": "1.0.0"
"name": "convertcom/php-sdk-enums",
"description": "PHP implementation of Convert JS SDK enums",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Convert Insights, Inc"
}
],
"autoload": {
"psr-4": {
"ConvertSdk\\Enums\\": "src/"
}
},
"require": {
"php": "^8.2"
},
"minimum-stability": "stable",
"prefer-stable": true,
"version": "1.0.0"
Comment thread
abbaseya marked this conversation as resolved.
}
27 changes: 13 additions & 14 deletions packages/Event/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"license": "Apache-2.0",
"version": "1.0.0",
"authors": [
{
"name": "Convert Insights, Inc"
}
{
"name": "Convert Insights, Inc"
}
],
"autoload": {
"psr-4": {
"ConvertSdk\\Event\\": "src/"
}
"psr-4": {
"ConvertSdk\\Event\\": "src/"
}
},
"repositories": {
"Enums": {
Expand All @@ -25,18 +25,17 @@
}
},
"require": {
"php": "^8.2",
"convertcom/php-sdk-enums": ">=1.0.0",
"convertcom/php-sdk-logger": ">=1.0.0"
"php": "^8.2",
"convertcom/php-sdk-enums": "^1.0.0",
"convertcom/php-sdk-logger": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"vlucas/phpdotenv": "^5.5"
"phpunit/phpunit": "^11.0",
"vlucas/phpdotenv": "^5.5"
},
"scripts": {
"test": "phpunit"
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}

}
Loading
Loading