Skip to content

Conversation

@snyk-io
Copy link

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


EntelligenceAI PR Summary

This PR pins the scaffolder backend plugin dependency to version 1.15.0 for the Confluence to Markdown module.

  • Updated @backstage/plugin-scaffolder-backend dependency from workspace:^ to 1.15.0 in package.json
  • Locks the dependency to a specific version instead of using the local workspace version
  • Ensures compatibility with a particular API version and prevents breaking changes from newer versions

@codesandbox
Copy link

codesandbox bot commented Jul 22, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@sourcery-ai
Copy link

sourcery-ai bot commented Jul 22, 2025

Reviewer's Guide

This PR upgrades the @backstage/plugin-scaffolder-backend dependency from a local workspace version to 1.15.0 in the Confluence-to-Markdown scaffolder module to address multiple high-severity vulnerabilities identified by Snyk.

File-Level Changes

Change Details Files
Upgrade @backstage/plugin-scaffolder-backend dependency
  • Replaced workspace:^ version specifier with explicit 1.15.0
  • Updated dependency entry in package.json
plugins/scaffolder-backend-module-confluence-to-markdown/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 22, 2025

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

Status Scanner Critical High Medium Low Total (97)
Open Source Security 16 31 45 5 97 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 29, 2025
@github-actions github-actions bot closed this Aug 4, 2025
@snyk-io snyk-io bot reopened this Aug 24, 2025
@github-actions github-actions bot removed the stale label Aug 24, 2025
@socket-security
Copy link

socket-security bot commented Aug 24, 2025

No dependency changes detected. Learn more about Socket for GitHub.

👍 No dependency changes detected in pull request

@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 the stale label Sep 3, 2025
@github-actions github-actions bot closed this Sep 8, 2025
@snyk-io snyk-io bot reopened this Nov 27, 2025
@entelligence-ai-pr-reviews
Copy link

Entelligence AI Vulnerability Scanner

Status: No security vulnerabilities found

Your code passed our comprehensive security analysis.

@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request updates the dependency management for the Confluence to Markdown scaffolder backend module. The change replaces the workspace protocol reference with a pinned version for the Backstage scaffolder backend dependency. This modification ensures the plugin uses a specific, locked version (1.15.0) of the scaffolder backend rather than relying on the local workspace version. This type of change typically indicates preparation for independent package publishing, ensuring compatibility with a specific API version, or stabilizing the dependency chain for production deployments.

Changes

File(s) Summary
plugins/scaffolder-backend-module-confluence-to-markdown/package.json Updated @backstage/plugin-scaffolder-backend dependency from workspace protocol (workspace:^) to pinned version 1.15.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant PKG as package.json
    participant NPM as Package Manager
    participant Backend as @backstage/plugin-scaffolder-backend

    Note over Dev,Backend: Dependency Version Update (No Runtime Changes)
    
    Dev->>PKG: Update dependency version
    Note over PKG: Change from workspace:^ to 1.15.0
    
    Dev->>NPM: Run package install
    NPM->>Backend: Fetch version 1.15.0
    Backend-->>NPM: Return package
    NPM-->>Dev: Dependencies updated
    
    Note over Dev,Backend: No code logic or interaction changes<br/>Plugin behavior remains the same
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 27, 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 30, 2025
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This pull request updates the dependency management for the Confluence to Markdown scaffolder backend module. The change replaces the workspace protocol reference with a pinned version for the Backstage scaffolder backend dependency. This modification ensures the plugin uses a specific, locked version (1.15.0) of the scaffolder backend rather than relying on the local workspace version. This type of change typically indicates preparation for independent package publishing, ensuring compatibility with a specific API version, or stabilizing the dependency chain for production deployments.

Changes

File(s) Summary
plugins/scaffolder-backend-module-confluence-to-markdown/package.json Updated @backstage/plugin-scaffolder-backend dependency from workspace protocol (workspace:^) to pinned version 1.15.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Dev as Developer
    participant PKG as package.json
    participant NPM as Package Manager
    participant Backend as @backstage/plugin-scaffolder-backend

    Note over Dev,Backend: Dependency Version Update (No Runtime Changes)
    
    Dev->>PKG: Update dependency version
    Note over PKG: Change from workspace:^ to 1.15.0
    
    Dev->>NPM: Run package install
    NPM->>Backend: Fetch version 1.15.0
    Backend-->>NPM: Return package
    NPM-->>Dev: Dependencies resolved
    
    Note over Dev,Backend: No code logic or interaction changes<br/>Plugin behavior remains the same
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 30, 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 Jan 11, 2026
@github-actions github-actions bot closed this Jan 22, 2026
@snyk-io snyk-io bot reopened this Jan 22, 2026
@entelligence-ai-pr-reviews
Copy link

Walkthrough

This PR updates the dependency management for the Confluence to Markdown scaffolder backend module by pinning the @backstage/plugin-scaffolder-backend dependency to a specific version. The change moves away from using the workspace protocol reference, which dynamically resolves to the local workspace version, to a fixed version (1.15.0). This modification ensures compatibility with a specific API version of the scaffolder backend plugin and prevents potential breaking changes that might be introduced in newer workspace versions.

Changes

File(s) Summary
plugins/scaffolder-backend-module-confluence-to-markdown/package.json Changed @backstage/plugin-scaffolder-backend dependency from workspace protocol (workspace:^) to pinned version 1.15.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    participant Build as Build System
    participant Plugin as scaffolder-backend-module-confluence-to-markdown
    participant ScaffolderBackend as @backstage/plugin-scaffolder-backend

    Note over Build,ScaffolderBackend: Dependency Resolution Change

    Build->>Plugin: Install dependencies
    
    alt Before Change (workspace:^)
        Plugin->>ScaffolderBackend: Resolve from local workspace
        Note over Plugin,ScaffolderBackend: Uses local monorepo version
    else After Change (1.15.0)
        Plugin->>ScaffolderBackend: Resolve version 1.15.0
        Note over Plugin,ScaffolderBackend: Uses pinned npm registry version
    end
    
    ScaffolderBackend-->>Plugin: Dependency resolved
    Plugin-->>Build: Installation complete
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 Jan 22, 2026
snyk-io bot added 6 commits January 30, 2026 04:04
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.

0 participants