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

fix(deps): update all non-major dependencies #97

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 13, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
eclipse-temurin final patch 21.0.5_11-jdk-alpine -> 21.0.6_7-jdk-alpine age adoption passing confidence
lint-staged devDependencies minor 15.2.10 -> 15.4.3 age adoption passing confidence
prettier (source) devDependencies minor 3.3.3 -> 3.5.2 age adoption passing confidence
prettier-plugin-java (source) devDependencies patch 2.6.5 -> 2.6.7 age adoption passing confidence
io.quarkus:quarkus-bom import minor 3.16.2 -> 3.19.0 age adoption passing confidence
io.quarkus:quarkus-maven-plugin build minor 3.16.2 -> 3.19.0 age adoption passing confidence
org.apache.maven.plugins:maven-compiler-plugin build minor 3.13.0 -> 3.14.0 age adoption passing confidence

Release Notes

lint-staged/lint-staged (lint-staged)

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

prettier/prettier (prettier)

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

v3.5.1

Compare Source

diff

Fix CLI crash when cache for old version exists (#​17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#​17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

v3.5.0

Compare Source

diff

🔗 Release Notes

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes

jhipster/prettier-java (prettier-plugin-java)

v2.6.7

Compare Source

Fixes

v2.6.6

Compare Source

Enhancements

Fixes

quarkusio/quarkus (io.quarkus:quarkus-bom)

v3.19.0

Compare Source

v3.18.4

Compare Source

Complete changelog
  • #​41272 - Files with åäö in there name gets an inputstream that is null in MultipartForm uploads
  • #​45285 - Add quarkus.openshift.cron-job.timezone property
  • #​45961 - quarkus-spring-di: @Bean("foo") is not transformed into the proper @Named("foo") annotation
  • #​46140 - Spring DI - Fix behavior with named beans
  • #​46142 - Add more options for the token expiry time calculation done by OIDC client
  • #​46147 - Byte array responses break if quarkus-amazon-lambda-http is used
  • #​46203 - Improve text format handling in Amazon Lambda
  • #​46222 - Add OIDC client access token expires in skew
  • #​46233 - WebSockets Next: make it possible to configure max frame size
  • #​46242 - Add time zone property for kubernetes and openshift cron jobs
  • #​46251 - Quarkus Hibernate ORM - Jboss logger instantiation issue
  • #​46260 - @QuarkusTest fails when Nexus repository requires login (401 Unauthorized) (does not use existing Maven security credentials)
  • #​46269 - Avoid creating a timer when reconnectDelay is set to Max
  • #​46271 - Maven Resolver: fix discovering settings-security.xml
  • #​46284 - Only check filters once for calls to getResourceMethod
  • #​46292 - Simplify pattern used introduced in #​46284
  • #​46296 - Use proper call to Logger#getMessageLogger
  • #​46297 - Fix a few misplaced @WithConverter
  • #​46303 - Upgrade to Jandex 3.2.7
  • #​46304 - Fix keycloak client timeout error message: quarkus.oidc.devui.web-client-timeout -> quarkus.keycloak.devservices.web-client-timeout
  • #​46344 - Update mime4j to 0.8.12

v3.18.3

Compare Source

Complete changelog
  • #​40374 - Error when executing persist() method with an entity having bidirectional one-to-one relationships in Hibernate Reactive with Panache
  • #​45948 - Removal of public method in a minor release breaking semantic versioning with utter lack of warnings or anything
  • #​45949 - Restore two JWT decoding methods in OidcUtils
  • #​46005 - Qute TemplateGlobal throws error on live reload
  • #​46014 - Qute: fix template global class generation in the dev mode #​2
  • #​46035 - QuarkusTest TestProfile pollutes environment of QuarkusComponentTest
  • #​46039 - Upgrade to Jandex 3.2.4
  • #​46040 - OpenTelemetry extension traces health endpoints when a custom root-path is configured
  • #​46046 - Execute simple JUnit tests and @QuarkusComponentTest first
  • #​46088 - Fix typo remove extra bracket
  • #​46099 - OpenTelemetryLogHandler - Do not read config for each publish
  • #​46102 - Live reload classloader memory leak when using hibernate-envers with a custom revision entity
  • #​46106 - Bump maven-dependency-plugin in docs
  • #​46107 - For synthetic injection points, target can be null
  • #​46108 - @Observes @BeforeDestroyed(?Scoped.class) does not work in the same bean and the same scope
  • #​46111 - Could not determine the canonical constructor when quarkus.rest.jackson.optimization.enable-reflection-free-serializers=true
  • #​46113 - Remove non-existing value "OPTIONAL", fix typo
  • #​46115 - Bump to Vert.x Mutiny bindings 3.18.1
  • #​46125 - Change timing of @Initialized and @BeforeDestroyed events so that they can be observed from a bean within given context
  • #​46135 - Upgrade to Jandex 3.2.5
  • #​46136 - Error occurs on tests with @Nested classes and QuarkusMainLauncher
  • #​46141 - Replace outdated hostname v1 property for keycloak dev service in shared networks
  • #​46150 - Overcome augmentation issue with @Nested QuarkusMainTest
  • #​46154 - Docs: Fix some more weaknesses
  • #​46156 - Reflection-free Serialization issue when first accessed vs. second access or if multiple methods
  • #​46170 - Configuration custom converters fail on primitive type arrays since Quarkus v3.18
  • #​46171 - Fix config converter loading issue when arrays are used
  • #​46179 - Upgrade to Hibernate ORM 6.6.7.Final
  • #​46181 - Simplify and fix building the list of framework endpoints
  • #​46186 - Bump io.micrometer:micrometer-bom from 1.14.3 to 1.14.4
  • #​46189 - Upgrade to Hibernate Reactive 2.4.5.Final
  • #​46190 - Bump the version of kindContainer from 1.4.7 to 1.4.8
  • #​46191 - Bump version of kindcontainer from 1.4.7 to 1.4.8
  • #​46194 - Bump to Vert.x 4.5.13 and Netty 4.1.118.Final
  • #​46211 - Avoid using generated Jackson serializers for subclasses
  • #​46219 - Bump io.smallrye:jandex from 3.2.5 to 3.2.6

v3.18.2

Compare Source

Complete changelog
  • #​44569 - SmallRye OpenAPI outputs Chinese garbled characters in Json
  • #​44645 - NullPointerException from Hibernate ORM when there is a problem establishing a connection
  • #​45385 - IllegalArgumentException when parsing Accept Header
  • #​45776 - Bump to Mutiny 2.8.0 and the Mutiny Vert.x bindings 3.18.0
  • #​45789 - [resteasy-reactive] [3.8.6] Header not reset between request
  • #​45847 - Netty metric with dynamic tag cause time series leak
  • #​45868 - QuarkusTestResource not working with QuarkusMainLauncher
  • #​45877 - Replace the id label with a name label for Netty allocator
  • #​45910 - Clarify usage of quarkus-keycloak-admin-rest-client and quarkus-keycloak-admin-resteasy-client
  • #​45926 - Release the Config from the TCCL when setting the Quarkus config
  • #​45933 - Native tests fail in Gradle-based Quarkus project when module has no classes in src/main/java
  • #​45934 - Dev UI: make sure add button works when log is open
  • #​45935 - Clear SystemProperties set by QuarkusMainIntegrationTestExtension
  • #​45938 - Be more defensive about sources Path in integration tests
  • #​45943 - OpenApiFilter without Runstage causes NPE
  • #​45945 - Properly get default value when handling OpenApiFilters
  • #​45950 - Correctly handle REST field injection
  • #​45956 - Improve content about running the application in the JWT guide
  • #​45967 - Use Maven log in quarkus:run
  • #​45971 - Fix incorrect response code when media type is invalid
  • #​45976 - Add remote address to gRPC spans
  • #​45985 - BlockingNotAllowedException when using rest client since quarkus 3.18.1
  • #​45991 - Bump com.gradle.plugin-publish from 1.3.0 to 1.3.1 in /devtools/gradle
  • #​45992 - [REGRESSION] - quarkus.rest.jackson.optimization.enable-reflection-free-serializers=true broken in 3.18
  • #​45993 - Bump smallrye-open-api.version from 4.0.7 to 4.0.8
  • #​45996 - ConfigMapping broken for extensions with smallrye-config-crypto since 3.9.1
  • #​45999 - Quarkus 3.18 and Flyway 11: Bring back cleanOnValidationError
  • #​46002 - Fix generated Jackson deserializer for a record with an empty constructor
  • #​46006 - Don't prematurely close an InputStream returned by the REST Client
  • #​46008 - QuarkusIntegrationTest: publishing a random port in the started container no longer works
  • #​46009 - Updates to Infinispan 15.0.13.Final
  • #​46016 - Quarkus 3.18.1 does not allow overwriting lists from application.yaml with lists supplied in environment variables
  • #​46018 - integration-tests/hibernate-reactive-mssql is not being run (and does not build)
  • #​46020 - Runtime values from mapping without expansion
  • #​46031 - Fix Javadoc/MD syntax issues
  • #​46032 - Update SmallRye Config to 3.11.2
  • #​46033 - Implement 'cleanOnValidationError' for Flyway 11
  • #​46036 - In container build output is not executable anymore
  • #​46041 - Upgrade Hibernate ORM to 6.6.6.Final
  • #​46043 - Fix and restore hibernate-reactive-mssql tests
  • #​46044 - Recalculate config property names during tests
  • #​46049 - Bump io.smallrye.config:smallrye-config-source-yaml from 3.11.1 to 3.11.2 in /devtools/gradle
  • #​46055 - Ensure that the copied native executable has the executable permission when copied from the host to the container image.

v3.18.1

Compare Source

Complete changelog
  • #​44484 - Quarkus Build with Maven Artefact Resolver Configuration Options
  • #​45358 - quarkus-smallrye-openapi generates unused schemas
  • #​45359 - Ensure there are no jdbc spans if otel sdk is disabled
  • #​45489 - DevUI: Add search for Arc tables
  • #​45562 - Consistent report of unknown properties between JVM and Native mode
  • #​45650 - ClassNotFound during static init build step corrupts delayed logging
  • #​45708 - OpenAPI schema adding "enum" : [ null ] when field description is added
  • #​45771 - Qute: fix template global class generation in the dev mode
  • #​45774 - LGTM tests are stalling (or are too slow for the timeout, I don't know)
  • #​45783 - Redis cache implementation should not use KEYS command
  • #​45794 - Maven Resolver: initialize Maven properly, especially the local repository
  • #​45799 - Fix PathTreeClassPathElement#toString() implementation
  • #​45801 - Fix documentation for connecting to multiple devservice databases
  • #​45802 - Bump smallrye-open-api.version from 4.0.6 to 4.0.7
  • #​45803 - Bump com.gradle:develocity-maven-extension from 1.23 to 1.23.1
  • #​45810 - Update default openapi version in doc
  • #​45813 - Update URL of swapi-graphql.netlify.app GraphQL endpoint
  • #​45815 - Properly order tests annotated with @WithTestResource
  • #​45819 - Improve docs for Hibernate ORM with Kafka to suggest more efficient approaches
  • #​45822 - Adjust timeouts for LGTM container and tests
  • #​45828 - Redis Cache: replace the KEYS command with SCAN in invalidation
  • #​45829 - Upgrade to Vert.x 4.5.12 and Netty 4.1.117.Final
  • #​45835 - Fix static file path decoding in vertx-http
  • #​45838 - PermissionChecker makes RestMulti builder being ignored
  • #​45841 - Bump mongo-client.version from 5.3.0 to 5.3.1
  • #​45842 - Unable to build native image on Macbook Pro M4 Pro
  • #​45848 - Quarkus REST: Run security checks that require method arguments in a non-blocking manner before secured methods are invoked
  • #​45850 - Reviewed enable_build_properties information
  • #​45851 - Use explicit String.concat in OTelDurationConverter
  • #​45858 - Update OpenAPI documentation with default version 3.1.0
  • #​45860 - quarkus main build fails on windows
  • #​45861 - gRPC: Perform authentication when gRPC server runs on the same server and root path is different than '/'
  • #​45863 - 3.18 regression: quarkus.uuid is the same for every run in native images
  • #​45864 - Ensure that quarkus.uuid is not determined at native image build time
  • #​45876 - Pass container-runtime-options to native-image --version as well
  • #​45878 - 3.18 regression Quarkus quarkus-maven-plugin with failsafe and quarkus.test.arg-line
  • #​45880 - Upgrade to SmallRye GraphQL 2.12.1
  • #​45888 - Consider quarkus.test.arg-line as a string
  • #​45890 - Disable kubernetes-service-binding testing on Windows
  • #​45894 - Dev UI does not open if http is disabled
  • #​45911 - Make sure console shortcuts use https when http is disabled
  • #​45913 - Fix generate ca command in tls guide

v3.18.0

Compare Source

Complete changelog
  • #​29646 - Exceptions on dev mode reload (with multiple inbound requests?)
  • #​36510 - quarkus.otel.traces.suppress-non-application-uris not working with quarkus.management.enabled
  • #​45266 - Using quarkus.swagger-ui.plugins
  • #​45300 - Fix how Vert.x routes are identified in metrics and OpenTelemetry
  • #​45609 - Allow null for query parameters in Kotlin panache
  • #​45613 - Use VertxLogDelegateFactory for internal Vert.x logging
  • #​45620 - Improvements to the Grafana LGTM dashboards
  • #​45625 - Hot reload fails when using BeanParam
  • #​45627 - Returing a file from Quarkus REST endpoint with Uni leads to Vert.x error now that Vert.x Pump was replaced
  • #​45628 - OIDC: document and use OidcTestClient to get access token from Dev Services for OIDC
  • #​45629 - Fix missing addChannel flag usage
  • #​45630 - Fix file handling in REST Client
  • #​45645 - NamedLogHandlersBuildItem causes stderr "Handler is linked to a category but not configured"
  • #​45648 - Enable public access to OidcProviderClientImpl#getWebClient
  • #​45652 - Test config creation sometimes delegates to instance variable and sometimes to superclass, causing (v v minor) chaos
  • #​45653 - Speed up flaky OTel test
  • #​45670 - Don't allow requests into restarting application
  • #​45674 - Update drools.adoc
  • #​45690 - Observability LGTM dev service filling up logs with services starting
  • #​45693 - Bump grpc.version from 1.69.0 to 1.69.1
  • #​45698 - Add support for java.time.YearMonth as JAX-RS parameter
  • #​45699 - Add support for java.time.YearMonth as JAX-RS parameter
  • #​45700 - Add props change to LGTM re-load test
  • #​45705 - Do not check log categories without named handlers
  • #​45707 - Fix @BeanParam handling during hot reload
  • #​45717 - Add response to HttpServerMetricsTagsContributor.Context
  • #​45722 - Adjust Caffeine extension description to drop Java 8 mention
  • #​45730 - Bump resteasy-microprofile.version from 3.0.0.Final to 3.0.1.Final
  • #​45734 - Fix wait strategy usage, Grafana should not know about LGTM
  • #​45735 - Enable new scripts config in Swagger UI
  • #​45744 - Add HTTP response to HttpServerMetricsTagsContributor.Context
  • #​45772 - Remove quarkus-extension-processor from cache-runtime-spi

v3.17.8

Compare Source

Complete changelog
  • #​43326 - Hibernate-Reactive: ClassCastException EmbeddableInitializerImpl to ReactiveInitializer
  • #​44440 - Replacement in logs (log formatting) doesn't work in OpenTelemetry Logging
  • #​45188 - @JoinColumns breaks on Hibernate Reactive
  • #​45472 - java.util.NoSuchElementException: SRCFG00011: Could not expand value platform.quarkus.native.builder-image in property quarkus.native.builder-image
  • #​45555 - RESTEasy Reactive: ClientBuilder and Client should not share the same Configuration instance
  • #​45565 - If certificate reloading is enabled, mTLS stop functioning after the reload
  • #​45578 - Fix: trust store config is overwritten by key store config while certificate reloading
  • #​45593 - Copy Configuration when building a JAX-RS Client
  • #​45612 - Fix typo
  • #​45614 - Replace JavaVersion.VERSION_11 with JavaVersion.VERSION_21 in kotlin guide
  • #​45637 - Gradle - Correctly pass platform.quarkus.* properties
  • #​45640 - Fix Otel logging message formatting
  • #​45646 - Getting Started with Security updates
  • #​45656 - Document injecting of CDI request scoped beans during authentication and authorization
  • #​45657 - Update to HTTP error outputs in Getting Started with Security
  • #​45658 - Mark quarkus-oidc-client-registration as experimental in doc
  • #​45662 - java.lang.IllegalStateException: Too many recursive interceptor actions after switching to quarkus-rest-client from quarkus-rest-reactive-client
  • #​45676 - Quarkus reports a NoSuchMethod hiding the real cause when it fails to start
  • #​45677 - Add missing @ConfigItem to FilterConfig
  • #​45681 - Gradle - Resolve platform properties when possible
  • #​45682 - decodeAsXPendingSummary NPE on r.get(1) or r.get(2)
  • #​45687 - Redis Client: fix NPE when constructing XPendingSummary
  • #​45716 - Avoid recursive interceptor lookups when the REST Client full name matches the simple name
  • #​45731 - Bump hibernate-orm.version from 6.6.4.Final to 6.6.5.Final
  • #​45756 - Bump hibernate-reactive.version from 2.4.3.Final to 2.4.4.Final

v3.17.7

Compare Source

Complete changelog
  • #​10264 - elytron security: define role mapper (was: ldap security - role mapper)
  • #​44047 - Demote Agroal's "JDBC resources leaked" warnings to DEBUG
  • #​44540 - FORMAT_FAILURE when using Log.error(Object,Throwable)
  • #​44565 - Ensure that all our handlers extend ExtHandler
  • #​44773 - OpenAPI Extension (smallrye) produces wrong schema for Flow based return types
  • #​45150 - OpenAPI Extension Misses Jackson Annotations on Methods that Return a Parameterized Type
  • #​45167 - Long.parseLong Error with Redis Client Instrumentation
  • #​45224 - PermissionChecker does not handle list of permission correctly
  • #​45364 - Don't treat colon as a permission-to-action separator in @PermissionChecker value attribute
  • #​45419 - Fix typos in deploying-to-kubernetes.adoc
  • #​45424 - Bump smallrye-open-api.version from 4.0.5 to 4.0.6
  • #​45439 - OpenTelemetry: fix the Redis instrumenter in case of a tainted connection
  • #​45467 - Add FAQ about thread dumps in native reference guide
  • #​45471 - Update code to get Mandrel version from native executable
  • #​45482 - Execute the MongoDB Connection Health Check on Startup
  • #​45486 - Remove yq installation step from GitHub Actions workflows
  • #​45487 - Fix Quarkus platform BOM version info collection for analytics
  • #​45509 - Parallelize bean scanning in SmallRyeFaultToleranceProcessor
  • #​45512 - Add a cache for class proxies in BytecodeRecorderImpl
  • #​45517 - Make scheduler timezone documentation consistent with javadoc
  • #​45518 - Remove erroneous state tracking from client readers/writers
  • #​45523 - Fix Mongo health checks
  • #​45536 - Quarkus REST - Use ByteBufInputStream instead of copying bytes
  • #​45564 - fix: possible NPE if data has not been set yet
  • #​45576 - Revert "[oracle-jdbc] Remove unnecessary conditionals from @BuildSteps in the Oracle JDBC extension"
  • #​45583 - Adjust logging level for JDBC resource leak warnings
  • #​45586 - Elytron security LDAP: Document and test mapping of LDAP groups to SecurityIdentity roles

v3.17.6

Compare Source

Complete changelog
  • #​36688 - Unable to use Panache Sort.Direction enum as method parameter for GraphQL query
  • #​39137 - RESTEasy resource with constructor or field injection failing with RESTEASY003190
  • #​44550 - GraphQL Typesafe client with sources in a dependency
  • #​44590 - Change the JsonRPC Service for OIDC to use recorder
  • #​44929 - Error in secured post-multipart interface with large files
  • #​44959 - Ensure request body is consumed so that multipart requests with large payloads never hang when exception happens before body is consumed
  • #​44960 - Page count fails when using a sort specification in a Panache query with a SELECT DISTINCT statement in Quarkus 3.17
  • #​45104 - Bump com.gradle:develocity-maven-extension from 1.22.2 to 1.23
  • #​45199 - Bump gradle/develocity-actions from 1.2 to 1.3
  • #​45204 - Uber-Jar file name suffix issue for disabling it
  • #​45205 - Update Quarkus Parameter for Disabling Uber-JAR File Name Suffix
  • #​45220 - Messaging RunOnVirtualThreads fix on class annotation
  • #​45235 - Upgrade to Hibernate ORM 6.6.4 / Reactive 2.4.3
  • #​45253 - Assorted @WithTestResource fixes
  • #​45254 - Typo in Proxy Configuration Guidance
  • #​45260 - Typo in ProxyConfig
  • #​45261 - Update Develocity extension to 1.1.9
  • #​45284 - Add gRPC capability
  • #​45297 - RESTEasy - Mention you cannot inject @Context elements in constructors
  • #​45298 - Add Panache Sort enums in index for SmallRye GraphQL
  • #​45305 - Docs: Correct sentence in Simplified MongoDB with Panache
  • #​45335 - swapi.dev is down, use swapi.tech
  • #​45351 - Fixed an issue where annotations were not part of the Jandex index, if given in an external JAR
  • #​45387 - Docs: Correct sentence in Using the MongoDB Client
  • #​45390 - Fix typo in default LGTM dashboards
  • #​45392 - Fix metric scale on dashboard
  • #​45397 - Bump commons-codec:commons-codec from 1.17.1 to 1.17.2
  • #​45401 - Use swapi.tech for The Star Wars API calls
  • #​45402 - Update SmallRye Health to 4.1.1

v3.17.5

Compare Source

Complete changelog

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, check this box

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

@renovate renovate bot changed the title chore(deps): update dependency io.quarkus:quarkus-maven-plugin to v3.16.3 fix(deps): update all non-major dependencies to v3.16.3 Nov 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d110448 to 5c79f7e Compare November 13, 2024 21:13
Copy link

socket-security bot commented Nov 13, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/[email protected] Transitive: environment, filesystem, shell +54 2.27 MB okonet
npm/[email protected] Transitive: eval +10 4.27 MB cdessoude
npm/[email protected] None 0 7.88 MB azz, duailibe, fisker, ...8 more
npm/[email protected] filesystem 0 10.9 kB toplenboren

🚮 Removed packages: maven/io.quarkus/[email protected]

View full report↗︎

@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v3.16.3 fix(deps): update all non-major dependencies Nov 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5c79f7e to 5ecfd91 Compare November 20, 2024 17:41
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies to v3.17.0 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ecfd91 to fb56e30 Compare November 20, 2024 22:10
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v3.17.0 chore(deps): update all non-major dependencies Nov 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b472ba2 to ab4e42c Compare November 29, 2024 19:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ab4e42c to b08b2f6 Compare December 4, 2024 08:19
@github-advanced-security
Copy link

This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b08b2f6 to 30d22af Compare December 4, 2024 15:44
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies to v3.17.3 Dec 8, 2024
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v3.17.3 chore(deps): update all non-major dependencies Dec 8, 2024
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 86fadfc to 15680a5 Compare December 11, 2024 11:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15680a5 to f6dc409 Compare December 19, 2024 13:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f6dc409 to 7b20137 Compare December 28, 2024 13:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 430e73f to 760749b Compare January 15, 2025 14:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d8b420c to 4633723 Compare January 22, 2025 21:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 967eabe to e71cc86 Compare January 29, 2025 13:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 894dde6 to 77e761a Compare February 5, 2025 12:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 1d45bd6 to 83d87da Compare February 13, 2025 15:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f81fbcb to f5f64d5 Compare February 21, 2025 11:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f5f64d5 to 9a66943 Compare February 22, 2025 05:28
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