Skip to content

Conversation

@snyk-io
Copy link

@snyk-io snyk-io bot commented Jul 21, 2025


EntelligenceAI PR Summary

This PR upgrades the AsyncAPI React component dependency to its stable 1.0.0 release in the api-docs plugin.

  • Updated @asyncapi/react-component from version 1.0.0-next.48 to 1.0.0 in plugins/api-docs/package.json
  • Transitions from pre-release to stable version with finalized APIs and bug fixes
  • Affects AsyncAPI documentation rendering capabilities in the api-docs plugin

@codesandbox
Copy link

codesandbox bot commented Jul 21, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@sourcery-ai
Copy link

sourcery-ai bot commented Jul 21, 2025

Reviewer's Guide

Upgrade @asyncapi/react-component from 1.0.0-next.48 to 1.0.0 in package.json to address a high-severity prototype pollution vulnerability, with a manual update required for the yarn.lock file.

File-Level Changes

Change Details Files
Dependency version upgraded to fix vulnerability
  • Bumped @asyncapi/react-component version from 1.0.0-next.48 to 1.0.0
  • Added note to regenerate or update yarn.lock manually
  • Remediated SNYK-JS-DOMPURIFY-7984421 prototype pollution issue
plugins/api-docs/package.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@socket-security
Copy link

socket-security bot commented Jul 21, 2025

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
License policy violation: npm atob under CC-BY-3.0

License: CC-BY-3.0 - the applicable license policy does not allow this license (4) (package/LICENSE.DOCS)

From: ?npm/atob@2.1.2

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/atob@2.1.2. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Jul 28, 2025
@github-actions github-actions bot closed this Aug 5, 2025
@snyk-io snyk-io bot reopened this Aug 24, 2025
@snyk-io
Copy link
Author

snyk-io bot commented Aug 24, 2025

Snyk checks have failed. 84 issues have been found so far.

Status Scanner Critical High Medium Low Total (84)
Open Source Security 16 26 37 5 84 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@github-actions github-actions bot removed the stale label Aug 24, 2025
@github-actions
Copy link

github-actions bot commented Sep 3, 2025

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added stale and removed stale labels Sep 3, 2025
@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Sep 10, 2025
@github-actions github-actions bot closed this Sep 15, 2025
@snyk-io snyk-io bot reopened this Sep 15, 2025
@entelligence-ai-pr-reviews
Copy link

🔒 Entelligence AI Vulnerability Scanner

No security vulnerabilities found!

Your code passed our comprehensive security analysis.


@entelligence-ai-pr-reviews
Copy link

Walkthrough

This PR updates the AsyncAPI React component dependency in the API docs plugin from a pre-release version (1.0.0-next.48) to the stable release version (1.0.0). This represents a standard dependency upgrade from a development/beta version to the final stable release. The change is isolated to just this single dependency in the package.json file, with no other modifications to dependencies or configuration settings.

Changes

File(s) Summary
plugins/api-docs/package.json Updated @asyncapi/react-component dependency from version 1.0.0-next.48 to stable release version 1.0.0

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    title AsyncAPI Component Integration in Backstage API Docs Plugin
    
    actor User
    participant Frontend as "Backstage Frontend"
    participant APIDocsPlugin as "API Docs Plugin"
    participant AsyncAPIComponent as "@asyncapi/react-component v1.0.0"
    participant APIRegistry as "API Registry"
    
    User->>Frontend: Navigate to API docs page
    activate Frontend
    Frontend->>APIDocsPlugin: Load API documentation
    activate APIDocsPlugin
    
    APIDocsPlugin->>APIRegistry: Fetch API definitions
    APIRegistry-->>APIDocsPlugin: Return AsyncAPI specs
    
    Note over APIDocsPlugin: Plugin detects AsyncAPI format
    
    alt AsyncAPI spec detected
        APIDocsPlugin->>AsyncAPIComponent: Render AsyncAPI spec
        activate AsyncAPIComponent
        AsyncAPIComponent-->>APIDocsPlugin: Return rendered documentation
        deactivate AsyncAPIComponent
    else Other API spec format
        APIDocsPlugin->>APIDocsPlugin: Use different renderer
    end
    
    APIDocsPlugin-->>Frontend: Return rendered documentation
    deactivate APIDocsPlugin
    Frontend-->>User: Display API documentation
    deactivate Frontend
    
    Note over AsyncAPIComponent: Updated from v1.0.0-next.48 to v1.0.0
Loading

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

@entelligence-ai-pr-reviews
Copy link

