Skip to content

release: @rstest/adapter-rslib v0.1.1#812

Merged
9aoy merged 2 commits intomainfrom
peer-rslib-core
Dec 29, 2025
Merged

release: @rstest/adapter-rslib v0.1.1#812
9aoy merged 2 commits intomainfrom
peer-rslib-core

Conversation

@9aoy
Copy link
Copy Markdown
Collaborator

@9aoy 9aoy commented Dec 29, 2025

Summary

update peerDependencies @rslib/core to >=0.18.6

https://github.com/web-infra-dev/rslib/releases/tag/v0.19.0

Related Links

Checklist

  • Tests updated (or not required).
  • Documentation updated (or not required).

@netlify
Copy link
Copy Markdown

netlify bot commented Dec 29, 2025

Deploy Preview for rstest-dev ready!

Name Link
🔨 Latest commit 3bd8c88
🔍 Latest deploy log https://app.netlify.com/projects/rstest-dev/deploys/6952316be299ab00083f77c2
😎 Deploy Preview https://deploy-preview-812--rstest-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR updates the @rslib/core peerDependency version constraint from ^0.18.6 to >=0.18.6 in the adapter-rslib package, making the version requirement more permissive.

Key Changes:

  • Changed the peerDependency constraint for @rslib/core from caret (^) to greater-than-or-equal (>=) operator

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

"license": "MIT",
"peerDependencies": {
"@rslib/core": "^0.18.6",
"@rslib/core": ">=0.18.6",
Copy link

Copilot AI Dec 29, 2025

Choose a reason for hiding this comment

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

Changing the peerDependency from ^0.18.6 to >=0.18.6 is too permissive and could lead to compatibility issues. The caret range (^0.18.6) allows minor and patch updates (0.18.x, 0.19.x, etc.) up to but not including 1.0.0, which is appropriate for semver-compatible updates. The >= operator allows ANY version from 0.18.6 onwards, including major version updates (1.x, 2.x, etc.) which could introduce breaking changes.

Consider using ^0.18.6 (current behavior) or if you need more flexibility, use a range like >=0.18.6 <2.0.0 to allow future versions while protecting against breaking changes in major version bumps.

Suggested change
"@rslib/core": ">=0.18.6",
"@rslib/core": "^0.18.6",

Copilot uses AI. Check for mistakes.
@9aoy 9aoy changed the title chore(deps): update peerDependencies @rslib/core release: @rstest/adapter-rslib v0.1.1 Dec 29, 2025
@9aoy 9aoy merged commit 24e90a3 into main Dec 29, 2025
16 checks passed
@9aoy 9aoy deleted the peer-rslib-core branch December 29, 2025 07:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants