Skip to content

Update minor#9

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor
Open

Update minor#9
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor

Conversation

@renovate

@renovate renovate Bot commented Aug 19, 2022

Copy link
Copy Markdown

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/setup-java action minor v3.4.1v3.14.1 age confidence
gradle (source) minor 7.5.17.6.6 age confidence
reactivecircus/android-emulator-runner action minor v2.25.0v2.38.0 age confidence
androidx.customview:customview-poolingcontainer (source) dependencies minor 1.0.0-alpha011.1.0 age confidence
com.android.tools:desugar_jdk_libs dependencies minor 1.1.51.2.3 age confidence
androidx.test.espresso:espresso-core dependencies minor 3.4.03.7.0 age confidence
org.robolectric:robolectric (source) dependencies minor 4.8.24.16.1 age confidence
androidx.lifecycle:lifecycle-viewmodel-compose (source) dependencies minor 2.5.12.11.0 age confidence
androidx.test:runner dependencies minor 1.4.01.7.0 age confidence
androidx.activity:activity-compose (source) dependencies minor 1.4.01.13.0 age confidence
com.squareup.okhttp3:mockwebserver (source) dependencies minor 4.9.34.12.0 age confidence
androidx.hilt:hilt-navigation-compose (source) dependencies minor 1.0.01.4.0 age confidence
org.jetbrains.kotlin.jvm plugin minor 1.7.101.9.25 age confidence
io.mockk:mockk-android (source) dependencies minor 1.10.01.14.11 age confidence
io.mockk:mockk (source) dependencies minor 1.10.01.14.11 age confidence
androidx.navigation:navigation-compose (source) dependencies minor 2.5.12.9.8 age confidence
org.jetbrains.kotlin.android plugin minor 1.7.101.9.25 age confidence
com.android.library (source) plugin minor 7.2.27.4.2 age confidence
com.google.truth:truth dependencies minor 1.1.31.4.5 age confidence
com.google.dagger:hilt-android-gradle-plugin dependencies minor 2.38.12.60.1 age confidence
org.jetbrains.kotlinx:kotlinx-coroutines-test dependencies minor 1.5.11.11.0 age confidence
com.squareup.okhttp3:logging-interceptor (source) dependencies minor 4.9.34.12.0 age confidence
com.squareup.okhttp3:okhttp (source) dependencies minor 4.9.34.12.0 age confidence
androidx.test.ext:junit dependencies minor 1.1.31.3.0 age confidence
composeOptions (source) dependencies minor 1.3.01.5.15 age confidence
androidx.compose.compiler:compiler (source) dependencies minor 1.3.01.5.15 age confidence
com.android.tools.build:gradle (source) dependencies minor 7.2.27.4.2 age confidence
com.squareup.retrofit2:converter-moshi dependencies minor 2.9.02.12.0 age confidence
com.squareup.retrofit2:retrofit dependencies minor 2.9.02.12.0 age confidence
androidx.compose.ui:ui-test-junit4 (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.ui:ui-test-manifest (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.ui:ui-tooling (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.runtime:runtime (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.ui:ui-tooling-preview (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.ui:ui (source) dependencies minor 1.2.11.11.4 age confidence
androidx.compose.material:material (source) dependencies minor 1.2.11.11.4 age confidence
androidx.room:room-ktx (source) dependencies minor 2.4.32.8.4 age confidence
androidx.room:room-compiler (source) dependencies minor 2.4.32.8.4 age confidence
androidx.room:room-runtime (source) dependencies minor 2.4.32.8.4 age confidence
org.jetbrains.kotlin:kotlin-gradle-plugin (source) dependencies minor 1.7.101.9.25 age confidence
io.coil-kt:coil-compose dependencies minor 2.2.02.7.0 age confidence
com.google.dagger:hilt-android-compiler dependencies minor 2.43.22.60.1 age confidence
com.google.dagger:hilt-android dependencies minor 2.43.22.60.1 age confidence
org.jetbrains.kotlinx:kotlinx-coroutines-core dependencies minor 1.6.41.11.0 age confidence

Release Notes

actions/setup-java (actions/setup-java)

v3.14.1

Compare Source

What's Changed

Full Changelog: actions/setup-java@v3...v3.14.1

v3.14.0

Compare Source

What's Changed
  • Upgrade @​action/cache to 4.0.3 by @​aparnajyothi-y in #​790.
    In scope of this release we updated actions/cache package to ensure continued support and compatibility, as older versions of the package are now deprecated. For more information please refer to the toolkit/cache.

Full Changelog: actions/setup-java@v3...v3.14.0

v3.13.0

Compare Source

What's changed

In the scope of this release, support for Dragonwell JDK was added by @​Accelerator1996 in #​532

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: 'dragonwell'
     java-version: '17'

Several inaccuracies were also fixed:

New Contributors

Full Changelog: actions/setup-java@v3...v3.13.0

v3.12.0

Compare Source

In scope of this release the following changes were made:

Bug fixes:

Feature implementations:

Resolving dependencies issues:

Infrastructure updates:

Documentation changes:

New Contributors

Full Changelog: actions/setup-java@v3...v3.12.0

v3.11.0

Compare Source

In scope of this release we added support for IBM Semeru (OpenJ9) JDK (#​289).

steps:
 - name: Checkout
   uses: actions/checkout@v3
 - name: Setup-java
   uses: actions/setup-java@v3
   with:
     distribution: semeru
     java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
semeru IBM Semeru Runtime Open Edition Link Link
oracle Oracle JDK Link Link

v3.10.0

Compare Source

In scope of this release we added support for Oracle JDK (#​450).

steps:
 - name: Checkout
  uses: actions/checkout@v3
 - name: Setup-java
  uses: actions/setup-java@v3
  with:
   distribution: oracle
   java-version: 17
Supported distributions

Currently, the following distributions are supported:

Keyword Distribution Official site License
temurin Eclipse Temurin Link Link
zulu Azul Zulu OpenJDK Link Link
adopt or adopt-hotspot AdoptOpenJDK Hotspot Link Link
adopt-openj9 AdoptOpenJDK OpenJ9 Link Link
liberica Liberica JDK Link Link
microsoft Microsoft Build of OpenJDK Link Link
corretto Amazon Corretto Build of OpenJDK Link Link
oracle Oracle JDK Link Link

v3.9.0

Compare Source

In scope of this release we add support for .java-version file (#​426). For more information about its usage please refer to the documentation.

    steps:
      - uses: actions/checkout@v3
      - name: Setup java
        uses: actions/setup-java@v3
        with:
          distribution: '<distribution>'
          java-version-file: .java-version
      - run: java HelloWorldApp.java

v3.8.0

Compare Source

In scope of this release we added logic to pass the token input through on GHES for Microsoft Build of OpenJDK (#​395) and updated minimatch dependency.

v3.6.0

Compare Source

In scope of this release we added Maven Toolchains Support and Maven Toolchains Declaration. Moreover, from this release we use os.arch to determine default architecture for runners: #​376. Besides, we made such changes as:

v3.5.1

Compare Source

In scope of this release we change logic for Microsoft Build of OpenJDK. Previously it had hard coded versions. In this release versions were moved to the separate json file. When a new version of Java is released, it can be added to this file and be used without releasing new version of the action.

v3.5.0

Compare Source

Add support for multiple jdks

In scope of this release we add support for multiple jdks. Customers can specify multiple versions of java through java-version input.

    steps:
      - uses: actions/setup-java@v3
        with:
          distribution: '<distribution>'
          java-version: |
            8
            11
            15
Besides, we added such changes as:
  • Removed restore-keys because it leaded to an unexpected growth of the cache: #​285
  • Added new files pattern for gradle cache: #​274
  • Added cache-hit output to the action.yml: #​373
gradle/gradle (gradle)

v7.6.6: 7.6.6

Compare Source

The Gradle team is excited to announce Gradle 7.6.6.

This is a patch release for 7.6. We recommend using 7.6.6 instead of 7.6.

Read the Release Notes

Upgrade instructions

Switch your build to use Gradle 7.6.6 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.6

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

v7.6.5: 7.6.5

Compare Source

The Gradle team is excited to announce Gradle 7.6.5.

This is a patch release for 7.6. We recommend using 7.6.5 instead of 7.6.

Read the Release Notes

Upgrade instructions

Switch your build to use Gradle 7.6.5 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.5

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

v7.6.4: 7.6.4

Compare Source

This is a patch release for 7.6. We recommend using 7.6.4 instead of 7.6.

Read the Release Notes

Upgrade instructions

Switch your build to use Gradle 7.6.4 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.4

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading.

For Java, Groovy, Kotlin and Android compatibility, see the full compatibility notes.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

v7.6.3: 7.6.3

Compare Source

This is a patch release for 7.6. We recommend using 7.6.3 instead of 7.6.

This release addresses two security vulnerabilities:

It also fixes the following issues:

  • #​25781 Backport finalized task performance fix to 7.6.x
  • #​25802 Backport cgroups fix to 7.6.x

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 7.6.3 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.3

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.3.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

v7.6.2: 7.6.2

Compare Source

This is a patch release for 7.6. We recommend using 7.6.2 instead of 7.6.

This release addresses two security vulnerabilities:

It also fixes the following issues:

  • #​23201 Backport dependency upgrades to 7.x
  • #​23202 Backport Scala incremental compilation fixes
  • #​23325 Backport JSoup update to resolve CVE-2022-36033
  • #​23458 Backport JUnit5 dynamic test logging bug fix
  • #​23681 Dependency graph resolution: Equivalent excludes can cause un-necessary graph mutations [backport 7.x]
  • #​23922 Backport "Use Compiler API data for incremental compilation after a failure" to 7.x
  • #​23951 Exclude rule merging: missing optimization [Backport 7.x]
  • #​24132 Extending an already resolved configuration no longer works correctly [backport 7.x]
  • #​24234 7.6.1 breaks gradle-consistent-versions
  • #​24390 Gradle 7.4 fails on multi release jar's with JDK 19 code
  • #​24439 Gradle complains about invalid tool chain - picking up the source package location - it should just ignore them [Backport]
  • #​24443 Maven artifact referenced only in dependency constraints raises IllegalStateException: Corrupt serialized resolution result [backport]
  • #​24901 Backport fix for test exception that cannot be deserialized to 7.x

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 7.6.2 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.2

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.2.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

v7.6.1: 7.6.1

Compare Source

This is a patch release for 7.6. We recommend using 7.6.1 instead of 7.6.

It fixes the following issues:

  • #​19065 Platform dependencies not possible in dependency block of test suite plugin
  • #​22688 Increased memory usage (with -p option)
  • #​22796 Building gradle itself fails during toolchain download: permission denied copying a file within .gradle/jdks
  • #​22875 Regression with 7.6: @​​pom artifact in JVM library project is no longer found
  • #​22937 Remove safe credentials reference
  • #​22973 Kotlin MPP plugin broken with Gradle 7.6 due to signature change in TestResultProcessor
  • #​23016 toolchainManagement.jvm.javaRepositories should not expose the full surface of NamedDomainObjectList
  • #​23025 Back-port toolchain related fixes to 7.6.1
  • #​23053 Auto-provisioning/auto-detection of IBM Semeru toolchains is broken with Gradle 7.6
  • #​23074 Docs: Build Lifecycle starts halfway through a point
  • #​23096 Classifiers of version catalog are discarded while copied to anothor dependency
  • #​23111 Ant closures are broken with Gradle 7.6
  • #​23178 Mention the Foojay Toolchain Resolver plugin in the Gradle manual
  • #​23215 Gradle 7.6: high memory usage (android project)
  • #​23224 Backport to 7.6.1 "Fix for Incremental compilation with modules"
  • #​23294 "Unable to make progress running work" together with --continue and failing tasks (Backport to 7.6.1)
  • #​23555 Improve Toolchain related deprecation nagging in 7.6
  • #​23894 Update EOL policy
  • #​23910 Backport trusting only full GPG keys in dependency verification [Backport 7.6.1]
  • #​23941 Typo in v7.6 docs about disabling_the_daemon
  • #​23985 Resolving of manually created configuration creates a ResolveException

Read the Release Notes

Upgrade Instructions

Switch your build to use Gradle 7.6.1 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6.1

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.1.

Reporting Problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines.
If you're not sure you're encountering a bug, please use the forum.

v7.6: 7.6

Compare Source

The Gradle team is excited to announce Gradle 7.6.

Read the Release Notes

We would like to thank the following community members for their contributions to this release of Gradle:
altrisi,
aSemy,
Ashwin Pankaj,
Aurimas,
BJ Hargrave,
Björn Kautler,
Bradley Turek,
Craig Andrews,
Daniel Lin,
David Morris,
Edmund Mok,
Frosty-J,
Gabriel Feo,
Ivan Gavrilovic,
Jendrik Johannes,
John,
Joseph Woolf,
Karl-Michael Schindler,
Konstantin Gribov,
Leonardo Brondani Schenkel,
Martin d'Anjou,
Michael Bailey,
Pete Bentley,
Rob Bavey,
Sam Snyder,
sll552,
teawithbrownsugar,
Thomas Broadley,
urdak,
Varun Sharma,
Xin Wang

Upgrade instructions

Switch your build to use Gradle 7.6 by updating your wrapper:

./gradlew wrapper --gradle-version=7.6

See the Gradle 7.x upgrade guide to learn about deprecations, breaking changes and other considerations when upgrading to Gradle 7.6.

Reporting problems

If you find a problem with this release, please file a bug on GitHub Issues adhering to our issue guidelines. If you're not sure you're encountering a bug, please use the forum.

We hope you will build happiness with Gradle, and we look forward to your feedback via Twitter or on GitHub.

reactivecircus/android-emulator-runner (reactivecircus/android-emulator-runner)

v2.38.0

Compare Source

  • Update SDK build tools to 37.0.0. - #​475

v2.37.0

Compare Source

  • Update SDK build tools to 36.0.0, update SDK command-line tools to 20.0. - #​467
  • Run action on Node 24. - #​466
  • Update Node and npm packages. - #​466

v2.36.0

Compare Source

  • Remove --abi option to better support 16-KB-based system images (#​456).

v2.35.0

Compare Source

  • Optimize config.ini updates and efficiency improvements report (#​436).
  • Fix pre-emulator-launch-script (#​439).
  • Allow google_apis_ps16k as a valid target (#​440).

v2.34.0

Compare Source

  • Allow arbitrary value for api-level such as Baklava and 35-ext15. - 428
  • Add option to specify system-image-api-level to use a system image with a different API level than the platform. - 428
  • Support automotive and desktop targets: android-automotive, android-automotive-playstore, android-desktop. - 428

v2.33.0

Compare Source

  • Fix missing AVD directory in ubuntu-24.04 runner. - 415
  • Update SDK build tools to 35.0.0, update SDK command-line tools to 16.0. - #​356
  • Stop changing owner of the SDK directory. - 406 #​409
  • Upgrade to latest npm dependencies. - #​401

v2.32.0

Compare Source

  • Add port parameter for customizing the emulator port to use. - #​383

v2.31.0

Compare Source

  • Support setting VanillaIceCream as api-level. - #​378
  • Install platforms for the specified api-level. - #​384

v2.30.1

Compare Source

v2.30.0

Compare Source

v2.29.0

Compare Source

  • Fixed emulator download URL. - #​343
  • Upgrade to latest npm dependencies. - #​347 #​355
  • Update SDK command-line tools to 11.0. - #​356
  • Update SDK buil

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 9pm,before 5am"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from 0513d4c to f097680 Compare August 24, 2022 16:51
@renovate renovate Bot changed the title fix(deps): update dependency com.android.tools:desugar_jdk_libs to v1.2.0 fix(deps): update dependency com.android.tools:desugar_jdk_libs to v1.2.2 Aug 24, 2022
@renovate renovate Bot force-pushed the renovate/minor branch from f097680 to 14511b2 Compare August 26, 2022 13:04
@renovate renovate Bot changed the title fix(deps): update dependency com.android.tools:desugar_jdk_libs to v1.2.2 chore(deps): update minor Sep 8, 2022
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from aeb246f to b84dca2 Compare September 20, 2022 06:47
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from f103564 to e245bab Compare October 18, 2022 13:23
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from a35fbdb to b01f7ef Compare March 23, 2023 15:06
@renovate renovate Bot force-pushed the renovate/minor branch 3 times, most recently from 0b5f160 to fbbde6f Compare March 31, 2023 11:55
@renovate renovate Bot force-pushed the renovate/minor branch from fbbde6f to 831c9e2 Compare May 28, 2023 09:41
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from a31092e to 5e27641 Compare June 7, 2023 23:37
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from e828940 to 79dbeda Compare June 28, 2023 22:39
@renovate renovate Bot force-pushed the renovate/minor branch 3 times, most recently from 86de67d to 867661f Compare July 6, 2023 07:34
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from 749c878 to 4c557b5 Compare July 18, 2023 18:51
@renovate renovate Bot force-pushed the renovate/minor branch 3 times, most recently from b82b0d4 to 4045081 Compare July 26, 2023 18:28
@renovate renovate Bot force-pushed the renovate/minor branch 3 times, most recently from 79310b3 to 628f0f2 Compare September 22, 2023 14:14
@renovate renovate Bot force-pushed the renovate/minor branch 3 times, most recently from 0f9c619 to 55729b7 Compare October 4, 2023 19:17
@renovate renovate Bot force-pushed the renovate/minor branch from 55729b7 to db521d3 Compare October 4, 2023 22:57
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from 067f4a6 to 919ffaa Compare October 18, 2023 17:30
@renovate renovate Bot force-pushed the renovate/minor branch 5 times, most recently from 4d23433 to 080b914 Compare November 1, 2023 19:47
@renovate renovate Bot force-pushed the renovate/minor branch 2 times, most recently from 8848cb5 to d26c7ac Compare November 29, 2023 18:55
@renovate renovate Bot force-pushed the renovate/minor branch 4 times, most recently from 36efd69 to 25fd93b Compare December 6, 2023 19:13
@renovate renovate Bot force-pushed the renovate/minor branch 5 times, most recently from 2260488 to 7c8c5ed Compare December 20, 2023 06:15
@renovate renovate Bot force-pushed the renovate/minor branch from 9260f0f to ffeece3 Compare January 7, 2024 22:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants