Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies - autoclosed #67

Closed
wants to merge 1 commit into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 11, 2022

WhiteSource 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.1.0 -> v3.3.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 patch v2.1.5 -> v2.1.6 age adoption passing confidence
stefanzweifel/git-auto-commit-action action patch v4.14.0 -> v4.14.1 age adoption passing confidence
org.jetbrains.kotlinx.binary-compatibility-validator plugin minor 0.8.0 -> 0.10.0 age adoption passing confidence
io.netty:netty-transport-native-kqueue (source) patch 4.1.75.Final -> 4.1.77.Final age adoption passing confidence
org.http4k:http4k-client-apache (source) patch 4.25.8.0 -> 4.25.16.1 age adoption passing confidence
org.http4k:http4k-core (source) patch 4.25.8.0 -> 4.25.16.1 age adoption passing confidence
io.kotest.multiplatform plugin minor 5.2.3 -> 5.3.0 age adoption passing confidence
io.kotest:kotest-runner-junit5 minor 5.2.3 -> 5.3.0 age adoption passing confidence
io.kotest:kotest-property minor 5.2.3 -> 5.3.0 age adoption passing confidence
io.kotest:kotest-framework-engine minor 5.2.3 -> 5.3.0 age adoption passing confidence
io.kotest:kotest-assertions-core minor 5.2.3 -> 5.3.0 age adoption passing confidence
org.springframework.boot:spring-boot-starter-webflux (source) minor 2.6.6 -> 2.7.0 age adoption passing confidence
org.springframework.boot:spring-boot-starter-web (source) minor 2.6.6 -> 2.7.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json patch 1.3.2 -> 1.3.3 age adoption passing confidence
org.jetbrains.dokka plugin patch 1.6.10 -> 1.6.21 age adoption passing confidence
org.jetbrains.dokka:dokka-core patch 1.6.10 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin.plugin.serialization (source) plugin patch 1.6.20 -> 1.6.21 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-fx-coroutines minor 1.0.1 -> 1.1.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
org.jetbrains.kotlin.jvm (source) plugin patch 1.6.20 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin.multiplatform (source) plugin patch 1.6.20 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin:kotlin-reflect (source) patch 1.6.20 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-js (source) patch 1.6.20 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-jdk8 (source) patch 1.6.20 -> 1.6.21 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-common (source) patch 1.6.20 -> 1.6.21 age adoption passing confidence

Release Notes

actions/checkout

v3.0.2

Compare Source

v3.0.1

Compare Source

actions/setup-java

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)

actions/upload-artifact

v3.1.0

Compare Source

What's Changed

gradle/gradle-build-action

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: gradle/gradle-build-action@v2.1.5...v2.1.6

stefanzweifel/git-auto-commit-action

v4.14.1

Compare Source

Kotlin/binary-compatibility-validator

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.
kotest/kotest

v5.3.0

spring-projects/spring-boot

v2.7.0

⭐ New Features

  • Revert to using "application/json" as default MIME type for GraphQL while remaining compatible with "application/graphql+json" #​30860
  • Allow customization of single logout in auto-configured SAML relying party registration #​30128

🐞 Bug Fixes

  • Default properties configured on SpringApplication have higher precedence than properties configured with @PropertySource #​31093
  • A failure when an instrumented WebClient records metrics causes the request to fail #​31089
  • Dependency management for Artemis is incomplete #​31079
  • Configuration properties for Statsd's buffered and step properties are missing #​31059
  • Debug logging for requests to WebFlux-based Actuator endpoints does not identify the endpoint #​30887
  • @ConditionalOnProperty meta annotation with @AliasFor does not work #​30874
  • Event handling in JobExecutionExitCodeGenerator is not thread-safe #​30846
  • Hibernate service loading logs HHH000505 warnings for ServiceConfigurationError with Gradle-built jars since 2.5.10 when using Java 11 or later #​30791
  • Cryptic startup failure with bare LOGGING_LEVEL environment variable #​30789
  • SearchStrategy argument of MethodValidationExcludeFilter byAnnotation(Class, SearchStrategy) is not used #​30787
  • spring.security.saml2.relyingparty.registration..asserting-party. properties contain unwanted hyphen in asserting-party #​30785
  • DevTools sets deprecated spring.mustache.cache property #​30774

📔 Documentation

  • Extend documentation on Datadog metrics #​30997
  • Fix link to Upgrading From 1.x in multi-page documentation #​30995
  • Document support for Java 18 #​30782

🔨 Dependency Upgrades

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

v2.6.8

