Skip to content

Commit

Permalink
Cleanup after release
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Nov 4, 2024
1 parent 777e3e3 commit fa4d73b
Show file tree
Hide file tree
Showing 8 changed files with 94 additions and 46 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Changes that happened in releases

## 1.6.13-SNAPSHOT
## 1.6.14-SNAPSHOT

### New features

Expand All @@ -16,6 +16,22 @@ None yet

None yet

## 1.6.13

04/11/2024 - [Release tag](https://github.com/Blazebit/blaze-persistence/releases/tag/1.6.13) [Resolved issues](https://github.com/Blazebit/blaze-persistence/issues?q=is%3Aissue+milestone%3A1.6.13+is%3Aclosed+sort%3Aupdated-desc)

### New features

* Add parameter and JSON path support for `JSON_GET()` function

### Bug fixes

* Fix integration issues with Hibernate ORM 6.6 and Quarkus 3

### Backwards-incompatible changes

None yet

## 1.6.12

02/08/2024 - [Release tag](https://github.com/Blazebit/blaze-persistence/releases/tag/1.6.12) [Resolved issues](https://github.com/Blazebit/blaze-persistence/issues?q=is%3Aissue+milestone%3A1.6.12+is%3Aclosed+sort%3Aupdated-desc)
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Blaze-Persistence is split up into different modules. We recommend that you defi

```xml
<properties>
<blaze-persistence.version>1.6.12</blaze-persistence.version>
<blaze-persistence.version>1.6.13</blaze-persistence.version>
</properties>
```

Expand All @@ -84,49 +84,49 @@ If you want a sample application with everything setup where you can poke around
Core-only archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-core-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-core-sample" "-DarchetypeVersion=1.6.13"
```

Entity view archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-entity-view-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-entity-view-sample" "-DarchetypeVersion=1.6.13"
```

Spring-Data archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-spring-data-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-spring-data-sample" "-DarchetypeVersion=1.6.13"
```

Spring-Boot archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-spring-boot-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-spring-boot-sample" "-DarchetypeVersion=1.6.13"
```

DeltaSpike Data archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-deltaspike-data-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-deltaspike-data-sample" "-DarchetypeVersion=1.6.13"
```

Java EE archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-java-ee-sample" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-java-ee-sample" "-DarchetypeVersion=1.6.13"
```

Core-only Jakarta archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-core-sample-jakarta" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-core-sample-jakarta" "-DarchetypeVersion=1.6.13"
```

Entity view Jakarta archetype:

```bash
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-entity-view-sample-jakarta" "-DarchetypeVersion=1.6.12"
mvn archetype:generate "-DarchetypeGroupId=com.blazebit" "-DarchetypeArtifactId=blaze-persistence-archetype-entity-view-sample-jakarta" "-DarchetypeVersion=1.6.13"
```

## Supported Java runtimes
Expand Down
2 changes: 1 addition & 1 deletion documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<properties>
<version.asciidoctor>1.6.0-alpha.7</version.asciidoctor>
<stable.version>1.6.12</stable.version>
<stable.version>1.6.13</stable.version>
<series.version>1.6</series.version>
</properties>

Expand Down
67 changes: 36 additions & 31 deletions roadmap.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,42 @@ Blaze-Persistence - Roadmap

As a side note, we are naming releases after http://marvel.com/comics/characters[Marvel comic characters] since we like the Avengers :)

= 2.2 Kang

** Spatial/Range datatype support
** RDBMS array datatype support
** Full query parser and EntityManager implementation
** Deep EclipseLink integration
** Deep DataNuceleus integration

= 2.1 Black Panther

** Debezium integration
** Collection DML and select API improvements
** Flush ordering according to data dependencies

= 2.0 Drax

** JPA static metamodel
** Custom static metamodel
** Dedicated Java 8 API
** API refactorings

= 1.7 Enchantress

** Table function support
** Merge operation support
** Interval arithmetics support
** Entity view collection attribute filters
** Specification(like JpaSpecification in Spring) for Spring Data and DeltaSpike Data
** DataNucleus 5.1/5.2/6.0 integration
** EclipseLink 2.7/3.0/3.1 integration
** Returning clause emulation
// = 2.2 Kang
//
// ** Spatial/Range datatype support
// ** RDBMS array datatype support
// ** Full query parser and EntityManager implementation
// ** Deep EclipseLink integration
// ** Deep DataNuceleus integration
//
// = 2.1 Black Panther
//
// ** Debezium integration
// ** Collection DML and select API improvements
// ** Flush ordering according to data dependencies
//
// = 2.0 Drax
//
// ** JPA static metamodel
// ** Custom static metamodel
// ** Dedicated Java 8 API
// ** API refactorings
//
// = 1.7 Enchantress
//
// ** Table function support
// ** Merge operation support
// ** Interval arithmetics support
// ** Entity view collection attribute filters
// ** Specification(like JpaSpecification in Spring) for Spring Data and DeltaSpike Data
// ** DataNucleus 5.1/5.2/6.0 integration
// ** EclipseLink 2.7/3.0/3.1 integration
// ** Returning clause emulation

= 2.0 Enchantress

** Jakarta Persistence 3.1+ and Java 11+ only
** Align library integration version support with upstream support guarantees

= 1.6 Lockjaw *[RELEASED]*

Expand Down
4 changes: 2 additions & 2 deletions website/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

<properties>
<!-- The current stable version -->
<stable.version>1.6.12</stable.version>
<stable.version>1.6.13</stable.version>
<series.version>1.6</series.version>
<!-- The current snapshot version -->
<snapshot.version>1.6.13-SNAPSHOT</snapshot.version>
<snapshot.version>1.6.14-SNAPSHOT</snapshot.version>

<!-- This is used for the htaccess file for filename based caching -->
<maven.build.timestamp.format>yyyyMMddHHmmssSSSS</maven.build.timestamp.format>
Expand Down
2 changes: 1 addition & 1 deletion website/src/main/jbake/content/downloads.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

[.releases]
|===
| 1.6.12 | 2024-08-02 | https://github.com/Blazebit/blaze-persistence/releases/download/1.6.12/blaze-persistence-dist-1.6.12.zip[*Download*, window="_blank"] | link:news/2024/blaze-persistence-1.6.12-release.html[More...]
| 1.6.13 | 2024-11-04 | https://github.com/Blazebit/blaze-persistence/releases/download/1.6.13/blaze-persistence-dist-1.6.13.zip[*Download*, window="_blank"] | link:news/2024/blaze-persistence-1.6.13-release.html[More...]
| 1.5.1 | 2020-09-14 | https://github.com/Blazebit/blaze-persistence/releases/download/1.5.1/blaze-persistence-dist-1.5.1.zip[*Download*, window="_blank"] | link:news/2020/blaze-persistence-1.5.1-release.html[More...]
| 1.4.1 | 2020-01-28 | https://github.com/Blazebit/blaze-persistence/releases/download/1.4.1/blaze-persistence-dist-1.4.1.zip[*Download*, window="_blank"] | link:news/2020/blaze-persistence-1.4.1-release.html[More...]
| 1.3.2 | 2019-02-26 | https://github.com/Blazebit/blaze-persistence/releases/download/1.3.2/blaze-persistence-dist-1.3.2.zip[*Download*, window="_blank"] | link:news/2019/blaze-persistence-1.3.2-release.html[More...]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
= Blaze-Persistence 1.6.13 Release
Christian Beikov
2024-11-04 0
:description: Blaze-Persistence version 1.6.13 was just released
:page: news
:icon: christian_head.png
:jbake-tags: announcement,release
:jbake-type: post
:jbake-status: published
:linkattrs:

We are happy to announce the thirteenth bug fix release of the 1.6 series.

=== Hibernate ORM 6.6 compatibility fixes

Users reported problems with Hibernate ORM 6.6 in Spring and Quarkus applications+++<!-- PREVIEW-SUFFIX --><!-- </p></div> --><!-- PREVIEW-END -->+++
which were solved in this release.

=== JSON_GET enhancement

The `JSON_GET()` function was enhanced to support passing a JSON path literal and parameters.

=== Various bug fixes

Take a look into the https://github.com/Blazebit/blaze-persistence/blob/main/CHANGELOG.md#1613[changelog, window="_blank"] for a full list of changes and improvements.

Enjoy the release and stay tuned for the next one!
2 changes: 1 addition & 1 deletion website/src/main/jbake/jbake.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
site.host=http://localhost:8820/
asciidoctor.attributes.export=true
asciidoctor.attributes=imagesdir=images,source-highlighter=prettify
stable.version=1.6.12
stable.version=1.6.13
template.index.file=index.ftl
template.downloads.file=downloads.ftl
render.tags=true
Expand Down

0 comments on commit fa4d73b

Please sign in to comment.