-
Notifications
You must be signed in to change notification settings - Fork 3
Remove old deprecated APIs #65
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
Conversation
WalkthroughThe pull request removes deprecated API elements and updates configuration syntax across several files. The CHANGELOG.md now records the removal of old APIs along with updates to the JVM and Gradle versions. Deprecated fields, methods, and logger extensions have been removed from core Kotlin files, while test files have been updated to use Kotlin DSL syntax and revised configuration blocks. No new public API declarations were added. Changes
Sequence Diagram(s)sequenceDiagram
participant Test as PrepareServerSpec
participant Plugin as Plugin Config
Test->>Plugin: Invoke configuration block: server { onlineMode = false }
Plugin-->>Test: Apply online mode setting
sequenceDiagram
participant Test as MergePluginYamlSpec
participant YAMLMerger as Plugin YAML Merger
Test->>YAMLMerger: Merge plugin.yaml with updated properties
YAMLMerger-->>Test: Write updated plugin.yaml file
Poem
Tip ⚡💬 Agentic Chat (Pro Plan, General Availability)
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (7)
💤 Files with no reviewable changes (3)
🔇 Additional comments (12)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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
CodeRabbit Configuration File (
|
These API were deprecated four years ago, so I think it should be safe to remove them now. Even though it is not 1.0 release.