-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update SCP port for website deployment and prepare release notes
- Loading branch information
Showing
10 changed files
with
115 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
entity-view/testsuite/src/main/java/com/blazebit/persistence/view/testsuite/Dummy.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
* Copyright 2014 - 2019 Blazebit. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.blazebit.persistence.view.testsuite; | ||
|
||
/** | ||
* Newer Javadoc versions don't package empty javadocs anymore. | ||
* | ||
* @author Christian Beikov | ||
* @since 1.4.0 | ||
*/ | ||
public class Dummy { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
...te/src/main/jbake/content/news/2019/blaze-persistence-1.4.0-Alpha2-release.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
= Blaze-Persistence 1.4.0-Alpha2 Release | ||
Christian Beikov | ||
2019-09-17 0 | ||
:description: Blaze-Persistence version 1.4.0-Alpha2 was just released | ||
:page: news | ||
:icon: christian_head.png | ||
:jbake-tags: announcement,release | ||
:jbake-type: post | ||
:jbake-status: published | ||
:linkattrs: | ||
|
||
We just released Blaze-Persistence version 1.4.0-Alpha2, this time, mostly with new features! | ||
The most exciting feature of this release is obviously window function support and the new expression syntax support for it. | ||
|
||
If you want to get the number of objects while fetching them and avoid the need for grouping or subqueries, you can now do something like | ||
|
||
[source,java] | ||
---- | ||
criteriaBuilder.select("count(*) over (partition by entity.id)") | ||
---- | ||
|
||
We added support for the most common window functions, also see +++<!-- PREVIEW-SUFFIX --><!-- </p></div> --><!-- PREVIEW-END -->+++the new window function chapter: https://persistence.blazebit.com/documentation/core/manual/en_US/index.html#window-functions-2 | ||
|
||
Other new notable features are: | ||
|
||
* https://github.com/Blazebit/blaze-persistence/issues/812[*#812*, window="_blank"] Temporal extraction, diff, truncation and arithmetic functions | ||
* https://github.com/Blazebit/blaze-persistence/issues/803[*#803*, window="_blank"] Introduction of comparison methods that render literals | ||
* https://github.com/Blazebit/blaze-persistence/issues/801[*#801*, window="_blank"] MySQL 8 support | ||
* https://github.com/Blazebit/blaze-persistence/issues/797[*#797*, window="_blank"] EntityManager resolving in spring data integration is random | ||
* https://github.com/Blazebit/blaze-persistence/issues/795[*#795*, window="_blank"] Move available configuration properties to API artifacts | ||
* https://github.com/Blazebit/blaze-persistence/issues/793[*#793*, window="_blank"] Shade ANTLR into parser | ||
Take a look into the https://github.com/Blazebit/blaze-persistence/blob/master/CHANGELOG.md#140-alpha2[changelog, window="_blank"] for a full list of changes and improvements. | ||
A big thank you goes out to Jan-Willem Gmelig Meyling and his colleague Sayra Ranjha for implementing the initial window functions as well as the temporal functions! | ||
The long awaited feature entity view lifecycle listeners will take some more time as I'm currently working on a new project called https://github.com/Blazebit/blaze-notify[blaze-notify, window="_blank"] | ||
that will make it super easy to integrate transactional notifications(E-Mail, App notifications, etc.) into your own applications. | ||
Unless someone works on a PR for other new features, the next release will be about preliminary support for entity view lifecycle listeners! |