-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Update stable tag to 10.0.3 #59856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update stable tag to 10.0.3 #59856
Conversation
Testing GuidelinesHi @joshuatf , Apart from reviewing the code changes, please make sure to review the testing instructions (Guide) and verify that relevant tests (E2E, Unit, Integration, etc.) have been added or updated as needed. Reminder: PR reviewers are required to document testing performed. This includes:
|
📝 WalkthroughWalkthroughThe stable version tag in the WooCommerce plugin's readme file was updated from 10.0.2 to 10.0.3. No other content or functionality was changed. Changes
Estimated code review effort1 (~2 minutes) 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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed 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)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: .coderabbit.yml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
plugins/woocommerce/readme.txt
(1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: jorgeatorres
PR: woocommerce/woocommerce#59675
File: .github/workflows/release-bump-as-requirement.yml:48-65
Timestamp: 2025-07-15T15:39:21.856Z
Learning: In WooCommerce core repository, changelog entries for all PRs live in `plugins/woocommerce/changelog/` directory and are processed during releases, not at the repository root level.
Learnt from: prettyboymp
PR: woocommerce/woocommerce#59048
File: .github/workflows/cherry-pick-milestoned-prs.yml:60-83
Timestamp: 2025-06-26T12:45:40.709Z
Learning: WooCommerce uses WordPress versioning conventions where minor versions in X.Y.Z format are constrained to 0-9 (Y cannot exceed 9). This means version increment logic should reset minor to 0 and increment major when minor reaches 9, rather than allowing two-digit minor versions like 9.10 or 9.11.
plugins/woocommerce/readme.txt (2)
Learnt from: jorgeatorres
PR: #59675
File: .github/workflows/release-bump-as-requirement.yml:48-65
Timestamp: 2025-07-15T15:39:21.856Z
Learning: In WooCommerce core repository, changelog entries for all PRs live in plugins/woocommerce/changelog/
directory and are processed during releases, not at the repository root level.
Learnt from: prettyboymp
PR: #59048
File: .github/workflows/cherry-pick-milestoned-prs.yml:60-83
Timestamp: 2025-06-26T12:45:40.709Z
Learning: WooCommerce uses WordPress versioning conventions where minor versions in X.Y.Z format are constrained to 0-9 (Y cannot exceed 9). This means version increment logic should reset minor to 0 and increment major when minor reaches 9, rather than allowing two-digit minor versions like 9.10 or 9.11.
@@ -4,7 +4,7 @@ Tags: online store, ecommerce, shop, shopping cart, sell online | |||
Requires at least: 6.7 | |||
Tested up to: 6.8 | |||
Requires PHP: 7.4 | |||
Stable tag: 10.0.2 | |||
Stable tag: 10.0.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Verify consistency of version bump across the codebase
Stable tag
now reads 10.0.3
; double-check that every other version reference (plugin header Version:
, WC_VERSION
constant, packaging scripts, CI workflows, docs) is also set to 10.0.3
to prevent mismatched package metadata at release time.
🏁 Script executed:
#!/bin/bash
# Scan the repository for lingering 10.0.2 references
rg -n '10\.0\.2'
Length of output: 15291
Update all lingering “10.0.2” references to “10.0.3”
The grep scan for 10.0.2
shows many remaining occurrences that must be updated or regenerated to avoid mismatched metadata at release time:
- pnpm-lock.yaml – numerous patch entries for
@wordpress/data@10.0.2
and related deps (regenerate after bumping dependencies) - plugins/woocommerce/client/blocks/readme.txt (line 1027:
= 10.0.2 - 2023-04-19 =
) - plugins/woocommerce/client/blocks/docs/internal-developers/testing/releases/README.md (links to
[10.0.2](./1002.md)
) - plugins/woocommerce/client/blocks/docs/internal-developers/testing/releases/1002.md (header
# … release 10.0.2
) - package.json (patch path:
"@wordpress/data@10.0.2": "bin/patches/@wordpress__data@10.0.2.patch"
) - changelog.txt (entry
= 10.0.2 2025-07-14 =
and inline notes)
Please bump these to 10.0.3, update any packaging or CI workflows, regenerate your lockfile, and verify that Version:
in the PHP plugin header and the WC_VERSION
constant also reflect 10.0.3.
🤖 Prompt for AI Agents
In plugins/woocommerce/readme.txt at line 7, the version tag is still set to
10.0.2 in various files and metadata. Update all references from 10.0.2 to
10.0.3 including pnpm-lock.yaml dependencies,
plugins/woocommerce/client/blocks/readme.txt at line 1027, internal developer
docs and release notes, package.json patch paths, and changelog.txt entries.
Also update the PHP plugin header Version and WC_VERSION constant to 10.0.3,
regenerate the lockfile, and verify packaging and CI workflows reflect the new
version.
This PR updates the stable tag to 10.0.3