@techdocs/cli 0.0.0-nightly-20240611021715 → 0.0.0-nightly-20240613021705

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,13 +1,24 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20240611021715
3
+ ## 0.0.0-nightly-20240613021705
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-common@0.0.0-nightly-20240611021715
9
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20240611021715
10
- - @backstage/cli-common@0.0.0-nightly-20240611021715
8
+ - @backstage/backend-common@0.0.0-nightly-20240613021705
9
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20240613021705
10
+ - @backstage/cli-common@0.0.0-nightly-20240613021705
11
+ - @backstage/catalog-model@1.5.0
12
+ - @backstage/config@1.2.0
13
+
14
+ ## 1.8.12-next.3
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/plugin-techdocs-node@1.12.5-next.3
20
+ - @backstage/cli-common@0.1.14-next.0
21
+ - @backstage/backend-common@0.23.0-next.3
11
22
  - @backstage/catalog-model@1.5.0
12
23
  - @backstage/config@1.2.0
13
24
 
@@ -612,6 +612,11 @@
612
612
  "visibility": "frontend",
613
613
  "type": "string"
614
614
  },
615
+ "gitilesBaseUrl": {
616
+ "description": "The gitiles base url.",
617
+ "visibility": "frontend",
618
+ "type": "string"
619
+ },
615
620
  "cloneUrl": {
616
621
  "description": "The base url for cloning repos.",
617
622
  "visibility": "frontend",
@@ -629,6 +634,7 @@
629
634
  }
630
635
  },
631
636
  "required": [
637
+ "gitilesBaseUrl",
632
638
  "host"
633
639
  ]
634
640
  }
@@ -1561,6 +1567,115 @@
1561
1567
  "$schema": "http://json-schema.org/draft-07/schema#"
1562
1568
  }
1563
1569
  },
