Skip to content

Commit bdfa537

Browse files
committed
Add frontmatter marker to markdown to force rendering
1 parent b902de0 commit bdfa537

30 files changed

+34
-0
lines changed

_migrations/Migration-Guide-1.10.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Hibernate ORM
23

34
* `quarkus.hibernate-orm.log.bind-param` is deprecated and has been renamed `quarkus.hibernate-orm.log.bind-parameters`. The former will be removed at a later stage.

_migrations/Migration-Guide-1.11.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Log min-level
23

34
If you are using TRACE (or DEBUG too if using 1.11.0.Final or 1.11.1.Final - changed in 1.11.2.Final) log level, we made an important change in our logging layer: a new build-time `min-level` configuration property was introduced that sets the minimum log level you will be able to use at runtime.

_migrations/Migration-Guide-1.12.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Fast-jar as default
23

34
Fast-jar is a new Quarkus application packaging format that is faster to boot, compared to our legacy jar packaging. It was introduced several versions ago and it brings many improvements that made us make it the new default.

_migrations/Migration-Guide-1.13.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Configuration
23

34
All `application.properties` files found in the classpath are loaded in the Quarkus configuration. Files in the current application will have priority and files in dependencies will use the classloader order. This means, that your Quarkus application may pick up additional configuration that was not picked up previously and possible change the behaviour of your application.

_migrations/Migration-Guide-1.2.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Hibernate ORM
23

34
In Quarkus, the bytecode enhancement of Hibernate ORM is always on.

_migrations/Migration-Guide-1.3.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Maven
23

34
You need to upgrade Maven to 3.6.2+ due to a bug in Maven resolver.

_migrations/Migration-Guide-1.4.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Multi-module projects
23

34
If your projects have multiple modules, for a number of extensions (Hibernate Validator for instance), we are not considering the combined index anymore (i.e. the one built of all the Jandex indexes present in your modules) but the bean archives index.

_migrations/Migration-Guide-1.5.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Qute
23

34
`io.quarkus.qute.api.VariantTemplate` was removed from the API. The functionality is now provided by an injected `io.quarkus.qute.Template`. Injected templates do not support the `getExpressions()`, `getGeneratedId()` and `getVariant()` methods.

_migrations/Migration-Guide-1.6.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Maximum size allowed for request body limited to 10 MB
23

34
The maximum size allowed for the request body used to be unlimited by default, it's now limited to a safer default value of 10 MB.

_migrations/Migration-Guide-1.7.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Infinispan Embedded
23

34
The Infinispan Embedded extension has been discontinued with no replacement.

_migrations/Migration-Guide-1.8.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Datasource configuration
23

34
This is the last call to migrate your deprecated datasource configuration to the new one before it gets removed in Quarkus 1.9 - the new datasource configuration was introduced in Quarkus 1.3.

_migrations/Migration-Guide-1.9.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Datasource Configuration
23

34
In 1.3, we introduced a new much more flexible datasource configuration supporting both JDBC and reactive datasources in a unified way.

_migrations/Migration-Guide-2.0.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## JDK 11
23

34
The minimal JDK version supported by Quarkus 2.0 is JDK 11.

_migrations/Migration-Guide-2.1.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Hibernate with Panache split packages
23

34
To avoid split packages:

_migrations/Migration-Guide-2.10.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Keycloak Authorization and Keycloak 18.0.0
23

34
Keycloak version has been bumped to [18.0.0](https://www.keycloak.org/2022/04/keycloak-1800-released.html). It may affect `quarkus-keycloak-authorization` users who have authorization policies represented as `Java Script` and uploaded to Keycloak because the `upload-scripts` feature has been removed in Keycloak 18.0.0.

_migrations/Migration-Guide-2.11.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## GraphQL endpoints are singleton by default
23

34
Previously, the default scope attached to a `@GraphQLApi` endpoint was `@Dependent`. Now, unless you explicitly add a scope annotation to your endpoint, it will act as a `@Singleton` bean. This is thus aligned with the default behavior of JAX-RS endpoints.

_migrations/Migration-Guide-2.12.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## `quarkus.hibernate-search-orm.enabled` was renamed to `quarkus.hibernate-search-orm.active`
23

34
If you were previously using the configuration property `quarkus.hibernate-search-orm.enabled` to enable/disable Hibernate Search at runtime (by setting the config in deployment configuration files, environment variables or commandline parameters), then you should use the configuration property `quarkus.hibernate-search-orm.active` instead.

_migrations/Migration-Guide-2.13.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
3+
---
4+
15
## GraalVM CE / Mandrel migration from 22.2 to 22.3
26

37
Starting with 2.13.4.Final, Quarkus defaults to using GraalVM CE / Mandrel 22.3 for generating native executables.

_migrations/Migration-Guide-2.14.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## GraalVM CE / Mandrel migration from 22.2 to 22.3
23

34
Quarkus 2.14.0.Final still defaults to GraalVM CE / Mandrel 22.2 but, starting with 2.14.1.Final, Quarkus will default to using GraalVM CE / Mandrel 22.3 for generating native executables.

_migrations/Migration-Guide-2.15.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
2+
13
## Hibernate ORM - IN clause parameter padding
24

35
The Hibernate ORM extension now enables IN clause parameter padding by default, improving the caching of queries containing IN clauses.

_migrations/Migration-Guide-2.16.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Config
23

34
Configuration property names set in `.env` files are now converted to their expected name, following the Environment Variables naming rules detailed in https://quarkus.io/version/2.16/guides/config-reference#environment-variables.

_migrations/Migration-Guide-2.17.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12

23

34
## Keystore default password

_migrations/Migration-Guide-2.2.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## SmallRye Config
23

34
SmallRye Config `@ConfigMapping` can now only be used on interfaces. Using it on classes results in a build-time exception.

_migrations/Migration-Guide-2.3.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Dev Mode Working Directory
23

34
The working directory for dev mode has been changed from the build directory (`target/`) to the root of the project.

_migrations/Migration-Guide-2.4.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## MicroProfile Config
23

34
Injection points targeting beans annotated with `org.eclipse.microprofile.config.inject.ConfigProperties`, require to be annotated with the `org.eclipse.microprofile.config.inject.ConfigProperties` qualifier as stated in the MicroProfile specification. Previous Quarkus versions were only requiring a single `@Inject`.

_migrations/Migration-Guide-2.5.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Flyway
23

34
We upgraded the Flyway dependency from 7.15 to version 8.0. Please refer to the [Flyway release notes](https://flywaydb.org/documentation/learnmore/releaseNotes#8.0.1) to see all the changes.

_migrations/Migration-Guide-2.6.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## Extensions moved to the Quarkiverse Hub
23

34
Once upon a time, Quarkus was a young project and we didn't have a lot of infrastructure around it to host extensions.

_migrations/Migration-Guide-2.7.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## JNDI disabled by default
23

34
Except if one of the extensions you are using in your application requires it, JNDI is now disabled by default.

_migrations/Migration-Guide-2.8.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## RESTEasy Reactive by default
23

34
RESTEasy Reactive is now our default REST layer.

_migrations/Migration-Guide-2.9.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
## H2 upgrade
23

34
H2 has been upgraded from 1.4.197 to 2.1.210.

0 commit comments

Comments
 (0)