arrow-meta
arrow-meta copied to clipboard
Update all dependencies
This PR contains the following updates:
| Package | Type | Update | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|
| actions/checkout | action | patch | v3.0.0 -> v3.0.2 |
||||
| actions/setup-java | action | minor | v3.0.0 -> v3.4.0 |
||||
| actions/upload-artifact | action | minor | v3.0.0 -> v3.1.0 |
||||
| gradle/gradle-build-action | action | minor | v2.1.5 -> v2.2.1 |
||||
| stefanzweifel/git-auto-commit-action | action | patch | v4.14.0 -> v4.14.1 |
||||
| io.gitlab.arturbosch.detekt | plugin | minor | 1.19.0 -> 1.20.0 |
||||
| org.jetbrains.kotlinx.binary-compatibility-validator | plugin | minor | 0.8.0 -> 0.10.1 |
||||
| com.github.tschuchortdev:kotlin-compile-testing-ksp | patch | 1.4.8 -> 1.4.9 |
|||||
| com.github.tschuchortdev:kotlin-compile-testing | patch | 1.4.8 -> 1.4.9 |
|||||
| org.javassist:javassist (source) | minor | 3.28.0-GA -> 3.29.0-GA |
|||||
| io.github.classgraph:classgraph | patch | 4.8.143 -> 4.8.147 |
|||||
| org.assertj:assertj-core (source) | minor | 3.22.0 -> 3.23.1 |
|||||
| io.arrow-kt:arrow-analysis-types | patch | 2.0.2-SNAPSHOT -> 2.0.2 |
|||||
| io.arrow-kt.arrow-gradle-config-versioning | plugin | patch | 0.10.0 -> 0.10.2 |
||||
| io.arrow-kt.arrow-gradle-config-publish | plugin | patch | 0.10.0 -> 0.10.2 |
||||
| io.arrow-kt.arrow-gradle-config-nexus | plugin | patch | 0.10.0 -> 0.10.2 |
||||
| io.arrow-kt.arrow-gradle-config-kotlin | plugin | patch | 0.10.0 -> 0.10.2 |
||||
| io.arrow-kt.arrow-gradle-config-formatter | plugin | patch | 0.10.0 -> 0.10.2 |
||||
| io.arrow-kt:arrow-optics | minor | 1.0.1 -> 1.1.2 |
|||||
| io.arrow-kt:arrow-core | minor | 1.0.1 -> 1.1.2 |
|||||
| io.arrow-kt:arrow-annotations | minor | 1.0.1 -> 1.1.2 |
Release Notes
actions/setup-java
v3.4.0
In scope of this release we introduce such changes as:
- Add Java 11.0.15 to Microsoft Build of OpenJDK: https://github.com/actions/setup-java/pull/331
- Update versions for Java 17 to 17.0.3 and add aarch64 support to Java 11 for Microsoft Build of OpenJDK: https://github.com/actions/setup-java/pull/342
- Fix support for
Zulu OpenJDKarm64 architecture: https://github.com/actions/setup-java/pull/339 Sbt-cache: don't cache some files: https://github.com/actions/setup-java/pull/332
v3.3.0
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
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
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
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
minimistfrom1.2.5to1.2.6. - updated
actions/cachedependency to 2.0.0 version
actions/upload-artifact
v3.1.0
What's Changed
- Bump @actions/artifact to v1.1.0 (https://github.com/actions/upload-artifact/pull/327)
- Adds checksum headers on artifact upload (https://github.com/actions/toolkit/pull/1095) (https://github.com/actions/toolkit/pull/1063)
gradle/gradle-build-action
v2.2.1
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 unknownmessage 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
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-onlyfor non-default branches (see0a36ca9) - 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
- Use GHA Job Summary to summarize Gradle build results by @bigdaz in https://github.com/gradle/gradle-build-action/pull/282
- Various improvements to CI workflows by @bigdaz in https://github.com/gradle/gradle-build-action/pull/294
- Extract init scripts and state tracking by @bigdaz in https://github.com/gradle/gradle-build-action/pull/297
- Add improved Job Summary with build results and caching report by @bigdaz in https://github.com/gradle/gradle-build-action/pull/298
- Fix save/restore of configuration-cache by @bigdaz in https://github.com/gradle/gradle-build-action/pull/302
- Improve layout and formatting of Job Summary by @bigdaz in https://github.com/gradle/gradle-build-action/pull/303
- Default to
cache-read-onlyfor non-default branches by @bigdaz in https://github.com/gradle/gradle-build-action/pull/149 - Improve init scripts and add test coverage by @bigdaz in https://github.com/gradle/gradle-build-action/pull/304
- Allow daemons to run across workflow steps by @bigdaz in https://github.com/gradle/gradle-build-action/pull/305
- Use java to determine user.home dir by @bigdaz in https://github.com/gradle/gradle-build-action/pull/306
Full Changelog: https://github.com/gradle/gradle-build-action/compare/v2.1.7...v2.2.0
v2.1.7
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
wrapperfolder of Gradle User Home, avoiding re-download of wrapper distributions.
v2.1.6
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-clientand@actions/tool-cache.
Full changelog: https://github.com/gradle/gradle-build-action/compare/v2.1.5...v2.1.6
Kotlin/binary-compatibility-validator
v0.10.1
- Proper handling of marker annotations on functions with default parameters (#58). Thanks, @martinbonnin!
v0.10.0
- 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
- Support of synthetic annotations (#71).
filterOutAnnotatedis now part ofExternalApi(#75)..apifile 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.metadatais updated to 0.4.2.
arrow-kt/arrow
v1.1.2
What's Changed
- Update all dependencies to v1.6.21-1.0.5 (#2708) by @renovate-bot
Full Changelog: https://github.com/arrow-kt/arrow/compare/1.1.0...1.1.2
v1.1.0
What's Changed
- Define Dsl as public (#2706) by @i-walker
- Update all dependencies (#2705) by @renovate-bot
- Update link to Arrow Analysis documentation (#2701) by @franciscodr
- Update all dependencies (#2703) by @renovate-bot
- Update plugin dokka to v1.6.20 (#2702) by @renovate-bot
- Update stefanzweifel/git-auto-commit-action action to v4.14.1 (#2700) by @renovate-bot
- Update all dependencies (#2699) by @renovate-bot
- Update all dependencies (#2696) by @renovate-bot
- Update (#2698) by @i-walker
- Update libs.versions.toml (#2697) by @i-walker
- Fix Either#isNotEmpty()'s KDoc sample (#2694) by @ChristianGarcia
- Update gradle/gradle-build-action action to v2.1.5 (#2695) by @renovate-bot
- Update all dependencies (#2665) by @renovate-bot
- Rename traverseX and sequenceX for Iterable (#2692) by @i-walker
- Rename Sequence sequenceX, traverseX and deprecate Sequence.some (#2686) by @i-walker
- Deprecate combineAll in favour of fold (#2687) by @i-walker
- rm snapshot and update Kotlin label (#2690) by @i-walker
- Resource tap deprecation (#2684) by @i-walker
- Update Set up Documentation (#2685) by @i-walker
- Fix TOC (#2688) by @i-walker
- Generate optics based on targets or all (#2683) by @i-walker
- Schedule.repeatAsFlow (#2676) by @i-walker
- File name generation fix (#2681) by @i-walker
- Update all dependencies (major) (#2673) by @renovate-bot
- fix imports for ksp plugin (#2678) by @i-walker
- add Nullable proposal (#2675) by @i-walker
- Resource.asFlow (#2677) by @i-walker
- remove design doc of Effect (#2674) by @i-walker
- Fix typos reorg resource computation block (#2671) by @i-walker
- deprecate signatures in computations and add Result for continuations (#2669) by @i-walker
- Fix bug in the transaction example (#2667) by @SaberCon
- deprecate arrow.continuation (#2672) by @i-walker
- fix sitemap titles (#2670) by @i-walker
- Transfer Cont from @nomisrev to arrow (#2661) by @i-walker
- Non throwing Retrofit Either adapter (#2621) by @lukaszkalnik
- Retrofit adapter: allow null response body for methods returning Unit (#2625) by @lukaszkalnik
- Fix broken build main Optics Reflect (#2666) by @nomisRev
- Update documentation links in README (#2664) by @fo2rist
- Optics based on kotlin.reflect (#2612) by @serras
- [Optics] Optional getter (#2611) by @serras
- Update all dependencies (#2663) by @renovate-bot
- Fix link to /patterns/error_handling/ (#2627) by @IlyaPomaskin
- Update all dependencies (#2659) by @renovate-bot
- Update gradle/gradle-build-action action to v2.1.1 (#2653) by @renovate-bot
- [Optics KSP] Update docs to talk about IDEs (#2655) by @serras
- Use first, .. instead of a,.. (#2654) by @nomisRev
- Update README.md (#2631) by @i-walker
- CU-23dm3ye support maven publication (#2652) by @i-walker
- Update arrow gradle version (#2651) by @i-walker
- Move Arrow Optics KSP to main/test hierarchy (#2649) by @serras
- Update libs.versions.toml (#2648) by @i-walker
- Link Analysis from home page (#2595) by @serras
- Clean up README after gradle upgrade (#2642) by @felixdivo
- Update plugin kotest-multiplatform to v5.1.0 (#2645) by @renovate-bot
- Update libs.versions.toml (#2644) by @i-walker
- Update all dependencies to v5.1.0 (#2643) by @renovate-bot
- revert ksp plugin to jvm only (#2640) by @i-walker
- update arrow gradle (#2639) by @i-walker
- Update all dependencies (#2638) by @renovate-bot
- fix typo comment of circuitbreaker (#2637) by larryjung
- Fixes a few typos on the Fx docs (#2620) by @legzo
- Update contributing guide with Knit (#2634) by @lukaszkalnik
- [Optics] Show error for generic classes in KSP plug-in (#2636) by @serras
- Pass Arrow version to publish_doc job (#2633) by @franciscodr
- Fix 404 error in the Core library documentation (#2623) by @devmarkpro
- Fix Retrofit adapter test configuration (#2624) by @lukaszkalnik
- Update all dependencies (#2628) by @renovate-bot
- run on windows only windows test (#2630) by @i-walker
- Update CONTRIBUTING.md with the new build guide (#2600) by @lukaszkalnik
- Bump Arrow Gradle Config to 0.6.1-rc.4 by @nomisRev
- [Github Action] Run build on all platforms (#2626) by @nomisRev
- Disable Gradle scan, and Gradle daemon by @nomisRev
- Update all dependencies (#2617) by @renovate-bot
- Disable ksp, and ksp test in Arrow Optics by @nomisRev
- Use gradle action everywhere, revery permSize, and add --full-stacktrace everywhere by @nomisRev
- Make KSP plugin a JVM module by @nomisRev
- Use gradle action, and add --full-stacktrace by @nomisRev
- Bump to arrow gradle config rc3 by @nomisRev
- Revert back to ./gradlew by @nomisRev
- Fix publish file by @nomisRev
- Use gradle action for publish, and increase timeout time by @nomisRev
- Setup Java publish.yml by @nomisRev
- Update publish workflow by @nomisRev
- Run ./gradlew before get-arrow-version by @nomisRev
- Update publish.yml by @nomisRev
- Add lib_version (#2616) by @nomisRev
- Bump Gradle Config to 0.6.1-RC.1 (#2615) by @nomisRev
- Update all dependencies (#2566) by @renovate-bot
- Disable parallel gradle (#2614) by @nomisRev
- Fix Gradle an existing connection was forcibly closed by the remote host (#2610) by @nomisRev
- Update publish gradle opts, and remove gradle cache from tag workflows by @nomisRev
- Remove gradle cache from publish workflow by @nomisRev
- Fix Windows env settings in publish workflow (#2609) by @raulraja
- Fix
publishandpull_requestworkflows (#2608) by @JavierSegoviaCordoba - Change Java memory settings by @JavierSegoviaCordoba
- Add Java and Gradle settings for both generate tag workflows by @JavierSegoviaCordoba
- Add
generate-alpha-tagby @JavierSegoviaCordoba - Change
tagsregex by @JavierSegoviaCordoba - Merge remote-tracking branch 'origin/main' into rr-js-add-versioning-plugin by @JavierSegoviaCordoba
- Re-organize Optics docs (#2583) by @serras
- Fixing documentation workflow (#2594) by @franciscodr
- Upgrade to kotlinx-coroutines 1.6.0 (#2606) by @serras
- Job to update the API files (#2605) by @serras
- Rename arrow-optics-ksp to arrow-optics-ksp-plugin (#2604) by @serras
- Remove legacy Meta, bring Optics KSP (#2599) by @nomisRev
- docs(Either): describe the
allmethod (#2551) by @codymikol - Make sure listHead set works properly (#2589) by @lenguyenthanh
- Code block style (#2596) by @israelperezglez
- Add
JAVA_OPTSandGRADLE_OPTStopublishandpull_requestby @JavierSegoviaCordoba - Refactor
publishandpull-requestworkflows by @JavierSegoviaCordoba - Fix tag regex in
publishworkflow by @JavierSegoviaCordoba - Refactor
publish.ymlworkflow and addgenerate-tagworkflow by @JavierSegoviaCordoba - Refactor
publish.ymlworkflow by @JavierSegoviaCordoba - Add
vcs.xmlby @JavierSegoviaCordoba - versioning plugin by @raulraja
- Remove base directory for gradle.properties file (#2585) by @franciscodr
- Simplify Gradle layout, + KNIT, - ANK and fix site code fences (#2584) by @raulraja
- Fix bug cancellation parMap (#2579) by @nomisRev
- Resource computation block (#2571) by @nomisRev
- make Semigroup a fun interface (#2569) by @brezinajn
- Update all dependencies (major) (#2567) by @renovate-bot
- Configure Renovate (#2533) by @renovate-bot
New Contributors
- @brezinajn made their first contribution in https://github.com/arrow-kt/arrow/pull/2569
- @devmarkpro made their first contribution in https://github.com/arrow-kt/arrow/pull/2623
- @IlyaPomaskin made their first contribution in https://github.com/arrow-kt/arrow/pull/2627
- @felixdivo made their first contribution in https://github.com/arrow-kt/arrow/pull/2642
- @fo2rist made their first contribution in https://github.com/arrow-kt/arrow/pull/2664
- @SaberCon made their first contribution in https://github.com/arrow-kt/arrow/pull/2667
- @ChristianGarcia made their first contribution in https://github.com/arrow-kt/arrow/pull/2694
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.
Task linked: CU-23dm3ye mpp publication with maven support
⚠ 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