🐞 Bug Fixes

  • Default properties configured on SpringApplication have higher precedence than properties configured with @PropertySource #​31092
  • A failure when an instrumented WebClient records metrics causes the request to fail #​31088
  • Dependency management for Artemis is incomplete #​31078
  • Configuration properties for Statsd's buffered and step properties are missing #​31058
  • Debug logging for requests to WebFlux-based Actuator endpoints does not identify the endpoint #​30886
  • @ConditionalOnProperty meta annotation with @AliasFor does not work #​30873
  • Event handling in JobExecutionExitCodeGenerator is not thread-safe #​30845
  • Hibernate service loading logs HHH000505 warnings for ServiceConfigurationError with Gradle-built jars since 2.5.10 when using Java 11 or later #​30790
  • Cryptic startup failure with bare LOGGING_LEVEL environment variable #​30788
  • SearchStrategy argument of MethodValidationExcludeFilter byAnnotation(Class, SearchStrategy) is not used #​30786

📔 Documentation

  • Extend documentation on Datadog metrics #​30996
  • Fix link to Upgrading From 1.x in multi-page documentation #​30994
  • Document support for Java 18 #​30781

🔨 Dependency Upgrades

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

v2.6.7

🐞 Bug Fixes

  • bootBuildInfo fails with a NullPointerException when an additional property has a null value #​30670
  • @SpringBootTest(webEnvironment = WebEnvironment.NONE) is overridden by spring.main.web-application-type in application.properties #​30666
  • Spring Boot does not respect WebApplicationType.REACTIVE in tests with a mock web environment #​30664
  • NullPointerException is thrown when accessing /actuator/configprops if a class annotated with both @Configuration and @ConfigurationProperties has a static @Bean method #​30581
  • ApplicationAvailabilityBean is not thread-safe #​30553
  • Incorrect Neo4j username property replacement hint by spring-boot-properties-migrator #​30551
  • Add Tomcat locale mapping for Japanese to preserve UTF-8 charset #​30541

📔 Documentation

  • Update doc samples to reflect AdoptOpenJDK move to the Eclipse Foundation #​30749
  • Fix incorrect link in kafka.adoc #​30674
  • Move Jetty 9 specific exclusions to the correct dependency #​30583
  • Add missing configuration metadata for "management.endpoint.health.probes.add-additional-paths" #​30562
  • Update list of default internal proxies in Web Server howto #​30544
  • Polish documentation #​30526

🔨 Dependency Upgrades

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

Kotlin/kotlinx.serialization

v1.3.3

==================

This release contains support for Protocol Buffers packed fields, as well as several bugfixes.
It uses Kotlin 1.6.21 by default.

Protobuf packed fields

It is now possible to encode and decode Kotlin classes to/from Protobuf messages with packed repeated fields.
To mark the field as packed, use @ProtoPacked annotation on it.
Note it affects only List and primitive collection such as IntArray types.
With this feature, it is now possible to decode Proto3 messages, where all repeated fields are packed by default.
Protobuf schema generator also supports new @ProtoPacked annotation.

Many thanks to Paul de Vrieze for his valuable contribution!