LGTM 👍

@github-actions github-actions bot removed the stale label Sep 15, 2025
@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Sep 22, 2025
@github-actions github-actions bot closed this Sep 30, 2025
@snyk-io snyk-io bot reopened this Sep 30, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This PR updates the AsyncAPI React component dependency in the API docs plugin from a pre-release version (1.0.0-next.48) to the stable release version (1.0.0). This represents a standard dependency upgrade from a development/beta version to the final stable release. The change is isolated to just this single dependency in the package.json file, with no other modifications to dependencies or configuration settings.

Changes

File(s) Summary
plugins/api-docs/package.json Updated '@asyncapi/react-component' dependency from version '1.0.0-next.48' to stable version '1.0.0'

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

@entelligence-ai-pr-reviews
Copy link

LGTM 👍

@github-actions github-actions bot removed the stale label Sep 30, 2025
@github-actions
Copy link

github-actions bot commented Oct 8, 2025

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Oct 8, 2025
@github-actions github-actions bot closed this Oct 15, 2025
@snyk-io snyk-io bot reopened this Oct 17, 2025
@github-actions github-actions bot removed the stale label Oct 17, 2025
@entelligence-ai-pr-reviews
Copy link

📝 Walkthrough

This PR contains a single change that attempts to upgrade the @asyncapi/react-component dependency in the @backstage/plugin-api-docs package from version 1.0.0-next.48 to 1.0.0. While this appears to be a straightforward upgrade from a pre-release to a stable version, it introduces significant stability risks.

The primary concern is that version 1.0.0 depends on an unstable parser (@asyncapi/parser: ^3.0.0-next-major-spec.1) compared to the current version which uses a stable parser (@asyncapi/parser: ^1.18.0). Additionally, the new version has a substantially larger bundle size (10.4 MB vs 3.9 MB), which could impact application performance.

📊 Changes

File Change
plugins/api-docs/package.json Upgrade @asyncapi/react-component from 1.0.0-next.48 to 1.0.0

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    title AsyncAPI Component Integration in Backstage API Docs Plugin
    
    actor User
    participant "Backstage UI" as UI
    participant "API Docs Plugin" as Plugin
    participant "@asyncapi/react-component" as AsyncAPI
    participant "API Catalog" as Catalog
    
    User->>UI: Navigate to API documentation
    UI->>Plugin: Request API docs view
    
    Plugin->>Catalog: Fetch API entity data
    Catalog-->>Plugin: Return API specification
    
    alt API is AsyncAPI type
        Plugin->>AsyncAPI: Render AsyncAPI specification
        Note over AsyncAPI: Updated from v1.0.0-next.48 to v1.0.0
        AsyncAPI-->>Plugin: Return rendered documentation
    else Other API type
        Plugin->>Plugin: Use appropriate renderer
    end
    
    Plugin-->>UI: Return rendered documentation
    UI-->>User: Display API documentation
Loading

🔒 Security Analysis

  • Vulnerabilities: 0
  • Bugs: 0
  • Code Smells: 0
  • Security Hotspots: 0

Caution

4 comments are outside the diff range and can't be posted inline due to platform limitations.

⚠️ View Outside Diff Range Comments (4)
🔴 Critical High Priority  ·  1 issue
plugins/api-docs/src/components/AsyncApiDefinitionWidget/AsyncApiDefinition.tsx  ·  1 comment

1. Lines unknown · Correctness

Missing parser version compatibility validation which could lead to runtime parsing failures when upgrading versions

Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
/**
 * Fix for Critical Issue #3: Missing Parser Version Validation
 * 
 * Problem: The codebase doesn't validate AsyncAPI parser version compatibility,
 * which could lead to runtime parsing failures when upgrading versions.
 * 
 * This fix adds parser compatibility validation and error handling.
 */
🟡 Medium Medium Priority  ·  1 issue
plugins/api-docs/src/components/AsyncApiDefinitionWidget/AsyncApiDefinition.test.tsx  ·  1 comment

1. Lines unknown · Correctness

Insufficient testing coverage for AsyncAPI component functionality, particularly around error handling, parser compatibility, and edge cases

Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
/**
 * Fix for Medium Priority Issue #4: Insufficient Testing Coverage
 * 
 * Problem: Limited test coverage for AsyncAPI component functionality, particularly
 * around error handling, parser compatibility, and edge cases.
 * 
 * This fix provides comprehensive test improvements for the AsyncAPI co...
 */
