arrow-meta icon indicating copy to clipboard operation
arrow-meta copied to clipboard

Update all dependencies

Open renovate[bot] opened this issue 3 years ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action patch v3.0.0 -> v3.0.2 age adoption passing confidence
actions/setup-java action minor v3.0.0 -> v3.4.0 age adoption passing confidence
actions/upload-artifact action minor v3.0.0 -> v3.1.0 age adoption passing confidence
gradle/gradle-build-action action minor v2.1.5 -> v2.2.1 age adoption passing confidence
stefanzweifel/git-auto-commit-action action patch v4.14.0 -> v4.14.1 age adoption passing confidence
io.gitlab.arturbosch.detekt plugin minor 1.19.0 -> 1.20.0 age adoption passing confidence
org.jetbrains.kotlinx.binary-compatibility-validator plugin minor 0.8.0 -> 0.10.1 age adoption passing confidence
com.github.tschuchortdev:kotlin-compile-testing-ksp patch 1.4.8 -> 1.4.9 age adoption passing confidence
com.github.tschuchortdev:kotlin-compile-testing patch 1.4.8 -> 1.4.9 age adoption passing confidence
org.javassist:javassist (source) minor 3.28.0-GA -> 3.29.0-GA age adoption passing confidence
io.github.classgraph:classgraph patch 4.8.143 -> 4.8.147 age adoption passing confidence
org.assertj:assertj-core (source) minor 3.22.0 -> 3.23.1 age adoption passing confidence
io.arrow-kt:arrow-analysis-types patch 2.0.2-SNAPSHOT -> 2.0.2 age adoption passing confidence
io.arrow-kt.arrow-gradle-config-versioning plugin patch 0.10.0 -> 0.10.2 age adoption passing confidence
io.arrow-kt.arrow-gradle-config-publish plugin patch 0.10.0 -> 0.10.2 age adoption passing confidence
io.arrow-kt.arrow-gradle-config-nexus plugin patch 0.10.0 -> 0.10.2 age adoption passing confidence
io.arrow-kt.arrow-gradle-config-kotlin plugin patch 0.10.0 -> 0.10.2 age adoption passing confidence
io.arrow-kt.arrow-gradle-config-formatter plugin patch 0.10.0 -> 0.10.2 age adoption passing confidence
io.arrow-kt:arrow-optics minor 1.0.1 -> 1.1.2 age adoption passing confidence
io.arrow-kt:arrow-core minor 1.0.1 -> 1.1.2 age adoption passing confidence
io.arrow-kt:arrow-annotations minor 1.0.1 -> 1.1.2 age adoption passing confidence

Release Notes

actions/checkout

v3.0.2

Compare Source

v3.0.1

Compare Source

actions/setup-java

v3.4.0

Compare Source

In scope of this release we introduce such changes as:

v3.3.0

Compare Source

