Skip to content

Conversation

bsastregx
Copy link
Collaborator

@bsastregx bsastregx commented Aug 12, 2025

Changes in this PR

The chameleon-mercury compatibility table was fixed for the most recent row:

before

export const mercuryCompatibilityTable: {
  version: string;
  chameleon: string;
}[] = [
  { version: "0.23.0 - 0.28.1", chameleon: "^6.7.0" },
  // ... other versions
];

after

export const mercuryCompatibilityTable: {
  version: string;
  chameleon: string;
}[] = [
  { version: "^0.23.0", chameleon: "^6.7.0" },
  // ... other versions
];

Why this fix?
The previous notation "0.23.0 - 0.28.1" indicated compatibility with Mercury versions up to 0.28.1 inclusive, but in fact, Chameleon version ^6.7.0 is compatible with any minor updates starting from 0.23.0.

Therefore, it was changed to the ^0.23.0 notation to better reflect broad compatibility with all subsequent versions within the same major version.

@bsastregx bsastregx added the fix Bug fix pull request label Aug 12, 2025
@ncamera ncamera self-requested a review August 12, 2025 20:41
@bsastregx bsastregx merged commit c7dc8a6 into main Aug 12, 2025
6 checks passed
@bsastregx bsastregx deleted the mercury/update-compatibility-table branch August 12, 2025 20:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

fix Bug fix pull request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants