@frontastic/common 2.47.0 → 2.48.0
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.
- package/CHANGELOG.md +11 -0
- package/composer.json +11 -11
- package/docs/php/ReplicatorBundle/Domain/Command.md +1 -0
- package/package.json +1 -1
- package/phpstan.neon +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
|
|
2
|
+
## Version 2.48.0 (2023-10-11)
|
|
3
|
+
|
|
4
|
+
** New Features and Improvements **
|
|
5
|
+
|
|
6
|
+
- Add compatibiltiy with Symfony 5.4.
|
|
7
|
+
- Add compatibility with Contentful SDK version 7.
|
|
8
|
+
|
|
9
|
+
** Bug fixes **
|
|
10
|
+
|
|
11
|
+
- Always return an array with facets in Shopify product searches.
|
|
12
|
+
|
|
2
13
|
## Version 2.47.0 (2023-09-05)
|
|
3
14
|
|
|
4
15
|
** New Features and Improvements **
|
package/composer.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "frontastic/common",
|
|
3
3
|
"license": "None",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.48.0",
|
|
5
5
|
"repositories": [
|
|
6
6
|
{
|
|
7
7
|
"type": "path",
|
|
@@ -24,24 +24,24 @@
|
|
|
24
24
|
"cache/filesystem-adapter": "^1.0",
|
|
25
25
|
"cloudinary/cloudinary_php": "^1.8",
|
|
26
26
|
"composer/package-versions-deprecated": "@stable",
|
|
27
|
-
"contentful/contentful": "^6.0",
|
|
27
|
+
"contentful/contentful": "^6.0|^7.0",
|
|
28
28
|
"domnikl/statsd": "^2.6",
|
|
29
29
|
"guzzlehttp/guzzle": "^6.3",
|
|
30
30
|
"justinrainbow/json-schema": "@stable",
|
|
31
31
|
"frontastic/data-object": "@stable",
|
|
32
32
|
"league/oauth2-client": "^2.3",
|
|
33
33
|
"myclabs/deep-copy": "^1.0",
|
|
34
|
-
"qafoolabs/no-framework-bundle": "^2.6",
|
|
35
34
|
"ramsey/uuid": "^3.9||^4",
|
|
36
35
|
"seld/jsonlint": "@stable",
|
|
37
36
|
"swiftmailer/swiftmailer": "^6.2",
|
|
38
|
-
"symfony/config": "^4.4",
|
|
39
|
-
"symfony/dependency-injection": "^4.4",
|
|
40
|
-
"symfony/
|
|
41
|
-
"symfony/
|
|
42
|
-
"symfony/
|
|
43
|
-
"symfony/
|
|
44
|
-
"symfony/
|
|
37
|
+
"symfony/config": "^4.4||^5.4",
|
|
38
|
+
"symfony/dependency-injection": "^4.4||^5.4",
|
|
39
|
+
"symfony/event-dispatcher": "^4.4||^5.4",
|
|
40
|
+
"symfony/expression-language": "^4.4||^5.4",
|
|
41
|
+
"symfony/finder": "^4.4||^5.4",
|
|
42
|
+
"symfony/http-kernel": "^4.4||^5.4",
|
|
43
|
+
"symfony/symfony": "^4.4||^5.4",
|
|
44
|
+
"symfony/yaml": "^4.4||^5.4",
|
|
45
45
|
"woohoolabs/yang": "^2.3"
|
|
46
46
|
},
|
|
47
47
|
"require-dev": {
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"phake/phake": "^4.0",
|
|
52
52
|
"phploc/phploc": "@stable",
|
|
53
53
|
"phpmd/phpmd": "@stable",
|
|
54
|
-
"phpstan/phpstan": "^
|
|
54
|
+
"phpstan/phpstan": "^1.10",
|
|
55
55
|
"phpunit/phpunit": "^8",
|
|
56
56
|
"sebastian/phpcpd": "@stable",
|
|
57
57
|
"squizlabs/php_codesniffer": "@stable",
|
|
@@ -11,5 +11,6 @@ Property|Type|Default|Required|Description
|
|
|
11
11
|
`customer` | `string` | | *Yes* |
|
|
12
12
|
`allowCache` | `bool` | `true` | *Yes* |
|
|
13
13
|
`payload` | `array` | `[]` | *Yes* |
|
|
14
|
+
`environment` | `string` | `null` | - |
|
|
14
15
|
|
|
15
16
|
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|
package/package.json
CHANGED
package/phpstan.neon
CHANGED
|
@@ -4,7 +4,7 @@ parameters:
|
|
|
4
4
|
- src/php
|
|
5
5
|
- test/api
|
|
6
6
|
- test/php
|
|
7
|
-
|
|
7
|
+
excludePaths:
|
|
8
8
|
- test/api/var/*
|
|
9
9
|
inferPrivatePropertyTypeFromConstructor: true
|
|
10
10
|
ignoreErrors:
|
|
@@ -16,4 +16,5 @@ parameters:
|
|
|
16
16
|
- '#Result of method Kore\\DataObject\\DataObject::__get\(\) \(void\) is used.#'
|
|
17
17
|
- '#Function debug not found.*#'
|
|
18
18
|
- '#simdjson_decode not found#'
|
|
19
|
+
- '#Variable \$[a-zA-Z]+ on left side of \?\? always exists and is not nullable.#'
|
|
19
20
|
reportUnmatchedIgnoredErrors: false
|