docs(downloader): fix javadoc link that broke the v0.9.0 release#77
Conversation
The class javadoc still referenced {@link #checkInterval} after the field was
replaced by the DEFAULT_CHECK_INTERVAL constant, so the release's javadoc task
failed with "reference not found" and v0.9.0 never published to Maven Central.
Point the link at DEFAULT_CHECK_INTERVAL. Verified with `gradlew javadoc`.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CXTAaR4opi34idMG7ZZ8BV
|
Warning Review limit reached
Next review available in: 40 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
|



Что и зачем
Публикация релиза v0.9.0 в Maven Central упала на задаче
:javadoc:В javadoc класса осталась ссылка
{@link #checkInterval}на поле, которое было заменено на константуDEFAULT_CHECK_INTERVAL(в рамках #76). Обычный CI PR не собирает javadoc-jar, поэтому ошибка проявилась только на релизной задаче — из-за чего0.9.0так и не опубликовался (в Maven Central сейчас404).Изменение
{@link #checkInterval}→{@link #DEFAULT_CHECK_INTERVAL}.Проверка
./gradlew javadoc— проходит (та самая задача, что падала на релизе); остаются только прежние не-фатальные warning'и делобмок-классов.После мержа релиз
0.9.0(или новый патч) можно перевыпустить — тогда позеленеет и сборка плагина intellij-language-1c-bsl#32, которая ждётutils 0.9.0в Maven Central.🤖 Generated with Claude Code
https://claude.ai/code/session_01CXTAaR4opi34idMG7ZZ8BV
Generated by Claude Code