Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Kotlin/binary-compatibility-validator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.13.2
Choose a base ref
...
head repository: Kotlin/binary-compatibility-validator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.14.0
Choose a head ref
  • 15 commits
  • 75 files changed
  • 7 contributors

Commits on Aug 15, 2023

  1. Filter out $EntriesMappings class for Kotlin's 1.9 feature 'Enum entr…

    …ies' (#144)
    
    * Filter out $EntriesMappings class for Kotlin's 1.9 feature 'Enum entries'
    
    Kotlin compiler generates synthetic class holding EnumEntries starting from 1.9.
    This change filters out such classes from the API dump.
    
    * Upgrade a Kotlin version and remove stdlib exclusion
    
    Changed config to make testing of Enum.entries possible.
    Enum.entries require stdlib >= 1.8.20.
    Exclusion of stdlib artifacts is only required when Gradle's Kotlin version is higher than the project's one.
    
    Fixes #141
    fzhinkin authored Aug 15, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8fbc5ef View commit details

Commits on Sep 18, 2023

  1. Fix and test cases (#136)

    Fixes #135
    bryanlogan authored Sep 18, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0dc8cd9 View commit details

Commits on Oct 23, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7a4a098 View commit details

Commits on Dec 19, 2023

  1. Fix functional tests not utilizing the API_DIR const value

    Fix functional tests not utilizing the API_DIR const value
    
    Merge pull request #154 from xtrm-en/fix/tests-hardcoded-dir
    fzhinkin authored Dec 19, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6ea22ad View commit details
  2. Update badges (#159)

    * Add MavenCentral badge
    * Update license badge
    Goooler authored Dec 19, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    24cdd4e View commit details

Commits on Jan 12, 2024

  1. BCV Gradle rework (#134)

    * Annotate file paths with `@Language("file-reference")` (#126)
    * Update to Gradle 8 (#122)
    * bump Gradle Plugin Publish Plugin version
    * build script updates & improvements
    * use Java Toolchains to set the Java version
    * use jvm-test-fixtures plugin for functionalTest sources
    * update build config, remove redundant Maven publication
    
    * Initial Gradle convention plugins (#123)
    * Apply BCV, commit API dump (#131)
    * The ABI shape will be reduced in the future, this is a technical change
    * java-diff-utils
    * Update Gradle to 8.5
    
    ---------
    
    Co-authored-by: aSemy <897017+aSemy@users.noreply.github.com>
    qwwdfsad and aSemy authored Jan 12, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    60098a3 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    041d70b View commit details
  3. Do not depend on sources and javadocs twice during the publication pr…

    …ocess (#167)
    
    * 'java { withXJar }' already provides a dependency
    
    Fixes 'Invalid publication 'maven': multiple artifacts with the identical extension and classifier ('jar', 'javadoc')' failure during publication process
    qwwdfsad authored Jan 12, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f62caa2 View commit details

Commits on Jan 15, 2024

  1. Enable strict explicit API mode (#168)

    Rationale:
    
    We now have quite a lot of accidentally public entities while both promoting and using BCV as a standalone JAR dependency. Apart from that, we have quite an unfortunate package name 'api' that might imply all these methods are part of public API (when, in fact, it's all related to API validation).
    
    It would be nice to explicitly confine our visibilities and be more deliberate about that
    qwwdfsad authored Jan 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    07d46e7 View commit details

Commits on Jan 18, 2024

  1. Add all Companion class annotations to the corresponding Companion fi…

    …eld. (#162)
    
    * Add all Companion class annotations to the corresponding Companion field.
    * Extract logic for building field and method signatures to separate methods
    
    Fixes #157
    fzhinkin authored Jan 18, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    066e01e View commit details
  2. Copy the full SHA
    1d7505b View commit details

Commits on Jan 19, 2024

  1. Configure output directory for dumps (#170)

    * Support output directory configuration
    
    Fixes #127
    
    ---------
    
    Co-authored-by: Vsevolod Tolstopyatov <qwwdfsad@gmail.com>
    fzhinkin and qwwdfsad authored Jan 19, 2024
    Copy the full SHA
    4367cb7 View commit details

Commits on Jan 24, 2024

  1. Update ASM (#173)

    * Update ASM to 9.6
    * Added Java versions compatibility test
    fzhinkin authored Jan 24, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3969489 View commit details

Commits on Jan 29, 2024

  1. Support Java package-level annotations (#175)

    * Support Java package-level annotations.
    
    Closes #156
    fzhinkin authored Jan 29, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0507790 View commit details
  2. Version 0.14.0

    fzhinkin authored Jan 29, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    15fe830 View commit details
Showing with 1,783 additions and 661 deletions.
  1. +14 −3 README.md
  2. +81 −0 api/binary-compatibility-validator.api
  3. +110 −84 build.gradle.kts
  4. +5 −29 buildSrc/build.gradle.kts
  5. +31 −0 buildSrc/settings.gradle.kts
  6. +4 −21 buildSrc/src/{ → main/kotlin}/MavenCentralMetadata.kt
  7. 0 buildSrc/src/{ → main/kotlin}/Publishing.kt
  8. +32 −0 buildSrc/src/main/kotlin/conventions/base.gradle.kts
  9. +22 −0 buildSrc/src/main/kotlin/conventions/java-base.gradle.kts
  10. +1 −5 gradle.properties
  11. +41 −0 gradle/libs.versions.toml
  12. BIN gradle/wrapper/gradle-wrapper.jar
  13. +3 −1 gradle/wrapper/gradle-wrapper.properties
  14. +173 −109 gradlew
  15. +92 −89 gradlew.bat
  16. +20 −11 settings.gradle.kts
  17. +1 −1 src/functionalTest/kotlin/kotlinx/validation/api/BaseKotlinGradleTest.kt
  18. +32 −11 src/functionalTest/kotlin/kotlinx/validation/api/TestDsl.kt
  19. +8 −8 src/functionalTest/kotlin/kotlinx/validation/test/AndroidLibraryTest.kt
  20. +19 −19 src/functionalTest/kotlin/kotlinx/validation/test/DefaultConfigTests.kt
  21. +40 −11 src/functionalTest/kotlin/kotlinx/validation/test/IgnoredClassesTests.kt
  22. +4 −4 src/functionalTest/kotlin/kotlinx/validation/test/InputJarTest.kt
  23. +96 −0 src/functionalTest/kotlin/kotlinx/validation/test/JavaVersionsCompatibilityTest.kt
  24. +4 −8 src/functionalTest/kotlin/kotlinx/validation/test/MixedMarkersTest.kt
  25. +17 −17 src/functionalTest/kotlin/kotlinx/validation/test/MultiPlatformSingleJvmTargetTest.kt
  26. +22 −22 src/functionalTest/kotlin/kotlinx/validation/test/MultipleJvmTargetsTest.kt
  27. +40 −4 src/functionalTest/kotlin/kotlinx/validation/test/NonPublicMarkersTest.kt
  28. +160 −0 src/functionalTest/kotlin/kotlinx/validation/test/OutputDirectoryTests.kt
  29. +41 −5 src/functionalTest/kotlin/kotlinx/validation/test/PublicMarkersTest.kt
  30. +21 −21 src/functionalTest/kotlin/kotlinx/validation/test/SubprojectsWithPluginOnRootTests.kt
  31. +21 −21 src/functionalTest/kotlin/kotlinx/validation/test/SubprojectsWithPluginOnSubTests.kt
  32. +6 −0 src/functionalTest/resources/examples/classes/AnnotatedPackage.dump
  33. +6 −0 src/functionalTest/resources/examples/classes/BuildCon.dump
  34. +12 −0 src/functionalTest/resources/examples/classes/BuildCon.kt
  35. +9 −0 src/functionalTest/resources/examples/classes/ClassFromAnnotatedPackage.kt
  36. +11 −0 src/functionalTest/resources/examples/classes/PackageAnnotation.java
  37. +2 −0 src/functionalTest/resources/examples/classes/package-info.java
  38. +33 −0 src/functionalTest/resources/examples/gradle/base/jdkCompatibility.gradle.kts
  39. +28 −0 src/functionalTest/resources/examples/gradle/base/jdkCompatibilityWithExactVersion.gradle.kts
  40. +1 −1 src/functionalTest/resources/examples/gradle/base/withPlugin.gradle.kts
  41. +8 −0 src/functionalTest/resources/examples/gradle/configuration/nonPublicMarkers/packages.gradle.kts
  42. +8 −0 src/functionalTest/resources/examples/gradle/configuration/outputDirectory/different.gradle.kts
  43. +8 −0 src/functionalTest/resources/examples/gradle/configuration/outputDirectory/outer.gradle.kts
  44. +8 −0 src/functionalTest/resources/examples/gradle/configuration/outputDirectory/subdirectory.gradle.kts
  45. +8 −0 src/functionalTest/resources/examples/gradle/configuration/publicMarkers/packages.gradle.kts
  46. +8 −0 src/functionalTest/resources/examples/gradle/settings/jdk-provisioning.gradle.kts
  47. +9 −2 src/main/kotlin/ApiValidationExtension.kt
  48. +35 −23 src/main/kotlin/BinaryCompatibilityValidatorPlugin.kt
  49. +1 −1 src/main/kotlin/ExternalApi.kt
  50. +17 −14 src/main/kotlin/KotlinApiBuildTask.kt
  51. +13 −12 src/main/kotlin/KotlinApiCompareTask.kt
  52. +28 −23 src/main/kotlin/api/AsmMetadataLoading.kt
  53. +29 −21 src/main/kotlin/api/KotlinMetadataSignature.kt
  54. +13 −13 src/main/kotlin/api/KotlinMetadataVisibilities.kt
  55. +127 −42 src/main/kotlin/api/KotlinSignaturesLoading.kt
  56. +17 −0 src/test/kotlin/cases/companions/companions.kt
  57. +6 −0 src/test/kotlin/cases/companions/companions.txt
  58. +3 −0 src/test/kotlin/cases/default/default.txt
  59. +16 −1 src/test/kotlin/cases/default/functions.kt
  60. +8 −0 src/test/kotlin/cases/enums/EnumClass.kt
  61. +10 −0 src/test/kotlin/cases/enums/JavaEnum.java
  62. +13 −0 src/test/kotlin/cases/enums/entries.kt
  63. +21 −0 src/test/kotlin/cases/enums/enums.txt
  64. +9 −0 src/test/kotlin/cases/packageAnnotations/PrivateApi.kt
  65. +9 −0 src/test/kotlin/cases/packageAnnotations/a/a/ShouldBeDeleted.kt
  66. +9 −0 src/test/kotlin/cases/packageAnnotations/a/b/ShouldBeDeleted.kt
  67. +9 −0 src/test/kotlin/cases/packageAnnotations/a/package-info.java
  68. +9 −0 src/test/kotlin/cases/packageAnnotations/b/a/ShouldBeDeleted.kt
  69. +9 −0 src/test/kotlin/cases/packageAnnotations/b/a/package-info.java
  70. +9 −0 src/test/kotlin/cases/packageAnnotations/b/b/ShouldRemainPublic.kt
  71. +6 −0 src/test/kotlin/cases/packageAnnotations/b/b/package-info.java
  72. +14 −0 src/test/kotlin/cases/packageAnnotations/b/c/shouldRemainPublic.kt
  73. +8 −0 src/test/kotlin/cases/packageAnnotations/packageAnnotations.txt
  74. +1 −0 src/test/kotlin/cases/whenMappings/whenMappings.txt
  75. +14 −4 src/test/kotlin/tests/CasesPublicAPITest.kt
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![Kotlin Alpha](https://kotl.in/badges/alpha.svg)](https://kotlinlang.org/docs/components-stability.html)
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![Apache license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/binary-compatibility-validator)](https://central.sonatype.com/search?q=org.jetbrains.kotlinx.binary-compatibility-validator)
[![License](https://img.shields.io/github/license/Kotlin/binary-compatibility-validator)](LICENSE.TXT)

# Binary compatibility validator

@@ -27,15 +28,15 @@ Binary compatibility validator is a Gradle plugin that can be added to your buil
- in `build.gradle.kts`
```kotlin
plugins {
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2"
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.14.0"
}
```

- in `build.gradle`

```groovy
plugins {
id 'org.jetbrains.kotlinx.binary-compatibility-validator' version '0.13.2'
id 'org.jetbrains.kotlinx.binary-compatibility-validator' version '0.14.0'
}
```

@@ -88,6 +89,11 @@ apiValidation {
* Flag to programmatically disable compatibility validator
*/
validationDisabled = true
/**
* A path to a subdirectory inside the project root directory where dumps should be stored.
*/
apiDumpDirectory = "api"
}
```

@@ -122,6 +128,11 @@ apiValidation {
* Flag to programmatically disable compatibility validator
*/
validationDisabled = false

/**
* A path to a subdirectory inside the project root directory where dumps should be stored.
*/
apiDumpDirectory = "aux/validation"
}
```

81 changes: 81 additions & 0 deletions api/binary-compatibility-validator.api
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
public class kotlinx/validation/ApiValidationExtension {
public fun <init> ()V
public final fun getAdditionalSourceSets ()Ljava/util/Set;
public final fun getApiDumpDirectory ()Ljava/lang/String;
public final fun getIgnoredClasses ()Ljava/util/Set;
public final fun getIgnoredPackages ()Ljava/util/Set;
public final fun getIgnoredProjects ()Ljava/util/Set;
public final fun getNonPublicMarkers ()Ljava/util/Set;
public final fun getPublicClasses ()Ljava/util/Set;
public final fun getPublicMarkers ()Ljava/util/Set;
public final fun getPublicPackages ()Ljava/util/Set;
public final fun getValidationDisabled ()Z
public final fun setAdditionalSourceSets (Ljava/util/Set;)V
public final fun setApiDumpDirectory (Ljava/lang/String;)V
public final fun setIgnoredClasses (Ljava/util/Set;)V
public final fun setIgnoredPackages (Ljava/util/Set;)V
public final fun setIgnoredProjects (Ljava/util/Set;)V
public final fun setNonPublicMarkers (Ljava/util/Set;)V
public final fun setPublicClasses (Ljava/util/Set;)V
public final fun setPublicMarkers (Ljava/util/Set;)V
public final fun setPublicPackages (Ljava/util/Set;)V
public final fun setValidationDisabled (Z)V
}

public final class kotlinx/validation/BinaryCompatibilityValidatorPlugin : org/gradle/api/Plugin {
public fun <init> ()V
public synthetic fun apply (Ljava/lang/Object;)V
public fun apply (Lorg/gradle/api/Project;)V
}

public abstract interface annotation class kotlinx/validation/ExternalApi : java/lang/annotation/Annotation {
}

public class kotlinx/validation/KotlinApiBuildTask : org/gradle/api/DefaultTask {
public field inputDependencies Lorg/gradle/api/file/FileCollection;
public field outputApiDir Ljava/io/File;
public fun <init> ()V
public final fun getInputClassesDirs ()Lorg/gradle/api/file/FileCollection;
public final fun getInputDependencies ()Lorg/gradle/api/file/FileCollection;
public final fun getInputJar ()Lorg/gradle/api/file/RegularFileProperty;
public final fun getOutputApiDir ()Ljava/io/File;
public final fun setInputClassesDirs (Lorg/gradle/api/file/FileCollection;)V
public final fun setInputDependencies (Lorg/gradle/api/file/FileCollection;)V
public final fun setOutputApiDir (Ljava/io/File;)V
}

public class kotlinx/validation/KotlinApiCompareTask : org/gradle/api/DefaultTask {
public field apiBuildDir Ljava/io/File;
public fun <init> (Lorg/gradle/api/model/ObjectFactory;)V
public final fun getApiBuildDir ()Ljava/io/File;
public final fun getDummyOutputFile ()Ljava/io/File;
public final fun getNonExistingProjectApiDir ()Ljava/lang/String;
public final fun getProjectApiDir ()Ljava/io/File;
public final fun setApiBuildDir (Ljava/io/File;)V
public final fun setNonExistingProjectApiDir (Ljava/lang/String;)V
public final fun setProjectApiDir (Ljava/io/File;)V
}

public final class kotlinx/validation/api/ClassBinarySignature {
public final fun copy (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Lkotlinx/validation/api/AccessFlags;ZZLjava/util/List;)Lkotlinx/validation/api/ClassBinarySignature;
public static synthetic fun copy$default (Lkotlinx/validation/api/ClassBinarySignature;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/util/List;Lkotlinx/validation/api/AccessFlags;ZZLjava/util/List;ILjava/lang/Object;)Lkotlinx/validation/api/ClassBinarySignature;
public fun equals (Ljava/lang/Object;)Z
public fun hashCode ()I
public fun toString ()Ljava/lang/String;
}

public final class kotlinx/validation/api/KotlinSignaturesLoadingKt {
public static final fun dump (Ljava/util/List;)Ljava/io/PrintStream;
public static final fun dump (Ljava/util/List;Ljava/lang/Appendable;)Ljava/lang/Appendable;
public static final fun extractAnnotatedPackages (Ljava/util/List;Ljava/util/Set;)Ljava/util/List;
public static final fun filterOutAnnotated (Ljava/util/List;Ljava/util/Set;)Ljava/util/List;
public static final fun filterOutNonPublic (Ljava/util/List;Ljava/util/Collection;Ljava/util/Collection;)Ljava/util/List;
public static synthetic fun filterOutNonPublic$default (Ljava/util/List;Ljava/util/Collection;Ljava/util/Collection;ILjava/lang/Object;)Ljava/util/List;
public static final fun loadApiFromJvmClasses (Ljava/util/jar/JarFile;Lkotlin/jvm/functions/Function1;)Ljava/util/List;
public static final fun loadApiFromJvmClasses (Lkotlin/sequences/Sequence;Lkotlin/jvm/functions/Function1;)Ljava/util/List;
public static synthetic fun loadApiFromJvmClasses$default (Ljava/util/jar/JarFile;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Ljava/util/List;
public static synthetic fun loadApiFromJvmClasses$default (Lkotlin/sequences/Sequence;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)Ljava/util/List;
public static final fun retainExplicitlyIncludedIfDeclared (Ljava/util/List;Ljava/util/Collection;Ljava/util/Collection;Ljava/util/Collection;)Ljava/util/List;
public static synthetic fun retainExplicitlyIncludedIfDeclared$default (Ljava/util/List;Ljava/util/Collection;Ljava/util/Collection;Ljava/util/Collection;ILjava/lang/Object;)Ljava/util/List;
}

Loading