From f647dc3c2935afc93df95d4fea3015b5584424c0 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 29 Jul 2024 17:12:04 -0400 Subject: [PATCH] Make FIR parser the default (#2205) --- CHANGELOG.md | 2 +- .../main/kotlin/app/cash/redwood/gradle/RedwoodSchemaPlugin.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a29a2ef8e5..3c5fbd1750 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ [Unreleased]: https://github.com/cashapp/redwood/compare/0.13.0...HEAD New: -- Nothing yet! +- Source-based schema parser is now the default. Can be disabled in your schema module with `redwood { useFir = false }`. Changed: - Nothing yet! diff --git a/redwood-gradle-plugin/src/main/kotlin/app/cash/redwood/gradle/RedwoodSchemaPlugin.kt b/redwood-gradle-plugin/src/main/kotlin/app/cash/redwood/gradle/RedwoodSchemaPlugin.kt index 7355961674..7c679a313b 100644 --- a/redwood-gradle-plugin/src/main/kotlin/app/cash/redwood/gradle/RedwoodSchemaPlugin.kt +++ b/redwood-gradle-plugin/src/main/kotlin/app/cash/redwood/gradle/RedwoodSchemaPlugin.kt @@ -32,7 +32,7 @@ public class RedwoodSchemaPlugin : Plugin { RedwoodSchemaExtension::class.java, ).apply { apiTracking.convention(true) - useFir.convention(false) + useFir.convention(true) } var applied = false