Skip to content

docs: changelog 2.4.3#1007

Merged
yiiqii merged 1 commit into
mainfrom
docs/changelog-2.4.3
May 21, 2025
Merged

docs: changelog 2.4.3#1007
yiiqii merged 1 commit into
mainfrom
docs/changelog-2.4.3

Conversation

@yiiqii

@yiiqii yiiqii commented May 21, 2025

Copy link
Copy Markdown
Collaborator

Summary by CodeRabbit

  • Bug Fixes

    • Resolved an issue with harmony device detection.
  • Chores

    • Updated package versions to 2.4.3 across all related packages.
    • Added changelog entries for version 2.4.3 in both English and Chinese documentation.

@yiiqii
yiiqii requested a review from wumaolinmaoan May 21, 2025 02:36
@coderabbitai

coderabbitai Bot commented May 21, 2025

Copy link
Copy Markdown
Contributor

Walkthrough

This update increments the version of multiple packages from 2.4.2 to 2.4.3 and adds corresponding changelog entries in both English and Chinese. The changelog notes a single fix for harmony device detection, referencing pull request #1006 and contributor @wumaolinmaoan. No other changes or public API modifications are included.

Changes

File(s) Change Summary
CHANGELOG.md, CHANGELOG-zh_CN.md Added changelog entries for version 2.4.3 (2025-05-21), documenting a fix for harmony device detection.
packages/effects-core/package.json, packages/effects-helper/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
packages/effects-threejs/package.json, packages/effects-webgl/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
packages/effects/package.json Updated package version from 2.4.2 to 2.4.3; no other changes.
plugin-packages/alipay-downgrade/package.json, plugin-packages/downgrade/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
plugin-packages/editor-gizmo/package.json, plugin-packages/model/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
plugin-packages/multimedia/package.json, plugin-packages/orientation-transformer/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
plugin-packages/rich-text/package.json, plugin-packages/spine/package.json, Updated package version from 2.4.2 to 2.4.3; no other changes.
plugin-packages/stats/package.json Updated package version from 2.4.2 to 2.4.3; no other changes.

Poem

🐇
Another patch hops down the trail,
Version numbers rise without fail.
Harmony devices now detect with glee,
Thanks to a fix from @wumaolinmaoan, you see!
Changelogs updated, the work is done—
Onward to new features, let’s have some fun!
🌱✨

Note

⚡️ AI Code Reviews for VS Code, Cursor, Windsurf

CodeRabbit now has a plugin for VS Code, Cursor and Windsurf. This brings AI code reviews directly in the code editor. Each commit is reviewed immediately, finding bugs before the PR is raised. Seamless context handoff to your AI code agent ensures that you can easily incorporate review feedback.
Learn more here.


Note

⚡️ Faster reviews with caching

CodeRabbit now supports caching for code and dependencies, helping speed up reviews. This means quicker feedback, reduced wait times, and a smoother review experience overall. Cached data is encrypted and stored securely. This feature will be automatically enabled for all accounts on May 16th. To opt out, configure Review - Disable Cache at either the organization or repository level. If you prefer to disable all data retention across your organization, simply turn off the Data Retention setting under your Organization Settings.
Enjoy the performance boost—your workflow just got faster.


📜 Recent review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Cache: Disabled due to data retention organization setting
Knowledge Base: Disabled due to data retention organization setting

📥 Commits

Reviewing files that changed from the base of the PR and between ab97f4f and e8a57cf.

