Skip to content

Conversation

@snyk-io
Copy link

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


EntelligenceAI PR Summary

This PR pins the '@backstage/plugin-techdocs' dependency to a specific version in the techdocs-cli-embedded-app package.

  • Replaced 'workspace:^' protocol with fixed version '0.1.1' in package.json
  • Ensures consistent dependency resolution instead of using local workspace version
  • Likely preparation for package publication or production deployment requirements

@codesandbox
Copy link

codesandbox bot commented Jul 20, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@sourcery-ai
Copy link

sourcery-ai bot commented Jul 20, 2025

Reviewer's Guide

This PR pins the @backstage/plugin-techdocs dependency to version 0.1.1 in package.json, replacing the local workspace reference to address a Prototype Pollution vulnerability flagged by Snyk.

File-Level Changes

Change Details Files
Updated @backstage/plugin-techdocs version to a released version
  • Replaced workspace:^ specifier with explicit 0.1.1 version
packages/techdocs-cli-embedded-app/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

@snyk-io
Copy link
Author

snyk-io bot commented Jul 20, 2025

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

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

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

@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 27, 2025
@github-actions github-actions bot closed this Aug 5, 2025
@snyk-io snyk-io bot reopened this Aug 8, 2025
@github-actions github-actions bot removed the stale label Aug 8, 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 Aug 24, 2025
@github-actions github-actions bot closed this Sep 3, 2025
@snyk-io snyk-io bot reopened this Sep 18, 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 dependency configuration in the techdocs-cli-embedded-app package by pinning the '@backstage/plugin-techdocs' dependency to a specific version (0.1.1) instead of using a workspace reference. This change ensures that the embedded app uses a stable, known version of the techdocs plugin rather than potentially pulling in breaking changes from the latest workspace version.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace reference ('workspace:^') to fixed version '0.1.1'

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    title TechDocs CLI Embedded App Dependency Resolution

    participant User as "Developer"
    participant PM as "Package Manager (npm/yarn)"
    participant App as "techdocs-cli-embedded-app"
    participant Registry as "Package Registry"
    participant TechDocs as "@backstage/plugin-techdocs"
    participant OtherDeps as "Other Dependencies"

    User->>PM: Install dependencies
    activate PM
    
    PM->>App: Read package.json
    
    Note over App: Before: workspace reference<br>After: pinned to v0.1.1
    
    PM->>Registry: Request @backstage/plugin-techdocs@0.1.1
    Registry-->>PM: Return specific version 0.1.1
    
    PM->>OtherDeps: Request workspace dependencies
    OtherDeps-->>PM: Return latest workspace versions
    
    PM-->>User: Dependencies installed
    deactivate PM
    
    Note over User,TechDocs: Impact: techdocs-cli-embedded-app<br>now uses a fixed version of the<br>TechDocs plugin instead of<br>the latest workspace version
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 18, 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 30, 2025
@github-actions github-actions bot closed this Oct 8, 2025
@snyk-io snyk-io bot reopened this Oct 8, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This PR updates the dependency configuration in the techdocs-cli-embedded-app package by pinning the '@backstage/plugin-techdocs' dependency to a specific version (0.1.1) instead of using a workspace reference. This change ensures stability and compatibility by preventing automatic updates to newer workspace versions that might introduce breaking changes. The fixed version approach provides more predictable behavior for the techdocs-cli-embedded-app.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace reference ('workspace:^') to fixed version '0.1.1'

▶️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 Oct 8, 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 Oct 15, 2025
@github-actions github-actions bot closed this Oct 20, 2025
@snyk-io snyk-io bot reopened this Oct 21, 2025
@github-actions github-actions bot removed the stale label Oct 21, 2025
@entelligence-ai-pr-reviews
Copy link

📝 Walkthrough

This PR modifies the dependency management approach in the techdocs-cli-embedded-app package by changing how the @backstage/plugin-techdocs dependency is specified. Instead of using the workspace protocol with semantic versioning (workspace:^), which is the established pattern throughout the monorepo, the PR pins this dependency to a specific version (0.1.1).

This change represents a significant version downgrade from the current workspace version (1.6.6-next.0) to a much older release. This deviation from the established dependency management pattern creates potential issues including version inconsistency, security vulnerabilities, and maintenance challenges.

📊 Changes

File Change
packages/techdocs-cli-embedded-app/package.json Changed @backstage/plugin-techdocs dependency from workspace:^ to 0.1.1

