You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by fr...@apache.org on 2019/05/12 11:37:52 UTC

[calcite-avatica] branch master updated (fb6b5ad -> f954a0a)

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

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


    from fb6b5ad  [maven-release-plugin] prepare for next development iteration
     new a016703  [CALCITE-3058] Update website for 1.15.0 release
     new f954a0a  [CALCITE-3059] Fix release script to use correct release branch name when merging to master and to use the correct variable when generating the vote email

The 2 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:
 docker.sh                                            |  4 ++--
 site/_docs/history.md                                |  2 +-
 ...elease-1.14.0.md => 2019-05-13-release-1.15.0.md} | 20 +++++++++++---------
 3 files changed, 14 insertions(+), 12 deletions(-)
 copy site/_posts/{2019-04-29-release-1.14.0.md => 2019-05-13-release-1.15.0.md} (60%)


[calcite-avatica] 02/02: [CALCITE-3059] Fix release script to use correct release branch name when merging to master and to use the correct variable when generating the vote email

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

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

commit f954a0aebd18b55fa6b62b5b254de362a0b5ff69
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Sun May 12 21:36:38 2019 +1000

    [CALCITE-3059] Fix release script to use correct release branch name when merging to master and to use the correct variable when generating the vote email
---
 docker.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker.sh b/docker.sh
index e1644cb..fa1f97e 100755
--- a/docker.sh
+++ b/docker.sh
@@ -407,7 +407,7 @@ Here is my vote:
 
 +1 (binding)
 
-$NAME
+$FIRST_NAME
 "
 }
 
@@ -440,7 +440,7 @@ promote_release(){
     [[ $TAG_WITHOUT_RC =~ ([[:digit:]]+\.[[:digit:]]+)\.[[:digit:]]+$ ]]
     BRANCH_VERSION=${BASH_REMATCH[1]}
     git checkout master
-    git merge branch-$TAG_WITHOUT_RC --ff-only
+    git merge branch-avatica-$BRANCH_VERSION --ff-only
     git push $GITBOX_URL master
 
     svn checkout $RELEASE_REPO /tmp/release


[calcite-avatica] 01/02: [CALCITE-3058] Update website for 1.15.0 release

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

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

commit a0167034d92cf1f9d1cbcf05b6a60f8485f54a01
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Sun May 12 21:35:04 2019 +1000

    [CALCITE-3058] Update website for 1.15.0 release
---
 site/_docs/history.md                    |  2 +-
 site/_posts/2019-05-13-release-1.15.0.md | 37 ++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+), 1 deletion(-)

diff --git a/site/_docs/history.md b/site/_docs/history.md
index 2d0da73..ee6eabb 100644
--- a/site/_docs/history.md
+++ b/site/_docs/history.md
@@ -28,7 +28,7 @@ For a full list of releases, see
 Downloads are available on the
 [downloads page]({{ site.baseurl }}/downloads/avatica.html).
 
-## <a href="https://github.com/apache/calcite-avatica/releases/tag/rel/avatica-1.15.0">1.15.0</a> / 2019-05-XX
+## <a href="https://github.com/apache/calcite-avatica/releases/tag/rel/avatica-1.15.0">1.15.0</a> / 2019-05-13
 {: #v1-15-0}
 
 Apache Calcite Avatica 1.15.0 is a small release that reverts CALCITE-2845 due to some incompatibilities with downstream
diff --git a/site/_posts/2019-05-13-release-1.15.0.md b/site/_posts/2019-05-13-release-1.15.0.md
new file mode 100644
index 0000000..ea9efe8
--- /dev/null
+++ b/site/_posts/2019-05-13-release-1.15.0.md
@@ -0,0 +1,37 @@
+---
+layout: news_item
+date: "2019-05-13 08:30:00 +0000"
+author: francischuang
+version: 1.15.0
+categories: [release]
+tag: v1-15-0
+sha: 95e1545
+component: avatica
+---
+<!--
+{% 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 %}
+-->
+
+Apache Calcite Avatica 1.15.0 is a small release that fixes a regression causing
+error messages to not be propagated to clients. There is also a minor update to the
+docker release script to automate the upload of release artifacts and build promotion.
+See the list of [bug fixes and new features]({{ site.baseurl }}/docs/history.html#v1-14-0)
+for more information.
+
+Consumers of Avatica are encouraged to skip the 1.14.0 release and upgrade directly to
+1.15.0 due to the aforementioned regression.
\ No newline at end of file