📒 Files selected for processing (16)
  • CHANGELOG-zh_CN.md (1 hunks)
  • CHANGELOG.md (1 hunks)
  • packages/effects-core/package.json (1 hunks)
  • packages/effects-helper/package.json (1 hunks)
  • packages/effects-threejs/package.json (1 hunks)
  • packages/effects-webgl/package.json (1 hunks)
  • packages/effects/package.json (1 hunks)
  • plugin-packages/alipay-downgrade/package.json (1 hunks)
  • plugin-packages/downgrade/package.json (1 hunks)
  • plugin-packages/editor-gizmo/package.json (1 hunks)
  • plugin-packages/model/package.json (1 hunks)
  • plugin-packages/multimedia/package.json (1 hunks)
  • plugin-packages/orientation-transformer/package.json (1 hunks)
  • plugin-packages/rich-text/package.json (1 hunks)
  • plugin-packages/spine/package.json (1 hunks)
  • plugin-packages/stats/package.json (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (18)
packages/effects-core/package.json (1)

3-3: Version bump to 2.4.3
This update correctly aligns the package version with the coordinated patch release for the harmony device detection fix (PR #1006).

packages/effects-webgl/package.json (1)

3-3: Version bump to 2.4.3
The version increment matches the release notes for the 2025-05-21 patch, ensuring consistency across all WebGL-related packages.

packages/effects/package.json (1)

3-3: Version bump to 2.4.3
This bump correctly reflects the new patch version and is consistent with the changelog entries for the harmony device detection fix.

packages/effects-threejs/package.json (1)

3-3: Version bump to 2.4.3
Updated to the latest patch release; no other changes detected and metadata remains accurate.

packages/effects-helper/package.json (1)

3-3: Version bump to 2.4.3
The helper package version now aligns with the rest of the monorepo for the 2.4.3 patch release.

plugin-packages/orientation-transformer/package.json (1)

3-3:

Details

✅ Verification successful

Bump version to 2.4.3
Aligns this plugin with the documented 2.4.3 patch release. Please verify no remaining 2.4.2 references across other package.json files.


🏁 Script executed:

#!/bin/bash
# Verify no remaining 2.4.2 references in package.json files
rg -l '"version": "2.4.2"' -g '*/package.json'

Length of output: 197


🏁 Script executed:

#!/bin/bash
# Corrected search for any leftover 2.4.2 references in all package.json files
rg -l '"version": "2.4.2"' --glob 'package.json'

Length of output: 48


🏁 Script executed:

#!/bin/bash
# Exhaustively check all package.json files for lingering 2.4.2 versions
find . -type f -name 'package.json' -not -path './node_modules/*' -exec grep -H '"version": "2.4.2"' {} \;

Length of output: 109


Bump version to 2.4.3
Aligned this plugin with the documented 2.4.3 patch release—no remaining "version": "2.4.2" references were found in any package.json files.

CHANGELOG-zh_CN.md (1)

11-16: Add Chinese changelog entry for v2.4.3
Correctly includes the release date and the “harmony device detection” fix reference (#1006, @wumaolinmaoan), matching the English changelog.

plugin-packages/rich-text/package.json (1)

3-3: Bump version to 2.4.3
Aligns the rich-text plugin with the 2.4.3 patch release.

plugin-packages/downgrade/package.json (1)

3-3: Bump version to 2.4.3
Aligns the downgrade plugin with the 2.4.3 patch release.

plugin-packages/multimedia/package.json (1)

3-3: Bump version to 2.4.3
Aligns the multimedia plugin with the 2.4.3 patch release.

plugin-packages/spine/package.json (1)

3-3: Version bump to 2.4.3 is correct
This aligns with the coordinated release and the changelog entry for the harmony device detection fix. No other metadata or dependencies were modified.

plugin-packages/editor-gizmo/package.json (1)

3-3: Version bump to 2.4.3 is correct
Consistent with the other packages and the documented changelog for the patch release. No unintended changes detected.

plugin-packages/alipay-downgrade/package.json (1)

3-3: Version bump to 2.4.3 is correct
Matches the version update across all related packages for the 2.4.3 release.

plugin-packages/stats/package.json (1)

3-3: Version bump to 2.4.3 is correct
Aligned with the unified version update and the changelog entry; no other fields were altered.

plugin-packages/model/package.json (1)

3-3: Version bump to 2.4.3 is correct
Consistent with the coordinated patch release, and all other package.json files in this PR.

CHANGELOG.md (3)

10-10: Confirm version bump consistency
The new header ## 2.4.3 correctly follows the previous 2.4.2. Please verify that all package manifests (e.g., package.json files) have been updated to reference version 2.4.3 to keep the release in sync.


12-12: Validate release date accuracy
Ensure that the date 2025-05-21 is the official release date for this patch and aligns with your release schedule.


14-14: Verify changelog entry detail
The description “Fix: harmony device detection” references PR #1006 and contributor @wumaolinmaoan. Confirm that the PR link is correct and that this single-line entry sufficiently describes the fix.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@yiiqii
yiiqii merged commit 2e27d81 into main May 21, 2025
@yiiqii
yiiqii deleted the docs/changelog-2.4.3 branch May 21, 2025 03:03
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.

2 participants