Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: asyncapi/asyncapi-react
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.7
Choose a base ref
...
head repository: asyncapi/asyncapi-react
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.8
Choose a head ref
  • 3 commits
  • 5 files changed
  • 3 contributors

Commits on Apr 17, 2024

  1. chore(release): v1.4.7 (#986)

    asyncapi-bot authored Apr 17, 2024

    Verified

    This commit was created on github.com and signed with GitHub’s verified signature.
    Copy the full SHA
    61355cb View commit details
  2. refactor: optional chaining in Tags.tsx (#882)

    Co-authored-by: Lukasz Gornicki <lpgornicki@gmail.com>
    harshit-senpai and derberg authored Apr 17, 2024

    Verified

    This commit was created on github.com and signed with GitHub’s verified signature.
    Copy the full SHA
    739dab3 View commit details

Commits on Apr 18, 2024

  1. fix: update @asyncapi/parser to 3.0.14 version and others (#987)

    asyncapi-bot authored Apr 18, 2024

    Verified

    This commit was created on github.com and signed with GitHub’s verified signature.
    Copy the full SHA
    62e90ec View commit details
Showing with 20 additions and 20 deletions.
  1. +2 −2 library/package.json
  2. +1 −1 library/src/components/Tags.tsx
  3. +13 −13 package-lock.json
  4. +2 −2 playground/package.json
  5. +2 −2 web-component/package.json
4 changes: 2 additions & 2 deletions library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/react-component",
"version": "1.4.6",
"version": "1.4.7",
"private": false,
"description": "A React component for AsyncAPI specification.",
"repository": {
@@ -70,7 +70,7 @@
"dependencies": {
"@asyncapi/avro-schema-parser": "^3.0.21",
"@asyncapi/openapi-schema-parser": "^3.0.21",
"@asyncapi/parser": "^3.0.13",
"@asyncapi/parser": "^3.0.14",
"@asyncapi/protobuf-schema-parser": "^3.2.11",
"highlight.js": "^10.7.2",
"isomorphic-dompurify": "^0.13.0",
2 changes: 1 addition & 1 deletion library/src/components/Tags.tsx
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ interface Props {
}

export const Tags: React.FunctionComponent<Props> = ({ tags }) => {
if (!tags || !tags.length) {
if (!tags?.length) {
return null;
}

26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playground",
"version": "1.4.6",
"version": "1.4.7",
"private": true,
"scripts": {
"build": "next build && touch out/.nojekyll",
@@ -9,7 +9,7 @@
"install:reactcomp": "chmod +x ./bump-react-comp.sh && ./bump-react-comp.sh"
},
"dependencies": {
"@asyncapi/react-component": "^1.4.6",
"@asyncapi/react-component": "^1.4.7",
"@codemirror/lang-yaml": "^6.0.0",
"@uiw/codemirror-theme-material": "^4.21.24",
"@uiw/react-codemirror": "^4.21.24",
4 changes: 2 additions & 2 deletions web-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/web-component",
"version": "1.4.6",
"version": "1.4.7",
"private": false,
"description": "A web component for AsyncAPI specification. Based on @asyncapi/react-component.",
"repository": {
@@ -44,7 +44,7 @@
"install:reactcomp": "chmod +x ./bump-react-comp.sh && ./bump-react-comp.sh"
},
"dependencies": {
"@asyncapi/react-component": "^1.4.6",
"@asyncapi/react-component": "^1.4.7",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"web-react-components": "^1.4.2"