In scope of this pull request we add support for Amazon Corretto Build of OpenJDK (https://github.com/actions/setup-java/pull/312).

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

Currently, the following distributions are supported:

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

v3.2.0

Compare Source

This release introduces dependency caching support for sbt (https://github.com/actions/setup-java/pull/302).

Caching sbt dependencies
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
  with:
    distribution: 'temurin'
    java-version: '11'
    cache: 'sbt'
- name: Build with SBT
  run: sbt package

v3.1.1

Compare Source

This release introduces new output cache-hit (https://github.com/actions/setup-java/pull/275) and update of actions/cache dependency to 2.0.2 (https://github.com/actions/setup-java/pull/317)

Add "cache-hit" output

The cache-hit output contains boolean value indicating that an exact match was found for the key. It shows that the action uses already existing cache or not. The output is available only if cache is enabled.

Update actions/cache to 2.0.2

We updated actions/cache package as the new version contains fixes related to GHES 3.5 (https://github.com/actions/setup-java/pull/317)

v3.1.0

Compare Source

In scope of this release we added support for caching from GHES 3.5 and fixed download issue for files > 2GB during restore.

Updated dependencies:
  • bumped minimist from 1.2.5 to 1.2.6.
  • updated actions/cache dependency to 2.0.0 version
actions/upload-artifact

v3.1.0

Compare Source

What's Changed

gradle/gradle-build-action

v2.2.1

Compare Source

What's fixed

This release fixes some issues that were exposed by the v2.2.0 release, as well as improving the content and layout of the Job Summary.

  • Don't try to generate Job Summary when functionality is not available (GitHub Enterprise): #​319
  • Fix warning when attempting to delete non-existent file: #​308
  • Fix Entry not saved: reason unknown message in Job Summary cache details: #​309
  • Report failure to publish build scan in Job Summary: #​326

Full Changelog: https://github.com/gradle/gradle-build-action/compare/v2.2.0...v2.2.1

v2.2.0

Compare Source

Summary

This release brings a new Job Summary report, as well as numerous improvements and bug fixes:

  • Capture all Gradle build executions for a job and write them to the GitHub Actions Job Summary.
  • Default to cache-read-only for non-default branches (see 0a36ca9)
  • Allow the Gradle Daemon to run across build steps in a workflow Job (see #​113)
Issues resolved

https://github.com/gradle/gradle-build-action/milestone/7?closed=1

What's Changed

Full Changelog: https://github.com/gradle/gradle-build-action/compare/v2.1.7...v2.2.0

v2.1.7

Compare Source

Fixes #​293, which prevented v2.1.6 from allowing Gradle to re-use previously downloaded wrapper distributions. This slowed down build executions and could result in build flakiness when the wrapper zip failed to download.

  • [FIX] Retain more items in the wrapper folder of Gradle User Home, avoiding re-download of wrapper distributions.

v2.1.6

Compare Source

This release contains an fix for changed behaviour in Gradle 7.6, as well as numerous library upgrades.

Earlier versions of the gradle-build-action were saving and restoring the downloaded Gradle wrapper zip file as part of caching the Gradle User Home. This will no longer work with Gradle 7.6, as the wrapper zip is now removed after expanding. This release of gradle-build-action contains a fix for this change in Gradle 7.6. Using an older version of the GitHub action with Gradle 7.6 will likely result in the wrapper being downloaded on every GitHub actions invocation.

What's Changed

  • [FIX] Save/restore exploded Gradle dist rather than zip
  • [FIX] Update to the latest versions of @actions/core, @actions/cache, @actions/github, @actions/http-client and @actions/tool-cache.

Full changelog: https://github.com/gradle/gradle-build-action/compare/v2.1.5...v2.1.6

stefanzweifel/git-auto-commit-action

v4.14.1

Compare Source

Kotlin/binary-compatibility-validator

v0.10.1

Compare Source

  • Proper handling of marker annotations on functions with default parameters (#​58). Thanks, @​martinbonnin!

v0.10.0

Compare Source

  • Stdlib is excluded from transitive dependencies and switched to Gradle auto-provided version (#​80, #​82). Thanks to @​martinbonnin!
  • Getters and setters are properly excluded from public API when either field or property-based annotation marker is present (#​36). Also thanks to @​martinbonnin!
  • Files are now looked up in a case-insensitive manner (#​76)

v0.9.0

Compare Source

  • Support of synthetic annotations (#​71).
  • filterOutAnnotated is now part of ExternalApi (#​75).
  • .api file checks are now all case-insensitive to provide seamless experience between case-sensitive and case-insensitive OSes as well as between Gradle versions (#​76).
  • Kotlin is updated to 1.6.0.
  • kotlinx.metadata is updated to 0.4.2.
tschuchortdev/kotlin-compile-testing

v1.4.9

Compare Source

arrow-kt/arrow-gradle-config

v0.10.2

Compare Source

v0.10.1

Compare Source

arrow-kt/arrow

v1.1.2

Compare Source

What's Changed

Full Changelog: https://github.com/arrow-kt/arrow/compare/1.1.0...1.1.2

v1.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/arrow-kt/arrow/compare/1.0.1...1.1.0


Configuration

📅 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.

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


  • [ ] If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Apr 01 '22 12:04 renovate[bot]

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: docs/Gemfile.lock
installing v2 tool ruby v3.2.1
linking tool ruby v3.2.1
ruby 3.2.1 (2023-02-08 revision 31819e82c8) [x86_64-linux]
gem 3.4.6
RubyGems Environment:
  - RUBYGEMS VERSION: 3.4.6
  - RUBY VERSION: 3.2.1 (2023-02-08 patchlevel 31) [x86_64-linux]
  - INSTALLATION DIRECTORY: /tmp/renovate-cache/others/bundler
  - USER INSTALLATION DIRECTORY: /home/ubuntu/.local/share/gem/ruby/3.2.0
  - RUBY EXECUTABLE: /opt/buildpack/tools/ruby/3.2.1/bin/ruby
  - GIT EXECUTABLE: /usr/bin/git
  - EXECUTABLE DIRECTORY: /tmp/renovate-cache/others/bundler/bin
  - SPEC CACHE DIRECTORY: /home/ubuntu/.local/share/gem/specs
  - SYSTEM CONFIGURATION DIRECTORY: /usr/local/ruby/3.2.1/etc
  - RUBYGEMS PLATFORMS:
     - ruby
     - x86_64-linux
  - GEM PATHS:
     - /tmp/renovate-cache/others/bundler
     - /home/ubuntu/.local/share/gem/ruby/3.2.0
     - /opt/buildpack/tools/ruby/3.2.1/lib/ruby/gems/3.2.0
  - GEM CONFIGURATION:
     - :update_sources => true
     - :verbose => true
     - :backtrace => false
     - :bulk_threshold => 1000
     - "gem" => "--bindir /home/ubuntu/bin --no-document"
     - :benchmark => false
  - REMOTE SOURCES:
     - https://rubygems.org/
  - SHELL PATH:
     - /home/ubuntu/.cargo/bin
     - /home/ubuntu/.local/bin
     - /go/bin
     - /home/ubuntu/bin
     - /home/ubuntu/.cargo/bin
     - /home/ubuntu/.local/bin
     - /go/bin
     - /home/ubuntu/bin
     - /home/ubuntu/.cargo/bin
     - /home/ubuntu/.local/bin
     - /go/bin
     - /home/ubuntu/bin
     - /home/ubuntu/bin
     - /home/ubuntu/.cargo/bin
     - /home/ubuntu/.local/bin
     - /go/bin
     - /home/ubuntu/bin
     - /home/ubuntu/bin
     - /usr/local/sbin
     - /usr/local/bin
     - /usr/sbin
     - /usr/bin
     - /sbin
     - /bin
Installed v2 /usr/local/buildpack/tools/v2/ruby.sh in 9 seconds
skip cleanup, not a docker build: 7ca5074e5463
installing v2 tool bundler v2.4.7
linking tool bundler v2.4.7
Bundler version 2.4.7
Installed v2 /usr/local/buildpack/tools/v2/bundler.sh in 2 seconds
skip cleanup, not a docker build: 7ca5074e5463
ruby 3.2.1 (2023-02-08 revision 31819e82c8) [x86_64-linux]
Fetching gem metadata from https://rubygems.org/...........

Could not find gem 'jekyll (~> 4.3.0)' with platforms 'x86_64-darwin-21',
'x86_64-linux' in rubygems repository https://rubygems.org/ or installed
locally.

The source contains the following gems matching 'jekyll (~> 4.3.0)':
  * jekyll-4.3.0
  * jekyll-4.3.1
  * jekyll-4.3.2

renovate[bot] avatar Feb 24 '23 18:02 renovate[bot]