Other improvements & small features
  • Incorporate JsonPath into exception messages (#​1841)
  • Mark block in corresponding encodeStructure/decodeStructure extensions as crossinline to reduce amount of bytecode (#​1917)
  • Support serialization of compile-time Collection<E> properties that are not lists at the runtime (#​1821)
  • Best-effort kotlin reflect avoidance in serializer(Type) (#​1819)
Bugfixes
  • Iterate over element indices in ObjectSerializer in order to let the format skip unknown keys (#​1916)
  • Correctly support registering both default polymorphic serializer & deserializer (#​1849)
  • Make error message for captured generic type parameters much more straightforward (#​1863)
Kotlin/dokka

v1.6.21

This is a bugfix release that mostly enables building documentation for multiplatform projects that utilize .klib libraries.

Changes

Bugfixes

  • Support KLIB libraries for common platform, previously led to ERROR CLASS instead of references in documentation (#​2441)
  • Fixed a maven plugin build problem related to coroutines which only occurred in multi-module builds (#​2461)

v1.6.20

Features
HTML format changes
  • Add vertical alignment (wrapping) of signatures when 3 and more parameters are present ([https://github.com/Kotli

Configuration

📅 Schedule: 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 WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title Update actions/setup-java action to v3.1.1 Update all dependencies Apr 12, 2022
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 572241c to c1f209d Compare April 19, 2022 16:30
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 37e5654 to cd53f89 Compare April 26, 2022 12:33
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 2ef1a0c to 1ded5d8 Compare May 4, 2022 14:16
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 81c16c8 to 357db5e Compare May 12, 2022 13:29
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from c45a2a8 to 3a57061 Compare May 20, 2022 11:41
| datasource  | package                                                                                                                 | from         | to           |
| ----------- | ----------------------------------------------------------------------------------------------------------------------- | ------------ | ------------ |
| github-tags | actions/checkout                                                                                                        | v3.0.0       | v3.0.2       |
| github-tags | actions/checkout                                                                                                        | v3.0.0       | v3.0.2       |
| github-tags | actions/checkout                                                                                                        | v3.0.0       | v3.0.2       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/setup-java                                                                                                      | v3.1.0       | v3.3.0       |
| github-tags | actions/upload-artifact                                                                                                 | v3.0.0       | v3.1.0       |
| github-tags | actions/upload-artifact                                                                                                 | v3.0.0       | v3.1.0       |
| github-tags | gradle/gradle-build-action                                                                                              | v2.1.5       | v2.1.6       |
| github-tags | gradle/gradle-build-action                                                                                              | v2.1.5       | v2.1.6       |
| github-tags | gradle/gradle-build-action                                                                                              | v2.1.5       | v2.1.6       |
| github-tags | stefanzweifel/git-auto-commit-action                                                                                    | v4.14.0      | v4.14.1      |
| maven       | org.jetbrains.kotlinx.binary-compatibility-validator:org.jetbrains.kotlinx.binary-compatibility-validator.gradle.plugin | 0.8.0        | 0.10.0       |
| maven       | io.netty:netty-transport-native-kqueue                                                                                  | 4.1.75.Final | 4.1.77.Final |
| maven       | org.http4k:http4k-client-apache                                                                                         | 4.25.8.0     | 4.25.16.1    |
| maven       | org.http4k:http4k-core                                                                                                  | 4.25.8.0     | 4.25.16.1    |
| maven       | io.kotest.multiplatform:io.kotest.multiplatform.gradle.plugin                                                           | 5.2.3        | 5.3.0        |
| maven       | io.kotest:kotest-runner-junit5                                                                                          | 5.2.3        | 5.3.0        |
| maven       | io.kotest:kotest-property                                                                                               | 5.2.3        | 5.3.0        |
| maven       | io.kotest:kotest-framework-engine                                                                                       | 5.2.3        | 5.3.0        |
| maven       | io.kotest:kotest-assertions-core                                                                                        | 5.2.3        | 5.3.0        |
| maven       | org.springframework.boot:spring-boot-starter-webflux                                                                    | 2.6.6        | 2.7.0        |
| maven       | org.springframework.boot:spring-boot-starter-web                                                                        | 2.6.6        | 2.7.0        |
| maven       | org.jetbrains.kotlinx:kotlinx-serialization-json                                                                        | 1.3.2        | 1.3.3        |
| maven       | org.jetbrains.dokka:org.jetbrains.dokka.gradle.plugin                                                                   | 1.6.10       | 1.6.21       |
| maven       | org.jetbrains.dokka:dokka-core                                                                                          | 1.6.10       | 1.6.21       |
| maven       | org.jetbrains.kotlin.plugin.serialization:org.jetbrains.kotlin.plugin.serialization.gradle.plugin                       | 1.6.20       | 1.6.21       |
| maven       | io.arrow-kt.arrow-gradle-config-versioning:io.arrow-kt.arrow-gradle-config-versioning.gradle.plugin                     | 0.10.0       | 0.10.2       |
| maven       | io.arrow-kt.arrow-gradle-config-publish:io.arrow-kt.arrow-gradle-config-publish.gradle.plugin                           | 0.10.0       | 0.10.2       |
| maven       | io.arrow-kt.arrow-gradle-config-nexus:io.arrow-kt.arrow-gradle-config-nexus.gradle.plugin                               | 0.10.0       | 0.10.2       |
| maven       | io.arrow-kt.arrow-gradle-config-kotlin:io.arrow-kt.arrow-gradle-config-kotlin.gradle.plugin                             | 0.10.0       | 0.10.2       |
| maven       | io.arrow-kt.arrow-gradle-config-formatter:io.arrow-kt.arrow-gradle-config-formatter.gradle.plugin                       | 0.10.0       | 0.10.2       |
| maven       | io.arrow-kt:arrow-fx-coroutines                                                                                         | 1.0.1        | 1.1.2        |
| maven       | io.arrow-kt:arrow-optics                                                                                                | 1.0.1        | 1.1.2        |
| maven       | io.arrow-kt:arrow-core                                                                                                  | 1.0.1        | 1.1.2        |
| maven       | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin                                                         | 1.6.20       | 1.6.21       |
| maven       | org.jetbrains.kotlin.multiplatform:org.jetbrains.kotlin.multiplatform.gradle.plugin                                     | 1.6.20       | 1.6.21       |
| maven       | org.jetbrains.kotlin:kotlin-reflect                                                                                     | 1.6.20       | 1.6.21       |
| maven       | org.jetbrains.kotlin:kotlin-stdlib-js                                                                                   | 1.6.20       | 1.6.21       |
| maven       | org.jetbrains.kotlin:kotlin-stdlib-jdk8                                                                                 | 1.6.20       | 1.6.21       |
| maven       | org.jetbrains.kotlin:kotlin-stdlib-common                                                                               | 1.6.20       | 1.6.21       |
@renovate renovate bot changed the title Update all dependencies Update all dependencies - autoclosed May 21, 2022
@renovate renovate bot closed this May 21, 2022
@renovate renovate bot deleted the renovate/all branch May 21, 2022 23:47
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.

None yet

1 participant