@techdocs/cli 0.0.0-nightly-20251104024434 → 0.0.0-nightly-20251106024432

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,15 +1,15 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20251104024434
3
+ ## 0.0.0-nightly-20251106024432
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - c2a2017: Fix for missing styles due to move to BUI.
8
8
  - Updated dependencies
9
- - @backstage/backend-defaults@0.0.0-nightly-20251104024434
10
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251104024434
11
- - @backstage/config@0.0.0-nightly-20251104024434
12
- - @backstage/catalog-model@0.0.0-nightly-20251104024434
9
+ - @backstage/backend-defaults@0.0.0-nightly-20251106024432
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251106024432
11
+ - @backstage/config@0.0.0-nightly-20251106024432
12
+ - @backstage/catalog-model@0.0.0-nightly-20251106024432
13
13
  - @backstage/cli-common@0.1.15
14
14
 
15
15
  ## 1.10.1-next.0
@@ -106,31 +106,6 @@
106
106
  },
107
107
  "path": "../cli/package.json"
108
108
  },
109
- {
110
- "path": "../../plugins/permission-common/config.d.ts",
111
- "value": {
112
- "type": "object",
113
- "properties": {
114
- "permission": {
115
- "description": "Configuration options for Backstage permissions and authorization",
116
- "type": "object",
117
- "properties": {
118
- "enabled": {
119
- "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
120
- "visibility": "frontend",
121
- "type": "boolean"
122
- },
123
- "EXPERIMENTAL_enableBatchedRequests": {
124
- "visibility": "frontend",
125
- "type": "boolean"
126
- }
127
- }
128
- }
129
- },
130
- "$schema": "http://json-schema.org/draft-07/schema#"
131
- },
132
- "packageName": "@backstage/plugin-permission-common"
133
- },
134
109
  {
135
110
  "path": "../core-app-api/config.d.ts",
136
111
  "value": {
@@ -358,6 +333,31 @@
358
333
  },
359
334
  "packageName": "@backstage/core-app-api"
360
335
  },
336
+ {
337
+ "path": "../../plugins/permission-common/config.d.ts",
338
+ "value": {
339
+ "type": "object",
340
+ "properties": {
341
+ "permission": {
342
+ "description": "Configuration options for Backstage permissions and authorization",
343
+ "type": "object",
344
+ "properties": {
345
+ "enabled": {
346
+ "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
347
+ "visibility": "frontend",
348
+ "type": "boolean"
349
+ },
350
+ "EXPERIMENTAL_enableBatchedRequests": {
351
+ "visibility": "frontend",
352
+ "type": "boolean"
353
+ }
354
+ }
355
+ }
356
+ },
357
+ "$schema": "http://json-schema.org/draft-07/schema#"
358
+ },
359
+ "packageName": "@backstage/plugin-permission-common"
360
+ },
361
361
  {
362
362
  "path": "../core-components/config.d.ts",
363
363
  "value": {
@@ -1394,7 +1394,7 @@
1394
1394
  }
1395
1395
  },
1396
1396
  "backstageTokenExpiration": {
1397
- "description": "The backstage token expiration."
1397
+ "description": "The backstage token expiration.\nDefaults to 1 hour (3600s). Maximum allowed is 24 hours."
1398
1398
  },
1399
1399
  "experimentalExtraAllowedOrigins": {
1400
1400
  "description": "Additional app origins to allow for authenticating",
@@ -1402,6 +1402,26 @@
1402
1402
  "items": {
1403
1403
  "type": "string"
1404
1404
  }
1405
+ },
1406
+ "experimentalDynamicClientRegistration": {
1407
+ "description": "Configuration for dynamic client registration",
1408
+ "type": "object",
1409
+ "properties": {
1410
+ "enabled": {
1411
+ "description": "Whether to enable dynamic client registration\nDefaults to false",
1412
+ "type": "boolean"
1413
+ },
1414
+ "allowedRedirectUriPatterns": {
1415
+ "description": "A list of allowed URI patterns to use for redirect URIs during\ndynamic client registration. Defaults to '[*]' which allows any redirect URI.",
1416
+ "type": "array",
1417
+ "items": {
1418
+ "type": "string"
1419
+ }
1420
+ },
1421
+ "tokenExpiration": {
1422
+ "description": "The expiration time for the client registration access tokens.\nDefaults to 1 hour (3600s). Maximum allowed is 24 hours."
1423
+ }
1424
+ }
1405
1425
  }
1406
1426
  }
1407
1427
  }
@@ -1456,6 +1476,105 @@
1456
1476
  },
1457
1477
  "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1458
1478
  },