🔒 Security Highlights

  • ⚠️ Version 0.1.1 is approximately 65+ minor versions behind the current version (1.6.6-next.0)
  • 🔒 Older versions likely contain numerous security vulnerabilities that have been patched
  • 🚨 Using outdated packages may introduce unpatched vulnerabilities and compliance issues

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    title TechDocs CLI Embedded App Dependency Flow

    participant User as "Developer/User"
    participant CLI as "TechDocs CLI"
    participant EmbeddedApp as "TechDocs CLI Embedded App"
    participant TechDocsPlugin as "@backstage/plugin-techdocs"
    participant OtherDeps as "Other Dependencies"
    
    User->>CLI: Run TechDocs CLI command
    activate CLI
    
    CLI->>EmbeddedApp: Initialize embedded app
    activate EmbeddedApp
    
    Note over EmbeddedApp: Before: Using workspace reference<br>After: Using fixed version 0.1.1
    
    EmbeddedApp->>TechDocsPlugin: Import and initialize
    activate TechDocsPlugin
    
    EmbeddedApp->>OtherDeps: Import and initialize other dependencies
    activate OtherDeps
    
    alt Using fixed version (0.1.1)
        TechDocsPlugin-->>EmbeddedApp: Provide stable, known functionality
        Note over TechDocsPlugin, EmbeddedApp: Ensures consistent behavior<br>regardless of workspace changes
    else Using workspace reference
        TechDocsPlugin-->>EmbeddedApp: Provide latest workspace version
        Note over TechDocsPlugin, EmbeddedApp: May include latest changes<br>but potentially unstable
    end
    
    EmbeddedApp-->>CLI: Return initialized app
    deactivate TechDocsPlugin
    deactivate OtherDeps
    
    CLI-->>User: Render TechDocs UI
    deactivate EmbeddedApp
    deactivate CLI
Loading

🔒 Security Analysis

  • Vulnerabilities: 0
  • Bugs: 0
  • Code Smells: 0
  • Security Hotspots: 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.

"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog": "workspace:^",
"@backstage/plugin-techdocs": "workspace:^",
"@backstage/plugin-techdocs": "0.1.1",

Choose a reason for hiding this comment

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

Correctness: Critical version downgrade from workspace:^ (1.6.6-next.0) to 0.1.1, creating a major version mismatch that may cause runtime errors, dependency conflicts, and build failures.

📝 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
"@backstage/plugin-techdocs": "0.1.1",
"@backstage/plugin-techdocs": "workspace:^",

"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog": "workspace:^",
"@backstage/plugin-techdocs": "workspace:^",
"@backstage/plugin-techdocs": "0.1.1",

Choose a reason for hiding this comment

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

Style: Breaking the established pattern of using workspace protocol for internal dependencies, creating maintenance overhead and potential version drift.

📝 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
"@backstage/plugin-techdocs": "0.1.1",
"@backstage/plugin-techdocs": "workspace:^",

"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog": "workspace:^",
"@backstage/plugin-techdocs": "workspace:^",
"@backstage/plugin-techdocs": "0.1.1",

Choose a reason for hiding this comment

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

Security: Using an extremely old version (0.1.1 vs current 1.6.6) exposes the application to known vulnerabilities that have been fixed in newer 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.

Suggested change
"@backstage/plugin-techdocs": "0.1.1",
"@backstage/plugin-techdocs": "workspace:^",

"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog": "workspace:^",
"@backstage/plugin-techdocs": "workspace:^",
"@backstage/plugin-techdocs": "0.1.1",

Choose a reason for hiding this comment

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

Style: Deviation from the established monorepo dependency management strategy without clear justification, reducing maintainability and consistency.

📝 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
"@backstage/plugin-techdocs": "0.1.1",
"@backstage/plugin-techdocs": "workspace:^",

"@backstage/integration-react": "workspace:^",
"@backstage/plugin-catalog": "workspace:^",
"@backstage/plugin-techdocs": "workspace:^",
"@backstage/plugin-techdocs": "0.1.1",

Choose a reason for hiding this comment

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

Style: Missing context or explanation for why this specific version is needed, lacking documentation in commit message, PR description, or code comments.

