From 6194205ccd368706dd5b339d43d9728dd0363cf6 Mon Sep 17 00:00:00 2001 From: Ankit Dash <100564488+helios2003@users.noreply.github.com> Date: Wed, 3 Apr 2024 01:20:41 +0530 Subject: [PATCH 01/16] fix linting errors (#1039) Co-authored-by: Khuda Dad Nomani <32505158+KhudaDad414@users.noreply.github.com> --- .../src/components/VisualJsonSchemaEditor.stories.tsx | 3 ++- apps/studio-next/src/components/Editor/Editor.tsx | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx b/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx index 394eeabae..da87e3ae4 100644 --- a/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx +++ b/apps/design-system/src/components/VisualJsonSchemaEditor.stories.tsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import { VisualEditor, CodeEditor, Examples } from '@asyncapi/studio-ui'; -export default { +const VisualEditorStory = { component: VisualEditor, parameters: { layout: 'fullscreen', @@ -282,3 +282,4 @@ export const nestead_array = () => ( /> ); +export default VisualEditorStory \ No newline at end of file diff --git a/apps/studio-next/src/components/Editor/Editor.tsx b/apps/studio-next/src/components/Editor/Editor.tsx index c48ba7b52..1caa69ee0 100644 --- a/apps/studio-next/src/components/Editor/Editor.tsx +++ b/apps/studio-next/src/components/Editor/Editor.tsx @@ -3,9 +3,7 @@ import { useFilesState } from '@/state/files.state'; import { CodeMirror } from './CodeMirror'; -interface IEditorProps {} - -export const Editor = (props: IEditorProps) => { +export const Editor = () => { const { language, content } = useFilesState(state => state.files['asyncapi']); const handleUpdateFile = useFilesState(state => state.updateFile); From 27914a014a1dd5db51e0b3016d9aed43256dd9a6 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 16:34:23 +0200 Subject: [PATCH 02/16] fix: update @asyncapi/specs to 6.5.5 version (#1053) --- apps/studio/package.json | 2 +- package-lock.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 23344ae2a..ac236378d 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -28,7 +28,7 @@ "@asyncapi/parser": "^3.0.11", "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", diff --git a/package-lock.json b/package-lock.json index 05367294a..dcd3332cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -504,7 +504,7 @@ "@asyncapi/parser": "^3.0.11", "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", @@ -643,9 +643,9 @@ } }, "apps/studio/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -37695,7 +37695,7 @@ "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@asyncapi/ts-nats-template": "^0.10.3", "@craco/craco": "^7.1.0", "@ebay/nice-modal-react": "^1.2.10", @@ -37780,9 +37780,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "requires": { "@types/json-schema": "^7.0.11" } From 9302e0db57a4e51ef3780d6de0dd7d18949b21f3 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 17:03:22 +0200 Subject: [PATCH 03/16] fix: update @asyncapi/parser to 3.0.12 version (#1054) --- apps/studio/package.json | 2 +- package-lock.json | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index ac236378d..282201282 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -25,7 +25,7 @@ "@asyncapi/avro-schema-parser": "^3.0.19", "@asyncapi/converter": "^1.4.16", "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.5", diff --git a/package-lock.json b/package-lock.json index dcd3332cf..83fe7380b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -501,7 +501,7 @@ "@asyncapi/avro-schema-parser": "^3.0.19", "@asyncapi/converter": "^1.4.16", "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.5", @@ -617,11 +617,11 @@ } }, "apps/studio/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37691,7 +37691,7 @@ "@asyncapi/nodejs-template": "^2.0.1", "@asyncapi/nodejs-ws-template": "^0.9.33", "@asyncapi/openapi-schema-parser": "^3.0.18", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.8", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", @@ -37754,11 +37754,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", From 2e2beac3870f0780aac3a5818ea1ce243a476bb4 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 17:18:17 +0200 Subject: [PATCH 04/16] fix: update @asyncapi/converter to 1.4.17 version (#1055) --- apps/studio/package.json | 2 +- package-lock.json | 48 ++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 282201282..d1e28a17f 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -23,7 +23,7 @@ ], "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", + "@asyncapi/converter": "^1.4.17", "@asyncapi/openapi-schema-parser": "^3.0.18", "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.8", diff --git a/package-lock.json b/package-lock.json index 83fe7380b..0da605eb8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -499,7 +499,7 @@ "license": "Apache-2.0", "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", + "@asyncapi/converter": "^1.4.17", "@asyncapi/openapi-schema-parser": "^3.0.18", "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.8", @@ -1065,20 +1065,20 @@ } }, "node_modules/@asyncapi/converter": { - "version": "1.4.16", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.16.tgz", - "integrity": "sha512-j2Rvi9xOoT+w8V3b6Jf5ChE3tK3I7Y9U5CckNiBrh6+nT7lXtDeo7NzEBKUzz6SgBfxf+9oSngclcTnIbUJ28g==", + "version": "1.4.17", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.17.tgz", + "integrity": "sha512-v6CkOIKbI0JnbXGXIa6hiv/Nfzd413Iy4Rzh/zlyOSxXiDup1nBdq67CbQUv1b7iblnuFlErRIeRXjY1Nq7+Kg==", "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "js-yaml": "^3.14.1" } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1116,9 +1116,9 @@ } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -36505,20 +36505,20 @@ } }, "@asyncapi/converter": { - "version": "1.4.16", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.16.tgz", - "integrity": "sha512-j2Rvi9xOoT+w8V3b6Jf5ChE3tK3I7Y9U5CckNiBrh6+nT7lXtDeo7NzEBKUzz6SgBfxf+9oSngclcTnIbUJ28g==", + "version": "1.4.17", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.17.tgz", + "integrity": "sha512-v6CkOIKbI0JnbXGXIa6hiv/Nfzd413Iy4Rzh/zlyOSxXiDup1nBdq67CbQUv1b7iblnuFlErRIeRXjY1Nq7+Kg==", "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "js-yaml": "^3.14.1" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36555,9 +36555,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37680,7 +37680,7 @@ "version": "file:apps/studio", "requires": { "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.16", + "@asyncapi/converter": "^1.4.17", "@asyncapi/dotnet-nats-template": "^0.12.1", "@asyncapi/go-watermill-template": "^0.2.72", "@asyncapi/html-template": "^2.3.0", From 8675c301eededff2490d63f0812dfad22cf3736f Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 17:45:23 +0200 Subject: [PATCH 05/16] fix: update @asyncapi/protobuf-schema-parser to 3.2.10 version (#1057) --- apps/studio/package.json | 2 +- package-lock.json | 48 ++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index d1e28a17f..244f2499b 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -26,7 +26,7 @@ "@asyncapi/converter": "^1.4.17", "@asyncapi/openapi-schema-parser": "^3.0.18", "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.5", "@ebay/nice-modal-react": "^1.2.10", diff --git a/package-lock.json b/package-lock.json index 0da605eb8..a26a430bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -502,7 +502,7 @@ "@asyncapi/converter": "^1.4.17", "@asyncapi/openapi-schema-parser": "^3.0.18", "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.5", "@ebay/nice-modal-react": "^1.2.10", @@ -2230,21 +2230,21 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.8.tgz", - "integrity": "sha512-qYKutNQTkMNrf8BB9d6o2JS/4LC+r6Fkugvg46gW66kN9dKMU2nguHWM+MdcG89nk5keM2Olz4IN8AvWqX9iew==", + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.10.tgz", + "integrity": "sha512-k/+W3cTXy1JgUN5QEXV8MsIBwO7iGoxWLgLqyFY3qwEPLwBbydYxS9DLoo+0hI8jV70sInmnI7DLSUKQNEoK9g==", "dependencies": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2266,9 +2266,9 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -37464,21 +37464,21 @@ } }, "@asyncapi/protobuf-schema-parser": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.8.tgz", - "integrity": "sha512-qYKutNQTkMNrf8BB9d6o2JS/4LC+r6Fkugvg46gW66kN9dKMU2nguHWM+MdcG89nk5keM2Olz4IN8AvWqX9iew==", + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.10.tgz", + "integrity": "sha512-k/+W3cTXy1JgUN5QEXV8MsIBwO7iGoxWLgLqyFY3qwEPLwBbydYxS9DLoo+0hI8jV70sInmnI7DLSUKQNEoK9g==", "requires": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37500,9 +37500,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37692,7 +37692,7 @@ "@asyncapi/nodejs-ws-template": "^0.9.33", "@asyncapi/openapi-schema-parser": "^3.0.18", "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.8", + "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.5", From f88a8e3b316b6b2a3e13b04d460e12976681fec1 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 17:55:03 +0200 Subject: [PATCH 06/16] fix: update @asyncapi/openapi-schema-parser to 3.0.20 version (#1058) --- apps/studio/package.json | 2 +- package-lock.json | 48 ++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 244f2499b..b813997c7 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -24,7 +24,7 @@ "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.19", "@asyncapi/converter": "^1.4.17", - "@asyncapi/openapi-schema-parser": "^3.0.18", + "@asyncapi/openapi-schema-parser": "^3.0.20", "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", diff --git a/package-lock.json b/package-lock.json index a26a430bd..a08bf0d94 100644 --- a/package-lock.json +++ b/package-lock.json @@ -500,7 +500,7 @@ "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.19", "@asyncapi/converter": "^1.4.17", - "@asyncapi/openapi-schema-parser": "^3.0.18", + "@asyncapi/openapi-schema-parser": "^3.0.20", "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", @@ -2111,11 +2111,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.18.tgz", - "integrity": "sha512-azKEwm9wel7QS/Fz0y1C9eCUIfUEZE/JrQlGybPmQKHS213RKyo5Rjpzo9nqGc4VT7o1URDIMaYTnYdgfMitew==", + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.20.tgz", + "integrity": "sha512-WYooWN1oIxzOk5s5HUALxVIyF4C02OgA0xKxH9jR//qER5rRu98fvuzoziY1oiHrGkxLOCbWFvSliLTPEbkdbA==", "dependencies": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -2123,11 +2123,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2149,9 +2149,9 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -37365,11 +37365,11 @@ } }, "@asyncapi/openapi-schema-parser": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.18.tgz", - "integrity": "sha512-azKEwm9wel7QS/Fz0y1C9eCUIfUEZE/JrQlGybPmQKHS213RKyo5Rjpzo9nqGc4VT7o1URDIMaYTnYdgfMitew==", + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.20.tgz", + "integrity": "sha512-WYooWN1oIxzOk5s5HUALxVIyF4C02OgA0xKxH9jR//qER5rRu98fvuzoziY1oiHrGkxLOCbWFvSliLTPEbkdbA==", "requires": { - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -37377,11 +37377,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37403,9 +37403,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37690,7 +37690,7 @@ "@asyncapi/markdown-template": "^1.5.0", "@asyncapi/nodejs-template": "^2.0.1", "@asyncapi/nodejs-ws-template": "^0.9.33", - "@asyncapi/openapi-schema-parser": "^3.0.18", + "@asyncapi/openapi-schema-parser": "^3.0.20", "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/python-paho-template": "^0.2.13", From 7ac6710222a37030774d82b3471a1ab21159d359 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 18:10:07 +0200 Subject: [PATCH 07/16] chore: update @asyncapi/html-template to 2.3.2 version (#1059) --- apps/studio/package.json | 2 +- package-lock.json | 68 ++++++++++++++++++++-------------------- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index b813997c7..d9785a505 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -76,7 +76,7 @@ "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", diff --git a/package-lock.json b/package-lock.json index a08bf0d94..fcc3fea4f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -525,7 +525,7 @@ "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", @@ -1437,13 +1437,13 @@ } }, "node_modules/@asyncapi/html-template": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.0.tgz", - "integrity": "sha512-2OSvxLHWCDkyDP6I40gijmYG190mG0DLMJvnlrsNGE83nHOFdoZg2EIR0brrwM7OjNL+EuCifcHdh6r6uli1bA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.2.tgz", + "integrity": "sha512-HjdTZnRIP12frH6yqPaZcvEkA6r0N4SDwEtCRuAEJfX++jkVvrv0kXqCpIhYQf/N1ktIIudCyBk34XRQmRAIrg==", "dev": true, "dependencies": { - "@asyncapi/generator-react-sdk": "^1.0.15", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/generator-react-sdk": "^1.0.16", + "@asyncapi/parser": "^3.0.12", "@asyncapi/react-component": "^1.2.13", "highlight.js": "10.7.3", "puppeteer": "^14.1.0", @@ -1453,12 +1453,12 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/generator-react-sdk": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.15.tgz", - "integrity": "sha512-2ewO8pWSw39NkL3fvG3YMgou6VXMaIuxYE7Uw5MEE/o4Iy8v8uHfR1UM6Ppy3t4PCzpSdN8VkePAaNeuAZz/YA==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.16.tgz", + "integrity": "sha512-zmngpZpW3Xb9nGLLp7Q9g58EMLBIIDE6kRyUM2ISbh/zj9PTndsD+Ox7gonJ4TRuD9qYtlK+F12J1pVMXrAOUg==", "dev": true, "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@babel/core": "7.12.9", "@babel/preset-env": "^7.12.7", "@babel/preset-react": "^7.12.7", @@ -1471,12 +1471,12 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1498,9 +1498,9 @@ } }, "node_modules/@asyncapi/html-template/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -36811,13 +36811,13 @@ } }, "@asyncapi/html-template": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.0.tgz", - "integrity": "sha512-2OSvxLHWCDkyDP6I40gijmYG190mG0DLMJvnlrsNGE83nHOFdoZg2EIR0brrwM7OjNL+EuCifcHdh6r6uli1bA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/@asyncapi/html-template/-/html-template-2.3.2.tgz", + "integrity": "sha512-HjdTZnRIP12frH6yqPaZcvEkA6r0N4SDwEtCRuAEJfX++jkVvrv0kXqCpIhYQf/N1ktIIudCyBk34XRQmRAIrg==", "dev": true, "requires": { - "@asyncapi/generator-react-sdk": "^1.0.15", - "@asyncapi/parser": "^3.0.11", + "@asyncapi/generator-react-sdk": "^1.0.16", + "@asyncapi/parser": "^3.0.12", "@asyncapi/react-component": "^1.2.13", "highlight.js": "10.7.3", "puppeteer": "^14.1.0", @@ -36827,12 +36827,12 @@ }, "dependencies": { "@asyncapi/generator-react-sdk": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.15.tgz", - "integrity": "sha512-2ewO8pWSw39NkL3fvG3YMgou6VXMaIuxYE7Uw5MEE/o4Iy8v8uHfR1UM6Ppy3t4PCzpSdN8VkePAaNeuAZz/YA==", + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/@asyncapi/generator-react-sdk/-/generator-react-sdk-1.0.16.tgz", + "integrity": "sha512-zmngpZpW3Xb9nGLLp7Q9g58EMLBIIDE6kRyUM2ISbh/zj9PTndsD+Ox7gonJ4TRuD9qYtlK+F12J1pVMXrAOUg==", "dev": true, "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.12", "@babel/core": "7.12.9", "@babel/preset-env": "^7.12.7", "@babel/preset-react": "^7.12.7", @@ -36845,12 +36845,12 @@ } }, "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36872,9 +36872,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -37683,7 +37683,7 @@ "@asyncapi/converter": "^1.4.17", "@asyncapi/dotnet-nats-template": "^0.12.1", "@asyncapi/go-watermill-template": "^0.2.72", - "@asyncapi/html-template": "^2.3.0", + "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", "@asyncapi/java-template": "^0.2.1", From eded83523849aa467521c4398681a58d7201bfc9 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 20:17:20 +0200 Subject: [PATCH 08/16] ci: update of files from global .github repo (#1052) --- .github/workflows/help-command.yml | 1 + .github/workflows/if-nodejs-pr-testing.yml | 2 +- .../workflows/please-take-a-look-command.yml | 54 +++++++++++++++++++ 3 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/please-take-a-look-command.yml diff --git a/.github/workflows/help-command.yml b/.github/workflows/help-command.yml index d4ba4a44c..ada81682e 100644 --- a/.github/workflows/help-command.yml +++ b/.github/workflows/help-command.yml @@ -31,6 +31,7 @@ jobs: At the moment the following comments are supported in pull requests: + - \`/please-take-a-look` or \`/ptal\` - This comment will add a comment to the PR asking for attention from the reviewrs who have not reviewed the PR yet. - \`/ready-to-merge\` or \`/rtm\` - This comment will trigger automerge of PR in case all required checks are green, approvals in place and do-not-merge label is not added - \`/do-not-merge\` or \`/dnm\` - This comment will block automerging even if all conditions are met and ready-to-merge label is added - \`/autoupdate\` or \`/au\` - This comment will add \`autoupdate\` label to the PR and keeps your PR up-to-date to the target branch's future changes. Unless there is a merge conflict or it is a draft PR.` diff --git a/.github/workflows/if-nodejs-pr-testing.yml b/.github/workflows/if-nodejs-pr-testing.yml index 75eaaac7b..73a2af5c2 100644 --- a/.github/workflows/if-nodejs-pr-testing.yml +++ b/.github/workflows/if-nodejs-pr-testing.yml @@ -63,7 +63,7 @@ jobs: id: first-installation run: npm ci continue-on-error: true - - if: steps.first-installation.outputs.status == 'failure' && steps.packagejson.outputs.exists == 'true' + - if: steps.first-installation.outcome != 'success' && steps.packagejson.outputs.exists == 'true' name: Clear NPM cache and install deps again run: | npm cache clean --force diff --git a/.github/workflows/please-take-a-look-command.yml b/.github/workflows/please-take-a-look-command.yml new file mode 100644 index 000000000..216055ca5 --- /dev/null +++ b/.github/workflows/please-take-a-look-command.yml @@ -0,0 +1,54 @@ +# This action is centrally managed in https://github.com/asyncapi/.github/ +# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo + +# It uses Github actions to listen for comments on issues and pull requests and +# if the comment contains /ping-for-attention or /pfa it will add a comment pinging +# the code-owners who have not yet reviewed the pull request + +name: Please take a Look + +on: + issue_comment: + types: [created] + +jobs: + ping-for-attention: + if: > + github.event.issue.pull_request && + github.event.issue.state != 'closed' && + github.actor != 'asyncapi-bot' && + ( + contains(github.event.comment.body, '/please-take-a-look') || + contains(github.event.comment.body, '/ptal') || + contains(github.event.comment.body, '/PTAL') + ) + runs-on: ubuntu-latest + steps: + - name: Check for Please Take a Look Command + uses: actions/github-script@v6 + with: + github-token: ${{ secrets.GH_TOKEN }} + script: | + const prDetailsUrl = context.payload.issue.pull_request.url; + const { data: pull } = await github.request(prDetailsUrl); + const reviewers = pull.requested_reviewers.map(reviewer => reviewer.login); + + const { data: reviews } = await github.rest.pulls.listReviews({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.issue.number + }); + + const reviewersWhoHaveReviewed = reviews.map(review => review.user.login); + + const reviewersWhoHaveNotReviewed = reviewers.filter(reviewer => !reviewersWhoHaveReviewed.includes(reviewer)); + + if (reviewersWhoHaveNotReviewed.length > 0) { + const comment = reviewersWhoHaveNotReviewed.map(reviewer => `@${reviewer}`).join(' '); + await github.rest.issues.createComment({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + body: `${comment} Please take a look at this PR. Thanks! :wave:` + }); + } From d3148e5e782d80192630f3e9eac23d316d562d5a Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Wed, 3 Apr 2024 22:06:31 +0200 Subject: [PATCH 09/16] chore: update @asyncapi/go-watermill-template to 0.2.73 version (#1061) --- apps/studio/package.json | 2 +- package-lock.json | 144 +++++++++++++++++++-------------------- 2 files changed, 73 insertions(+), 73 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index d9785a505..1c95db114 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -75,7 +75,7 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", + "@asyncapi/go-watermill-template": "^0.2.73", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", diff --git a/package-lock.json b/package-lock.json index fcc3fea4f..fb0f39d12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -524,7 +524,7 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", + "@asyncapi/go-watermill-template": "^0.2.73", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", @@ -1320,15 +1320,15 @@ } }, "node_modules/@asyncapi/go-watermill-template": { - "version": "0.2.72", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.72.tgz", - "integrity": "sha512-y7bCIgaTKgTsscc3x5A4nnJRgUP9+h4IXhGJpqHGLvcQe/QPlpVZo8kft2m10C4ka2wzNX1ws+edbcUeEQGFAg==", + "version": "0.2.73", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.73.tgz", + "integrity": "sha512-b2FvqRcPrOM4JoK58usIUWHBlKlamgu9Bn5i2vw4Acx3Vv+jcf76F6jR6iH5UE8P9AK9u8bgg6rya71llUgNkg==", "dev": true, "dependencies": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.5" + "@asyncapi/modelina": "^3.4.6" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@apidevtools/json-schema-ref-parser": { @@ -1349,14 +1349,14 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/modelina": { - "version": "3.4.5", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.5.tgz", - "integrity": "sha512-OcpNHDFeeIISiIsM+fGF+N8PeK6IBuaPrAm1uTjoja5n61ZQatD97Lo8l7Ff1tdxTVuEfjhkMyTvi19PkFDCbA==", + "version": "3.4.6", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.6.tgz", + "integrity": "sha512-qYCpq+qNwbJAcd8XFI0A8aJ6mn3S+prD5t0LkHAoAAEMY9+2yHbTfTpsxXo6jAjKD2MpLQmzZ7fXPIjG02O5WQ==", "dev": true, "dependencies": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -1372,12 +1372,12 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1399,18 +1399,18 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@types/node": { - "version": "20.11.27", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.27.tgz", - "integrity": "sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==", + "version": "20.12.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.3.tgz", + "integrity": "sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -9323,9 +9323,9 @@ } }, "node_modules/@smoya/multi-parser": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.3.tgz", - "integrity": "sha512-XrSIsLdBeWOo7f61qpaoSPFyE5ctuspSAJZ7pZ08OqY3M7zLiTQi8w37AV4rxOg35+2VRGorzYBycx2bvwe4uw==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.4.tgz", + "integrity": "sha512-qJKqAWWNg+PO4MphUpwnxPE4Y3ekBOtLvupH5M2YK5NJ00HVB7zClLL+02PXKDKOb7ogXyxG9b3lArvFDDOR2Q==", "dev": true, "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -9334,7 +9334,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.7" + "parserapiv3": "npm:@asyncapi/parser@^3.0.9" } }, "node_modules/@stoplight/better-ajv-errors": { @@ -27652,9 +27652,9 @@ } }, "node_modules/parserapiv2/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -27682,12 +27682,12 @@ }, "node_modules/parserapiv3": { "name": "@asyncapi/parser", - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -27709,9 +27709,9 @@ } }, "node_modules/parserapiv3/node_modules/@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -34229,9 +34229,9 @@ } }, "node_modules/typescript-json-schema/node_modules/@types/node": { - "version": "16.18.89", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.89.tgz", - "integrity": "sha512-QlrE8QI5z62nfnkiUZysUsAaxWaTMoGqFVcB3PvK1WxJ0c699bacErV4Fabe9Hki6ZnaHalgzihLbTl2d34XfQ==", + "version": "16.18.94", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.94.tgz", + "integrity": "sha512-X8q3DoKq8t/QhA0Rk/9wJUajxtXRDiCK+cVaONKLxpsjPhu+xX6uZuEj4UKGLQ4p0obTdFxa0cP/BMvf9mOYZA==", "dev": true }, "node_modules/typescript-json-schema/node_modules/cliui": { @@ -36712,15 +36712,15 @@ } }, "@asyncapi/go-watermill-template": { - "version": "0.2.72", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.72.tgz", - "integrity": "sha512-y7bCIgaTKgTsscc3x5A4nnJRgUP9+h4IXhGJpqHGLvcQe/QPlpVZo8kft2m10C4ka2wzNX1ws+edbcUeEQGFAg==", + "version": "0.2.73", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.73.tgz", + "integrity": "sha512-b2FvqRcPrOM4JoK58usIUWHBlKlamgu9Bn5i2vw4Acx3Vv+jcf76F6jR6iH5UE8P9AK9u8bgg6rya71llUgNkg==", "dev": true, "requires": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.5" + "@asyncapi/modelina": "^3.4.6" }, "dependencies": { "@apidevtools/json-schema-ref-parser": { @@ -36735,14 +36735,14 @@ } }, "@asyncapi/modelina": { - "version": "3.4.5", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.5.tgz", - "integrity": "sha512-OcpNHDFeeIISiIsM+fGF+N8PeK6IBuaPrAm1uTjoja5n61ZQatD97Lo8l7Ff1tdxTVuEfjhkMyTvi19PkFDCbA==", + "version": "3.4.6", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.6.tgz", + "integrity": "sha512-qYCpq+qNwbJAcd8XFI0A8aJ6mn3S+prD5t0LkHAoAAEMY9+2yHbTfTpsxXo6jAjKD2MpLQmzZ7fXPIjG02O5WQ==", "dev": true, "requires": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.10", + "@asyncapi/parser": "^3.0.12", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -36755,12 +36755,12 @@ } }, "@asyncapi/parser": { - "version": "3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36782,18 +36782,18 @@ } }, "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" } }, "@types/node": { - "version": "20.11.27", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.27.tgz", - "integrity": "sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==", + "version": "20.12.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.3.tgz", + "integrity": "sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==", "dev": true, "requires": { "undici-types": "~5.26.4" @@ -37682,7 +37682,7 @@ "@asyncapi/avro-schema-parser": "^3.0.19", "@asyncapi/converter": "^1.4.17", "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.72", + "@asyncapi/go-watermill-template": "^0.2.73", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", @@ -42340,9 +42340,9 @@ } }, "@smoya/multi-parser": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.3.tgz", - "integrity": "sha512-XrSIsLdBeWOo7f61qpaoSPFyE5ctuspSAJZ7pZ08OqY3M7zLiTQi8w37AV4rxOg35+2VRGorzYBycx2bvwe4uw==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.4.tgz", + "integrity": "sha512-qJKqAWWNg+PO4MphUpwnxPE4Y3ekBOtLvupH5M2YK5NJ00HVB7zClLL+02PXKDKOb7ogXyxG9b3lArvFDDOR2Q==", "dev": true, "requires": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -42351,7 +42351,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.7" + "parserapiv3": "npm:@asyncapi/parser@^3.0.9" } }, "@stoplight/better-ajv-errors": { @@ -54650,9 +54650,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -54670,12 +54670,12 @@ } }, "parserapiv3": { - "version": "npm:@asyncapi/parser@3.0.10", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.10.tgz", - "integrity": "sha512-x9qo7SHGzPWbC1XCRyilcI+Z6UZsWZ9uRl05h9j4G/v+3IjNG3krwngiAbt59nbLlYZD/nBS7Hc03GayoocnQw==", + "version": "npm:@asyncapi/parser@3.0.12", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", + "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.3", + "@asyncapi/specs": "^6.5.5", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -54697,9 +54697,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.3.tgz", - "integrity": "sha512-mZROlCOLkZEWy5tN4pPop3JEJflSKmLLMGO1TebF5wjnroqZ3yp/GuGUxVIl3jVNxFk1i5nZ2AtWzAD/HaUj3Q==", + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", + "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -58820,9 +58820,9 @@ }, "dependencies": { "@types/node": { - "version": "16.18.89", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.89.tgz", - "integrity": "sha512-QlrE8QI5z62nfnkiUZysUsAaxWaTMoGqFVcB3PvK1WxJ0c699bacErV4Fabe9Hki6ZnaHalgzihLbTl2d34XfQ==", + "version": "16.18.94", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.94.tgz", + "integrity": "sha512-X8q3DoKq8t/QhA0Rk/9wJUajxtXRDiCK+cVaONKLxpsjPhu+xX6uZuEj4UKGLQ4p0obTdFxa0cP/BMvf9mOYZA==", "dev": true }, "cliui": { From 34ded6d0404870b7efb7bdc3abfa09f844928b9d Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Thu, 4 Apr 2024 16:21:46 +0200 Subject: [PATCH 10/16] ci: update of files from global .github repo (#1064) --- .github/workflows/please-take-a-look-command.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/please-take-a-look-command.yml b/.github/workflows/please-take-a-look-command.yml index 216055ca5..b26cbc41a 100644 --- a/.github/workflows/please-take-a-look-command.yml +++ b/.github/workflows/please-take-a-look-command.yml @@ -2,8 +2,8 @@ # Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in above mentioned repo # It uses Github actions to listen for comments on issues and pull requests and -# if the comment contains /ping-for-attention or /pfa it will add a comment pinging -# the code-owners who have not yet reviewed the pull request +# if the comment contains /please-take-a-look or /ptal it will add a comment pinging +# the code-owners who are reviewers for PR name: Please take a Look @@ -44,7 +44,7 @@ jobs: const reviewersWhoHaveNotReviewed = reviewers.filter(reviewer => !reviewersWhoHaveReviewed.includes(reviewer)); if (reviewersWhoHaveNotReviewed.length > 0) { - const comment = reviewersWhoHaveNotReviewed.map(reviewer => `@${reviewer}`).join(' '); + const comment = reviewersWhoHaveNotReviewed.filter(reviewer => reviewer !== 'asyncapi-bot-eve' ).map(reviewer => `@${reviewer}`).join(' '); await github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, From 7c234a552aafa9447b6d2ae422e2914316b0ab7d Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Mon, 8 Apr 2024 14:23:34 +0200 Subject: [PATCH 11/16] ci: update of files from global .github repo (#1067) --- .github/workflows/help-command.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/help-command.yml b/.github/workflows/help-command.yml index ada81682e..55353bb89 100644 --- a/.github/workflows/help-command.yml +++ b/.github/workflows/help-command.yml @@ -31,7 +31,7 @@ jobs: At the moment the following comments are supported in pull requests: - - \`/please-take-a-look` or \`/ptal\` - This comment will add a comment to the PR asking for attention from the reviewrs who have not reviewed the PR yet. + - \`/please-take-a-look\` or \`/ptal\` - This comment will add a comment to the PR asking for attention from the reviewrs who have not reviewed the PR yet. - \`/ready-to-merge\` or \`/rtm\` - This comment will trigger automerge of PR in case all required checks are green, approvals in place and do-not-merge label is not added - \`/do-not-merge\` or \`/dnm\` - This comment will block automerging even if all conditions are met and ready-to-merge label is added - \`/autoupdate\` or \`/au\` - This comment will add \`autoupdate\` label to the PR and keeps your PR up-to-date to the target branch's future changes. Unless there is a merge conflict or it is a draft PR.` From b93479c30c9443b0a0f881b8a1bc234788b9f671 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Tue, 9 Apr 2024 18:15:32 +0200 Subject: [PATCH 12/16] ci: update of files from global .github repo (#1068) --- .github/workflows/if-nodejs-pr-testing.yml | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/if-nodejs-pr-testing.yml b/.github/workflows/if-nodejs-pr-testing.yml index 73a2af5c2..66ea65528 100644 --- a/.github/workflows/if-nodejs-pr-testing.yml +++ b/.github/workflows/if-nodejs-pr-testing.yml @@ -39,9 +39,10 @@ jobs: run: | git config --global core.autocrlf false git config --global core.eol lf + shell: bash - if: steps.should_run.outputs.shouldrun == 'true' name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - if: steps.should_run.outputs.shouldrun == 'true' name: Check if Node.js project and has package.json id: packagejson @@ -53,27 +54,26 @@ jobs: id: lockversion - if: steps.packagejson.outputs.exists == 'true' name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "${{ steps.lockversion.outputs.version }}" - cache: 'npm' - cache-dependency-path: '**/package-lock.json' + - if: steps.lockversion.outputs.version == '18' && matrix.os == 'windows-latest' + #npm cli 10 is buggy because of some cache issue + name: Install npm cli 8 + shell: bash + run: npm install -g npm@8.19.4 - if: steps.packagejson.outputs.exists == 'true' name: Install dependencies - id: first-installation + shell: bash run: npm ci - continue-on-error: true - - if: steps.first-installation.outcome != 'success' && steps.packagejson.outputs.exists == 'true' - name: Clear NPM cache and install deps again - run: | - npm cache clean --force - npm ci - if: steps.packagejson.outputs.exists == 'true' name: Test run: npm test --if-present - - if: steps.packagejson.outputs.exists == 'true' + - if: steps.packagejson.outputs.exists == 'true' && matrix.os == 'ubuntu-latest' + #linting should run just one and not on all possible operating systems name: Run linter run: npm run lint --if-present - if: steps.packagejson.outputs.exists == 'true' name: Run release assets generation to make sure PR does not break it + shell: bash run: npm run generate:assets --if-present From 59d293f699c0b1d1a9eda1c6d7cec86e70bfb781 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Mon, 15 Apr 2024 12:14:05 +0200 Subject: [PATCH 13/16] fix: update @asyncapi/specs to 6.5.6 version and others (#1069) --- apps/studio/package.json | 2 +- package-lock.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 1c95db114..790c68cab 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -28,7 +28,7 @@ "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", diff --git a/package-lock.json b/package-lock.json index fb0f39d12..ab7774199 100644 --- a/package-lock.json +++ b/package-lock.json @@ -504,7 +504,7 @@ "@asyncapi/parser": "^3.0.12", "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", "@headlessui/react": "^1.7.4", "@hookstate/core": "^4.0.0-rc21", @@ -643,9 +643,9 @@ } }, "apps/studio/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -37695,7 +37695,7 @@ "@asyncapi/protobuf-schema-parser": "^3.2.10", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@asyncapi/ts-nats-template": "^0.10.3", "@craco/craco": "^7.1.0", "@ebay/nice-modal-react": "^1.2.10", @@ -37780,9 +37780,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } From 2a80d60191e3e18fb616e2cb0c7b920e50f55fb7 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Mon, 15 Apr 2024 13:04:45 +0200 Subject: [PATCH 14/16] fix: update @asyncapi/parser to 3.0.13 version and others (#1070) --- apps/studio/package.json | 8 +- package-lock.json | 164 +++++++++++++++++++-------------------- 2 files changed, 86 insertions(+), 86 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 790c68cab..a49b34e96 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -22,11 +22,11 @@ "./LICENSE" ], "dependencies": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.17", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", "@asyncapi/openapi-schema-parser": "^3.0.20", - "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.10", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", diff --git a/package-lock.json b/package-lock.json index ab7774199..8585358fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -498,11 +498,11 @@ "version": "0.21.0", "license": "Apache-2.0", "dependencies": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.17", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", "@asyncapi/openapi-schema-parser": "^3.0.20", - "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.10", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.6", "@ebay/nice-modal-react": "^1.2.10", @@ -617,11 +617,11 @@ } }, "apps/studio/node_modules/@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1002,21 +1002,21 @@ } }, "node_modules/@asyncapi/avro-schema-parser": { - "version": "3.0.19", - "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.19.tgz", - "integrity": "sha512-1+qwxeAbSpp2OQw1TkjWemS7v646lSVM2RMJzDAh5qP5w33hM2xLXcuYC2O72l2AbCl4bkRfXTjTWLLq8qiPAA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.21.tgz", + "integrity": "sha512-ybHSI5yLWm/10BK8DEUrpecHP6JX8GgFzCbM3oRnohyTc27eWXXA0GRIhAJtb3FvqgG1GuuWvZH+jAlUuSJBMg==", "dependencies": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" } }, "node_modules/@asyncapi/avro-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1038,9 +1038,9 @@ } }, "node_modules/@asyncapi/avro-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -1065,20 +1065,20 @@ } }, "node_modules/@asyncapi/converter": { - "version": "1.4.17", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.17.tgz", - "integrity": "sha512-v6CkOIKbI0JnbXGXIa6hiv/Nfzd413Iy4Rzh/zlyOSxXiDup1nBdq67CbQUv1b7iblnuFlErRIeRXjY1Nq7+Kg==", + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.18.tgz", + "integrity": "sha512-4L4U+FX67FoqNfnIKHPIQmb5aOxT8TlJdV6Ek30JtI5sraz6odwdc7B7bxaF0FG1NqV2nawH9zOPLrWYWy7MPA==", "dependencies": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "js-yaml": "^3.14.1" } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1116,9 +1116,9 @@ } }, "node_modules/@asyncapi/converter/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -2230,21 +2230,21 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser": { - "version": "3.2.10", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.10.tgz", - "integrity": "sha512-k/+W3cTXy1JgUN5QEXV8MsIBwO7iGoxWLgLqyFY3qwEPLwBbydYxS9DLoo+0hI8jV70sInmnI7DLSUKQNEoK9g==", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.11.tgz", + "integrity": "sha512-zmN5Rb4OMuTKCFi1qWG2x+Q7gwk622jVRu3biAisHNjvJn80GtQwXB66tJ2FGhSfd9OcreU8sEfDKf+KzjqMAA==", "dependencies": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2266,9 +2266,9 @@ } }, "node_modules/@asyncapi/protobuf-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -36451,21 +36451,21 @@ } }, "@asyncapi/avro-schema-parser": { - "version": "3.0.19", - "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.19.tgz", - "integrity": "sha512-1+qwxeAbSpp2OQw1TkjWemS7v646lSVM2RMJzDAh5qP5w33hM2xLXcuYC2O72l2AbCl4bkRfXTjTWLLq8qiPAA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/avro-schema-parser/-/avro-schema-parser-3.0.21.tgz", + "integrity": "sha512-ybHSI5yLWm/10BK8DEUrpecHP6JX8GgFzCbM3oRnohyTc27eWXXA0GRIhAJtb3FvqgG1GuuWvZH+jAlUuSJBMg==", "requires": { - "@asyncapi/parser": "^3.0.11", + "@asyncapi/parser": "^3.0.13", "@types/json-schema": "^7.0.11", "avsc": "^5.7.6" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.11", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.11.tgz", - "integrity": "sha512-YrmPY6Me7Eh6yH7xISKrDuiybaNVDUxVjbChUAoJZ4dnVGAmMVTxQTlwoqEwQ9bfTHzAb3RixdJ3TC6I4RoHNw==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.4", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36487,9 +36487,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.4.tgz", - "integrity": "sha512-olC+iuboGIGjFRKuqfwaXxm5I6Wae3JohmySwMfExl21nYUd88IbfwywunOPLWyLV05aXeoTJ5tDXiM9e4gWcQ==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -36505,20 +36505,20 @@ } }, "@asyncapi/converter": { - "version": "1.4.17", - "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.17.tgz", - "integrity": "sha512-v6CkOIKbI0JnbXGXIa6hiv/Nfzd413Iy4Rzh/zlyOSxXiDup1nBdq67CbQUv1b7iblnuFlErRIeRXjY1Nq7+Kg==", + "version": "1.4.18", + "resolved": "https://registry.npmjs.org/@asyncapi/converter/-/converter-1.4.18.tgz", + "integrity": "sha512-4L4U+FX67FoqNfnIKHPIQmb5aOxT8TlJdV6Ek30JtI5sraz6odwdc7B7bxaF0FG1NqV2nawH9zOPLrWYWy7MPA==", "requires": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "js-yaml": "^3.14.1" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36555,9 +36555,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37464,21 +37464,21 @@ } }, "@asyncapi/protobuf-schema-parser": { - "version": "3.2.10", - "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.10.tgz", - "integrity": "sha512-k/+W3cTXy1JgUN5QEXV8MsIBwO7iGoxWLgLqyFY3qwEPLwBbydYxS9DLoo+0hI8jV70sInmnI7DLSUKQNEoK9g==", + "version": "3.2.11", + "resolved": "https://registry.npmjs.org/@asyncapi/protobuf-schema-parser/-/protobuf-schema-parser-3.2.11.tgz", + "integrity": "sha512-zmN5Rb4OMuTKCFi1qWG2x+Q7gwk622jVRu3biAisHNjvJn80GtQwXB66tJ2FGhSfd9OcreU8sEfDKf+KzjqMAA==", "requires": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@types/protocol-buffers-schema": "^3.4.1", "protobufjs": "^7.2.6" }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37500,9 +37500,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37679,8 +37679,8 @@ "@asyncapi/studio": { "version": "file:apps/studio", "requires": { - "@asyncapi/avro-schema-parser": "^3.0.19", - "@asyncapi/converter": "^1.4.17", + "@asyncapi/avro-schema-parser": "^3.0.21", + "@asyncapi/converter": "^1.4.18", "@asyncapi/dotnet-nats-template": "^0.12.1", "@asyncapi/go-watermill-template": "^0.2.73", "@asyncapi/html-template": "^2.3.2", @@ -37691,8 +37691,8 @@ "@asyncapi/nodejs-template": "^2.0.1", "@asyncapi/nodejs-ws-template": "^0.9.33", "@asyncapi/openapi-schema-parser": "^3.0.20", - "@asyncapi/parser": "^3.0.12", - "@asyncapi/protobuf-schema-parser": "^3.2.10", + "@asyncapi/parser": "^3.0.13", + "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/python-paho-template": "^0.2.13", "@asyncapi/react-component": "^1.2.2", "@asyncapi/specs": "^6.5.6", @@ -37754,11 +37754,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", From 4fe2da9f790a4323531a68030caa429a6fc6d21d Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Mon, 15 Apr 2024 13:41:40 +0200 Subject: [PATCH 15/16] chore: update @asyncapi/go-watermill-template to 0.2.74 version (#1071) --- apps/studio/package.json | 2 +- package-lock.json | 144 +++++++++++++++++++-------------------- 2 files changed, 73 insertions(+), 73 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index a49b34e96..4c719a6cb 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -75,7 +75,7 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.73", + "@asyncapi/go-watermill-template": "^0.2.74", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", diff --git a/package-lock.json b/package-lock.json index 8585358fc..9a51cc025 100644 --- a/package-lock.json +++ b/package-lock.json @@ -524,7 +524,7 @@ }, "devDependencies": { "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.73", + "@asyncapi/go-watermill-template": "^0.2.74", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", @@ -1320,15 +1320,15 @@ } }, "node_modules/@asyncapi/go-watermill-template": { - "version": "0.2.73", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.73.tgz", - "integrity": "sha512-b2FvqRcPrOM4JoK58usIUWHBlKlamgu9Bn5i2vw4Acx3Vv+jcf76F6jR6iH5UE8P9AK9u8bgg6rya71llUgNkg==", + "version": "0.2.74", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.74.tgz", + "integrity": "sha512-x5fJEX1l8DbGMZBJO6Y4UKsdmjQYNGTivuxo2n10uxEADfZovT7T2YssSkgQ8axGEOZ+ETuy0FAhn3jWEsJicQ==", "dev": true, "dependencies": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.6" + "@asyncapi/modelina": "^3.4.7" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@apidevtools/json-schema-ref-parser": { @@ -1349,14 +1349,14 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/modelina": { - "version": "3.4.6", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.6.tgz", - "integrity": "sha512-qYCpq+qNwbJAcd8XFI0A8aJ6mn3S+prD5t0LkHAoAAEMY9+2yHbTfTpsxXo6jAjKD2MpLQmzZ7fXPIjG02O5WQ==", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.7.tgz", + "integrity": "sha512-kUSsfGMRQt3iXgqTapl+ETlGujbG4Kwe/dUGkxC/TXoXbG5byHFfswMp23yLli8gOy8S0JY1E187UbFLoORtgw==", "dev": true, "dependencies": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -1372,12 +1372,12 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -1399,18 +1399,18 @@ } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" } }, "node_modules/@asyncapi/go-watermill-template/node_modules/@types/node": { - "version": "20.12.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.3.tgz", - "integrity": "sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -9323,9 +9323,9 @@ } }, "node_modules/@smoya/multi-parser": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.4.tgz", - "integrity": "sha512-qJKqAWWNg+PO4MphUpwnxPE4Y3ekBOtLvupH5M2YK5NJ00HVB7zClLL+02PXKDKOb7ogXyxG9b3lArvFDDOR2Q==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.5.tgz", + "integrity": "sha512-xslTCMvNl5maGphjU6cWXsDKS7PZH+7yyAiuv4F2XBUOm4s3IcKfRIqnGAGgEgYm5fb/oZzq5Rv2kZMETyniuA==", "dev": true, "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -9334,7 +9334,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.9" + "parserapiv3": "npm:@asyncapi/parser@^3.0.12" } }, "node_modules/@stoplight/better-ajv-errors": { @@ -27652,9 +27652,9 @@ } }, "node_modules/parserapiv2/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -27682,12 +27682,12 @@ }, "node_modules/parserapiv3": { "name": "@asyncapi/parser", - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -27709,9 +27709,9 @@ } }, "node_modules/parserapiv3/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.11" @@ -34229,9 +34229,9 @@ } }, "node_modules/typescript-json-schema/node_modules/@types/node": { - "version": "16.18.94", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.94.tgz", - "integrity": "sha512-X8q3DoKq8t/QhA0Rk/9wJUajxtXRDiCK+cVaONKLxpsjPhu+xX6uZuEj4UKGLQ4p0obTdFxa0cP/BMvf9mOYZA==", + "version": "16.18.96", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.96.tgz", + "integrity": "sha512-84iSqGXoO+Ha16j8pRZ/L90vDMKX04QTYMTfYeE1WrjWaZXuchBehGUZEpNgx7JnmlrIHdnABmpjrQjhCnNldQ==", "dev": true }, "node_modules/typescript-json-schema/node_modules/cliui": { @@ -36712,15 +36712,15 @@ } }, "@asyncapi/go-watermill-template": { - "version": "0.2.73", - "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.73.tgz", - "integrity": "sha512-b2FvqRcPrOM4JoK58usIUWHBlKlamgu9Bn5i2vw4Acx3Vv+jcf76F6jR6iH5UE8P9AK9u8bgg6rya71llUgNkg==", + "version": "0.2.74", + "resolved": "https://registry.npmjs.org/@asyncapi/go-watermill-template/-/go-watermill-template-0.2.74.tgz", + "integrity": "sha512-x5fJEX1l8DbGMZBJO6Y4UKsdmjQYNGTivuxo2n10uxEADfZovT7T2YssSkgQ8axGEOZ+ETuy0FAhn3jWEsJicQ==", "dev": true, "requires": { "@asyncapi/generator-filters": "^2.0.0", "@asyncapi/generator-hooks": "^0.1.0", "@asyncapi/generator-react-sdk": "^0.2.23", - "@asyncapi/modelina": "^3.4.6" + "@asyncapi/modelina": "^3.4.7" }, "dependencies": { "@apidevtools/json-schema-ref-parser": { @@ -36735,14 +36735,14 @@ } }, "@asyncapi/modelina": { - "version": "3.4.6", - "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.6.tgz", - "integrity": "sha512-qYCpq+qNwbJAcd8XFI0A8aJ6mn3S+prD5t0LkHAoAAEMY9+2yHbTfTpsxXo6jAjKD2MpLQmzZ7fXPIjG02O5WQ==", + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/@asyncapi/modelina/-/modelina-3.4.7.tgz", + "integrity": "sha512-kUSsfGMRQt3iXgqTapl+ETlGujbG4Kwe/dUGkxC/TXoXbG5byHFfswMp23yLli8gOy8S0JY1E187UbFLoORtgw==", "dev": true, "requires": { "@apidevtools/json-schema-ref-parser": "^11.1.0", "@apidevtools/swagger-parser": "^10.1.0", - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@smoya/multi-parser": "^5.0.1", "@swc/core": "^1.3.5", "@swc/jest": "^0.2.23", @@ -36755,12 +36755,12 @@ } }, "@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -36782,18 +36782,18 @@ } }, "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" } }, "@types/node": { - "version": "20.12.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.3.tgz", - "integrity": "sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "requires": { "undici-types": "~5.26.4" @@ -37682,7 +37682,7 @@ "@asyncapi/avro-schema-parser": "^3.0.21", "@asyncapi/converter": "^1.4.18", "@asyncapi/dotnet-nats-template": "^0.12.1", - "@asyncapi/go-watermill-template": "^0.2.73", + "@asyncapi/go-watermill-template": "^0.2.74", "@asyncapi/html-template": "^2.3.2", "@asyncapi/java-spring-cloud-stream-template": "^0.13.4", "@asyncapi/java-spring-template": "^1.5.1", @@ -42340,9 +42340,9 @@ } }, "@smoya/multi-parser": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.4.tgz", - "integrity": "sha512-qJKqAWWNg+PO4MphUpwnxPE4Y3ekBOtLvupH5M2YK5NJ00HVB7zClLL+02PXKDKOb7ogXyxG9b3lArvFDDOR2Q==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@smoya/multi-parser/-/multi-parser-5.0.5.tgz", + "integrity": "sha512-xslTCMvNl5maGphjU6cWXsDKS7PZH+7yyAiuv4F2XBUOm4s3IcKfRIqnGAGgEgYm5fb/oZzq5Rv2kZMETyniuA==", "dev": true, "requires": { "@asyncapi/avro-schema-parser": "^3.0.3", @@ -42351,7 +42351,7 @@ "@asyncapi/raml-dt-schema-parser": "^4.0.4", "parserapiv1": "npm:@asyncapi/parser@^2.1.0", "parserapiv2": "npm:@asyncapi/parser@3.0.0-next-major-spec.8", - "parserapiv3": "npm:@asyncapi/parser@^3.0.9" + "parserapiv3": "npm:@asyncapi/parser@^3.0.12" } }, "@stoplight/better-ajv-errors": { @@ -54650,9 +54650,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -54670,12 +54670,12 @@ } }, "parserapiv3": { - "version": "npm:@asyncapi/parser@3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "npm:@asyncapi/parser@3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dev": true, "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -54697,9 +54697,9 @@ }, "dependencies": { "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dev": true, "requires": { "@types/json-schema": "^7.0.11" @@ -58820,9 +58820,9 @@ }, "dependencies": { "@types/node": { - "version": "16.18.94", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.94.tgz", - "integrity": "sha512-X8q3DoKq8t/QhA0Rk/9wJUajxtXRDiCK+cVaONKLxpsjPhu+xX6uZuEj4UKGLQ4p0obTdFxa0cP/BMvf9mOYZA==", + "version": "16.18.96", + "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.96.tgz", + "integrity": "sha512-84iSqGXoO+Ha16j8pRZ/L90vDMKX04QTYMTfYeE1WrjWaZXuchBehGUZEpNgx7JnmlrIHdnABmpjrQjhCnNldQ==", "dev": true }, "cliui": { From 8408c10f27ed3ac00ce81cd87b032b4bf8c4629b Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Mon, 15 Apr 2024 13:48:00 +0200 Subject: [PATCH 16/16] fix: update @asyncapi/openapi-schema-parser to 3.0.21 version and others (#1072) --- apps/studio/package.json | 2 +- package-lock.json | 48 ++++++++++++++++++++-------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/studio/package.json b/apps/studio/package.json index 4c719a6cb..5c7055b69 100644 --- a/apps/studio/package.json +++ b/apps/studio/package.json @@ -24,7 +24,7 @@ "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.21", "@asyncapi/converter": "^1.4.18", - "@asyncapi/openapi-schema-parser": "^3.0.20", + "@asyncapi/openapi-schema-parser": "^3.0.21", "@asyncapi/parser": "^3.0.13", "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", diff --git a/package-lock.json b/package-lock.json index 9a51cc025..baa53e976 100644 --- a/package-lock.json +++ b/package-lock.json @@ -500,7 +500,7 @@ "dependencies": { "@asyncapi/avro-schema-parser": "^3.0.21", "@asyncapi/converter": "^1.4.18", - "@asyncapi/openapi-schema-parser": "^3.0.20", + "@asyncapi/openapi-schema-parser": "^3.0.21", "@asyncapi/parser": "^3.0.13", "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/react-component": "^1.2.2", @@ -2111,11 +2111,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.20.tgz", - "integrity": "sha512-WYooWN1oIxzOk5s5HUALxVIyF4C02OgA0xKxH9jR//qER5rRu98fvuzoziY1oiHrGkxLOCbWFvSliLTPEbkdbA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.21.tgz", + "integrity": "sha512-lecylfA49DLTzrSAjFuuj1u8joffgIpX860dISjky0/CqNX408tLTqEhcL/jsGBsbhqNBh5lc4foJQZyWxlNJw==", "dependencies": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -2123,11 +2123,11 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "dependencies": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -2149,9 +2149,9 @@ } }, "node_modules/@asyncapi/openapi-schema-parser/node_modules/@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "dependencies": { "@types/json-schema": "^7.0.11" } @@ -37365,11 +37365,11 @@ } }, "@asyncapi/openapi-schema-parser": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.20.tgz", - "integrity": "sha512-WYooWN1oIxzOk5s5HUALxVIyF4C02OgA0xKxH9jR//qER5rRu98fvuzoziY1oiHrGkxLOCbWFvSliLTPEbkdbA==", + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/@asyncapi/openapi-schema-parser/-/openapi-schema-parser-3.0.21.tgz", + "integrity": "sha512-lecylfA49DLTzrSAjFuuj1u8joffgIpX860dISjky0/CqNX408tLTqEhcL/jsGBsbhqNBh5lc4foJQZyWxlNJw==", "requires": { - "@asyncapi/parser": "^3.0.12", + "@asyncapi/parser": "^3.0.13", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "ajv": "^8.11.0", "ajv-errors": "^3.0.0", @@ -37377,11 +37377,11 @@ }, "dependencies": { "@asyncapi/parser": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.12.tgz", - "integrity": "sha512-F46FSg6XZDy8LSE0U8MnK0JsvRdDXN2XwE/prewr6d+JE1DNR7fwYAFty7SNh2Ym04D5G+YHZEm2QbbzOsrbsQ==", + "version": "3.0.13", + "resolved": "https://registry.npmjs.org/@asyncapi/parser/-/parser-3.0.13.tgz", + "integrity": "sha512-ULNVAsfdLJJJeBDCAWGfleEzmkKJCWcZaYzhTIrqccJa6yZvWrMPLGMYhJhBkdczDxjtdi0iqMmxEy2GC36mUA==", "requires": { - "@asyncapi/specs": "^6.5.5", + "@asyncapi/specs": "^6.5.6", "@openapi-contrib/openapi-schema-to-json-schema": "~3.2.0", "@stoplight/json": "^3.20.2", "@stoplight/json-ref-readers": "^1.2.2", @@ -37403,9 +37403,9 @@ } }, "@asyncapi/specs": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.5.tgz", - "integrity": "sha512-5uPO22ZsLjh6ZdSHF/wROogOaA3BlYUOQqBf5+hdBbXXj/jIHJWHTYSLWCvws7DQM0++tHslFZ+xWbURTc927w==", + "version": "6.5.6", + "resolved": "https://registry.npmjs.org/@asyncapi/specs/-/specs-6.5.6.tgz", + "integrity": "sha512-TI3OIY0UFf7wPyjV9GjKqL6C4YJ0xOJ7wX33sxVqCf0XXIq4otGHa1XiBcCUAgdbMlO7b8jsFRxuUsVXCsYDVQ==", "requires": { "@types/json-schema": "^7.0.11" } @@ -37690,7 +37690,7 @@ "@asyncapi/markdown-template": "^1.5.0", "@asyncapi/nodejs-template": "^2.0.1", "@asyncapi/nodejs-ws-template": "^0.9.33", - "@asyncapi/openapi-schema-parser": "^3.0.20", + "@asyncapi/openapi-schema-parser": "^3.0.21", "@asyncapi/parser": "^3.0.13", "@asyncapi/protobuf-schema-parser": "^3.2.11", "@asyncapi/python-paho-template": "^0.2.13",