@frontastic/common 2.21.0 → 2.21.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # common Changelog
2
2
 
3
+ ## `2.21.1` (2021-11-30)
4
+
5
+ * fix: make product price nullable in Algolia integration
6
+
3
7
  ## `2.21.0` (2021-10-26)
4
8
 
5
9
  * !feat(FP-646): implemented traceability strategy adding a correlation-id to all requests and responses
package/composer.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "frontastic/common",
3
3
  "license": "None",
4
- "version": "2.21.0",
4
+ "version": "2.21.1",
5
5
  "repositories": [
6
6
  {
7
7
  "type": "path",
package/docs/README.md CHANGED
@@ -129,6 +129,7 @@ Here you find the API documentation for the relevant classes:
129
129
  * [SwiftMail](php/CoreBundle/Domain/Mailer/SwiftMail.md)
130
130
  * [PaginationAdapter](php/CoreBundle/Domain/PaginationAdapter.md)
131
131
  * [RequestProvider](php/CoreBundle/Domain/RequestProvider.md)
132
+ * [Tracing](php/CoreBundle/Domain/Tracing.md)
132
133
  * [Versioner](php/CoreBundle/Domain/Versioner.md)
133
134
  * EventListener
134
135
  * [JsonExceptionListener](php/CoreBundle/EventListener/JsonExceptionListener.md)
@@ -0,0 +1,17 @@
1
+ # Tracing
2
+
3
+ **Fully Qualified**: [`\Frontastic\Common\CoreBundle\Domain\Tracing`](../../../../src/php/CoreBundle/Domain/Tracing.php)
4
+
5
+ ## Methods
6
+
7
+ * [getCurrentTraceId()](#getcurrenttraceid)
8
+
9
+ ### getCurrentTraceId()
10
+
11
+ ```php
12
+ static public function getCurrentTraceId(): mixed
13
+ ```
14
+
15
+ Return Value: `mixed`
16
+
17
+ Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontastic/common",
3
- "version": "2.21.0",
3
+ "version": "2.21.1",
4
4
  "devDependencies": {
5
5
  "@babel/core": "7.5.4",
6
6
  "@babel/plugin-proposal-class-properties": "^7.5.0",