@backstage/plugin-user-settings-backend 0.2.7-next.2 → 0.2.7
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 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +1 -1
- package/dist/alpha.cjs.js.map +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings-backend
|
|
2
2
|
|
|
3
|
+
## 0.2.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2633d64: Change user settings backend plugin id and fix when using user setting backend home page first will cause edit page loop render
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.20.0
|
|
10
|
+
- @backstage/plugin-auth-node@0.4.2
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.8
|
|
12
|
+
- @backstage/catalog-model@1.4.3
|
|
13
|
+
- @backstage/config@1.1.1
|
|
14
|
+
- @backstage/errors@1.2.3
|
|
15
|
+
- @backstage/types@1.1.1
|
|
16
|
+
|
|
17
|
+
## 0.2.7-next.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 2633d64: Change user settings backend plugin id and fix when using user setting backend home page first will cause edit page loop render
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-common@0.20.0-next.3
|
|
24
|
+
- @backstage/backend-plugin-api@0.6.8-next.3
|
|
25
|
+
- @backstage/catalog-model@1.4.3
|
|
26
|
+
- @backstage/config@1.1.1
|
|
27
|
+
- @backstage/errors@1.2.3
|
|
28
|
+
- @backstage/types@1.1.1
|
|
29
|
+
- @backstage/plugin-auth-node@0.4.2-next.3
|
|
30
|
+
|
|
3
31
|
## 0.2.7-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
package/dist/alpha.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.cjs.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createBackendPlugin,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { createRouter } from './service/router';\n\n/**\n * The user settings backend plugin.\n *\n * @alpha\n */\nexport default createBackendPlugin({\n pluginId: '
|
|
1
|
+
{"version":3,"file":"alpha.cjs.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright 2023 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createBackendPlugin,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { createRouter } from './service/router';\n\n/**\n * The user settings backend plugin.\n *\n * @alpha\n */\nexport default createBackendPlugin({\n pluginId: 'user-settings',\n register(env) {\n env.registerInit({\n deps: {\n database: coreServices.database,\n identity: coreServices.identity,\n httpRouter: coreServices.httpRouter,\n },\n async init({ database, identity, httpRouter }) {\n httpRouter.use(await createRouter({ database, identity }));\n },\n });\n },\n});\n"],"names":["createBackendPlugin","coreServices","createRouter"],"mappings":";;;;;;;;;;;AA2BA,YAAeA,oCAAoB,CAAA;AAAA,EACjC,QAAU,EAAA,eAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,UAAUC,6BAAa,CAAA,QAAA;AAAA,QACvB,UAAUA,6BAAa,CAAA,QAAA;AAAA,QACvB,YAAYA,6BAAa,CAAA,UAAA;AAAA,OAC3B;AAAA,MACA,MAAM,IAAK,CAAA,EAAE,QAAU,EAAA,QAAA,EAAU,YAAc,EAAA;AAC7C,QAAA,UAAA,CAAW,IAAI,MAAMC,mBAAA,CAAa,EAAE,QAAU,EAAA,QAAA,EAAU,CAAC,CAAA,CAAA;AAAA,OAC3D;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC,CAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings-backend",
|
|
3
3
|
"description": "The Backstage backend plugin to manage user settings",
|
|
4
|
-
"version": "0.2.7
|
|
4
|
+
"version": "0.2.7",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"clean": "backstage-cli package clean"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/backend-common": "^0.20.0
|
|
44
|
-
"@backstage/backend-plugin-api": "^0.6.8
|
|
43
|
+
"@backstage/backend-common": "^0.20.0",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.6.8",
|
|
45
45
|
"@backstage/catalog-model": "^1.4.3",
|
|
46
46
|
"@backstage/config": "^1.1.1",
|
|
47
47
|
"@backstage/errors": "^1.2.3",
|
|
48
|
-
"@backstage/plugin-auth-node": "^0.4.2
|
|
48
|
+
"@backstage/plugin-auth-node": "^0.4.2",
|
|
49
49
|
"@backstage/types": "^1.1.1",
|
|
50
50
|
"@types/express": "^4.17.6",
|
|
51
51
|
"express": "^4.17.1",
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"yn": "^4.0.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-test-utils": "^0.2.9
|
|
59
|
-
"@backstage/cli": "^0.25.0
|
|
58
|
+
"@backstage/backend-test-utils": "^0.2.9",
|
|
59
|
+
"@backstage/cli": "^0.25.0",
|
|
60
60
|
"@types/supertest": "^2.0.8",
|
|
61
61
|
"supertest": "^6.1.3"
|
|
62
62
|
},
|