File tree 3 files changed +30
-1
lines changed
3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 5
5
information about user visible changes to lint, see the User
6
6
Guide.
7
7
8
+ **8.9**
9
+
10
+ * Lint's testing infrastructure support for testing quickfixes
11
+ (`expectFixDiffs()`) now also validates that the modified
12
+ source file is valid Kotlin, Java or XML. You can control
13
+ this using the `lint().verifyFixedFileSyntax()` option.
14
+
8
15
**8.8**
9
16
10
17
* For the string-replacement quickfix, you can now specify
371
378
Previously only `visitMethodCall()` was triggered.
372
379
373
380
* Quickfixes can now create and delete new files; see
374
- `LintFix#newFile` and `LintFix#deleteFile`..
381
+ `LintFix#newFile` and `LintFix#deleteFile`.
375
382
376
383
* For quickfixes, the `independent` property had inverted logic;
377
384
this has now been reversed to follow the meaning of the name.
Original file line number Diff line number Diff line change 297
297
)
298
298
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
299
299
300
+ ## Verifying Quickfixes
301
+
302
+ Lint's test support will also attempt to verify that your quickfixes
303
+ still produces a valid Kotlin, Java or XML source file. It does this
304
+ by parsing these files after testing the quickfixes using
305
+ `expectFixDiffs()`. It will only complain if the fixed source file didn't
306
+ already have parsing errors *before* applying the fix.
307
+
308
+ You can control this behavior using the `.verifyFixedFileSyntax()` method
309
+ on the `lint()` task.
310
+
300
311
## Emitting quick fix XML to apply on CI
301
312
302
313
Note that the `lint` has an option (`--describe-suggestions`) to emit
Original file line number Diff line number Diff line change 4
4
For information about internal improvements and API changes affecting
5
5
lint check authors, see the API Guide.
6
6
7
+ **8.10**
8
+
9
+ * New built-in lint checks:
10
+
11
+ Issue ID | Summary
12
+ ----------------------------|-------------------------------------------
13
+ `Aligned16KB` | Native library dependency not 16 KB aligned
14
+ `TrimLambda` | Unnecessary lambda with `trim()`
15
+ `UnnecessaryArrayInit` | Unnecessary array initialization
16
+
7
17
**8.9**
8
18
9
19
* New built-in lint checks:
14
24
`PrivacySandboxBlockedCall` | Call is blocked in the Privacy Sandbox
15
25
`UseRequiresApi` | Use `@RequiresApi` instead of `@TargetApi`
16
26
`WrongSdkInt` | Mismatched SDK_INT or SDK_INT_FULL
27
+ `UseKtx` | Use KTX extension function
17
28
18
29
* The `ImplicitSamInstance` check is now turned on by default, and covers
19
30
a broader set of scenarios.
You can’t perform that action at this time.
0 commit comments