1479
+ {
1480
+ "path": "../backend-app-api/config.d.ts",
1481
+ "value": {
1482
+ "type": "object",
1483
+ "properties": {
1484
+ "backend": {
1485
+ "type": "object",
1486
+ "properties": {
1487
+ "packages": {
1488
+ "description": "Used by the feature discovery service",
1489
+ "anyOf": [
1490
+ {
1491
+ "type": "object",
1492
+ "properties": {
1493
+ "include": {
1494
+ "type": "array",
1495
+ "items": {
1496
+ "type": "string"
1497
+ }
1498
+ },
1499
+ "exclude": {
1500
+ "type": "array",
1501
+ "items": {
1502
+ "type": "string"
1503
+ }
1504
+ }
1505
+ }
1506
+ },
1507
+ {
1508
+ "const": "all",
1509
+ "type": "string"
1510
+ }
1511
+ ]
1512
+ },
1513
+ "startup": {
1514
+ "type": "object",
1515
+ "properties": {
1516
+ "default": {
1517
+ "type": "object",
1518
+ "properties": {
1519
+ "onPluginBootFailure": {
1520
+ "description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
1521
+ "enum": [
1522
+ "abort",
1523
+ "continue"
1524
+ ],
1525
+ "type": "string"
1526
+ },
1527
+ "onPluginModuleBootFailure": {
1528
+ "description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
1529
+ "enum": [
1530
+ "abort",
1531
+ "continue"
1532
+ ],
1533
+ "type": "string"
1534
+ }
1535
+ }
1536
+ },
1537
+ "plugins": {
1538
+ "type": "object",
1539
+ "additionalProperties": {
1540
+ "type": "object",
1541
+ "properties": {
1542
+ "onPluginBootFailure": {
1543
+ "description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
1544
+ "enum": [
1545
+ "abort",
1546
+ "continue"
1547
+ ],
1548
+ "type": "string"
1549
+ },
1550
+ "modules": {
1551
+ "type": "object",
1552
+ "additionalProperties": {
1553
+ "type": "object",
1554
+ "properties": {
1555
+ "onPluginModuleBootFailure": {
1556
+ "description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
1557
+ "enum": [
1558
+ "abort",
1559
+ "continue"
1560
+ ],
1561
+ "type": "string"
1562
+ }
1563
+ }
1564
+ }
1565
+ }
1566
+ }
1567
+ }
1568
+ }
1569
+ }
1570
+ }
1571
+ }
1572
+ }
1573
+ },
1574
+ "$schema": "http://json-schema.org/draft-07/schema#"
1575
+ },
1576
+ "packageName": "@backstage/backend-app-api"
1577
+ },
1459
1578
  {
1460
1579
  "path": "../backend-defaults/config.d.ts",
1461
1580
  "value": {
@@ -3028,105 +3147,6 @@
3028
3147
  },
3029
3148
  "packageName": "@backstage/backend-defaults"
3030
3149
  },