1570
+ {
1571
+ "path": "../integration-aws-node/config.d.ts",
1572
+ "value": {
1573
+ "type": "object",
1574
+ "properties": {
1575
+ "aws": {
1576
+ "description": "Configuration for access to AWS accounts",
1577
+ "type": "object",
1578
+ "properties": {
1579
+ "accountDefaults": {
1580
+ "description": "Defaults for retrieving AWS account credentials",
1581
+ "type": "object",
1582
+ "properties": {
1583
+ "roleName": {
1584
+ "description": "The IAM role to assume to retrieve temporary AWS credentials",
1585
+ "type": "string"
1586
+ },
1587
+ "partition": {
1588
+ "description": "The AWS partition of the IAM role, e.g. \"aws\", \"aws-cn\"",
1589
+ "type": "string"
1590
+ },
1591
+ "region": {
1592
+ "description": "The STS regional endpoint to use when retrieving temporary AWS credentials, e.g. \"ap-northeast-1\"",
1593
+ "type": "string"
1594
+ },
1595
+ "externalId": {
1596
+ "description": "The unique identifier needed to assume the role to retrieve temporary AWS credentials",
1597
+ "visibility": "secret",
1598
+ "type": "string"
1599
+ }
1600
+ }
1601
+ },
1602
+ "mainAccount": {
1603
+ "description": "Main account to use for retrieving AWS account credentials",
1604
+ "type": "object",
1605
+ "properties": {
1606
+ "accessKeyId": {
1607
+ "description": "The access key ID for a set of static AWS credentials",
1608
+ "visibility": "secret",
1609
+ "type": "string"
1610
+ },
1611
+ "secretAccessKey": {
1612
+ "description": "The secret access key for a set of static AWS credentials",
1613
+ "visibility": "secret",
1614
+ "type": "string"
1615
+ },
1616
+ "profile": {
1617
+ "description": "The configuration profile from a credentials file at ~/.aws/credentials and\na configuration file at ~/.aws/config.",
1618
+ "type": "string"
1619
+ },
1620
+ "region": {
1621
+ "description": "The STS regional endpoint to use for the main account, e.g. \"ap-northeast-1\"",
1622
+ "type": "string"
1623
+ }
1624
+ }
1625
+ },
1626
+ "accounts": {
1627
+ "description": "Configuration for retrieving AWS accounts credentials",
1628
+ "type": "array",
1629
+ "items": {
1630
+ "type": "object",
1631
+ "properties": {
1632
+ "accountId": {
1633
+ "description": "The account ID of the target account that this matches on, e.g. \"123456789012\"",
1634
+ "type": "string"
1635
+ },
1636
+ "accessKeyId": {
1637
+ "description": "The access key ID for a set of static AWS credentials",
1638
+ "visibility": "secret",
1639
+ "type": "string"
1640
+ },
1641
+ "secretAccessKey": {
1642
+ "description": "The secret access key for a set of static AWS credentials",
1643
+ "visibility": "secret",
1644
+ "type": "string"
1645
+ },
1646
+ "profile": {
1647
+ "description": "The configuration profile from a credentials file at ~/.aws/credentials and\na configuration file at ~/.aws/config.",
1648
+ "type": "string"
1649
+ },
1650
+ "roleName": {
1651
+ "description": "The IAM role to assume to retrieve temporary AWS credentials",
1652
+ "type": "string"
1653
+ },
1654
+ "partition": {
1655
+ "description": "The AWS partition of the IAM role, e.g. \"aws\", \"aws-cn\"",
1656
+ "type": "string"
1657
+ },
1658
+ "region": {
1659
+ "description": "The STS regional endpoint to use when retrieving temporary AWS credentials, e.g. \"ap-northeast-1\"",
1660
+ "type": "string"
1661
+ },
1662
+ "externalId": {
1663
+ "description": "The unique identifier needed to assume the role to retrieve temporary AWS credentials",
1664
+ "visibility": "secret",
1665
+ "type": "string"
1666
+ }
1667
+ },
1668
+ "required": [
1669
+ "accountId"
1670
+ ]
1671
+ }
1672
+ }
1673
+ }
1674
+ }
1675
+ },
1676
+ "$schema": "http://json-schema.org/draft-07/schema#"
1677
+ }
1678
+ },
1564
1679
  {
1565
1680
  "path": "../backend-app-api/config.d.ts",
1566
1681
  "value": {
@@ -1576,6 +1691,73 @@
1576
1691
  "description": "This disables the otherwise default auth policy, which requires all\nrequests to be authenticated with either user or service credentials.\n\nDisabling this check means that the backend will no longer block\nunauthenticated requests, but instead allow them to pass through to\nplugins.\n\nIf permissions are enabled, unauthenticated requests will be treated\nexactly as such, leaving it to the permission policy to determine what\npermissions should be allowed for an unauthenticated identity. Note\nthat this will also apply to service-to-service calls between plugins\nunless you configure credentials for service calls.",
1577
1692
  "type": "boolean"
1578
1693
  },
1694
+ "pluginKeyStore": {
1695
+ "description": "Controls how to store keys for plugin-to-plugin auth",
1696
+ "anyOf": [
1697
+ {
1698
+ "type": "object",
1699
+ "properties": {
1700
+ "type": {
1701
+ "type": "string",
1702
+ "const": "database"
1703
+ }
1704
+ },
1705
+ "required": [
1706
+ "type"
1707
+ ]
1708
+ },
1709
+ {
1710
+ "type": "object",
1711
+ "properties": {
1712
+ "type": {
1713
+ "type": "string",
1714
+ "const": "static"
1715
+ },
1716
+ "static": {
1717
+ "type": "object",
1718
+ "properties": {
1719
+ "keys": {
1720
+ "description": "Must be declared at least once and the first one will be used for signing.",
1721
+ "type": "array",
1722
+ "items": {
1723
+ "type": "object",
1724
+ "properties": {
1725
+ "publicKeyFile": {
1726
+ "description": "Path to the public key file in the SPKI format. Should be an absolute path.",
1727
+ "type": "string"
1728
+ },
1729
+ "privateKeyFile": {
1730
+ "description": "Path to the matching private key file in the PKCS#8 format. Should be an absolute path.\n\nThe first array entry must specify a private key file, the rest must not.",
1731
+ "type": "string"
1732
+ },
1733
+ "keyId": {
1734
+ "description": "ID to uniquely identify this key within the JWK set.",
1735
+ "type": "string"
1736
+ },
1737
+ "algorithm": {
1738
+ "description": "JWS \"alg\" (Algorithm) Header Parameter value. Defaults to ES256.\nMust match the algorithm used to generate the keys in the provided files",
1739
+ "type": "string"
1740
+ }
1741
+ },
1742
+ "required": [
1743
+ "keyId",
1744
+ "publicKeyFile"
1745
+ ]
1746
+ }
1747
+ }
1748
+ },
1749
+ "required": [
1750
+ "keys"
1751
+ ]
1752
+ }
1753
+ },
1754
+ "required": [
1755
+ "static",
1756
+ "type"
1757
+ ]
1758
+ }
1759
+ ]
1760
+ },
1579
1761
  "externalAccess": {
1580
1762
  "description": "Configures methods of external access, ie ways for callers outside of\nthe Backstage ecosystem to get authorized for access to APIs that do\nnot permit unauthorized access.",
1581
1763
  "type": "array",
@@ -1884,107 +2066,18 @@
1884
2066
  }
1885
2067
  },
