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

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-20251105024121
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-20251105024121
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251105024121
11
+ - @backstage/config@0.0.0-nightly-20251105024121
12
+ - @backstage/catalog-model@0.0.0-nightly-20251105024121
13
13
  - @backstage/cli-common@0.1.15
14
14
 
15
15
  ## 1.10.1-next.0
@@ -1275,6 +1275,52 @@
1275
1275
  },
1276
1276
  "packageName": "@backstage/backend-plugin-api"
1277
1277
  },
1278
+ {
1279
+ "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1280
+ "value": {
1281
+ "type": "object",
1282
+ "properties": {
1283
+ "auth": {
1284
+ "description": "Configuration options for the auth plugin",
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "providers": {
1288
+ "type": "object",
1289
+ "properties": {
1290
+ "guest": {
1291
+ "type": "object",
1292
+ "properties": {
1293
+ "userEntityRef": {
1294
+ "description": "The entity reference to use for the guest user.",
1295
+ "default": "user:development/guest",
1296
+ "type": "string"
1297
+ },
1298
+ "ownershipEntityRefs": {
1299
+ "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1300
+ "default": "[userEntityRef]",
1301
+ "type": "array",
1302
+ "items": {
1303
+ "type": "string"
1304
+ }
1305
+ },
1306
+ "dangerouslyAllowOutsideDevelopment": {
1307
+ "description": "Allow users to sign in with the guest provider outside of their development environments.",
1308
+ "type": "boolean"
1309
+ }
1310
+ }
1311
+ }
1312
+ }
1313
+ }
1314
+ },
1315
+ "required": [
1316
+ "providers"
1317
+ ]
1318
+ }
1319
+ },
1320
+ "$schema": "http://json-schema.org/draft-07/schema#"
1321
+ },
1322
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1323
+ },
1278
1324
  {
1279
1325
  "path": "../../plugins/auth-backend/config.d.ts",
1280
1326
  "value": {
@@ -1394,7 +1440,7 @@
1394
1440
  }
1395
1441
  },
1396
1442
  "backstageTokenExpiration": {
1397
- "description": "The backstage token expiration."
1443
+ "description": "The backstage token expiration.\nDefaults to 1 hour (3600s). Maximum allowed is 24 hours."
1398
1444
  },
1399
1445
  "experimentalExtraAllowedOrigins": {
1400
1446
  "description": "Additional app origins to allow for authenticating",
@@ -1402,6 +1448,26 @@
1402
1448
  "items": {
1403
1449
  "type": "string"
1404
1450
  }
1451
+ },
1452
+ "experimentalDynamicClientRegistration": {
1453
+ "description": "Configuration for dynamic client registration",
1454
+ "type": "object",
1455
+ "properties": {
1456
+ "enabled": {
1457
+ "description": "Whether to enable dynamic client registration\nDefaults to false",
1458
+ "type": "boolean"
1459
+ },
1460
+ "allowedRedirectUriPatterns": {
1461
+ "description": "A list of allowed URI patterns to use for redirect URIs during\ndynamic client registration. Defaults to '[*]' which allows any redirect URI.",
1462
+ "type": "array",
1463
+ "items": {
1464
+ "type": "string"
1465
+ }
1466
+ },
1467
+ "tokenExpiration": {
1468
+ "description": "The expiration time for the client registration access tokens.\nDefaults to 1 hour (3600s). Maximum allowed is 24 hours."
1469
+ }
1470
+ }
1405
1471
  }
1406
1472
  }
1407
1473
  }
@@ -1411,50 +1477,103 @@
1411
1477
  "packageName": "@backstage/plugin-auth-backend"
1412
1478
  },
1413
1479
  {
1414
- "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1480
+ "path": "../backend-app-api/config.d.ts",
1415
1481
  "value": {
1416
1482
  "type": "object",
1417
1483
  "properties": {
1418
- "auth": {
1419
- "description": "Configuration options for the auth plugin",
1484
+ "backend": {
1420
1485
  "type": "object",
1421
1486
  "properties": {
1422
- "providers": {
1423
- "type": "object",
1424
- "properties": {
1425
- "guest": {
1487
+ "packages": {
1488
+ "description": "Used by the feature discovery service",
1489
+ "anyOf": [
1490
+ {
1426
1491
  "type": "object",
1427
1492
  "properties": {
1428
- "userEntityRef": {
1429
- "description": "The entity reference to use for the guest user.",
1430
- "default": "user:development/guest",
1431
- "type": "string"
1493
+ "include": {
1494
+ "type": "array",
1495
+ "items": {
1496
+ "type": "string"
1497
+ }
1432
1498
  },
1433
- "ownershipEntityRefs": {
1434
- "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1435
- "default": "[userEntityRef]",
1499
+ "exclude": {
1436
1500
  "type": "array",
1437
1501
  "items": {
1438
1502
  "type": "string"
1439
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"
1440
1526
  },
1441
- "dangerouslyAllowOutsideDevelopment": {
1442
- "description": "Allow users to sign in with the guest provider outside of their development environments.",
1443
- "type": "boolean"
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
+ }
1444
1566
  }
1445
1567
  }
1446
1568
  }
1447
1569
  }
1448
1570
  }
1449
- },
1450
- "required": [
1451
- "providers"
1452
- ]
1571
+ }
1453
1572
  }
1454
1573
  },
1455
1574
  "$schema": "http://json-schema.org/draft-07/schema#"
1456
1575
  },
1457
- "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1576
+ "packageName": "@backstage/backend-app-api"
1458
1577
  },
1459
1578
  {
1460
1579
  "path": "../backend-defaults/config.d.ts",
@@ -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.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.ca03e5c7.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.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.ca03e5c7.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>