@redocly/revel-reef 0.130.0-next.1 → 0.130.0-next.2
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 +18 -0
- package/dist/bin.js +1 -1
- package/dist/cli/stats/collectors/openapi.d.ts +3 -0
- package/dist/cli/stats/collectors/openapi.js +1 -0
- package/dist/cli/stats/index.d.ts +7 -0
- package/dist/cli/stats/index.js +1 -0
- package/dist/cli/stats/options.d.ts +3 -0
- package/dist/cli/stats/options.js +1 -0
- package/dist/cli/telemetry/index.d.ts +1 -1
- package/dist/cli/telemetry/index.js +1 -1
- package/dist/client/app/Sidebar/Sidebar.js +1 -1
- package/dist/server/fs/cache.js +1 -1
- package/dist/server/plugins/catalog-entities/database/mappers/map-entity-relation-row.js +1 -1
- package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-read-repository.js +5 -3
- package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-local-write-repository.js +1 -1
- package/dist/server/plugins/catalog-entities/database/repositories/local/catalog-entities-relations-repository.js +1 -1
- package/dist/server/plugins/catalog-entities/database/repositories/remote/catalog-entities-remote-repository.js +1 -1
- package/dist/server/plugins/catalog-entities/extensions/extractors/api-description/base.js +1 -1
- package/dist/server/plugins/openapi-docs/index.js +1 -1
- package/dist/server/providers/database/databases/catalog-sqlite/migrations/0005_catalog-relations-constraint-fix.sql +2 -0
- package/dist/server/providers/database/databases/catalog-sqlite/migrations/meta/0005_snapshot.json +393 -0
- package/dist/server/providers/database/databases/catalog-sqlite/migrations/meta/_journal.json +7 -0
- package/dist/server/providers/database/databases/catalog-sqlite/schemas/entities-relations-table.js +1 -1
- package/dist/server/providers/database/databases/sqld-sqlite/migrations/0007_catalog-relations-constraint-fix.sql +2 -0
- package/dist/server/providers/database/databases/sqld-sqlite/migrations/meta/0007_snapshot.json +833 -0
- package/dist/server/providers/database/databases/sqld-sqlite/migrations/meta/_journal.json +7 -0
- package/package.json +6 -6
|
@@ -50,6 +50,13 @@
|
|
|
50
50
|
"when": 1766391516611,
|
|
51
51
|
"tag": "0006_catalog-versions-and-revisions-relations",
|
|
52
52
|
"breakpoints": true
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"idx": 7,
|
|
56
|
+
"version": "6",
|
|
57
|
+
"when": 1768307646039,
|
|
58
|
+
"tag": "0007_catalog-relations-constraint-fix",
|
|
59
|
+
"breakpoints": true
|
|
53
60
|
}
|
|
54
61
|
]
|
|
55
62
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/revel-reef",
|
|
3
|
-
"version": "0.130.0-next.
|
|
3
|
+
"version": "0.130.0-next.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@opentelemetry/sdk-trace-web": "2.0.1",
|
|
33
33
|
"@opentelemetry/semantic-conventions": "1.34.0",
|
|
34
34
|
"@redocly/ajv": "8.17.1",
|
|
35
|
-
"@redocly/openapi-core": "2.14.
|
|
35
|
+
"@redocly/openapi-core": "2.14.5",
|
|
36
36
|
"@shikijs/transformers": "3.21.0",
|
|
37
37
|
"@tanstack/react-query": "5.62.3",
|
|
38
38
|
"@tanstack/react-table": "8.21.3",
|
|
@@ -93,13 +93,13 @@
|
|
|
93
93
|
"xml-crypto": "6.0.1",
|
|
94
94
|
"xpath": "0.0.34",
|
|
95
95
|
"yaml-ast-parser": "0.0.43",
|
|
96
|
-
"@redocly/asyncapi-docs": "1.7.0-next.
|
|
96
|
+
"@redocly/asyncapi-docs": "1.7.0-next.1",
|
|
97
97
|
"@redocly/config": "0.41.2",
|
|
98
98
|
"@redocly/graphql-docs": "1.7.0-next.0",
|
|
99
|
-
"@redocly/openapi-docs": "3.18.0-next.
|
|
99
|
+
"@redocly/openapi-docs": "3.18.0-next.1",
|
|
100
100
|
"@redocly/portal-legacy-ui": "0.13.0-next.0",
|
|
101
|
-
"@redocly/portal-plugin-mock-server": "0.15.0-next.
|
|
102
|
-
"@redocly/realm-asyncapi-sdk": "0.8.0-next.
|
|
101
|
+
"@redocly/portal-plugin-mock-server": "0.15.0-next.1",
|
|
102
|
+
"@redocly/realm-asyncapi-sdk": "0.8.0-next.1",
|
|
103
103
|
"@redocly/theme": "0.62.0-next.0"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|