Skip to content
This repository was archived by the owner on Jul 2, 2025. It is now read-only.

Commit 77f6ce7

Browse files
committed
chore(release): 1.21.0 [skip ci]
# [1.21.0](v1.20.0...v1.21.0) (2025-01-08) ### Features * add project et environment to caller ([#142](#142)) ([bbbd582](bbbd582))
1 parent bbbd582 commit 77f6ce7

File tree

11 files changed

+34
-27
lines changed

11 files changed

+34
-27
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [1.21.0](https://github.com/ForestAdmin/agent-php/compare/v1.20.0...v1.21.0) (2025-01-08)
2+
3+
4+
### Features
5+
6+
* add project et environment to caller ([#142](https://github.com/ForestAdmin/agent-php/issues/142)) ([bbbd582](https://github.com/ForestAdmin/agent-php/commit/bbbd582ce6f4622276ce5047c20150e314a6a7cb))
7+
18
# [1.20.0](https://github.com/ForestAdmin/agent-php/compare/v1.19.3...v1.20.0) (2024-12-19)
29

310

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"forestadmin/php-datasource-eloquent": "self.version",
8080
"forestadmin/php-datasource-toolkit": "self.version"
8181
},
82-
"version": "1.20.0",
82+
"version": "1.21.0",
8383
"minimum-stability": "stable",
8484
"prefer-stable": true
8585
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-php",
3-
"version": "1.20.0",
3+
"version": "1.21.0",
44
"description": "The official agent PHP for Forest.",
55
"private": false,
66
"scripts": {

packages/Agent/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Subtree split of the PHP Agent Toolkit component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
99
"firebase/php-jwt": "^6.2",
@@ -23,9 +23,9 @@
2323
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
2424
"symfony/http-foundation": "^5.4|^6.0|^7.0",
2525
"symfony/http-kernel": "^5.4|^6.0|^7.0",
26-
"forestadmin/php-datasource-customizer": "1.20.0",
27-
"forestadmin/php-datasource-toolkit": "1.20.0",
28-
"forestadmin/php-base-datasource": "1.20.0",
26+
"forestadmin/php-datasource-customizer": "1.21.0",
27+
"forestadmin/php-datasource-toolkit": "1.21.0",
28+
"forestadmin/php-base-datasource": "1.21.0",
2929
"monolog/monolog": "^2.5|^3.0",
3030
"laravel/serializable-closure": "^1.3"
3131
},

packages/Agent/src/Utils/ForestSchema/SchemaEmitter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class SchemaEmitter
1111
{
1212
public const LIANA_NAME = 'agent-php';
1313

14-
public const LIANA_VERSION = '1.20.0';
14+
public const LIANA_VERSION = '1.21.0';
1515

1616
public static function getSerializedSchema(Datasource $datasource)
1717
{

packages/BaseDatasource/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"description": "Subtree split of the PHP Base Datasource component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
9-
"forestadmin/php-agent-toolkit": "1.20.0",
10-
"forestadmin/php-datasource-toolkit": "1.20.0",
9+
"forestadmin/php-agent-toolkit": "1.21.0",
10+
"forestadmin/php-datasource-toolkit": "1.21.0",
1111
"illuminate/database": "^v8.83|^9.0|^10.0|^11.0",
1212
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
1313
},

packages/DatasourceCustomizer/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"description": "Subtree split of the PHP Datasource Customizer component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
99
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
1010
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
1111
"nesbot/carbon": "^2.58|^3.0",
1212
"symfony/http-kernel": "^5.4|^6.0|^7.0",
13-
"forestadmin/php-datasource-toolkit": "1.20.0",
14-
"forestadmin/php-agent-toolkit": "1.20.0"
13+
"forestadmin/php-datasource-toolkit": "1.21.0",
14+
"forestadmin/php-agent-toolkit": "1.21.0"
1515
},
1616
"require-dev": {
1717
"friendsofphp/php-cs-fixer": "^3.0",

packages/DatasourceDoctrine/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Subtree split of the PHP Datasource Doctrine component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
99
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
@@ -13,9 +13,9 @@
1313
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
1414
"symfony/http-foundation": "^5.4|^6.0|^7.0",
1515
"symfony/http-kernel": "^5.4|^6.0|^7.0",
16-
"forestadmin/php-agent-toolkit": "1.20.0",
17-
"forestadmin/php-datasource-toolkit": "1.20.0",
18-
"forestadmin/php-base-datasource": "1.20.0",
16+
"forestadmin/php-agent-toolkit": "1.21.0",
17+
"forestadmin/php-datasource-toolkit": "1.21.0",
18+
"forestadmin/php-base-datasource": "1.21.0",
1919
"doctrine/orm": "^2.8|^3.0"
2020
},
2121
"require-dev": {

packages/DatasourceDummy/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"description": "Subtree split of the PHP Datasource Dummy component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
9-
"forestadmin/php-agent-toolkit": "1.20.0",
10-
"forestadmin/php-datasource-toolkit": "1.20.0"
9+
"forestadmin/php-agent-toolkit": "1.21.0",
10+
"forestadmin/php-datasource-toolkit": "1.21.0"
1111
},
1212
"require-dev": {
1313
"friendsofphp/php-cs-fixer": "^3.0",

packages/DatasourceEloquent/composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Subtree split of the PHP Datasource Doctrine component",
44
"type": "library",
55
"license": "GPL-3.0-or-later",
6-
"version": "1.20.0",
6+
"version": "1.21.0",
77
"require": {
88
"php": "^8.0",
99
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
@@ -14,9 +14,9 @@
1414
"symfony/http-foundation": "^5.4|^6.0|^7.0",
1515
"symfony/http-kernel": "^5.4|^6.0|^7.0",
1616
"composer/class-map-generator": "^1.0",
17-
"forestadmin/php-agent-toolkit": "1.20.0",
18-
"forestadmin/php-datasource-toolkit": "1.20.0",
19-
"forestadmin/php-base-datasource": "1.20.0"
17+
"forestadmin/php-agent-toolkit": "1.21.0",
18+
"forestadmin/php-datasource-toolkit": "1.21.0",
19+
"forestadmin/php-base-datasource": "1.21.0"
2020
},
2121
"require-dev": {
2222
"friendsofphp/php-cs-fixer": "^3.0",

0 commit comments

Comments
 (0)