@red-hat-developer-hub/backstage-plugin-orchestrator-common 3.6.1 → 3.6.2

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,11 @@
1
1
  ## @red-hat-developer-hub/backstage-plugin-orchestrator-common [1.13.1](https://github.com/janus-idp/backstage-plugins/compare/@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.0...@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.1) (2024-08-02)
2
2
 
3
+ ## 3.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d85bf56: chore: add new config value for contentLengthLimit
8
+
3
9
  ## 3.6.1
4
10
 
5
11
  ### Patch Changes
package/config.d.ts CHANGED
@@ -19,6 +19,11 @@ export interface Config {
19
19
  * Configuration for the Orchestrator plugin.
20
20
  */
21
21
  orchestrator?: {
22
+ /**
23
+ * Set the content length limit for the requests.
24
+ * Defaults to 102400 bytes (100kb)
25
+ */
26
+ contentLengthLimit?: string;
22
27
  sonataFlowService: {
23
28
  /**
24
29
  * Base URL of the Sonata Flow service.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@red-hat-developer-hub/backstage-plugin-orchestrator-common",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",