@backstage/backend-defaults 0.17.4 → 0.17.5-next.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 +28 -2
- package/config.schema.json +2415 -0
- package/dist/cache.d.ts +9 -0
- package/dist/entrypoints/cache/CacheManager.cjs.js +67 -23
- package/dist/entrypoints/cache/CacheManager.cjs.js.map +1 -1
- package/dist/entrypoints/cache/providers/infinispan/InfinispanOptionsMapper.cjs.js +17 -20
- package/dist/entrypoints/cache/providers/infinispan/InfinispanOptionsMapper.cjs.js.map +1 -1
- package/dist/entrypoints/cache/types.cjs.js.map +1 -1
- package/dist/entrypoints/urlReader/lib/AwsS3UrlReader.cjs.js +45 -26
- package/dist/entrypoints/urlReader/lib/AwsS3UrlReader.cjs.js.map +1 -1
- package/dist/package.json.cjs.js +1 -1
- package/package.json +20 -20
- package/config.d.ts +0 -1475
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,36 @@
|
|
|
1
1
|
# @backstage/backend-defaults
|
|
2
2
|
|
|
3
|
-
## 0.17.
|
|
3
|
+
## 0.17.5-next.2
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- a624fa3: The `connection` config option for the Redis cache store now accepts either a string URL or an object with additional connection options that are passed directly to the underlying client. The object form is only supported when `backend.cache.store` is `redis`; other stores require a plain string. This allows configuring options like `pingInterval` without needing dedicated config fields. For clustered Redis, the connection object properties are merged into cluster defaults. Fixes https://github.com/backstage/backstage/issues/31813, https://github.com/backstage/backstage/issues/31742.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.9.3-next.1
|
|
10
|
+
- @backstage/cli-node@0.3.4-next.0
|
|
11
|
+
- @backstage/config-loader@1.11.0-next.2
|
|
12
|
+
|
|
13
|
+
## 0.17.5-next.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- d62c384: Fixed a bug where scheduled tasks that were initially registered with a manual trigger and later re-registered with a duration or cron cadence would never be scheduled to run.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/config-loader@1.11.0-next.1
|
|
20
|
+
|
|
21
|
+
## 0.17.4-next.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 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.
|
|
26
|
+
- 8419f51: Added support for AWS PrivateLink for Amazon S3.
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/config-loader@1.11.0-next.0
|
|
29
|
+
- @backstage/plugin-auth-node@0.7.3-next.0
|
|
30
|
+
- @backstage/backend-app-api@1.7.2-next.0
|
|
31
|
+
- @backstage/plugin-permission-node@0.11.2-next.0
|
|
32
|
+
- @backstage/backend-plugin-api@1.9.3-next.0
|
|
33
|
+
- @backstage/plugin-events-node@0.4.24-next.0
|
|
8
34
|
|
|
9
35
|
## 0.17.3
|
|
10
36
|
|