@backstage/backend-defaults 0.17.3-next.2 → 0.17.3

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,26 @@
1
1
  # @backstage/backend-defaults
2
2
 
3
+ ## 0.17.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 4f4bcf5: Upgraded `infinispan` from `^0.12.0` to `^0.13.0` to address known vulnerabilities.
8
+ - a07e6a3: Updated `AzureBlobStorageUrlReader` to reference the correctly-named `AzureBlobStorageIntegration` type from `@backstage/integration`. The previously-used `AzureBlobStorageIntergation` is now an alias for the new type and remains a valid argument to the constructor.
9
+ - b75158b: Adapted Azure-related tests for the Azure SDK upgrade to ESM-style exports. The `AzureBlobStorageUrlReader` now accepts an optional `createContainerClient` dependency for testability without needing to mock the `@azure/storage-blob` module.
10
+ - 89a95ca: Fixed the task worker retry loop to respect the abort signal. Previously, when a task worker encountered an unexpected error, the retry loop would continue indefinitely even after the worker was signaled to stop. The retry loop now checks the abort signal before retrying and passes it to the retry delay, allowing the worker to shut down gracefully.
11
+ - def82d4: Fixed the built-in rate limiter throwing a validation error and refusing to start when `backend.rateLimit` is enabled. Requests are now keyed using the address normalization helper from `express-rate-limit`, which is required by newer versions of that library and ensures IPv6 clients are grouped by their address block rather than by individual address.
12
+ - 0211390: Added a new `v2` invoke endpoint (`/.backstage/actions/v2/actions/:id/invoke`) that accepts a wrapped body format `{ input, secrets }` with secrets validation. The existing `v1` invoke endpoint remains unchanged for backward compatibility. Updated `DefaultActionsService` to use the `v2` endpoint. Updated `DefaultActionsRegistryService` to expose secrets schema in the actions list response and validate secrets on invocation.
13
+ - 34f21c3: Fix gitlabUrlReader issue with retrieving the repository archive tree
14
+ - Updated dependencies
15
+ - @backstage/cli-node@0.3.3
16
+ - @backstage/backend-app-api@1.7.1
17
+ - @backstage/integration@2.0.3
18
+ - @backstage/backend-plugin-api@1.9.2
19
+ - @backstage/config-loader@1.10.12
20
+ - @backstage/plugin-auth-node@0.7.2
21
+ - @backstage/plugin-events-node@0.4.23
22
+ - @backstage/plugin-permission-node@0.11.1
23
+
3
24
  ## 0.17.3-next.2
4
25
 
5
26
  ### Patch Changes
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var version = "0.17.3-next.2";
5
+ var version = "0.17.3";
6
6
  var packageinfo = {
7
7
  version: version};
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-defaults",
3
- "version": "0.17.3-next.2",
3
+ "version": "0.17.3",
4
4
  "description": "Backend defaults used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -218,20 +218,20 @@
218
218
  "@aws-sdk/types": "^3.347.0",
219
219
  "@azure/identity": "^4.0.0",
220
220
  "@azure/storage-blob": "^12.5.0",
221
- "@backstage/backend-app-api": "1.7.1-next.0",
222
- "@backstage/backend-dev-utils": "0.1.7",
223
- "@backstage/backend-plugin-api": "1.9.2-next.1",
224
- "@backstage/cli-node": "0.3.2",
225
- "@backstage/config": "1.3.8",
226
- "@backstage/config-loader": "1.10.11",
227
- "@backstage/errors": "1.3.1",
228
- "@backstage/integration": "2.0.3-next.1",
229
- "@backstage/integration-aws-node": "0.2.0",
230
- "@backstage/plugin-auth-node": "0.7.2-next.0",
231
- "@backstage/plugin-events-node": "0.4.23-next.0",
232
- "@backstage/plugin-permission-common": "0.9.9",
233
- "@backstage/plugin-permission-node": "0.11.1-next.0",
234
- "@backstage/types": "1.2.2",
221
+ "@backstage/backend-app-api": "^1.7.1",
222
+ "@backstage/backend-dev-utils": "^0.1.7",
223
+ "@backstage/backend-plugin-api": "^1.9.2",
224
+ "@backstage/cli-node": "^0.3.3",
225
+ "@backstage/config": "^1.3.8",
226
+ "@backstage/config-loader": "^1.10.12",
227
+ "@backstage/errors": "^1.3.1",
228
+ "@backstage/integration": "^2.0.3",
229
+ "@backstage/integration-aws-node": "^0.2.0",
230
+ "@backstage/plugin-auth-node": "^0.7.2",
231
+ "@backstage/plugin-events-node": "^0.4.23",
232
+ "@backstage/plugin-permission-common": "^0.9.9",
233
+ "@backstage/plugin-permission-node": "^0.11.1",
234
+ "@backstage/types": "^1.2.2",
235
235
  "@google-cloud/storage": "^7.0.0",
236
236
  "@keyv/memcache": "^2.0.1",
237
237
  "@keyv/redis": "^4.0.1",
@@ -254,7 +254,7 @@
254
254
  "fs-extra": "^11.2.0",
255
255
  "git-url-parse": "^15.0.0",
256
256
  "helmet": "^6.0.0",
257
- "infinispan": "^0.12.0",
257
+ "infinispan": "^0.13.0",
258
258
  "iovalkey": "^0.3.3",
259
259
  "is-glob": "^4.0.3",
260
260
  "jose": "^5.0.0",
@@ -286,8 +286,8 @@
286
286
  },
287
287
  "devDependencies": {
288
288
  "@aws-sdk/util-stream-node": "^3.350.0",
289
- "@backstage/backend-test-utils": "1.11.4-next.1",
290
- "@backstage/cli": "0.36.3-next.1",
289
+ "@backstage/backend-test-utils": "^1.11.4",
290
+ "@backstage/cli": "^0.36.3",
291
291
  "@google-cloud/cloud-sql-connector": "^1.4.0",
292
292
  "@types/archiver": "^7.0.0",
293
293
  "@types/base64-stream": "^1.0.2",