Skip to content

Commit f5c75f7

Browse files
committed
Merge branch 'release'
2 parents 7b6d16f + dbc0712 commit f5c75f7

File tree

72 files changed

+1324
-462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1324
-462
lines changed

docs/Agent User Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To see the results go to Validation Results step. For each service for which a s
4242
">
4343
<div>
4444
<li>Breaking change is a change that breaks backward compatibility with the previous version of API. For example, deleting an operation, adding a required parameter or changing the type of a parameter are breaking changes.</li>
45-
<li>Semi-breaking change is a change that breaks backward compatibility according to the rules:</li>
45+
<li>Risky change is a change that breaks backward compatibility according to the rules:</li>
4646
<ul>
4747
<li>operation or entity in the operation was annotated as deprecated in at least two previous consecutive releases and then it was deleted
4848
<li>operation is marked as no-BWC.</li>

docs/Portal User Guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ If during package version publication, you specified a previous release version,
697697

698698
- Breaking – Breaking change is a change that breaks backward compatibility with the previous version of API.
699699
For example, deleting an operation, adding a required parameter or changing the type of a parameter are breaking changes.
700-
- Semi-breakingSemi-breaking change is a change that breaks backward compatibility according to the rules:
700+
- RiskyRisky change is a change that breaks backward compatibility according to the rules:
701701
- operation or entity in the operation was annotated as deprecated in at least two previous consecutive releases and then it was deleted
702702
- operation is marked as no-BWC
703703
- Deprecated – Deprecating change is a change that annotates an operation, parameter or schema as deprecated. Removing a "deprecated" annotation is also considered a deprecating change.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "2.9.6"
3+
"version": "2.10.0-next.0"
44
}

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
"build:showcase": "npm run --workspace=@netcracker/qubership-apihub-ui-shared build:showcase",
1212
"lint": "eslint . --ext .ts,.tsx,.json --ignore-path .gitignore --max-warnings 0 --report-unused-disable-directives",
1313
"format": "npm run lint --fix",
14+
"development:link": "npm link @netcracker/qubership-apihub-api-processor",
15+
"development:unlink": "npm unlink @netcracker/qubership-apihub-api-processor",
1416
"dev:agents": "npx lerna run dev:backend,dev:frontend --stream --scope=@netcracker/qubership-apihub-ui-agents",
1517
"dev:editor": "npx lerna run dev:backend,dev:frontend --stream --scope=@netcracker/qubership-apihub-ui-editor",
1618
"dev:portal": "npx lerna run dev:backend,dev:frontend --stream --scope=@netcracker/qubership-apihub-ui-portal",
@@ -32,13 +34,13 @@
3234
"@mui/material": "5.11.10",
3335
"@mui/private-theming": "5.11.9",
3436
"@netcracker/qubership-apihub-api-diff": "1.0.4",
35-
"@netcracker/qubership-apihub-api-doc-viewer": "2.0.3",
36-
"@netcracker/qubership-apihub-api-processor": "3.0.5",
37+
"@netcracker/qubership-apihub-api-doc-viewer": "2.0.4",
38+
"@netcracker/qubership-apihub-api-processor": "3.0.6",
3739
"@netcracker/qubership-apihub-api-unifier": "1.0.4",
3840
"@netcracker/qubership-apihub-api-visitor": "1.0.5",
39-
"@netcracker/qubership-apihub-apispec-view": "1.0.21",
40-
"@netcracker/qubership-apihub-class-view": "1.0.3",
41-
"@netcracker/qubership-apihub-rest-playground": "1.0.7",
41+
"@netcracker/qubership-apihub-apispec-view": "1.0.22",
42+
"@netcracker/qubership-apihub-class-view": "1.0.3",
43+
"@netcracker/qubership-apihub-rest-playground": "1.0.8",
4244
"@otjs/monaco": "0.2.2",
4345
"@otjs/plaintext": "0.2.2",
4446
"@otjs/plaintext-editor": "0.2.2",

packages/agents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netcracker/qubership-apihub-ui-agents",
3-
"version": "2.9.6",
3+
"version": "2.10.0-next.0",
44
"license": "Apache-2.0",
55
"files": [
66
"/dist"

packages/agents/src/routes/root/BasePage/BasePage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import { LogoIcon } from '@netcracker/qubership-apihub-ui-shared/icons/LogoIcon'
2929
import { AppHeader } from '@netcracker/qubership-apihub-ui-shared/components/AppHeader'
3030
import { MaintenanceNotification } from '@netcracker/qubership-apihub-ui-shared/components/MaintenanceNotification'
3131
import { SystemInfoPopup } from '@netcracker/qubership-apihub-ui-shared/features/system-info'
32+
import * as packageJson from '../../../../package.json'
3233

3334
export const BasePage: FC = memo(() => {
3435
useAuthorization()
@@ -57,7 +58,7 @@ export const BasePage: FC = memo(() => {
5758
]}
5859
action={
5960
<>
60-
<SystemInfoPopup />
61+
<SystemInfoPopup frontendVersionKey={packageJson.version} />
6162
<UserPanel />
6263
</>
6364
} />

packages/agents/src/routes/root/NamespacePage/ServicesPage/ServicesPageBody/ServiceOrDocumentationTableCell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ export const ServiceOrDocumentationTableCell: FC<ServiceOrDocumentationTableCell
9797
<OverflowTooltip title={spec.name}>
9898
<Link
9999
noWrap
100-
sx={{ '&:hover': { cursor: 'pointer' } }}
101100
onClick={() => showSpecificationDialog({
102101
spec: spec,
103102
agentId: agentId,

packages/agents/vite.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ export default defineConfig(({ mode }) => {
6262
}),
6363
],
6464
optimizeDeps: {
65+
// npm link creates a symlink that points outside node_modules and by default such packages are not optimized.
66+
// Using "include" here forces listed packages to be optimized.
67+
// For example, without this setting, esbuildOptions are not being applied to the npm-linked
68+
// @netcracker/qubership-apihub-api-processor during "npm run proxy", which leads to reference errors
69+
// like "process is not defined" and "Buffer is not defined".
6570
include: [
6671
'@netcracker/qubership-apihub-api-processor',
6772
],

packages/editor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netcracker/qubership-apihub-ui-editor",
3-
"version": "2.9.6",
3+
"version": "2.10.0-next.0",
44
"license": "Apache-2.0",
55
"files": [
66
"/dist"

0 commit comments

Comments
 (0)