Add Path-accepting Jsoup methods by Isira-Seneviratne · Pull Request #2055 · jhy/jsoup (original) (raw)
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| flow-bin (changelog) | devDependencies | minor | ^0.233.0 -> ^0.247.0 |
| org.postgresql:postgresql (source) | build | patch | 42.7.3 -> 42.7.4 |
| org.liquibase:liquibase-maven-plugin (source) | build | minor | 4.27.0 -> 4.29.2 |
| org.jsoup:jsoup (source) | compile | minor | 1.17.2 -> 1.18.1 |
| net.java.dev.jna:jna | compile | minor | 5.14.0 -> 5.15.0 |
| io.hypersistence:hypersistence-utils-hibernate-62 | compile | minor | 3.7.3 -> 3.8.2 |
| org.hibernate.orm:hibernate-envers (source) | build | minor | 6.4.4.Final -> 6.6.1.Final |
| org.hibernate.orm:hibernate-core (source) | build | minor | 6.4.4.Final -> 6.6.1.Final |
| com.blazebit:blaze-persistence-bom (source) | import | patch | 1.6.11 -> 1.6.12 |
| io.quarkus:quarkus-maven-plugin | build | minor | 3.9.2 -> 3.15.1 |
| io.quarkus:quarkus-universe-bom | import | minor | 3.9.2 -> 3.15.1 |
| org.apache.maven.plugins:maven-enforcer-plugin | build | minor | 3.4.1 -> 3.5.0 |
Release Notes
flowtype/flow-bin
v0.247.1
v0.247.0
v0.246.0
v0.245.2
v0.245.1
v0.245.0
v0.244.0
v0.243.0
v0.242.1
v0.242.0
v0.241.0
v0.240.0
v0.239.1
v0.239.0
v0.238.3
v0.238.2
v0.238.1
v0.238.0
v0.237.2
v0.237.1
v0.237.0
v0.236.0
v0.235.1
v0.234.0
pgjdbc/pgjdbc
v42.7.4
Added
- chore: SCRAM dependency to 3.1 and support channel binding MR #3188
- chore: Add PostgreSQL 15, 16, and 17beta1 to CI tests MR #3299
- test: Update to 17beta3 MR #3308
- chore: Implement direct SSL ALPN connections MR #3252
- translation: Add Korean translation file MR #3276
Fixed
- fix: PgInterval ignores case for represented interval string MR #3344
- perf: Avoid extra copies when receiving int4 and int2 in PGStream MR #3295
- fix: Add support for Infinity::numeric values in ResultSet.getObject MR #3304
- fix: Ensure order of results for getDouble MR #3301
- perf: Replace BufferedOutputStream with unsynchronized PgBufferedOutputStream, allow configuring different Java and SO_SNDBUF buffer sizes MR #3248
- fix: Fix SSL tests MR #3260
- fix: Support bytea in preferQueryMode=simple MR #3243
- fix: Fix #3234 - Return -1 as update count for stored procedure calls MR #3235
- fix: Fix #3224 - conversion for TIME '24:00' to LocalTime breaks in binary-mode MR #3225
- perf: Speed up getDate by parsing bytes instead of String MR #3141
- fix: support PreparedStatement.setBlob(1, Blob) and PreparedStatement.setClob(1, Clob) for lobs that return -1 for length MR #3136
- fix: Validates resultset Params in PGStatement constructor. uses assertThro… MR #3171
- fix: Validates resultset parameters MR #3167
- docs: Replace greater to with greater than MR #3315
- docs: Clarify binaryTransfer and prepareThreshold MR #3338
- docs: use.md, typo MR #3314
- test: Use docker v2 which changes docker-compose to docker compose #3339
- refactor: Merge PgPreparedStatement#setBinaryStream int and long methods MR #3165
- test: Test both binaryMode=true,false when creating connections in DatabaseMetaDataTest MR #3231
- docs: Fixed typos in all source code and documentations MR #3242
- chore: Remove self-hosted runner MR #3227
- docs: Add cancelSignalTimeout in README MR #3190
- docs: Document READ_ONLY_MODE in README MR #3175
- test: Test for +/- infinity double values MR #3294
- test: Switch localhost and auth-test around for test-gss MR #3343
- fix: remove preDescribe from internalExecuteBatch MR #2883
Deprecated
- test: Deprecate all PostgreSQL versions older than 9.1 MR #3335
liquibase/liquibase
v4.29.2
Liquibase 4.29.2 patches minor issues found in Liquibase 4.29.1 release.
v4.29.1
Liquibase 4.29.1 patches a pom mismatch in the Liquibase BigQuery Commercial Extension.
Liquibase 4.29.1 resolves an issue with the zip distribution where all files were incorrectly placed inside liquibase-4.29.1 directory. This update ensures proper file organization and installation.
v4.29.0
[!IMPORTANT] Liquibase 4.29.0 contains several New Capabilities and Notable Enhancements for Liquibase Pro users: Python-based Custom Policy Checks and a new Big Query extension. [!NOTE] See the Liquibase 4.29.0 Release Notes for the complete set of release information.
v4.28.0
jhy/jsoup
v1.18.1
Improvements
- Stream Parser: A
StreamParserprovides a progressive parse of its input. As eachElementis completed, it is emitted via aStreamorIteratorinterface. Elements returned will be complete with all their children, and an (empty) next sibling, if applicable. Elements (or their children) may be removed from the DOM during the parse, for e.g. to conserve memory, providing a mechanism to parse an input document that would otherwise be too large to fit into memory, yet still providing a DOM interface to the document and its elements. Additionally, the parser provides aselectFirst(String query)/selectNext(String query), which will run the parser until a hit is found, at which point the parse is suspended. It can be resumed via anotherselect()call, or via thestream()oriterator()methods. 2096 - Download Progress: added a Response Progress event interface, which reports progress and URLs are downloaded (and parsed). Supported on both a session and a single connection level. 2164, 656
- Added
Pathaccepting parse methods:Jsoup.parse(Path),Jsoup.parse(path, charsetName, baseUri, parser), etc. 2055 - Updated the
buttontag configuration to include a space between multiple button elements in theElement.text()method. 2105 - Added support for the
ns|*all elements in namespace Selector. 1811 - When normalising attribute names during serialization, invalid characters are now replaced with
_, vs being stripped. This should make the process clearer, and generally prevent an invalid attribute name being coerced unexpectedly. 2143
Changes
- Removed previously deprecated internal classes and methods. 2094
- Build change: the built jar's OSGi manifest no longer imports itself. 2158
Bug Fixes
- When tracking source positions, if the first node was a TextNode, its position was incorrectly set
to
-1.2106 - When connecting (or redirecting) to URLs with characters such as
{,}in the path, a Malformed URL exception would be thrown (if in development), or the URL might otherwise not be escaped correctly (if in production). The URL encoding process has been improved to handle these characters correctly. 2142 - When using
W3CDomwith a custom output Document, a Null Pointer Exception would be thrown. 2114 - The
:has()selector did not match correctly when using sibling combinators (like e.g.:h1:has(+h2)). 2137 - The
:emptyselector incorrectly matched elements that started with a blank text node and were followed by non-empty nodes, due to an incorrect short-circuit. 2130 Element.cssSelector()would fail with "Did not find balanced marker" when building a selector for elements that had a(or[in their class names. And selectors with those characters escaped would not match as expected. 2146- Updated
Entities.escape(string)to make the escaped text suitable for both text nodes and attributes (previously was only for text nodes). This does not impact the output ofElement.html()which correctly applies a minimal escape depending on if the use will be for text data or in a quoted attribute. 1278 - Fuzz: a Stack Overflow exception could occur when resolving a crafted
<base href>URL, in the normalizing regex. 2165
java-native-access/jna
v5.15.0
==============
Features
- #1578: Add support for FreeBSD aarch64 - @alexdupre.
- #1593: Add support for DragonFly BSD x86-64 - @liweitianux.
- #1595: Add
IsProcessorFeaturePresenttoc.s.j.p.win32.Kernel32- @dbwiddis. - #1602: Add
XMoveWindow,XResizeWindow,XMoveResizeWindow,XRaiseWindow,XLowerWindowX11 calls toc.s.j.p.unix.X11- @vinceh121. - #1613: Added static helper method `Native#getNativeLibrary' for getting the underlying NativeLibrary instance from a Library interface instance or from a "registered" class - @matthiasblaesing.
- #1624: Enable linker build-id for android builds - @mstyura.
Bug Fixes
- #1579: Fix analysis of ELF binary on arm systems running with a java ELF binary without section table headers (java8 on armv7 NAS) - @matthiasblaesing.
- #1586: Fix free_callback JNI weak reference leak - @xiezhaokun.
- 6486c90d913a413f247eef84742ce3c474738933: Check CallbackReference#cbstruct for null when checking existing Reference - @matthiasblaesing.
- #1622: Add "linux-riscv64" entry to OSGI Bundle-NativeCode header in MANIFEST.MF - @matthiasblaesing.
vladmihalcea/hypersistence-utils
v3.8.2
================================================================================
Add JsonClobType and improve JsonType to support CLOB column types #734
v3.8.1
================================================================================
Enhance BatchSequenceGenerator with support for IdGeneratorType #728
v3.8.0
================================================================================
Add support for mapping Java Enums to custom ordinal values #730
v3.7.7
================================================================================
Remove hypersistence-utils-hibernate-52 module #726
MonetaryAmountType should use currency instead of property for the second attribute #707
v3.7.6
================================================================================
Use Spring Data Range as an alternative to PostgreSQL range type #721
ListArrayType on Set entity attribute fails for EntityManager.merge operation #717
v3.7.5
================================================================================
NullableCharacterType prevents Hibernate from escaping backslash properly #715
v3.7.4
================================================================================
Make the JsonTypeDescriptor thread-safe #713
Equals method not found on abstract class #709
hibernate/hibernate-orm
v6.6.1.Final
v6.6.0.Final
v6.5.3.Final
v6.5.2.Final
v6.5.1.Final
v6.5.0.Final
v6.4.10.Final
v6.4.9.Final
v6.4.8.Final
v6.4.7.Final
v6.4.6.Final
v6.4.5.Final
Blazebit/blaze-persistence
v1.6.12
02/08/2024 - Release tag Resolved issues
New features
- Add support for Spring Data/Boot 3.3
- Add
date_iso,time_isoandtimestamp_isointernal functions
Bug fixes
- Fix bug in collection insert code triggered by Hibernate ORM 6.4.2
- Fix concurrency issue leading to NPE when concurrently creating entity view updaters
- Fix
CAST_STRINGfor SQL Server - Ensure Spring Jackson integration copies
ObjectMapperbean - Fix entity view processor generated code for
@MappingSingularleading to compilation error - Fix
MULTISETissues with temporalBasicUserType
Backwards-incompatible changes
None yet
quarkusio/quarkus
v3.15.1
Complete changelog
- #38531 - Compilation fails on Azure Functions Blob Trigger
- #42711 - Bump Keycloak version to 25.0.4
- #43305 - gRPC bidi streaming testing in DevUI is broken
- #43310 - Docs: config property names in the generated docs are no longer links
- #43311 - Fix a few issues with the local proxy for REST Client feature
- #43337 - Fix gRPC DevUI testing console
- #43343 - Minor updates to the Getting Started with Security doc
- #43344 - The logging guide review for 3.15
- #43355 - Remove unnecessary symbols that force you to change lines after copying each time
- #43371 - The Data source guide review for-3-15
- #43377 - Docs: Fix example in "Accessing Static Fields and Methods"
- #43391 - Quarkus Spring Data documentation should document newly supported interfaces and update existing examples
- #43403 - Fix classloading in AzureFunctionsProcessor#findFunctions
- #43407 - Picocli guide - add a note about passing arguments for gradle project
- #43411 - Remove a duplicated line in the TLS registry guide
- #43414 - Update protobuf-java to 3.25.5
- #43426 - Bump Keycloak version to 25.0.6
- #43431 - Bump protoc/protobuf-java from 3.25.3 to 3.25.5
- #43447 - Update headings to headings to prevent confusing numbering
- #43451 - Spring APIs - Document newly supported interfaces and update existing examples
- #43457 - Remove a superfluous quote in the GraphQL client docs
- #43460 - Small followup for Picocli + Gradle improvement
- #43493 - Config Doc - Bring back the links for config sections and properties
v3.15.0
Complete changelog
- #43207 - Cleanup & nitpicks on guide: security-jwt
- #43297 - Using jib with opentelemetry cannot produce a stable library layer
- #43300 - Set filtered jar's manifest time to epoch
- #43309 - Follow up of the fix making jar file reference close idempotent with minor comments and refactor
- #43313 - Smallrye GraphQL: add missing federation annotations to index
- #43314 - Make sure server log load on Dev UI start
- #43315 - TLS reference guide IDs' unification
v3.14.4
Complete changelog
- #29604 - Add quarkus property to set the hibernate flushmode
- #37618 - No server chosen by com.mongodb.reactivestreams: Failed looking up SRV record
- #42706 - TLS reference guide review: Follow-up
- #43087 - Messaging extensions doc update for tls-registry usage
- #43187 - Pulsar devservice is not starting on RHEL 8 aarch64
- #43212 - Fixed Maven artifact resolver initialization in QuarkusProjectMojoBase
- #43217 - Calling blocking code from SecurityIdentityAugmentor causes concurrent requests to be limited by the number of event loop threads
- #43222 - Introduce retry into Mongo DNS resolution
- #43224 - Bump com.gradle.plugin-publish from 1.2.2 to 1.3.0 in /devtools/gradle
- #43228 - Fails to shutdown when using grpc and kafka-streams extensions
- #43234 - Add a note on JsonFormat annotation and ORM FormatMapper
- #43246 - Expose property
quarkus.hibernate-orm.flush.mode - #43247 - Application hangs when using quarkus.http.ssl.certificate.reload-period less than 30s
- #43248 - Don't execute blocking security code serially as it limits concurrent blocking execution to number of the event loops
- #43252 - Properly fail when TLS reload config is invalid
- #43257 - Fix jar file reference close race condition
- #43261 - Quarkus is using an H2 version with a regression causing data loss
- #43263 - KafkaStreamsProducer no longer shuts down the injected executorservice
- #43265 - Downgrade H2 to 2.3.230
- #43266 - [3.15] Revert Gradle cache compatibility changes
- #43275 - Use the branch version to compile the quickstarts
- #43277 - Fix an OidcEndpoint typo in the OIDC doc
- #43279 - Downgrade the default pulsar devservice image to 3.2.4
- #43289 - Do not define quarkus.version as it makes Keycloak resolution fail
v3.14.3
Complete changelog
- #30087 - jbang does not persist Q:CONFIG keys nor build set keys
- #32831 - Hibernate Validator Failure When TZ Set to Non-UTC
- #41558 - Add documentation for vertx and qute integration
- #41559 - Add documentation for Vertx and Qute integration
- #42256 - Gradle early task configuration causes
quarkus.container-image.properties to be ignored - #42496 - Configuration Cache compatibility (
QuarkusGenerateCode-QuarkusBuid) - #42511 - TLS Reference guide grammar check and review
- #42724 - gRPC Server INTERNAL: HTTP status code 400 When Upgrading from 3.12.3 > 3.13.0
- #42751 -
tlscommand not found despite the extension present in the application - #42851 - classic resteasy-client: ensure sub-resources are also proxied
- #42875 - Compatibility with configuration cache for image tasks
- #42905 - Port resteasy fix for sub-resources
- #42908 - Cannot initialize file manager
- #42948 - Document generic synthetic bean creation
- #42990 -
logout.backchannel.pathfails whenhttp.root-pathis present - Again - #42995 - Fix minor typo: Use correct syntax for TIP admonition
- #42998 - Error page and not found page now looks the same in prod mode
- #43000 - Fix registration of backchannel logout route
- #43009 - mention gradle dsl kts not supported in quarkus update
- #43010 - Fix error message when a REST Client throws an exception
- #43015 - REST: comment out useless 10K System.out.printl() in the DrainTest
- #43017 - DefaultJaxRsRolesAllowedImplMethodSecuredTest produces a large number of errors
- #43018 - Reduce log clutter in security tests
- #43019 - Properly escape log message additions
- #43020 - Store Quarkus version in native executable
- #43021 - Decorated stacktrace that is added to the log record is not properly decorated
- #43023 - Reduce Agroal pool logging
- #43025 - Support transitive extensions when searching for plugins
- #43028 - Bump org.jboss.marshalling:jboss-marshalling from 2.2.0.Final to 2.2.1.Final
- #43029 - Bump mongo-client.version from 5.1.3 to 5.1.4
- #43040 - Excluding depencency from arc based on group id only results in NoSuchElementException
- #43041 - Update Vertx to version 4.5.10
- #43043 - Fix Arc dependency exclusion configuration
- #43044 - include sbom feature in LTS
- #43045 - Embed quarkus version in native executable as a global string symbol
- #43051 - Show exception cause during logging filter initialization
- #43052 - Show exception cause during logging filter initialization
- #43055 - Avoid publishing the
docsmodule in Maven Central in extension template - #43063 - Bump com.gradle:common-custom-user-data-maven-extension from 2 to 2.0.1
- #43066 - Add Application links on the welcome page
- #43070 - Add a note about let's encrypt challenge requiring the port 80 to be accessible
- #43071 - Quarkus CLI for extension setting old rest name
- #43082 - Fix guide URL in web-dependency-locator
- #43083 - Apply quarkus-rest-client-oidc-token-propagation name
- #43085 - [3.14] Fix Boolean serializer
- #43089 - Avoid using "Reactive" for Quarkus REST in security doc
- #43095 - Qute: fix unsatisfied exception when recording rendered results is off
- #43096 - Use a Quarkus-specific clock provider that is reinitialized at runtime
- #43107 - TLS registry named config and Quarkus Messaging Kafka or Kafka Client can lead to failed application startup
- #43108 - Use the shared JsonProvider when creating Jsonb instance
- #43109 - Documentation generation for configuration properties in OIDC module leaves out plenty of information
- #43112 - Fix visual studio code svg
- #43113 - Documentation is not rendering the VSCode icon
- #43115 - Config Doc - Configure OIDC Common annotation processor for legacy root
- #43116 - Kafka TLS Registry integration: include tls-configuration-name in Kafka config
- #43118 - Fix doc numeration level of lists extension methods
- #43126 - Allows users to exclude DefaultMismatchedInputException
- #43131 - Revert "Satisfy GraalVM's classpath needs for the deletion of
org.h2.fulltext.FullTextLucene" - #43132 - Fix obsolete name in integration tests pom.xml of quarkus extension codestart
- #43135 - The class CertificateReloadedEvent missing
- #43137 - The CDI event fired after a successful update of certificates was wrong in the documentation
- #43139 - [3.14] Initial support for SBOM generation and CycloneDX
- #43142 - Fix flaky OTel tests
- #43157 - [3.14] Make generated Jackson serializers to work with null values of boxed types
- #43160 - Add runtime properties to Quarkus builder
- #43168 - Update rest-data-panache docs to clarify experimental status
- #43169 - Fixes error if annotation processing directories do not exist
- #43194 - Fix javadoc for quarkus.bootstrap.incubating-model-resolver
- #43195 - Config Doc - Reset list status for passthrough maps
v3.14.2
Complete changelog
- #31375 - RuntimeException using VirtualThreads with Jacoco
- #31802 - Unauthenticated request with a request path that contains a semicolon results in a server exception when using OIDC
- #34395 - Spring Data API Extension Property Expressions with List not working
- #41854 - REST request fails after adding maven dependency to quarkus-opentelemetry
- #41927 - Fix off-by-one issue caused by ObservabilityIntegrationRecorder using its own method for getting path without prefix
- #42098 - Kotlin junit ParameterizedTest with list as argument, not working anymore (3.13.0.CR1)
- #42109 - Make sure arrays are always cloned as arrays
- #42136 - Fail OIDC build if a primitive type Claim is injected in Singleton
- #42205 - Enable comments (reasons) in the generated reflect-config.json and improve hierarchical registration tracing
- #42228 - Native image build fails with
-Dquarkus.native.report-errors-at-runtime - #42301 - Records that contain Enum are still unsupported with
@ParameterizedTesteven with Serializable in 3.13.0 - #42394 - Take
@JsonPropertyinto account in the reflection free Jackson serializers - #42466 - quarkus.knative.app-config-map misses adding the volumes to the ksvc template
- #42485 - Fix quarkus.knative.app-config-map misses adding the volumes to the ksvc template
- #42491 - Change dekorate template to use the intended knative object
- #42535 - Add "how to write dev services" documentation
- #42578 - OTEL +
quarkus.http.test-timeout-> NullPointerException: Cannot invoke "io.vertx.core.spi.observability.HttpResponse.headers()" because "httpResponse" is null - #42619 - Jackson build time serializers could use SerializableString field names
- #42651 - Use SerializableString field names + support for
@JsonPropertyin the reflection free Jackson serializers - #42661 - Bump Micrometer to 1.13
- #42684 - Encode URL in OIDC cookie
- #42702 - Updates to Infinispan 15.0.8.Final
- #42703 - Update security docs
- #42705 - Fix for resolving entity fields based on collections and generics
- #42707 - Update OAuth2 docs because of change in Bearer token check change
- #42714 - Continuous testing exclude-tags or exclude-engines cannot be configured via pom.xml anymore in 3.13
- #42718 - Bump flyway.version from 10.17.1 to 10.17.2
- #42733 - Qute template exception don't print origin
- #42745 - Remove useless enum converter allocation
- #42752 -
quarkuscli always return 1 for exitcode for plugin commands - #42755 - Upload native build stats from a single GH runner
- #42761 - Qute: ignore template files that contain whitespace in its name
- #42766 - Use initial Quarkus Dev config for test tags and engines
- #42773 - Remove jakarta.json.Json usage for performance reasons
- #42774 - quarkus.rest.jackson.optimization.enable-reflection-free-serializers=true fails native build of StartStopTS microprofile application
- #42778 - Rest Client (formerly reactive) keep using DEFAULT_MAX_POOL_SIZE
- #42779 - QuarkusComponentTest: programmatic lookup improvements
- #42783 - Qute: ignore template files that contain whitespace in its name
- #42786 - Quarkus CLI Catalog wipes its content when a new plugin is added / removed
- #42787 - Qute: print origin if non-literal value used in bracket notation
- #42788 - Invalidate catalogs when adding/removing plugins
- #42793 - Quote directory variable to support directories with spaces
- #42794 - Avoid
NullPointerExceptions when application fails to start - #42806 - quarkus-websockets-next client connect to WSS not possible
- #42808 - quarkus-websockets-next client adds / to empty path
- #42810 - Register InetAddressResolverProvider service providers
- #42814 - OpenTelemetry traces and metrics config fallback to base
- #42815 - The configuration options missing the
quarkus.oidc.credentials.* - #42820 - Disable GrpcCliTest#testCommand due to CI failures
- #42821 - CDI: add cross-reference links to docs
- #42822 - Qute docs: clarify template record not annotated with
@CheckedTemplate - #42823 - Properly set PoolOptions for REST Client
- #42826 - WebSockets Next - client: support the
wssscheme correctly - #42828 - Duplicate annotation for class: interface org.jetbrains.annotations.NotNull
- #42830 - WebSockets Next: support endpoints with empty path
- #42832 - Respect exit code of cli commands
- #42833 - ArC - static methods interception: fix the set of copied annotations
- #42835 - Config Doc - Fix two scanning issues
- #42837 - ArC docs: mention
@​Inject@AllList<>in section about unused beans - #42840 - Possible to handle routes for base URI without path from extensions
- #42844 - System properties config overrides in tests does not seem to take effect properly in quarkus 3.14.1
- #42846 - Updating selected OIDC/OpenID guides
- #42848 - Bump org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.1 to 1.7.2
- #42853 - Config Doc - Also ignore FileNotFoundException
- #42856 - Always put Jackson first in documentation
- #42857 - quarkus-rest-client-jackson - Force property
- #42858 -
ExtLogRecordcreation is more costly following the update to SmallRye Common 2.4.0 - #42859 - Satisfy GraalVM's classpath needs for the deletion of
org.h2.fulltext.FullTextLucene - #42860 - Quarkus output class in incorrect folder on live reload (gradle, multimodule, kotlin)
- #42862 - Revert "QuarkusTestProfile overrides in a high ordinal application.properties"
- #42864 - Correct typo in messaging.adoc
- #42865 - kafka_version label is unkown in native mode
- #42866 - DevUI log timestamp difference, as it was reported in GMT
- #42867 - Dev mode error page stacktrace doesn't open problematic code IDE on click
- #42869 - Dev UI log view doesn't catch up with logs after application restart
- #42870 - Decorated stacktraces in dev mode are not provided when using tools like curl or postman
- #42871 - org.springframework.aot.hint.annotation.Reflective missing from our Spring compatibilty layer?
- #42877 - Quarkus CLI subcommand
tlsis missing help option despite showing help - #42880 - Remove BOOTSTRAP config phase from documentation
- #42881 - Bump com.gradle.plugin-publish from 1.2.1 to 1.2.2 in /devtools/gradle
- #42883 - Fix Quarkus CLI TLS command help option
- #42884 -
CompiledJavaVersionBuildStepmay load a wrong class number with gradle - #42885 - Bump wildfly-elytron.version from 2.5.1.Final to 2.5.2.Final
- #42889 - Fix some small Dev UI issues
- #42895 - Upgrade spring-api dependency
- #42896 - Possible to handle routes for base URI without path from extensions
- #42897 - Process classes from the application artifact instead of the module output directory
- #42898 - Fix Kafka kafka-version metrics tag missing in native
- #42899 - Use quarkus-rest instead of quarkus-resteasy as default extension in maven plugin
- #42901 - Add LGTM traces test / check
- #42911 - Fix OTel DelayedAttributes bean handling
- #42913 - Gradle - Correctly merge classes dir when using dev mode
- #42914 - Fix Jackson serializers generation for interfaces and boxed primitive types
- #42915 - Upgrading to 3.13.x+ causes parameterised tests using record argument to fail with LinkageError 'loader constraint violation'
- #42916 - Update to JBoss Marshalling 2.2.0.Final
- #42918 - Update SmallRye Common to 2.6.0
- #42919 - ContainerRequestFilter checking for annotation fails in native
- #42924 - Bump io.smallrye.common:smallrye-common-bom from 2.5.0 to 2.6.0
- #42926 - Bump hibernate-search.version from 7.2.0.Final to 7.2.1.Final
- #42927 - Add missing dot to GraalVM not found message
- #42928 - Property [autoIncrement] was not found for object type [liquibase.datatype.core.BigIntType]
- #42930 - Config Doc - Avoid annotations in primitive type name
- #42932 - Improve compatibility of the REST Client configuration
- #42936 - Add decorate to all contents types and added text base error response
- #42941 - Register all resource classes for reflection when
ResourceInfois used - #42944 - Test:
quarkus.http.portis not updated with random port activated throughquarkus.http.test-port=0 - #42950 - Changed order of property resolution in tests
- #42958 - Signed OIDC UserInfo whith charset not recognized
- #42962 - Support OIDC signed UserInfo with charset content type parameters
- #42964 - Registering Liquibase BigIntType and Additional Classes for Reflection
- #42968 - Bump flyway.version from 10.17.2 to 10.17.3
- #42969 - Bump io.quarkus:quarkus-platform-bom-maven-plugin from 0.0.107 to 0.0.108
- #42977 - Quarkus REST client and Quarkus REST with abstract resource - NATIVE build fails
- #42980 - Prevent REST Client handling of abstract classes
- #42981 -
gu install native-imageinstructions are not need anymore - #42983 - Remove mentions to obsolete
gu install native-image
v3.14.1
Complete changelog
- #42166 - LogManager error of type GENERIC_FAILURE: Handler with name 'console' is linked to a category but not configured.
- #42537 - REST usage fails with native when e.g. ContainerResponseFilter is used
- #42612 - MQTT dev services always start if another reactive messaging connector is present
- #42670 - Upgrade opentelemetry-semconv to 1.26.0-alpha
- #42672 - Add socket timeout config for the hotrod client
- #42698 - Fix config encryption CLI command in guide
- #42725 - Bump mssql-jdbc to 12.8.1
- #42738 - Fix OIDC Discord provider configuration
- #42742 - Bump org.postgresql:postgresql from 42.7.3 to 42.7.4
- #42746 - Fix MQTT dev services always start if there is another connector present
- #42753 - TLS - Prevent Duplicate Entries in .env File
- #42754 - Register resource classes for reflection when ContainerResponseFilter exists
- #42758 - Single enum converter
- #42759 - Save Objects::hash varargs array allocation on JarResource::hashCode
- #42784 - Quarkus CLI report error when using CLI plugins with flags
- #42785 - False error message on cli plug with flags
- #42789 - Fix logging categories doc example
- #42797 - Upgrade to SmallRye GraphQL 2.9.2
v3.14.0
Complete changelog
- #42367 - Setting quarkus.http.proxy.proxy-address-forwarding=true changes Host header to host
- #42449 - Gradle task quarkusGenerateCode with custom Microprofile converter causes java.util.ServiceConfigurationError
- #42539 - Added office 365 email configuration
- #42546 - Wrong callback URL in documentation for GitHub OIDC
- #42548 - Fixing documentation regarding OIDC with GitHub
- #42551 - Bump apicurio-registry.version from 2.5.10.Final to 2.6.2.Final
- #42561 - Properly handle case when quarkus-extension.yaml doesn't exist
- #42572 - Add keystore and truststore default format change
- #42584 - Custom Smallrye ConfigSourceInterceptor not loading class using Gradle
- #42585 - Do not try to create temp directory in test archives
- #42614 - Improve error message / exception "Unable to start the management interface" by mentioning the actual port number
- #42617 - Add host and port when error creating management interface
- #42622 - New Stork version aligning k8s client version
- #42624 - Try a new approach for caching Maven local repository
- #42633 - Bump
quarkiverse-parentfrom 16 to 17 - #42648 - Use the
Hostheader in a proxied responses instead ofhost - [#42649](https…