🟢 Minor Low Priority  ·  2 issues
plugins/api-docs/src/components/AsyncApiDefinitionWidget/AsyncApiDefinition.tsx  ·  2 comments

1. Lines unknown · Correctness

AsyncApiDefinition component lacks error boundaries for graceful failure handling


2. Lines 147-160 · Style

Fetch resolver configuration is hardcoded and could be more configurable

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

},
"dependencies": {
"@asyncapi/react-component": "1.0.0-next.48",
"@asyncapi/react-component": "1.0.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correctness: Dangerous version upgrade that introduces a dependency on an unstable parser. Current version uses stable @asyncapi/parser ^1.18.0 while target version uses unstable @asyncapi/parser ^3.0.0-next-major-spec.1

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
"@asyncapi/react-component": "1.0.0",
"@asyncapi/react-component": "1.0.0-next.48",

},
"dependencies": {
"@asyncapi/react-component": "1.0.0-next.48",
"@asyncapi/react-component": "1.0.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Performance: Version upgrade causes significant bundle size increase (10.4 MB unpacked vs 3.9 MB), potentially impacting application load times and memory usage

📝 Committable Code Suggestion

‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
"@asyncapi/react-component": "1.0.0",
"@asyncapi/react-component": "1.0.0-next.48",

@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Oct 24, 2025
@github-actions github-actions bot closed this Oct 29, 2025
@snyk-io snyk-io bot reopened this Oct 29, 2025
@github-actions github-actions bot removed the stale label Oct 29, 2025
@github-actions
Copy link

github-actions bot commented Nov 5, 2025

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Nov 5, 2025
@github-actions github-actions bot closed this Nov 10, 2025
@snyk-io snyk-io bot reopened this Nov 11, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request upgrades the AsyncAPI React component dependency in the api-docs plugin from a pre-release version to the stable 1.0.0 release. The update transitions from version 1.0.0-next.48 to the official stable version 1.0.0, which represents the finalization of the component's API and feature set. This upgrade likely includes bug fixes, performance improvements, and API stabilizations that were refined during the pre-release phase. The change ensures the api-docs plugin uses a production-ready version of the AsyncAPI documentation rendering components.

Changes

File(s) Summary
plugins/api-docs/package.json Updated @asyncapi/react-component dependency from pre-release version 1.0.0-next.48 to stable version 1.0.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant User
    participant ApiDocsPlugin as API Docs Plugin
    participant AsyncAPIComponent as @asyncapi/react-component<br/>(v1.0.0-next.48 → v1.0.0)
    participant CatalogModel as Catalog Model
    
    Note over ApiDocsPlugin,AsyncAPIComponent: Dependency Version Upgrade
    
    User->>ApiDocsPlugin: Request API documentation
    activate ApiDocsPlugin
    
    ApiDocsPlugin->>CatalogModel: Fetch API entity metadata
    activate CatalogModel
    CatalogModel-->>ApiDocsPlugin: Return API spec data
    deactivate CatalogModel
    
    ApiDocsPlugin->>AsyncAPIComponent: Render AsyncAPI spec<br/>(using stable v1.0.0)
    activate AsyncAPIComponent
    
    Note over AsyncAPIComponent: Now using stable release<br/>instead of pre-release version
    
    AsyncAPIComponent-->>ApiDocsPlugin: Rendered component
    deactivate AsyncAPIComponent
    
    ApiDocsPlugin-->>User: Display API documentation
    deactivate ApiDocsPlugin
Loading

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

@github-actions github-actions bot removed the stale label Nov 11, 2025
@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Nov 18, 2025
@github-actions github-actions bot closed this Nov 27, 2025
@snyk-io snyk-io bot reopened this Nov 28, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request upgrades the AsyncAPI React component dependency in the api-docs plugin from a pre-release version to the stable 1.0.0 release. The update transitions from version 1.0.0-next.48 to the official stable version 1.0.0, which represents the finalization of the component's API and feature set. This upgrade likely includes bug fixes, performance improvements, and API stabilizations that were refined during the pre-release phase. The change ensures the api-docs plugin uses a production-ready version of the AsyncAPI documentation rendering components.

Changes

File(s) Summary
plugins/api-docs/package.json Updated @asyncapi/react-component dependency from pre-release version 1.0.0-next.48 to stable version 1.0.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant User
    participant ApiDocsPlugin as API Docs Plugin
    participant AsyncAPIComponent as @asyncapi/react-component<br/>(v1.0.0-next.48 → v1.0.0)
    participant CatalogModel as Catalog Model
    
    Note over ApiDocsPlugin,AsyncAPIComponent: Dependency Version Upgrade
    
    User->>ApiDocsPlugin: Request API documentation
    activate ApiDocsPlugin
    
    ApiDocsPlugin->>CatalogModel: Fetch API entity metadata
    activate CatalogModel
    CatalogModel-->>ApiDocsPlugin: Return API spec data
    deactivate CatalogModel
    
    ApiDocsPlugin->>AsyncAPIComponent: Render AsyncAPI spec<br/>(using stable v1.0.0)
    activate AsyncAPIComponent
    
    Note over AsyncAPIComponent: Now using stable release<br/>instead of pre-release version
    
    AsyncAPIComponent-->>ApiDocsPlugin: Rendered component
    deactivate AsyncAPIComponent
    
    ApiDocsPlugin-->>User: Display API documentation
    deactivate ApiDocsPlugin
Loading

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

@github-actions github-actions bot removed the stale label Nov 28, 2025
@github-actions
Copy link

This PR has been automatically marked as stale because it has not had recent activity from the author. It will be closed if no further activity occurs. If the PR was closed and you want it re-opened, let us know and we'll re-open the PR so that you can continue the contribution!

@github-actions github-actions bot added the stale label Dec 19, 2025
@github-actions github-actions bot closed this Dec 24, 2025
@snyk-io snyk-io bot reopened this Dec 25, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request upgrades the AsyncAPI React component dependency in the api-docs plugin from a pre-release version to the stable 1.0.0 release. The update transitions from version 1.0.0-next.48 to the official stable version 1.0.0, which represents the finalization of the component's API and feature set. This upgrade likely includes bug fixes, performance improvements, and API stabilizations that were refined during the pre-release phase. The change ensures the api-docs plugin uses a production-ready version of the AsyncAPI documentation rendering components.

Changes

File(s) Summary
plugins/api-docs/package.json Updated @asyncapi/react-component dependency from pre-release version 1.0.0-next.48 to stable version 1.0.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant User
    participant ApiDocsPlugin as API Docs Plugin
    participant AsyncAPIComponent as @asyncapi/react-component<br/>(v1.0.0-next.48 → v1.0.0)
    participant CatalogModel as Catalog Model
    
    Note over ApiDocsPlugin,AsyncAPIComponent: Dependency Version Upgrade
    
    User->>ApiDocsPlugin: Request API documentation
    activate ApiDocsPlugin
    
    ApiDocsPlugin->>CatalogModel: Fetch API entity metadata
    activate CatalogModel
    CatalogModel-->>ApiDocsPlugin: Return API spec data
    deactivate CatalogModel
    
    ApiDocsPlugin->>AsyncAPIComponent: Render AsyncAPI spec<br/>(using stable v1.0.0)
    activate AsyncAPIComponent
    
    Note over AsyncAPIComponent: Now using stable release<br/>instead of pre-release version
    
    AsyncAPIComponent-->>ApiDocsPlugin: Rendered component
    deactivate AsyncAPIComponent
    
    ApiDocsPlugin-->>User: Display API documentation
    deactivate ApiDocsPlugin
Loading

▶️AI Code Reviews for VS Code, Cursor, Windsurf
Install the extension

Note for Windsurf Please change the default marketplace provider to the following in the windsurf settings:

Marketplace Extension Gallery Service URL: https://marketplace.visualstudio.com/_apis/public/gallery

Marketplace Gallery Item URL: https://marketplace.visualstudio.com/items

Entelligence.ai can learn from your feedback. Simply add 👍 / 👎 emojis to teach it your preferences. More shortcuts below

Emoji Descriptions:

  • ⚠️ Potential Issue - May require further investigation.
  • 🔒 Security Vulnerability - Fix to ensure system safety.
  • 💻 Code Improvement - Suggestions to enhance code quality.
  • 🔨 Refactor Suggestion - Recommendations for restructuring code.
  • ℹ️ Others - General comments and information.

Interact with the Bot:

  • Send a message or request using the format:
    @entelligenceai + *your message*
Example: @entelligenceai Can you suggest improvements for this code?
  • Help the Bot learn by providing feedback on its responses.
    @entelligenceai + *feedback*
Example: @entelligenceai Do not comment on `save_auth` function !

Also you can trigger various commands with the bot by doing
@entelligenceai command

The current supported commands are

  1. config - shows the current config
  2. retrigger_review - retriggers the review

More commands to be added soon.

@github-actions github-actions bot removed the stale label Dec 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant