@backstage/backend-defaults 0.17.3-next.2 → 0.17.4-next.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,5 +1,40 @@
1
1
  # @backstage/backend-defaults
2
2
 
3
+ ## 0.17.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - aaa7d65: Improved readability of the AWS S3 URL parser by splitting the single monolithic regex into two separate patterns (standard S3 and VPC PrivateLink) with named capture groups. Also made the VPC endpoint region mandatory in the regex, fixing a potential mis-parse when the region segment was absent.
8
+ - 8419f51: Added support for AWS PrivateLink for Amazon S3.
9
+ - Updated dependencies
10
+ - @backstage/config-loader@1.11.0-next.0
11
+ - @backstage/plugin-auth-node@0.7.3-next.0
12
+ - @backstage/backend-app-api@1.7.2-next.0
13
+ - @backstage/plugin-permission-node@0.11.2-next.0
14
+ - @backstage/backend-plugin-api@1.9.3-next.0
15
+ - @backstage/plugin-events-node@0.4.24-next.0
16
+
17
+ ## 0.17.3
18
+
19
+ ### Patch Changes
20
+
21
+ - 4f4bcf5: Upgraded `infinispan` from `^0.12.0` to `^0.13.0` to address known vulnerabilities.
22
+ - 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.
23
+ - 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.
24
+ - 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.
25
+ - 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.
26
+ - 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.
27
+ - 34f21c3: Fix gitlabUrlReader issue with retrieving the repository archive tree
28
+ - Updated dependencies
29
+ - @backstage/cli-node@0.3.3
30
+ - @backstage/backend-app-api@1.7.1
31
+ - @backstage/integration@2.0.3
32
+ - @backstage/backend-plugin-api@1.9.2
33
+ - @backstage/config-loader@1.10.12
34
+ - @backstage/plugin-auth-node@0.7.2
35
+ - @backstage/plugin-events-node@0.4.23
36
+ - @backstage/plugin-permission-node@0.11.1
37
+
3
38
  ## 0.17.3-next.2
4
39
 
5
40
  ### Patch Changes