3031
- {
3032
- "path": "../backend-app-api/config.d.ts",
3033
- "value": {
3034
- "type": "object",
3035
- "properties": {
3036
- "backend": {
3037
- "type": "object",
3038
- "properties": {
3039
- "packages": {
3040
- "description": "Used by the feature discovery service",
3041
- "anyOf": [
3042
- {
3043
- "type": "object",
3044
- "properties": {
3045
- "include": {
3046
- "type": "array",
3047
- "items": {
3048
- "type": "string"
3049
- }
3050
- },
3051
- "exclude": {
3052
- "type": "array",
3053
- "items": {
3054
- "type": "string"
3055
- }
3056
- }
3057
- }
3058
- },
3059
- {
3060
- "const": "all",
3061
- "type": "string"
3062
- }
3063
- ]
3064
- },
3065
- "startup": {
3066
- "type": "object",
3067
- "properties": {
3068
- "default": {
3069
- "type": "object",
3070
- "properties": {
3071
- "onPluginBootFailure": {
3072
- "description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
3073
- "enum": [
3074
- "abort",
3075
- "continue"
3076
- ],
3077
- "type": "string"
3078
- },
3079
- "onPluginModuleBootFailure": {
3080
- "description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
3081
- "enum": [
3082
- "abort",
3083
- "continue"
3084
- ],
3085
- "type": "string"
3086
- }
3087
- }
3088
- },
3089
- "plugins": {
3090
- "type": "object",
3091
- "additionalProperties": {
3092
- "type": "object",
3093
- "properties": {
3094
- "onPluginBootFailure": {
3095
- "description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
3096
- "enum": [
3097
- "abort",
3098
- "continue"
3099
- ],
3100
- "type": "string"
3101
- },
3102
- "modules": {
3103
- "type": "object",
3104
- "additionalProperties": {
3105
- "type": "object",
3106
- "properties": {
3107
- "onPluginModuleBootFailure": {
3108
- "description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
3109
- "enum": [
3110
- "abort",
3111
- "continue"
3112
- ],
3113
- "type": "string"
3114
- }
3115
- }
3116
- }
3117
- }
3118
- }
3119
- }
3120
- }
3121
- }
3122
- }
3123
- }
3124
- }
3125
- },
3126
- "$schema": "http://json-schema.org/draft-07/schema#"
3127
- },
3128
- "packageName": "@backstage/backend-app-api"
3129
- },
3130
3150
  {
3131
3151
  "path": "../../plugins/events-node/config.d.ts",
3132
3152
  "value": {
@@ -1,4 +1,4 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.12081d58.js"></script><script defer="defer" src="/static/module-material-ui.a211988b.js"></script><script defer="defer" src="/static/module-lodash.011b7e00.js"></script><script defer="defer" src="/static/module-date-fns.0117079c.js"></script><script defer="defer" src="/static/module-mui.642fff5d.js"></script><script defer="defer" src="/static/module-material-table.5444b1ff.js"></script><script defer="defer" src="/static/module-zod.76c8aba2.js"></script><script defer="defer" src="/static/module-react-dom.e3032225.js"></script><script defer="defer" src="/static/module-i18next.93181ae4.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.4021175e.js"></script><script defer="defer" src="/static/module-remix-run.df99de31.js"></script><script defer="defer" src="/static/vendor.06d5fbda.js"></script><script defer="defer" src="/static/main.48f1a046.js"></script><link href="/static/main.d01493c7.css" rel="stylesheet"><script type="backstage.io/config">[
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="color-scheme" content="light dark"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.12081d58.js"></script><script defer="defer" src="/static/module-material-ui.a211988b.js"></script><script defer="defer" src="/static/module-lodash.011b7e00.js"></script><script defer="defer" src="/static/module-date-fns.0117079c.js"></script><script defer="defer" src="/static/module-mui.642fff5d.js"></script><script defer="defer" src="/static/module-material-table.5444b1ff.js"></script><script defer="defer" src="/static/module-zod.2a1f49a9.js"></script><script defer="defer" src="/static/module-react-dom.e3032225.js"></script><script defer="defer" src="/static/module-i18next.93181ae4.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.4021175e.js"></script><script defer="defer" src="/static/module-remix-run.df99de31.js"></script><script defer="defer" src="/static/vendor.06d5fbda.js"></script><script defer="defer" src="/static/main.e886d5d9.js"></script><link href="/static/main.5f8bd308.css" rel="stylesheet"><script type="backstage.io/config">[
2
2
  {
3
3
  "context": "app-config.yaml",
4
4
  "data": {
@@ -4,6 +4,7 @@
4
4
  <meta charset="utf-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1" />
6
6
  <meta name="theme-color" content="#000000" />
7
+ <meta name="color-scheme" content="light dark" />
7
8
  <meta
8
9
  name="description"
9
10
  content="Backstage is an open source framework for building developer portals"
@@ -42,7 +43,7 @@
42
43
  color="#5bbad5"
43
44
  />
44
45
  <title><%= config.getString('app.title') %></title>
45
- <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.12081d58.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.a211988b.js"></script><script defer src="<%= publicPath %>/static/module-lodash.011b7e00.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.0117079c.js"></script><script defer src="<%= publicPath %>/static/module-mui.642fff5d.js"></script><script defer src="<%= publicPath %>/static/module-material-table.5444b1ff.js"></script><script defer src="<%= publicPath %>/static/module-zod.76c8aba2.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.e3032225.js"></script><script defer src="<%= publicPath %>/static/module-i18next.93181ae4.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.4021175e.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.df99de31.js"></script><script defer src="<%= publicPath %>/static/vendor.06d5fbda.js"></script><script defer src="<%= publicPath %>/static/main.48f1a046.js"></script><link href="<%= publicPath %>/static/main.d01493c7.css" rel="stylesheet"></head>
46
+ <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.12081d58.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.a211988b.js"></script><script defer src="<%= publicPath %>/static/module-lodash.011b7e00.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.0117079c.js"></script><script defer src="<%= publicPath %>/static/module-mui.642fff5d.js"></script><script defer src="<%= publicPath %>/static/module-material-table.5444b1ff.js"></script><script defer src="<%= publicPath %>/static/module-zod.2a1f49a9.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.e3032225.js"></script><script defer src="<%= publicPath %>/static/module-i18next.93181ae4.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.4021175e.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.df99de31.js"></script><script defer src="<%= publicPath %>/static/vendor.06d5fbda.js"></script><script defer src="<%= publicPath %>/static/main.e886d5d9.js"></script><link href="<%= publicPath %>/static/main.5f8bd308.css" rel="stylesheet"></head>
46
47
  <body>
47
48
  <noscript>You need to enable JavaScript to run this app.</noscript>
48
49
  <div id="root"></div>