Skip to content

Commit

Permalink
chore: release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Feb 13, 2025
1 parent fd5c9f7 commit e5ccf97
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 22 deletions.
50 changes: 35 additions & 15 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,44 @@
# History

- [6.0.4](#604-2024-04-03) (Apr 2024)
- [6.0.3](#603-2024-03-24) (Mar 2024)
- [6.0.2](#602-2024-03-03) (Mar 2024)
- [6.0.1](#601-2023-02-12) (Feb 2023)
- [6.0.0](#600-2023-01-02) (Jan 2023)
- [5.2.0](#520-2022-05-19) (May 2022)
- [5.1.0](#510-2021-03-17) (Mar 2021)
- [5.0.0](#500-2018-03-01) (Mar 2018)
- [4.3](#43-2017-12-24) (Dec 2017)
- [4.2](#42-2017-12-24) (Dec 2017)
- [4.1](#41-2017-04-05) (Apr 2017)
- [4.0](#40-2017-03-06) (Mar 2017)
- [3.1](#31-2016-12-16) (Dec 2016)
- [3.0](#30-2016-11-19) (Nov 2016)

| Version | Release date | Spring Boot compatibility |
|--------------------------|---------------|---------------------------|
| [7.0.0](#700-2025-02-13) | February 2025 | `>= 3.4.0` |
| [6.0.4](#604-2024-04-03) | April 2024 | " |
| [6.0.3](#603-2024-03-24) | March 2024 | " |
| [6.0.2](#602-2024-03-03) | March 2024 | " |
| [6.0.1](#601-2023-02-12) | February 2023 | " |
| [6.0.0](#600-2023-01-02) | January 2023 | `>= 3.O.0 && < 3.4.0` |
| [5.2.0](#520-2022-05-19) | May 2022 | " |
| [5.1.0](#510-2021-03-17) | March 2021 | " |
| [5.0.0](#500-2018-03-01) | March 2018 | `>= 2.O.0 && < 3.0.0` |
| [4.3](#43-2017-12-24) | December 2017 | " |
| [4.2](#42-2017-12-24) | December 2017 | " |
| [4.1](#41-2017-04-05) | April 2017 | " |
| [4.0](#40-2017-03-06) | March 2017 | " |
| [3.1](#31-2016-12-16) | December 2016 | " |
| [3.0](#30-2016-11-19) | November 2016 | `>= 1.O.0 && < 2.0.0` |


# Release notes

## [7.0.0](https://github.com/darrachequesne/spring-data-jpa-datatables/compare/v6.0.4...v7.0.0) (2025-02-13)

### Features

* upgrade to Spring Boot 3.4.0 ([fd5c9f7](https://github.com/darrachequesne/spring-data-jpa-datatables/commit/fd5c9f7aac04babf7d73370d39d19b33c2310571))

⚠ BREAKING CHANGE ⚠

`hibernate-core` is upgraded from `6.4.x` to `6.6.x`, which contains an important breaking change regarding type casts:

> `Expression.as()` doesn’t do anymore a real type conversions, it’s just an unsafe typecast on the Expression object itself.
Reference: https://docs.jboss.org/hibernate/orm/6.6/migration-guide/migration-guide.html#criteria-query

Note: this change is not compatible with older versions of Spring Boot, as `JpaExpression.cast()` was added in `[email protected]`.



## [6.0.4](https://github.com/darrachequesne/spring-data-jpa-datatables/compare/v6.0.3...v6.0.4) (2024-04-03)


Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,18 @@ public class UserRestController {
<dependency>
<groupId>com.github.darrachequesne</groupId>
<artifactId>spring-data-jpa-datatables</artifactId>
<version>6.0.4</version>
<version>7.0.0</version>
</dependency>
```

Compatibility with Spring Boot:

| Version | Spring Boot version |
|---------------|-------------------------------------------------------------------------|
| 4.x and below | 1 |
| 5.x | 2 |
| 6.x | [3](https://www.springcloud.io/post/2022-11/springboot3-upgrade-guide/) |
| Version | Spring Boot version |
|---------------|-----------------------|
| 7.x | `>= 3.4.0` |
| 6.x | `>= 3.0.0 && < 3.4.0` |
| 5.x | `>= 2.O.0 && < 3.0.0` |
| 4.x and below | `>= 1.O.0 && < 2.0.0` |


Back to [top](#contents).
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.darrachequesne</groupId>
<artifactId>spring-data-jpa-datatables</artifactId>
<version>6.0.4</version>
<version>7.0.0</version>

<name>Spring Data JPA for DataTables</name>
<description>Spring Data JPA extension to work with the great jQuery plug-in DataTables (http://datatables.net/)</description>
Expand Down

0 comments on commit e5ccf97

Please sign in to comment.