@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 28, 2025
@github-actions github-actions bot closed this Nov 2, 2025
@snyk-io snyk-io bot reopened this Nov 4, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request modifies the dependency management strategy for the techdocs-cli-embedded-app package. The change replaces the workspace protocol reference for the '@backstage/plugin-techdocs' dependency with a specific pinned version (0.1.1). This transition from a dynamic workspace reference to a fixed version number indicates a shift toward version stability and controlled dependency resolution. The modification likely supports scenarios such as preparing the package for publication, ensuring compatibility with specific plugin versions, or preventing unexpected breaking changes from workspace updates.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace protocol reference ('workspace:^') to pinned version '0.1.1'.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant CLI as techdocs-cli-embedded-app
    participant PM as Package Manager
    participant WS as Workspace (Local)
    participant NPM as NPM Registry

    Note over Dev,NPM: Before Change (workspace:^)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request workspace:^
    PM->>WS: Fetch from local workspace
    WS-->>PM: Return local package
    PM-->>CLI: Link local dependency

    Note over Dev,NPM: After Change (0.1.1)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request version 0.1.1
    PM->>NPM: Fetch from registry
    NPM-->>PM: Return published package v0.1.1
    PM-->>CLI: Install npm dependency
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 4, 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 11, 2025
@github-actions github-actions bot closed this Nov 16, 2025
@snyk-io snyk-io bot reopened this Nov 16, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request modifies the dependency management strategy for the techdocs-cli-embedded-app package. The change replaces the workspace protocol reference for the '@backstage/plugin-techdocs' dependency with a specific pinned version (0.1.1). This transition from a dynamic workspace reference to a fixed version number indicates a shift toward version stability and controlled dependency resolution. The modification likely supports scenarios such as preparing the package for publication, ensuring compatibility with specific plugin versions, or preventing unexpected breaking changes from workspace updates.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace protocol reference ('workspace:^') to pinned version '0.1.1'.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant CLI as techdocs-cli-embedded-app
    participant PM as Package Manager
    participant WS as Workspace (Local)
    participant NPM as NPM Registry

    Note over Dev,NPM: Before Change (workspace:^)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request workspace:^
    PM->>WS: Fetch from local workspace
    WS-->>PM: Return local package
    PM-->>CLI: Link local dependency

    Note over Dev,NPM: After Change (0.1.1)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request version 0.1.1
    PM->>NPM: Fetch from registry
    NPM-->>PM: Return published package v0.1.1
    PM-->>CLI: Install npm dependency
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 16, 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 27, 2025
@github-actions github-actions bot closed this Dec 2, 2025
@snyk-io snyk-io bot reopened this Dec 2, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request modifies the dependency management strategy for the techdocs-cli-embedded-app package. The change replaces the workspace protocol reference for the '@backstage/plugin-techdocs' dependency with a specific pinned version (0.1.1). This transition from a dynamic workspace reference to a fixed version number indicates a shift toward version stability and controlled dependency resolution. The modification likely supports scenarios such as preparing the package for publication, ensuring compatibility with specific plugin versions, or preventing unexpected breaking changes from workspace updates.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace protocol reference ('workspace:^') to pinned version '0.1.1'.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant CLI as techdocs-cli-embedded-app
    participant PM as Package Manager
    participant WS as Workspace (Local)
    participant NPM as NPM Registry

    Note over Dev,NPM: Before Change (workspace:^)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request workspace:^
    PM->>WS: Fetch from local workspace
    WS-->>PM: Return local package
    PM-->>CLI: Link local dependency

    Note over Dev,NPM: After Change (0.1.1)
    Dev->>PM: Install dependencies
    PM->>CLI: Resolve @backstage/plugin-techdocs
    CLI->>PM: Request version 0.1.1
    PM->>NPM: Fetch from registry
    NPM-->>PM: Return published package v0.1.1
    PM-->>CLI: Install npm dependency
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 2, 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 modifies the dependency management strategy for the techdocs-cli-embedded-app package. The change replaces the workspace protocol reference for the '@backstage/plugin-techdocs' dependency with a specific pinned version (0.1.1). This transition from a dynamic workspace reference to a fixed version number indicates a shift toward version stability and controlled dependency resolution. The modification ensures that the embedded app will consistently use version 0.1.1 of the techdocs plugin, which may be necessary for compatibility guarantees, production deployment requirements, or package publication preparation.

Changes

File(s) Summary
packages/techdocs-cli-embedded-app/package.json Changed '@backstage/plugin-techdocs' dependency from workspace protocol reference ('workspace:^') to pinned version '0.1.1' for version stability and controlled dependency resolution.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant PM as Package Manager
    participant Local as Local Workspace
    participant Registry as NPM Registry
    participant App as techdocs-cli-embedded-app

    Note over Dev,App: Before: workspace:^ dependency

    Dev->>PM: Install dependencies (before)
    PM->>Local: Resolve @backstage/plugin-techdocs
    Local-->>PM: Return local workspace version
    PM->>App: Link local plugin-techdocs

    Note over Dev,App: After: 0.1.1 specific version

    Dev->>PM: Install dependencies (after)
    PM->>Registry: Fetch @backstage/plugin-techdocs@0.1.1
    Registry-->>PM: Return version 0.1.1
    PM->>App: Install plugin-techdocs@0.1.1
    
    Note over App: App now uses fixed version<br/>instead of local workspace
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant