-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update dependency com.pinterest:ktlint to v0.48.2 #2340
Conversation
This is blocked on JLLeitschuh/ktlint-gradle#589 |
Codecov Report
@@ Coverage Diff @@
## develop #2340 +/- ##
===========================================
+ Coverage 23.12% 23.22% +0.09%
===========================================
Files 387 387
Lines 10813 10853 +40
Branches 1766 1768 +2
===========================================
+ Hits 2501 2521 +20
- Misses 8068 8090 +22
+ Partials 244 242 -2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
21358e1
to
ad54ca8
Compare
ad54ca8
to
653ce89
Compare
58fa7c1
to
7ddd0b1
Compare
c2a5e18
to
67bce73
Compare
d73de5f
to
b6b92c8
Compare
d0dd443
to
a3ec415
Compare
5ec61e9
to
a49ef0b
Compare
ce98ac1
to
33866e5
Compare
5489983
to
d951005
Compare
d951005
to
18a8cdc
Compare
ca731d7
to
39b0d64
Compare
39b0d64
to
a5aa24d
Compare
a5aa24d
to
ba8c1db
Compare
ba8c1db
to
b659dd8
Compare
b659dd8
to
bb2fdcf
Compare
1e71a71
to
0877489
Compare
0877489
to
26a3380
Compare
26a3380
to
030784f
Compare
0e8747f
to
cb1efdb
Compare
cb1efdb
to
ea37d71
Compare
ea37d71
to
377f0d0
Compare
b233a71
to
521ac3b
Compare
dc272ae
to
d943f64
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
This PR contains the following updates:
0.45.2
->0.48.2
⚠ Dependency Lookup Warnings ⚠
Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.
Release Notes
pinterest/ktlint
v0.48.2
Compare Source
Additional clarification on API Changes in
0.48.0
and0.48.1
Starting with Ktlint
0.48.x
, rule and rule sets can be enabled/disabled with a separate property per rule (set). Please read deprecation of (ktlint_)disable_rules property for more information.API Consumers that provide experimental rules to the KtLintRuleEngine, must also enable the experimental rules or instruct their users to do so in the
.editorconfig
file. From the perspective of the API Consumer it might be confusing or unnecessary to do so as the experimental rule was already provided explicitly.Ktlint wants to provide the user (e.g. a developer) a uniform and consistent user experience. The
.editorconfig
becomes more and more central to store configuration for Ktlint. This to ensure that all team members use the exact same configuration when running ktlint regardless whether the Ktlint CLI or an API Consumer is being used.The
.editorconfig
is a powerful configuration tool which can be used in very different ways. Most projects use a single.editorconfig
file containing one common section for kotlin and kotlin scripts files. For example, the.editorconfig
file of the Ktlint project contains following section:Other projects might contain multiple
.editorconfig
files for different parts of the project directory hierarchy. Or, use a single.editorconfig
file containing multiple sections with different globs. Like all other configuration settings in Ktlint, the user should be able to enable and disable the experimental rules. Both for the entire set of experimental rules and for individual experimental rules.Ktlint allows API Consumers to set default values and override values for the
.editorconfig
. Specifying a default value means that the user does not need to define the property in the.editorconfig
file but if the user specifies the value, it will take precedence. Specifying the override value ensures that this takes precedence on a value specified by the user in the.editorconfig
.From the Ktlint perspective, it is advised that API Consumers provide the default value. See example below, for how to specify the
editorConfigDefault
property:If the user has set property
ktlint_experimental
explicitly than that value will be used. If the value is not defined, the value provided viaeditorConfigDefaults
will be used.If you do want to ignore the value of
ktlint_experimental
as set by the user, than you can set the EditorConfigOverride property. But as said before that is discouraged as the user might not understand why the.editorconfig
property is being ignored (provided that the value set is not equal to the value provided by the API Consumer).Added
Removed
Fixed
annotation
(#1765).editorconfig
propertiesdisabled_rules
orktlint_disabled_rules
are set. (#1771)max-line-length
should be ignored by rulefunction-signature
(#1773)class-naming
,function-naming
,package-name
,property-naming
(#1757)file-name
rule on code snippets (#1768).editorconfig
propertyij_kotlin_imports_layout
's entries (#1770)Changed
v0.48.1
Compare Source
Added
Removed
Fixed
no-semi
(#1733)standard:filename
rule whenever Ktlint CLI is run with option--stdin
(#1742)--log-level
is specified. Throw exception when an invalid value is passed. (#1749)experimental
rule set are disabled by default. (#1747)Changed
1.8.0
and Kotlin version to1.8.0
.v0.48.0
Compare Source
Indent rule
The
indent
rule has been rewritten from scratch. Solving problems in the old algorithm was very difficult. With the new algorithm this becomes a lot easier. Although the new implementation of the rule has been compared against several open source projects containing over 400,000 lines of code, it is still likely that new issues will be discovered. Please report your indentation issues so that these can be fixed as well..editorconfig
property to disable rulesIn the previous release (0.47.x), the
.editorconfig
propertydisabled_rules
was deprecated and replaced withktlint_disabled_rules
. This latter property has now been deprecated as well in favour of a more flexible and better maintainable solution. Rule and rule sets can now be enabled/disabled with a separate property per rule (set). Please read deprecation of (ktlint_)disable_rules property for more information.The KtLint CLI has not been changed. Although you can still use parameter
--experimental
to enable KtLint's Experimental rule set, you might want to set.editorconfig
propertyktlint_experimental = enabled
instead.API Changes & RuleSet providers
If you are not an API consumer or Rule Set provider then you can skip this section.
Class relocations
Classes below have been relocated:
com.pinterest.ktlint.core.api.UsesEditorConfigProperties.EditorConfigProperty
has been replaced withcom.pinterest.ktlint.core.api.editorconfig.EditorConfigProperty
.com.pinterest.ktlint.core.KtLintParseException
has been replaced withcom.pinterest.ktlint.core.api.KtLintParseException
.com.pinterest.ktlint.core.RuleExecutionException
has been replaced withcom.pinterest.ktlint.core.api.KtLintRuleException
.com.pinterest.ktlint.reporter.format.internal.Color
has been moved tocom.pinterest.ktlint.reporter.format.Color
.com.pinterest.ktlint.reporter.plain.internal.Color
has been moved tocom.pinterest.ktlint.reporter.plain.Color
.Invoking
lint
andformat
This is the last release that supports the
ExperimentalParams
to invoke thelint
andformat
functions of KtLint. TheExperimentalParams
contains a mix of configuration settings which are not dependent on the file/code which is to be processed. Other parameters in that class describe the code/file to be processed but can be configured inconsistently (for example a file with name "foo.kt" could be marked as a Kotlin Script file).The static object
KtLint
is deprecated and replaced by classKtLintRuleEngine
which is configured withKtLintRuleEngineConfiguration
. The instance of theKtLintRuleEngine
is intended to be reused for scanning all files in a project and should not be recreated per file.Both
lint
andformat
are simplified and can now be called for a code block or for an entire file.Retrieve
.editorconfig
sThe list of
.editorconfig
files which will be accessed by KtLint when linting or formatting a given path can now be retrieved with the new APIKtLint.editorConfigFilePaths(path: Path): List<Path>
.This API can be called with either a file or a directory. It's intended usage is that it is called once with the root directory of a project before actually linting or formatting files of that project. When called with a directory path, all
.editorconfig
files in the directory or any of its subdirectories (except hidden directories) are returned. In case the given directory does not contain an.editorconfig
file or if it does not contain theroot=true
setting, the parent directories are scanned as well until a root.editorconfig
file is found.Calling this API with a file path results in the
.editorconfig
files that will be accessed when processing that specific file. In case the directory in which the file resides does not contain an.editorconfig
file or if it does not contain theroot=true
setting, the parent directories are scanned until a root.editorconfig
file is found.Psi filename replaces FILE_PATH_USER_DATA_KEY
Constant
KtLint.FILE_PATH_USER_DATA_KEY
is deprecated and will be removed in KtLint version 0.49.0. The file name will be passed correctly to the node with element type FILE and can be retrieved as follows:Added
wrapping
(#1643)stdin
with the--patterns-from-stdin
command line options/flags (#1606)indent
rule and new experimental rulecontext-receiver-wrapping
(#1672)class-naming
), functions (function-naming
) and properties (property-naming
) (#44)plain-summary
which prints a summary the number of violation which have been autocorrected or could not be autocorrected, both split by rule.Fixed
.editorconfig
when running CLI with options--stdin
and--editorconfig
(#1651)trailing-comma-on-call-site
(#1642)ktlint_disabled_rules
to exposededitorConfigProperties
(#1671)trailing-comma-on-declaration-site
andtrailing-comma-on-call-site
(#1676)function-signature
(#1690)Changed
1.8.0-RC
and Kotlin version to1.7.21
.true
unless theandroid codestyle
is enabled. Note that KtLint from a consistency viewpoint enforces the trailing comma on call site while default IntelliJ IDEA formatting only allows the trailing comma but leaves it up to the developer's discretion. (#1670)true
unless theandroid codestyle
is enabled. Note that KtLint from a consistency viewpoint enforces the trailing comma on declaration site while default IntelliJ IDEA formatting only allows the trailing comma but leaves it up to the developer's discretion. (#1669)--debug
,--trace
,--verbose
and-v
are replaced with--log-level=<level>
or the short version `-l=, see CLI log-level. (#1632)--log-level=none
or-l=none
(#1652)indent
rule. Solving problems in the old algorithm was very difficult. With the new algorithm this becomes a lot easier. Although the new implementation of the rule has been compared against several open source projects containing over 400,000 lines of code, it is still likely that new issues will be discovered. Please report your indentation issues so that these can be fixed as well. (#1682, #1321, #1200, #1562, #1563, #1639)indent
rule. Solving problems in the old algorithm was very difficult. With the new algorithm this becomes a lot easier. Although the new implementation of the rule has been compared against several open source projects containing over 400,000 lines of code, it is still likely that new issues will be discovered. Please report your indentation issues so that these can be fixed as well. (#1682, #1321, #1200, #1562, #1563, #1639, #1688)java 19
, remove support for running tests onjava 18
.io.github.detekt.sarif4k:sarif4k
version to0.2.0
(#1701).v0.47.1
Compare Source
Fixed
trailing-comma-on-call-site
,trailing-comma-on-declaration-site
) (#1602)--disabled-rules
(#1599)@file:Suppress
on all toplevel declarations (#1623)Changed
v0.47.0
Compare Source
API Changes & RuleSet providers
If you are not an API consumer nor a RuleSet provider, then you can safely skip this section. Otherwise, please read below carefully and upgrade your usage of ktlint. In this and coming releases, we are changing and adapting important parts of our API in order to increase maintainability and flexibility for future changes. Please avoid skipping a releases as that will make it harder to migrate.
Rule lifecycle hooks / deprecate RunOnRootOnly visitor modifier
Up until ktlint 0.46 the Rule class provided only one life cycle hook. This "visit" hook was called in a depth-first-approach on all nodes in the file. A rule like the IndentationRule used the RunOnRootOnly visitor modifier to call this lifecycle hook for the root node only in combination with an alternative way of traversing the ASTNodes. Downside of this approach was that suppression of the rule on blocks inside a file was not possible (#631). More generically, this applied to all rules, applying alternative traversals of the AST.
The Rule class now offers new life cycle hooks:
Optionally, a rule can stop the traversal of the remainder of the AST whenever the goal of the rule has been achieved. See KDoc on Rule class for more information.
The "visit" life cycle hook will be removed in Ktlint 0.48. In KtLint 0.47 the "visit" life cycle hook will be called only when hook "beforeVisitChildNodes" is not overridden. It is recommended to migrate to the new lifecycle hooks in KtLint 0.47. Please create an issue, in case you need additional assistence to implement the new life cycle hooks in your rules.
Ruleset providing by Custom Rule Set Provider
The KtLint engine needs a more fine-grained control on the instantiation of new Rule instances. Currently, a new instance of a rule can be created only once per file. However, when formatting files the same rule instance is reused for a second processing iteration in case a Lint violation has been autocorrected. By re-using the same rule instance, state of that rule might leak from the first to the second processing iteration.
Providers of custom rule sets have to migrate the custom rule set JAR file. The current RuleSetProvider interface which is implemented in the custom rule set is deprecated and marked for removal in KtLint 0.48. Custom rule sets using the old RuleSetProvider interface will not be run in KtLint 0.48 or above.
For now, it is advised to implement the new RuleSetProviderV2 interface without removing the old RuleSetProvider interface. In this way, KtLint 0.47 and above use the RuleSetProviderV2 interface and ignore the old RuleSetProvider interface completely. KtLint 0.46 and below only use the old RuleSetProvider interface.
Adding the new interface is straight forward, as can be seen below:
Also note that file 'resource/META-INF/services/com.pinterest.ktlint.core.RuleSetProviderV2' needs to be added. In case your custom rule set provider implements both RuleSetProvider and RuleSetProviderV2, the resource directory contains files for both implementation. The content of those files is identical as the interfaces are implemented on the same class.
Once above has been implemented, rules no longer have to clean up their internal state as the KtLint rule engine can request a new instance of the Rule at any time it suspects that the internal state of the Rule is tampered with (e.g. as soon as the Rule instance is used for traversing the AST).
Rule set providing by API Consumer
The KtLint engine needs a more fine-grained control on the instantiation of new Rule instances. Currently, a new instance of a rule can be created only once per file. However, when formatting files the same rule instance is reused for a second processing iteration in case a Lint violation has been autocorrected. By re-using the same rule instance, state of that rule might leak from the first to the second processing iteration.
The ExperimentalParams parameter which is used to invoke "KtLint.lint" and "KtLint.format" contains a new parameter "ruleProviders" which will replace the "ruleSets" parameter in KtLint 0.48. Exactly one of those parameters should be a non-empty set. It is preferred that API consumers migrate to using "ruleProviders".
Once above has been implemented, rules no longer have to clean up their internal state as the KtLint rule engine can request a new instance of the Rule at any time it suspects that the internal state of the Rule is tampered with (e.g. as soon as the Rule instance is used for traversing the AST).
Format callback
The callback function provided as parameter to the format function is now called for all errors regardless whether the error has been autocorrected. Existing consumers of the format function should now explicitly check the
autocorrected
flag in the callback result and handle it appropriately (in most case this will be ignoring the callback results for whichautocorrected
has valuetrue
).CurrentBaseline
Class
com.pinterest.ktlint.core.internal.CurrentBaseline
has been replaced withcom.pinterest.ktlint.core.api.Baseline
.Noteworthy changes:
baselineRules
(nullable) is replaced with `lintErrorsPerFile (non-nullable).baselineGenerationNeeded
(boolean) is replaced withstatus
(typeBaseline.Status
).The utility functions provided via
com.pinterest.ktlint.core.internal.CurrentBaseline
are moved to the new class. One new methodList<LintError>.doesNotContain(lintError: LintError)
is added..editorconfig property "disabled_rules"
The
.editorconfig
propertydisabled_rules
(api propertyDefaultEditorConfigProperties.disabledRulesProperty
) has been deprecated and will be removed in a future version. Usektlint_disabled_rules
(api propertyDefaultEditorConfigProperties.ktlintDisabledRulesProperty
) instead as it more clearly identifies that ktlint is the owner of the property. This property is to be renamed in.editorconfig
files andExperimentalParams.editorConfigOverride
.Although, Ktlint 0.47.0 falls back on property
disabled_rules
wheneverktlint_disabled_rules
is not found, this result in a warning message being printed.Default/alternative .editorconfig
Parameter "ExperimentalParams.editorConfigPath" is deprecated in favor of the new parameter "ExperimentalParams.editorConfigDefaults". When used in the old implementation this resulted in ignoring all ".editorconfig" files on the path to the file. The new implementation uses properties from the "editorConfigDefaults"parameter only when no ".editorconfig" files on the path to the file supplies this property for the filepath.
API consumers can easily create the EditConfigDefaults by calling
"EditConfigDefaults.load(path)" or creating it programmatically.
Reload of
.editorconfig
fileSome API Consumers keep a long-running instance of the KtLint engine alive. In case an
.editorconfig
file is changed, which was already loaded into the internal cache of the KtLint engine this change would not be taken into account by KtLint. One way to deal with this, was to clear the entire KtLint cache after each change in an.editorconfig
file.Now, the API consumer can reload an
.editorconfig
. If the.editorconfig
with given path is actually found in the cached, it will be replaced with the new value directly. If the file is not yet loaded in the cache, loading will be deferred until the file is actually requested again.Example:
Miscellaneous
Several methods for which it is unlikely that they are used by API consumers have been marked for removal from the public API in KtLint 0.48.0. Please create an issue in case you have a valid business case to keep such methods in the public API.
Added
format
reporter. This reporter prints a one-line-summary of the formatting status per file. (#621).Fixed
filename
(#1521).indent
) #631enum-entry-name-case
,filename
) (#1530).ktlint
cli on default kotlin extensions only when an (existing) path to a directory is given. (#917).format
function for all errors including errors that are autocorrected (#1491)function-signature
(#1527)multiline-if-else
(#1560)multiline-if-else
(#828)ktlint_code_style
(#1559)trailing-comma
(#1542)trailing-comma
intotrailing-comma-on-call-site
andtrailing-comma-on-declaration-site
(#1555)wrapping
(#1578)Changed
format
function for all errors including errors that are autocorrected (#1491)annotation
(#1574).editorconfig
propertydisabled_rules
toktlint_disabled_rules
(#701)1.7.20-beta
and Kotlin version to1.7.10
.7.5.1
versionRemoved
v0.46.1
Compare Source
Minor release to address some regressions introduced in 0.46.0
Fixed
-Xuse-k2
as it forces API Consumers to compile their projects with this same flag (#1506).indent
(#1510)v0.46.0
Compare Source
Promoting experimental rules to standard
The rules below are promoted from the
experimental
ruleset to thestandard
ruleset.annotation
annotation-spacing
argument-list-wrapping
double-colon-spacing
enum-entry-name-case
multiline-if-else
no-empty-first-line-in-method-block
package-name
trailing-comma
spacing-around-angle-brackets
spacing-between-declarations-with-annotations
spacing-between-declarations-with-comments
unary-op-spacing
Note that as a result of moving the rules that the prefix
experimental:
has to be removed from all references to this rule. Check references in:.editorconfig
settingdisabled_rules
.VisitorModifier.RunAfterRule
.If your project did not run with the
experimental
ruleset enabled before, you might expect new lint violations to be reported. Please note that rules can be disabled via the the.editorconfig
in case you do not want the rules to be applied on your project.API Changes & RuleSet providers
If you are not an API user nor a RuleSet provider, then you can safely skip this section. Otherwise, please read below carefully and upgrade your usage of ktlint. In this and coming releases, we are changing and adapting important parts of our API in order to increase maintainability and flexibility for future changes. Please avoid skipping a releases as that will make it harder to migrate.
Lint and formatting functions
The lint and formatting changes no longer accept parameters of type
Params
but onlyExperimentalParams
. Also, the VisitorProvider parameter has been removed. Because of this, your integration with KtLint breaks. Based on feedback with ktlint 0.45.x, we now prefer to break at compile time instead of trying to keep the interface backwards compatible. Please raise an issue, in case you help to convert to the new API.Use of ".editorconfig" properties & userData
The interface
UsesEditorConfigProperties
provides methodgetEditorConfigValue
to retrieve a named.editorconfig
property for a given ASTNode. When implementing this interface, the valueeditorConfigProperties
needs to be overridden. Previously it was not checked whether a retrieved property was actually recorded in this list. Now, retrieval of unregistered properties results in an exception.Property
Ktlint.DISABLED
has been removed. The property value can now be retrieved as follows:and be supplied via the
ExperimentalParams
as follows:Property
Ktlint.ANDROID_USER_DATA_KEY
has been removed. The property value can now be retrieved as follows:astNode .getEditorConfigValue(DefaultEditorConfigProperties.codeStyleProperty)
and be supplied via the
ExperimentalParams
as follows:This property defaults to the
official
Kotlin code style when not set.Testing KtLint rules
An AssertJ style API for testing KtLint rules (#1444) has been added. Usage of this API is encouraged in favor of using the old RuleExtension API. For more information, see KtLintAssertThat API
Added
spacing-between-function-name-and-opening-parenthesis
) (#1341)parameter-list-spacing
) (#1341)function-return-type-spacing
) (#1341)nullable-type-spacing
) (#1341)type-parameter-list-spacing
) (#1435)function-start-of-body-spacing
) (#1341)@Suppress
(more information) (#765)function-signature
) (#1341)Fixed
no-consecutive-blank-lines
to new rule (no-blank-lines-in-chained-method-calls
) (#1248)wrapping
(#1457)indent
(#1340)indent
) and a newline in the expression in a for-statement should not force to wrap itwrapping
(#1350)indent
(#1335).editorconfig
settingindentSize
is set to valuetab
then return the default tab width as value forindentSize
(#1485)@file:Suppress(...)
(#1029)Changed
1.7.0
and Kotlin version to1.7.0
.7.1.2
release4.6.3
releasefilename
(#1004)annotation
,annotation-spacing
,argument-list-wrapping
,double-colon-spacing
,enum-entry-name-case
,multiline-if-else
,no-empty-first-line-in-method-block
,package-name
,traling-comma
,spacing-around-angle-brackets
,spacing-between-declarations-with-annotations
,spacing-between-declarations-with-comments
,unary-op-spacing
(#1481)--android
can be omitted when the.editorconfig
propertyktlint_code_style = android
is definedConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.