Skip to content

Conversation

@github-actions
Copy link

@github-actions github-actions bot commented Dec 7, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

lingo.dev@0.118.0

Minor Changes

  • d657c6d Thanks @SK8-infi! - feat: add init cursor command for .cursorrules setup

adonis@0.0.62

Patch Changes

  • Updated dependencies [d657c6d]:
    • lingo.dev@0.118.0

next-app@0.2.114

Patch Changes

  • Updated dependencies [d657c6d]:
    • lingo.dev@0.118.0

react-router-app@1.0.23

Patch Changes

  • Updated dependencies [d657c6d]:
    • lingo.dev@0.118.0

SK8-infi and others added 28 commits October 30, 2025 18:13
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
@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 release introduces version 0.118.0 of the lingo.dev CLI package, featuring a new 'init cursor' command for .cursorrules configuration setup. The changeset file documenting this feature has been removed, indicating it was consumed during the release process. All three demo applications (AdonisJS, Next.js, and React Router) have been updated with patch version bumps to incorporate the new lingo.dev dependency version (0.118.0). Each demo's changelog reflects the dependency update, maintaining proper semantic versioning practices across the monorepo.

Changes

File(s) Summary
packages/cli/CHANGELOG.md
packages/cli/package.json
Released version 0.118.0 with a new 'init cursor' command for .cursorrules setup; version bumped from 0.117.10 to 0.118.0.
.changeset/nasty-nails-repair.md Removed changeset file documenting the init cursor command feature, indicating consumption during release process.
demo/adonisjs/CHANGELOG.md
demo/adonisjs/package.json
Patch release to version 0.0.51 (from 0.0.50) updating lingo.dev dependency to 0.118.0.
demo/next-app/CHANGELOG.md
demo/next-app/package.json
Patch release to version 0.2.103 (from 0.2.102) updating lingo.dev dependency to 0.118.0.
demo/react-router-app/CHANGELOG.md
demo/react-router-app/package.json
Patch release to version 1.0.12 (from 1.0.11) updating lingo.dev dependency to 0.118.0.

Sequence Diagram

This diagram shows the interactions between components:

sequenceDiagram
    actor User
    participant CLI as Lingo CLI
    participant CommandParser as Command Parser
    participant FileSystem as File System
    participant CursorRulesGenerator as Cursor Rules Generator
    
    User->>CLI: lingo init cursor
    activate CLI
    
    CLI->>CommandParser: parse("init cursor")
    activate CommandParser
    CommandParser-->>CLI: InitCursorCommand
    deactivate CommandParser
    
    CLI->>FileSystem: checkFileExists(".cursorrules")
    activate FileSystem
    FileSystem-->>CLI: exists: boolean
    deactivate FileSystem
    
    alt .cursorrules already exists
        CLI->>User: Prompt: Overwrite existing .cursorrules?
        User-->>CLI: Confirmation (yes/no)
        alt User confirms
            CLI->>CursorRulesGenerator: generate()
            activate CursorRulesGenerator
            CursorRulesGenerator-->>CLI: rulesContent
            deactivate CursorRulesGenerator
            CLI->>FileSystem: writeFile(".cursorrules", content)
            activate FileSystem
            FileSystem-->>CLI: success
            deactivate FileSystem
        else User declines
            CLI->>User: Operation cancelled
        end
    else .cursorrules does not exist
        CLI->>CursorRulesGenerator: generate()
        activate CursorRulesGenerator
        CursorRulesGenerator-->>CLI: rulesContent
        deactivate CursorRulesGenerator
        CLI->>FileSystem: writeFile(".cursorrules", content)
        activate FileSystem
        FileSystem-->>CLI: success
        deactivate FileSystem
    end
    
    CLI->>User: Success: .cursorrules created/updated
    deactivate CLI
Loading

🔗 Cross-Repository Impact Analysis

Enable automatic detection of breaking changes across your dependent repositories. → Set up now

Learn more about Cross-Repository Analysis

What It Does

  • Automatically identifies repositories that depend on this code
  • Analyzes potential breaking changes across your entire codebase
  • Provides risk assessment before merging to prevent cross-repo issues

How to Enable

  1. Visit Settings → Code Management
  2. Configure repository dependencies
  3. Future PRs will automatically include cross-repo impact analysis!

Benefits

  • 🛡️ Prevent breaking changes across repositories
  • 🔍 Catch integration issues before they reach production
  • 📊 Better visibility into your multi-repo architecture

▶️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 force-pushed the changeset-release/main branch from 08885ad to 2bb0102 Compare December 17, 2025 18:02
maxprilutskiy pushed a commit that referenced this pull request Dec 24, 2025
feat: turbopack support
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