verify-eap-compatibility
작성자: flutter
플러그인이 최신 IntelliJ Platform 릴리스 및 EAP(조기 액세스 프로그램) 빌드와 호환성을 유지하도록 하십시오.
npx skills add https://github.com/flutter/flutter-intellij --skill verify-eap-compatibilitySkill: Plugin Compatibility & EAP Verification
You are tasked with ensuring the plugin remains compatible with the latest IntelliJ Platform releases and EAP (Early Access Program) builds.
Objective
Ensure the plugin remains compatible with the latest IntelliJ Platform releases and EAP (Early Access Program) builds.
Workflow Instructions
1. Target EAP
- Temporarily update
gradle.propertiesto target the latest IntelliJ Platform EAP version.
2. Run Verification
- Run
./gradlew testClassesto ensure the project compiles against the EAP. - Execute
./gradlew verifyPluginto check for binary incompatibilities or broken API usages in the new version. - Run
./gradlew testto check for functional regressions with the EAP.
3. Check Bounds
- Review
plugin.xmlfor<idea-version since-build="..." until-build="..."/>. Ensureuntil-buildis open-ended or appropriately set for the new version.
4. Resolve Issues
- Fix any compilation errors or verification warnings specific to the new platform version.
5. Report & Review
- Summarize any required changes or blockers for supporting the new version.
- Test Location: Explicitly state where in the IDE the user should go to test the changed functionality (e.g., "Go to Preferences > Languages & Frameworks > Flutter").
- Action: Ask the user to review the compatibility fixes closely.
- Do not commit or push.
- Provide a suggested Git commit message (e.g., "Fix EAP compatibility: Resolve invalid until-build").