@backstage/backend-defaults 0.10.0-next.3 → 0.10.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 +35 -0
- package/dist/package.json.cjs.js +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/backend-defaults
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d385854: **BREAKING**: The `DefaultSchedulerService` constructor options now requires `RootLifecycleService`, `HttpRouterService`, and `PluginMetadataService` fields.
|
|
8
|
+
|
|
9
|
+
The scheduler will register a REST API for listing and triggering tasks. Please see [the scheduler documentation](https://backstage.io/docs/backend-system/core-services/scheduler) for more details about this API.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 1e06afd: `GithubUrlReader`'s search detects glob-patterns supported by `minimatch`, instead of just detecting
|
|
14
|
+
`*` and `?` characters.
|
|
15
|
+
|
|
16
|
+
For example, this allows to search for patterns like `{C,c}atalog-info.yaml`.
|
|
17
|
+
|
|
18
|
+
- acea1d4: update documentation
|
|
19
|
+
- 72d019d: Removed various typos
|
|
20
|
+
- c6bc67d: Added Valkey support alongside Redis in backend-defaults cache clients, using the new Keyv Valkey package. Also extended backend-test-utils to support Valkey in tests.
|
|
21
|
+
- 36f77e9: Bug fix: Pass user provided token through to gitlab url resolvers
|
|
22
|
+
- 0e7a640: The `GithubUrlReader` will now use the token from `options` when fetching repo details
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/integration@1.17.0
|
|
25
|
+
- @backstage/backend-app-api@1.2.3
|
|
26
|
+
- @backstage/plugin-auth-node@0.6.3
|
|
27
|
+
- @backstage/backend-plugin-api@1.3.1
|
|
28
|
+
- @backstage/plugin-permission-node@0.10.0
|
|
29
|
+
- @backstage/config-loader@1.10.1
|
|
30
|
+
- @backstage/integration-aws-node@0.1.16
|
|
31
|
+
- @backstage/cli-node@0.2.13
|
|
32
|
+
- @backstage/config@1.3.2
|
|
33
|
+
- @backstage/backend-dev-utils@0.1.5
|
|
34
|
+
- @backstage/errors@1.2.7
|
|
35
|
+
- @backstage/types@1.2.1
|
|
36
|
+
- @backstage/plugin-events-node@0.4.11
|
|
37
|
+
|
|
3
38
|
## 0.10.0-next.3
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/dist/package.json.cjs.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var name = "@backstage/backend-defaults";
|
|
6
|
-
var version = "0.10.0
|
|
6
|
+
var version = "0.10.0";
|
|
7
7
|
var description = "Backend defaults used by Backstage backend apps";
|
|
8
8
|
var backstage = {
|
|
9
9
|
role: "node-library"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-defaults",
|
|
3
|
-
"version": "0.10.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Backend defaults used by Backstage backend apps",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -208,19 +208,19 @@
|
|
|
208
208
|
"@aws-sdk/credential-providers": "^3.350.0",
|
|
209
209
|
"@aws-sdk/types": "^3.347.0",
|
|
210
210
|
"@azure/storage-blob": "^12.5.0",
|
|
211
|
-
"@backstage/backend-app-api": "1.2.3
|
|
212
|
-
"@backstage/backend-dev-utils": "0.1.5",
|
|
213
|
-
"@backstage/backend-plugin-api": "1.3.1
|
|
214
|
-
"@backstage/cli-node": "0.2.13",
|
|
215
|
-
"@backstage/config": "1.3.2",
|
|
216
|
-
"@backstage/config-loader": "1.10.1
|
|
217
|
-
"@backstage/errors": "1.2.7",
|
|
218
|
-
"@backstage/integration": "1.17.0
|
|
219
|
-
"@backstage/integration-aws-node": "0.1.16
|
|
220
|
-
"@backstage/plugin-auth-node": "0.6.3
|
|
221
|
-
"@backstage/plugin-events-node": "0.4.11
|
|
222
|
-
"@backstage/plugin-permission-node": "0.10.0
|
|
223
|
-
"@backstage/types": "1.2.1",
|
|
211
|
+
"@backstage/backend-app-api": "^1.2.3",
|
|
212
|
+
"@backstage/backend-dev-utils": "^0.1.5",
|
|
213
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
214
|
+
"@backstage/cli-node": "^0.2.13",
|
|
215
|
+
"@backstage/config": "^1.3.2",
|
|
216
|
+
"@backstage/config-loader": "^1.10.1",
|
|
217
|
+
"@backstage/errors": "^1.2.7",
|
|
218
|
+
"@backstage/integration": "^1.17.0",
|
|
219
|
+
"@backstage/integration-aws-node": "^0.1.16",
|
|
220
|
+
"@backstage/plugin-auth-node": "^0.6.3",
|
|
221
|
+
"@backstage/plugin-events-node": "^0.4.11",
|
|
222
|
+
"@backstage/plugin-permission-node": "^0.10.0",
|
|
223
|
+
"@backstage/types": "^1.2.1",
|
|
224
224
|
"@google-cloud/storage": "^7.0.0",
|
|
225
225
|
"@keyv/memcache": "^2.0.1",
|
|
226
226
|
"@keyv/redis": "^4.0.1",
|
|
@@ -272,9 +272,9 @@
|
|
|
272
272
|
},
|
|
273
273
|
"devDependencies": {
|
|
274
274
|
"@aws-sdk/util-stream-node": "^3.350.0",
|
|
275
|
-
"@backstage/backend-plugin-api": "1.3.1
|
|
276
|
-
"@backstage/backend-test-utils": "1.5.0
|
|
277
|
-
"@backstage/cli": "0.32.1
|
|
275
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
276
|
+
"@backstage/backend-test-utils": "^1.5.0",
|
|
277
|
+
"@backstage/cli": "^0.32.1",
|
|
278
278
|
"@google-cloud/cloud-sql-connector": "^1.4.0",
|
|
279
279
|
"@types/archiver": "^6.0.0",
|
|
280
280
|
"@types/base64-stream": "^1.0.2",
|