1886
2068
  {
1887
- "path": "../integration-aws-node/config.d.ts",
2069
+ "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/plugin-permission-common/config.d.ts",
1888
2070
  "value": {
1889
2071
  "type": "object",
1890
2072
  "properties": {
1891
- "aws": {
1892
- "description": "Configuration for access to AWS accounts",
2073
+ "permission": {
2074
+ "description": "Configuration options for Backstage permissions and authorization",
1893
2075
  "type": "object",
1894
2076
  "properties": {
1895
- "accountDefaults": {
1896
- "description": "Defaults for retrieving AWS account credentials",
1897
- "type": "object",
1898
- "properties": {
1899
- "roleName": {
1900
- "description": "The IAM role to assume to retrieve temporary AWS credentials",
1901
- "type": "string"
1902
- },
1903
- "partition": {
1904
- "description": "The AWS partition of the IAM role, e.g. \"aws\", \"aws-cn\"",
1905
- "type": "string"
1906
- },
1907
- "region": {
1908
- "description": "The STS regional endpoint to use when retrieving temporary AWS credentials, e.g. \"ap-northeast-1\"",
1909
- "type": "string"
1910
- },
1911
- "externalId": {
1912
- "description": "The unique identifier needed to assume the role to retrieve temporary AWS credentials",
1913
- "visibility": "secret",
1914
- "type": "string"
1915
- }
1916
- }
1917
- },
1918
- "mainAccount": {
1919
- "description": "Main account to use for retrieving AWS account credentials",
1920
- "type": "object",
1921
- "properties": {
1922
- "accessKeyId": {
1923
- "description": "The access key ID for a set of static AWS credentials",
1924
- "visibility": "secret",
1925
- "type": "string"
1926
- },
1927
- "secretAccessKey": {
1928
- "description": "The secret access key for a set of static AWS credentials",
1929
- "visibility": "secret",
1930
- "type": "string"
1931
- },
1932
- "profile": {
1933
- "description": "The configuration profile from a credentials file at ~/.aws/credentials and\na configuration file at ~/.aws/config.",
1934
- "type": "string"
1935
- },
1936
- "region": {
1937
- "description": "The STS regional endpoint to use for the main account, e.g. \"ap-northeast-1\"",
1938
- "type": "string"
1939
- }
1940
- }
1941
- },
1942
- "accounts": {
1943
- "description": "Configuration for retrieving AWS accounts credentials",
1944
- "type": "array",
1945
- "items": {
1946
- "type": "object",
1947
- "properties": {
1948
- "accountId": {
1949
- "description": "The account ID of the target account that this matches on, e.g. \"123456789012\"",
1950
- "type": "string"
1951
- },
1952
- "accessKeyId": {
1953
- "description": "The access key ID for a set of static AWS credentials",
1954
- "visibility": "secret",
1955
- "type": "string"
1956
- },
1957
- "secretAccessKey": {
1958
- "description": "The secret access key for a set of static AWS credentials",
1959
- "visibility": "secret",
1960
- "type": "string"
1961
- },
1962
- "profile": {
1963
- "description": "The configuration profile from a credentials file at ~/.aws/credentials and\na configuration file at ~/.aws/config.",
1964
- "type": "string"
1965
- },
1966
- "roleName": {
1967
- "description": "The IAM role to assume to retrieve temporary AWS credentials",
1968
- "type": "string"
1969
- },
1970
- "partition": {
1971
- "description": "The AWS partition of the IAM role, e.g. \"aws\", \"aws-cn\"",
1972
- "type": "string"
1973
- },
1974
- "region": {
1975
- "description": "The STS regional endpoint to use when retrieving temporary AWS credentials, e.g. \"ap-northeast-1\"",
1976
- "type": "string"
1977
- },
1978
- "externalId": {
1979
- "description": "The unique identifier needed to assume the role to retrieve temporary AWS credentials",
1980
- "visibility": "secret",
1981
- "type": "string"
1982
- }
1983
- },
1984
- "required": [
1985
- "accountId"
1986
- ]
1987
- }
2077
+ "enabled": {
2078
+ "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
2079
+ "visibility": "frontend",
2080
+ "type": "boolean"
1988
2081
  }
1989
2082
  }
1990
2083
  }
@@ -1 +1 @@
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.d947689c.js"></script><script defer="defer" src="/static/module-material-ui.1eefc717.js"></script><script defer="defer" src="/static/module-lodash.1a2b8e11.js"></script><script defer="defer" src="/static/module-date-fns.196adaa7.js"></script><script defer="defer" src="/static/module-mui.bb6867cb.js"></script><script defer="defer" src="/static/module-material-table.892da5bc.js"></script><script defer="defer" src="/static/module-react-dom.3e65b8bc.js"></script><script defer="defer" src="/static/module-react-router.07ec2a81.js"></script><script defer="defer" src="/static/module-react-router-dom.ba9d01bf.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.8a51ed97.js"></script><script defer="defer" src="/static/module-zod.52dba18e.js"></script><script defer="defer" src="/static/module-i18next.40b7c233.js"></script><script defer="defer" src="/static/vendor.d947689c.js"></script><script defer="defer" src="/static/main.d947689c.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
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.26cb68ff.js"></script><script defer="defer" src="/static/module-material-ui.1eefc717.js"></script><script defer="defer" src="/static/module-lodash.1a2b8e11.js"></script><script defer="defer" src="/static/module-date-fns.196adaa7.js"></script><script defer="defer" src="/static/module-mui.bb6867cb.js"></script><script defer="defer" src="/static/module-material-table.892da5bc.js"></script><script defer="defer" src="/static/module-react-dom.3e65b8bc.js"></script><script defer="defer" src="/static/module-react-router.07ec2a81.js"></script><script defer="defer" src="/static/module-react-router-dom.ba9d01bf.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.8a51ed97.js"></script><script defer="defer" src="/static/module-zod.52dba18e.js"></script><script defer="defer" src="/static/module-i18next.40b7c233.js"></script><script defer="defer" src="/static/vendor.26cb68ff.js"></script><script defer="defer" src="/static/main.26cb68ff.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>