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 2022/10/09 23:09:39 UTC

[calcite-avatica-go] branch main updated (df11f19 -> fc9cf4e)

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

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


 discard df11f19  [CALCITE-5313] Prepare for 5.2.0 release
     new d8bf385  Make directory safe for git in docker release script
     new fc9cf4e  [CALCITE-5313] Prepare for 5.2.0 release

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   (df11f19)
            \
             N -- N -- N   refs/heads/main (fc9cf4e)

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 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                | 6 ++++++
 site/_docs/go_history.md | 1 +
 2 files changed, 7 insertions(+)


[calcite-avatica-go] 01/02: Make directory safe for git in docker release script

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

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

commit d8bf385bf15035b86a610e2df49f0304743cb6f3
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Mon Oct 10 10:00:46 2022 +1100

    Make directory safe for git in docker release script
---
 docker.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docker.sh b/docker.sh
index 4e640df..3539080 100755
--- a/docker.sh
+++ b/docker.sh
@@ -37,6 +37,10 @@ init_upload(){
     apk --no-cache add git subversion
 }
 
+make_directory_safe_for_git(){
+   git config --global --add safe.directory /source
+}
+
 KEYS=()
 
 GPG_COMMAND="gpg"
@@ -596,12 +600,14 @@ compile_protobuf(){
 case $1 in
     dry-run)
         init_release
+        make_directory_safe_for_git
         mount_gpg_keys
         make_release_artifacts
         ;;
 
     release)
         init_release
+        make_directory_safe_for_git
         mount_gpg_keys
         make_release_artifacts_and_push_tag
         ;;


[calcite-avatica-go] 02/02: [CALCITE-5313] Prepare for 5.2.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 main
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git

commit fc9cf4ee6452024657cc4f74ab428e33f936fc65
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Mon Oct 10 09:54:29 2022 +1100

    [CALCITE-5313] Prepare for 5.2.0 release
---
 site/_docs/go_history.md | 61 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 61 insertions(+)

diff --git a/site/_docs/go_history.md b/site/_docs/go_history.md
index a2264c9..82d88a1 100644
--- a/site/_docs/go_history.md
+++ b/site/_docs/go_history.md
@@ -28,6 +28,67 @@ For a full list of releases, see
 Downloads are available on the
 [downloads page]({{ site.baseurl }}/downloads/avatica-go.html).
 
+## <a href="https://github.com/apache/calcite-avatica-go/releases/tag/v5.2.0">5.2.0</a> / 2022-10-XX
+{: #v5-2-0}
+
+Apache Calcite Avatica Go 5.2.0 is a maintenance release of Avatica Go with some dependency updates, bug fixes and a new
+minor feature. This release supports Go 1.18 and 1.19, which are currently the versions supported and maintained by the
+Go team.
+
+The `xinsnake/go-http-digest-auth-client` digest authentication client has been replaced with `icholy/digest` as the
+former has been deprecated and is no longer maintained.
+
+The `driver.SessionResetter` has also been implemented, allowing stale connections to the server to be purged and reset.
+
+Contributors to this release:
+Francis Chuang, Guozhong Li
+
+Features and bug fixes
+
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5072">CALCITE-5072</a>]
+  Index out of range when calling rows.Next()
+* Add Apache license header to website publication Github workflows
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5077">CALCITE-5077</a>]
+  ResetSession implements driver.SessionResetter
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-4147">CALCITE-4147</a>]
+  Rename "master" branch to "main"
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5234">CALCITE-5234</a>]
+  Remove witch / live-reload support for development
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5237">CALCITE-5237</a>]
+  Upgrade dependencies and regenerate protobufs
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5312">CALCITE-5312</a>]
+  Replace http digest auth library with github.com/icholy/digest
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5317">CALCITE-5317</a>]
+  Remove redundant type declarations
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5318">CALCITE-5318</a>]
+  Replace deprecated ioutil methods with io and os equivalents
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5319">CALCITE-5319</a>]
+  Remove DualStack dial option in HTTP client as it is deprecated and enabled by default
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5320">CALCITE-5320</a>]
+  Switch from deprecated_first_frame_max_size to first_frame_max_size protobuf member for setting the first frame max size
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5322">CALCITE-5322</a>]
+  Remove deprecated build tags
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5323">CALCITE-5323</a>]
+  Do not copy lock handle in statement
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5324">CALCITE-5324</a>]
+  Cancel context in tests
+* Make directory safe for git in docker release script
+
+Tests
+
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5235">CALCITE-5235</a>]
+  Run Github Actions tests using docker and upgrade Go
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-5236">CALCITE-5236</a>]
+  Test against Avatica 1.22 by default in docker-compose.yml
+
+Web site and documentation:
+
+* [<a href="https://issues.apache.org/jira/browse/CALCITE-3129">CALCITE-3129</a>]
+  Automate website builds
+* Push website only if there are changes
+* Link Go reference to the latest version of the documentation
+* Fix formatting in documentation
+
 ## <a href="https://github.com/apache/calcite-avatica-go/releases/tag/v5.1.0">5.1.0</a> / 2022-03-27
 {: #v5-1-0}