@frontastic/common 2.36.0 → 2.37.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 CHANGED
@@ -1,4 +1,14 @@
1
1
 
2
+ ## Version 2.37.0 (2022-11-08)
3
+
4
+ ** New Features and Improvements **
5
+
6
+ - Allow fetching categories by ID from commercetools
7
+
8
+ ** Bug fixes **
9
+
10
+ - Don't throw an exception in the replicator on unknown field names
11
+
2
12
  ## Version 2.36.0 (2022-09-20)
3
13
 
4
14
  ** 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.36.0",
4
+ "version": "2.37.0",
5
5
  "repositories": [
6
6
  {
7
7
  "type": "path",
@@ -31,7 +31,7 @@
31
31
  "domnikl/statsd": "^2.6",
32
32
  "guzzlehttp/guzzle": "^6.3",
33
33
  "justinrainbow/json-schema": "@stable",
34
- "kore/data-object": "@stable",
34
+ "frontastic/data-object": "@stable",
35
35
  "league/oauth2-client": "^2.3",
36
36
  "myclabs/deep-copy": "^1.0",
37
37
  "qafoolabs/no-framework-bundle": "^2.6",
@@ -17,6 +17,7 @@ Property|Type|Default|Required|Description
17
17
  `configuration` | `array` | `[]` | *Yes* |
18
18
  `environments` | `array` | `['production', 'staging', 'development']` | *Yes* |
19
19
  `projects` | [`Project`](Project.md)[] | `[]` | *Yes* |
20
+ `netlifyUrl` | `?string` | `null` | - |
20
21
 
21
22
  ## Methods
22
23
 
@@ -15,6 +15,7 @@ Property|Type|Default|Required|Description
15
15
  `publicUrl` | `string` | | *Yes* |
16
16
  `webpackPort` | `int` | | *Yes* |
17
17
  `ssrPort` | `int` | | *Yes* |
18
+ `encryptedFieldsPublicKey` | `string|null` | `null` | - |
18
19
  `configuration` | `array` | `[]` | *Yes* |
19
20
  `data` | `array` | `[]` | *Yes* | Additional external project data from sources like tideways. Does not follow any defined schema.
20
21
  `languages` | `string[]` | `[]` | *Yes* |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontastic/common",
3
- "version": "2.36.0",
3
+ "version": "2.37.0",
4
4
  "devDependencies": {
5
5
  "@babel/core": "7.5.4",
6
6
  "@babel/plugin-proposal-class-properties": "^7.5.0",