You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by se...@apache.org on 2020/08/22 19:14:13 UTC

[calcite] branch master updated (0eaf56b -> 019c374)

This is an automated email from the ASF dual-hosted git repository.

sereda pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git.


    omit 0eaf56b  [CALCITE-4169] Adjust release notes for 1.25 after publishing artifacts
     new 019c374  [CALCITE-4169] Adjust release notes for 1.25 after publishing artifacts

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0eaf56b)
            \
             N -- N -- N   refs/heads/master (019c374)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 site/_posts/2020-08-22-release-1.25.0.md | 1 -
 1 file changed, 1 deletion(-)


[calcite] 01/01: [CALCITE-4169] Adjust release notes for 1.25 after publishing artifacts

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sereda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit 019c3746b9b81562aa615de1aa71f7d7467aead4
Author: Andrei Sereda <25...@users.noreply.github.com>
AuthorDate: Sat Aug 22 14:27:42 2020 -0400

    [CALCITE-4169] Adjust release notes for 1.25 after publishing artifacts
    
    1.25 was delayed by one week. Update dates and add news docs
---
 site/_docs/history.md                    |  7 +++---
 site/_posts/2020-08-22-release-1.25.0.md | 41 ++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+), 4 deletions(-)

diff --git a/site/_docs/history.md b/site/_docs/history.md
index e4ff681..d2c04d4 100644
--- a/site/_docs/history.md
+++ b/site/_docs/history.md
@@ -31,7 +31,7 @@ Downloads are available on the
 ## <a href="https://github.com/apache/calcite/releases/tag/calcite-1.25.0">1.25.0</a> / 2020-08-08
 {: #v1-25-0}
 
-This release comes shortly after [1.24.0](#v1-24-0) (in just two weeks) and removes methods 
+This release comes shortly after [1.24.0](#v1-24-0) and removes methods 
 which were deprecated in the previous version. It also introduces other breaking changes so
 make sure to consult corresponding section. Notable improvements in this release are:
 
@@ -53,8 +53,6 @@ UDFs that are table functions must implement `SqlTableFunction` and have `CURSOR
 Refactor how planner rules are parameterized
 * [<a href="https://issues.apache.org/jira/browse/CALCITE-4079">CALCITE-4079</a>]
 Dialect constants in `SqlDialect` can cause class initialization deadlock
-* [<a href="https://issues.apache.org/jira/browse/CALCITE-4114">CALCITE-4114</a>]
-Remove method `CalciteAssert.forceDecorrelate` (Jiatao Tao)
 * [<a href="https://issues.apache.org/jira/browse/CALCITE-4128">CALCITE-4128</a>]
 Remove dependency of File adapter on Example CSV adapter
 
@@ -103,7 +101,8 @@ Improve the prompt of using SQL keywords for sql parses (part2)
 Support deep equality check for `RelNode`
 * [<a href="https://issues.apache.org/jira/browse/CALCITE-4111">CALCITE-4111</a>]
 Remove `VolcanoPlannerPhase` in Planner (Jiatao Tao)
-
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-4114">CALCITE-4114</a>]
+Remove method `CalciteAssert.forceDecorrelate` (Jiatao Tao)
 
 ## <a href="https://github.com/apache/calcite/releases/tag/calcite-1.24.0">1.24.0</a> / 2020-07-24
 {: #v1-24-0}
diff --git a/site/_posts/2020-08-22-release-1.25.0.md b/site/_posts/2020-08-22-release-1.25.0.md
new file mode 100644
index 0000000..100e71b
--- /dev/null
+++ b/site/_posts/2020-08-22-release-1.25.0.md
@@ -0,0 +1,41 @@
+---
+layout: news_item
+date: "2020-08-22 14:22:00 -0500"
+author: sereda
+version: 1.25.0
+categories: [release]
+tag: v1-25-0
+sha: 68b02dfd4af15bc94a91a0cd2a30655d04439555
+---
+<!--
+{% comment %}
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you 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.
+{% endcomment %}
+-->
+
+The [Apache Calcite PMC]({{ site.baseurl }})
+is pleased to announce
+[Apache Calcite release 1.25.0]({{ site.baseurl }}/docs/history.html#v1-25-0).
+
+This release comes about one month after 1.24.0 and removes methods
+which were deprecated in the previous version. In addition, notable improvements in 
+this release are:
+
+* [Interval Expressions](https://issues.apache.org/jira/browse/CALCITE-4134)
+(e.g. `INTERVAL '1' HOUR`, `INTERVAL -'1:2' HOUR TO MINUTE`)
+* [Character Literals as Aliases](https://issues.apache.org/jira/browse/CALCITE-4080)
+* [Refactor How Planner Rules are Parameterized](https://issues.apache.org/jira/browse/CALCITE-3923)
+* [Spacial Functions](https://issues.apache.org/jira/browse/CALCITE-2160)