yatagan
yatagan copied to clipboard
Versions: Bump the libs group across 1 directory with 6 updates
Bumps the libs group with 6 updates in the / directory:
Package | From | To |
---|---|---|
org.jetbrains.kotlinx:kover-gradle-plugin | 0.8.0 |
0.8.3 |
com.squareup:kotlinpoet | 1.17.0 |
1.18.1 |
org.logicng:logicng | 2.5.0 |
2.5.1 |
org.assertj:assertj-core | 3.26.0 |
3.26.3 |
com.google.dagger:dagger | 2.51.1 |
2.52 |
com.google.dagger:dagger-compiler | 2.51.1 |
2.52 |
Updates org.jetbrains.kotlinx:kover-gradle-plugin
from 0.8.0 to 0.8.3
Release notes
Sourced from org.jetbrains.kotlinx:kover-gradle-plugin's releases.
0.8.3
This release introduces the Maven plugin for Kover.
Kover Maven Plugin
[#51](https://github.com/Kotlin/kotlinx-kover/issues/51)
Implemented Kover Maven PluginKover Aggregation Plugin
- Added support for Android projects in Kover Aggregation Plugin
0.8.2
Kover Aggregation Plugin
Implemented prototype of Kover Aggregation Plugin - an alternative to the existing Kover Gradle Plugin, it makes it easier to set up a configuration and collect coverage reactively, depending on the compilation and test tasks running.
This is not a production-ready plugin, it is in an incubation state.
Please refer to the GitHub issue and documentation for details.
Kover Gradle Plugin
Bugfixes
[#621](https://github.com/Kotlin/kotlinx-kover/issues/621)
Fixed coverage evaluation for enum in K2[#633](https://github.com/Kotlin/kotlinx-kover/issues/633)
Fix issue with identical cache keys between projects[#613](https://github.com/Kotlin/kotlinx-kover/issues/613)
Fixed JaCoCo error: Can't add different class with same name[#601](https://github.com/Kotlin/kotlinx-kover/issues/601)
Fixed support of Compose functions[#646](https://github.com/Kotlin/kotlinx-kover/issues/646)
Fixed reusing of configuration cache[#628](https://github.com/Kotlin/kotlinx-kover/issues/628)
Fixed coverage evaluation of try-finally and try-with-resources for Java codeFeatures
- Disable caching on kover artifact tasks
0.8.1
Kover Gradle Plugin
Features
[#600](https://github.com/Kotlin/kotlinx-kover/issues/600)
Apply recommendations for improving DSL- Added DSL to copy one report variant
Bugfixes
[#610](https://github.com/Kotlin/kotlinx-kover/issues/610)
FixedKoverCriticalException
with a certain order of applying of plugins
Changelog
Sourced from org.jetbrains.kotlinx:kover-gradle-plugin's changelog.
0.8.3 / 2024-07-18
Kover Aggregation Plugin
- Added support for Android projects in Kover Aggregation Plugin
Kover Maven Plugin
[#51](https://github.com/Kotlin/kotlinx-kover/issues/51)
Implemented Kover Maven Plugin0.8.2 / 2024-06-27
Kover Aggregation Plugin
Implemented prototype of Kover Aggregation Plugin - an alternative to the existing Kover Gradle Plugin, it makes it easier to set up a configuration and collect coverage reactively, depending on the compilation and test tasks running.
This is not a production-ready plugin, it is in an incubation state.
Please refer to the GitHub issue and documentation for details.
Kover Gradle Plugin
Bugfixes
[#621](https://github.com/Kotlin/kotlinx-kover/issues/621)
Fixed coverage evaluation for enum in K2[#633](https://github.com/Kotlin/kotlinx-kover/issues/633)
Fix issue with identical cache keys between projects[#613](https://github.com/Kotlin/kotlinx-kover/issues/613)
Fixed JaCoCo error: Can't add different class with same name[#601](https://github.com/Kotlin/kotlinx-kover/issues/601)
Fixed support of Compose functions[#646](https://github.com/Kotlin/kotlinx-kover/issues/646)
Fixed reusing of configuration cache[#628](https://github.com/Kotlin/kotlinx-kover/issues/628)
Fixed coverage evaluation of try-finally and try-with-resources for Java codeFeatures
- Disable caching on kover artifact tasks
0.8.1 / 2024-06-07
Kover Gradle Plugin
Features
[#600](https://github.com/Kotlin/kotlinx-kover/issues/600)
Apply recommendations for improving DSL- Added DSL to copy one report variant
Bugfixes
[#610](https://github.com/Kotlin/kotlinx-kover/issues/610)
FixedKoverCriticalException
with a certain order of applying of plugins
Commits
332988b
Specify release version in maven plugin descriptorccf20ea
Added description to the Kover Maven Plugin933fdb0
Release 0.8.31739cc5
Implemented Kover Maven Plugin54637f7
Added tests for Android project and aggregation plugind837e39
Include Android compilations in aggregation82a65bc
Release 0.8.267c7836
Fixed reusing of configuration cache8cee8cb
Added compose testse03bc8c
Implemented protype of Kover Aggregation Plugin- Additional commits viewable in compare view
Updates com.squareup:kotlinpoet
from 1.17.0 to 1.18.1
Release notes
Sourced from com.squareup:kotlinpoet's releases.
1.18.1
Thanks to
@mitasov-ra
for contributing to this release.// before, doesn't compile due to KT-18706 import com.example.one.`$Foo` as `One$Foo` import com.example.two.`$Foo` as `Two$Foo`
// now, compiles import com.example.one.
$Foo
as One__Foo import com.example.two.$Foo
as Two__Foo1.18.0
Thanks to
@DanielGronau
for contributing to this release.
- New: Kotlin 2.0.0.
- New: KSP 2.0.0-1.0.22.
- New: Promote
kotlinpoet-metadata
out of preview to stable.- New: Migrate
kotlinpoet-metadata
to stableorg.jetbrains.kotlin:kotlin-metadata-jvm
artifact for Metadata parsing.- New: Make enum entry references in
KSAnnotation.toAnnotationSpec()
andKSClassDeclaration.toClassName()
more robust.- Fix: Don't expand typealiases of function types to
LambdaTypeName
s inKSTypeReference.toTypeName()
.- Fix: Avoid rounding small double and float values in
%L
translation (#1927).- Fix: Fix typealias type argument resolution in KSP2 (#1929).
Changelog
Sourced from com.squareup:kotlinpoet's changelog.
Version 1.18.1
Thanks to [
@mitasov-ra
][mitasov-ra] for contributing to this release.2024-07-15
Fix: Workaround for [KT-18706][kt-18706]: KotlinPoet now generates import aliases without backticks (#1920).
// before, doesn't compile due to KT-18706 import com.example.one.`$Foo` as `One$Foo` import com.example.two.`$Foo` as `Two$Foo`
// now, compiles import com.example.one.
$Foo
as One__Foo import com.example.two.$Foo
as Two__FooVersion 1.18.0
Thanks to [
@DanielGronau
][DanielGronau] for contributing to this release.2024-07-05
- New: Kotlin 2.0.0.
- New: KSP 2.0.0-1.0.22.
- New: Promote
kotlinpoet-metadata
out of preview to stable.- New: Migrate
kotlinpoet-metadata
to stableorg.jetbrains.kotlin:kotlin-metadata-jvm
artifact for Metadata parsing.- New: Make enum entry references in
KSAnnotation.toAnnotationSpec()
andKSClassDeclaration.toClassName()
more robust.- Fix: Don't expand typealiases of function types to
LambdaTypeName
s inKSTypeReference.toTypeName()
.- Fix: Avoid rounding small double and float values in
%L
translation (#1927).- Fix: Fix typealias type argument resolution in KSP2 (#1929).
Commits
c5bf640
Prepare for release 1.18.16d75e0b
Update dependency mkdocs-material to v9.5.292de99de
Update dependency com.google.truth:truth to v1.4.4 (#1943)4ee8fc4
Fix KT-18706 in CodeWriter.generateImports946f279
Update dependency gradle to v8.9 (#1940)7559d00
Update plugin kotlinBinaryCompatibilityValidator to v0.15.173d1def
Update plugin kotlinBinaryCompatibilityValidator to v0.15.0a78e7fc
Prepare next development versionc01770a
Prepare for release 1.18.0bf11fed
Update dependency mkdocs-material to v9.5.28- Additional commits viewable in compare view
Updates org.logicng:logicng
from 2.5.0 to 2.5.1
Release notes
Sourced from org.logicng:logicng's releases.
v2.5.1
Changed
- Changed visibility from some methods from package-private to public for formula and solver serializiation via the new https://github.com/logic-ng/serialization library
Changelog
Sourced from org.logicng:logicng's changelog.
[2.5.1] - 2024-07-31
Changed
- Changed visibility from some methods from package-private to public for formula and solver serializiation via the new https://github.com/logic-ng/serialization library
Commits
42ece18
Merge pull request #53 from logic-ng/development79bb7b0
Final 2.5.19aa1d29
Prepare 2.5.1 release5ba79db
fixed MiniSatConfig doc for default CNF methodd77cea2
Prepare 2.6.0 releaseb6e6975
Preparations for formula and solver serializiation10ab16e
Next development version87a662f
Fixed JaCoCo Plugine6317bb
updated codecov badge85ef043
adjust codecov report generation- See full diff in compare view
Updates org.assertj:assertj-core
from 3.26.0 to 3.26.3
Release notes
Sourced from org.assertj:assertj-core's releases.
v3.26.3
:jigsaw: Binary Compatibility
The release is:
- Binary compatible with the previous minor version.
- Binary incompatible with the previous patch version.
:boom: Breaking Changes
Core
- Replace
assertThat(Temporal)
withassertThatTemporal(Temporal)
#3519:bug: Bug Fixes
Core
- Fix Javadoc rendering on
FactoryBasedNavigableListAssert::assertThat
- Allow
ComparingNormalizedFields
instances to be reused across different assertions #3493:hammer: Dependency Upgrades
Core
Guava
- Upgrade to Guava 33.2.1-jre #3499
:heart: Contributors
Thanks to all the contributors who worked on this release:
Commits
8e97f90
[maven-release-plugin] prepare release assertj-build-3.26.3d1afefc
chore(deps): bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.1 to 4...2dc2cbf
chore(deps): bump byte-buddy.version from 1.14.17 to 1.14.18 (#3531)2541d3c
chore(deps-dev): bump com.fasterxml.jackson.core:jackson-databind from 2.17.1...cdb906f
[maven-release-plugin] prepare for next development iterationc3b1f4a
[maven-release-plugin] prepare release assertj-build-3.26.2d5b52ab
[maven-release-plugin] prepare for next development iteration17ea711
[maven-release-plugin] prepare release assertj-build-3.26.18cf054d
chore(deps): bump org.codehaus.mojo:versions-maven-plugin from 2.16.2 to 2.17...5e708b4
chore(deps-dev): bump org.apache.groovy:groovy from 4.0.21 to 4.0.22 (#3527)- Additional commits viewable in compare view
Updates com.google.dagger:dagger
from 2.51.1 to 2.52
Release notes
Sourced from com.google.dagger:dagger's releases.
Dagger 2.52
Notes: Dagger KSP now requires at least KSP 1.9.24-1.0.20.
Bug fixes
- Fixed #4302: Suppress deprecation warnings in generated code. (f41033cc4)
- Fixed #4323: Added rules to stop LazyClassKey referenced classes being merged with R8 (81512af9e).
- Fixed #4345: Fixes intersection type bounds order in generated factories when using KSP (aosp/3164197).
- Fixed #4352: Fixes an issue where the parameter name "instance" could conflict with fields of the same name in the component. (952c2504a)
- Merged pull request #4305: Skip view injection when in edit mode for previews. (65b74f832)
- Fixed an issue where base classes with a package private constructor would cause the generated code to fail (db25237df)
- Add a jakarta.inject.Provider runtime dependency in preparation for supporting Jakarta Providers (a8581e0a6)
Commits
0544328
2.52 release3e0d349
Add more information to error message when@AggregatedDeps
annotation is miss...da92d19
Drop latest XProcessing jars into Dagger.4dcf006
Add jarjar test libraries to the Allstar exemption file for binary artifacts.31eec2a
Update Bazel to use JDK 18.5293ff5
Automated Code Changed55d61c
No public description952c250
Fix an issue where the parameter name "instance" could conflict with fields o...917c005
Internal changes140e201
Completely remove dependency on https://github.com/google/bazel-common.- Additional commits viewable in compare view
Updates com.google.dagger:dagger-compiler
from 2.51.1 to 2.52
Release notes
Sourced from com.google.dagger:dagger-compiler's releases.
Dagger 2.52
Notes: Dagger KSP now requires at least KSP 1.9.24-1.0.20.
Bug fixes
- Fixed #4302: Suppress deprecation warnings in generated code. (f41033cc4)
- Fixed #4323: Added rules to stop LazyClassKey referenced classes being merged with R8 (81512af9e).
- Fixed #4345: Fixes intersection type bounds order in generated factories when using KSP (aosp/3164197).
- Fixed #4352: Fixes an issue where the parameter name "instance" could conflict with fields of the same name in the component. (952c2504a)
- Merged pull request #4305: Skip view injection when in edit mode for previews. (65b74f832)
- Fixed an issue where base classes with a package private constructor would cause the generated code to fail (db25237df)
- Add a jakarta.inject.Provider runtime dependency in preparation for supporting Jakarta Providers (a8581e0a6)
Commits
0544328
2.52 release3e0d349
Add more information to error message when@AggregatedDeps
annotation is miss...da92d19
Drop latest XProcessing jars into Dagger.4dcf006
Add jarjar test libraries to the Allstar exemption file for binary artifacts.31eec2a
Update Bazel to use JDK 18.5293ff5
Automated Code Changed55d61c
No public description952c250
Fix an issue where the parameter name "instance" could conflict with fields o...917c005
Internal changes140e201
Completely remove dependency on https://github.com/google/bazel-common.- Additional commits viewable in compare view
Updates com.google.dagger:dagger-compiler
from 2.51.1 to 2.52
Release notes
Sourced from com.google.dagger:dagger-compiler's releases.
Dagger 2.52
Notes: Dagger KSP now requires at least KSP 1.9.24-1.0.20.
Bug fixes
- Fixed #4302: Suppress deprecation warnings in generated code. (f41033cc4)
- Fixed #4323: Added rules to stop LazyClassKey referenced classes being merged with R8 (81512af9e).
- Fixed #4345: Fixes intersection type bounds order in generated factories when using KSP (aosp/3164197).
- Fixed #4352: Fixes an issue where the parameter name "instance" could conflict with fields of the same name in the component. (952c2504a)
- Merged pull request #4305: Skip view injection when in edit mode for previews. (65b74f832)
- Fixed an issue where base classes with a package private constructor would cause the generated code to fail (db25237df)
- Add a jakarta.inject.Provider runtime dependency in preparation for supporting Jakarta Providers (a8581e0a6)
Commits
0544328
2.52 release3e0d349
Add more information to error message when@AggregatedDeps
annotation is miss...da92d19
Drop latest XProcessing jars into Dagger.4dcf006
Add jarjar test libraries to the Allstar exemption file for binary artifacts.31eec2a
Update Bazel to use JDK 18.5293ff5
Automated Code Changed55d61c
No public description952c250
Fix an issue where the parameter name "instance" could conflict with fields o...917c005
Internal changes140e201
Completely remove dependency on https://github.com/google/bazel-common.- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major version
will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor version
will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>
will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>
will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>
will remove the ignore condition of the specified dependency and ignore conditions