You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by dz...@apache.org on 2023/04/29 06:03:30 UTC

[drill-site] branch master updated: Update docs for the release of Drill 1.21.1.

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

dzamo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 43a810ec4 Update docs for the release of Drill 1.21.1.
43a810ec4 is described below

commit 43a810ec427df0b01692109e42d4fdf30c54e936
Author: James Turton <ja...@somecomputer.xyz>
AuthorDate: Sat Apr 29 07:58:02 2023 +0200

    Update docs for the release of Drill 1.21.1.
---
 _data/version.json                                 | 10 ++++----
 ...md => 100-ports-and-bind-addr-used-by-drill.md} |  7 ++---
 _docs/en/rn/041-1.21.1-rn.md                       | 30 ++++++++++++++++++++++
 blog/_posts/en/2023-04-29-drill-1.21.1-released.md | 11 ++++++++
 4 files changed, 50 insertions(+), 8 deletions(-)

diff --git a/_data/version.json b/_data/version.json
index 5e1e85d0a..4afc54096 100644
--- a/_data/version.json
+++ b/_data/version.json
@@ -1,7 +1,7 @@
 {
-  "display_version": "1.21.0",
-  "full_version": "1.21.0",
-  "release_date": "Febrauary 21, 2023",
-  "blog_post":"/blog/2023/02/21/drill-1.21.0-released",
-  "release_notes": "/docs/apache-drill-1-21-0-release-notes/"
+  "display_version": "1.21.1",
+  "full_version": "1.21.1",
+  "release_date": "April 29, 2023",
+  "blog_post":"/blog/2023/04/29/drill-1.21.1-released",
+  "release_notes": "/docs/apache-drill-1-21-1-release-notes/"
 }
diff --git a/_docs/en/configure-drill/100-bind-addr-and-ports-used-by-drill.md b/_docs/en/configure-drill/100-ports-and-bind-addr-used-by-drill.md
similarity index 95%
rename from _docs/en/configure-drill/100-bind-addr-and-ports-used-by-drill.md
rename to _docs/en/configure-drill/100-ports-and-bind-addr-used-by-drill.md
index d795507d6..47ce52121 100644
--- a/_docs/en/configure-drill/100-bind-addr-and-ports-used-by-drill.md
+++ b/_docs/en/configure-drill/100-ports-and-bind-addr-used-by-drill.md
@@ -1,9 +1,10 @@
 ---
-title: "Bind Addresses and Ports Used by Drill"
-slug: "Bind Addresses and Ports Used by Drill"
+title: "Ports and Bind Addresses Used by Drill"
+slug: "Ports and Bind Addresses Used by Drill"
 parent: "Configure Drill"
 ---
 
+## Ports
 The table below lists the default ports that Drill uses and provides descriptions for each, as well as the corresponding configuration options. You can modify the configuration options in `<drill_home>/conf/drill-override.conf` to change the ports that Drill uses. See [Start-Up Options]({{site.baseurl}}/docs/start-up-options/) for more information.
 
 
@@ -14,7 +15,7 @@ The table below lists the default ports that Drill uses and provides description
 | 31011        | TCP  | drill.exec.rpc.bit.server.port     | Control port address. Used between nodes in a Drill cluster. Needed for multi-node installation of Apache Drill.                                                                    |
 | 31012        | TCP  | drill.exec.rpc.bit.server.port + 1 | Data port address. Used between nodes in a Drill cluster. Needed for multi-node installation of Apache Drill.                                                                       |
 
-### Bind addresses
+## Bind addresses
 
 **Introduced in release: 1.21.1**
 
diff --git a/_docs/en/rn/041-1.21.1-rn.md b/_docs/en/rn/041-1.21.1-rn.md
new file mode 100644
index 000000000..8928874f9
--- /dev/null
+++ b/_docs/en/rn/041-1.21.1-rn.md
@@ -0,0 +1,30 @@
+---
+title: "Apache Drill 1.21.1 Release Notes"
+slug: "Apache Drill 1.21.1 Release Notes"
+parent: "Release Notes"
+---
+
+**Release date:**  Apr 29, 2023
+
+Today, we're happy to announce the availability of Drill 1.21.1. You can download it [here](https://drill.apache.org/download/).
+
+
+
+## Bug
+* [[DRILL-8403](https://issues.apache.org/jira/browser/DRILL-8403)] - Generated aggregate function calls are missing required filters when used with PIVOT
+* [[DRILL-8409](https://issues.apache.org/jira/browser/DRILL-8409)] - Support the configuration of bind addresses for network services
+* [[DRILL-8411](https://issues.apache.org/jira/browser/DRILL-8411)] - GoogleSheets Reader Will Not Read More than 1K Rows
+* [[DRILL-8414](https://issues.apache.org/jira/browser/DRILL-8414)] - Index Paginator Not Working When Provided URL
+* [[DRILL-8416](https://issues.apache.org/jira/browser/DRILL-8416)] - Memory leak when the async Parquet reader skips empty pages
+* [[DRILL-8421](https://issues.apache.org/jira/browser/DRILL-8421)] - Parquet TIMESTAMP_MICROS columns in WHERE clauses are not converted to milliseconds before filtering
+* [[DRILL-8423](https://issues.apache.org/jira/browser/DRILL-8423)] - Parquet TIME_MICROS columns with values > Integer.MAX_VALUE are not displayed correctly
+
+## Improvement
+* [[DRILL-8406](https://issues.apache.org/jira/browser/DRILL-8406)] - Enable implicit casting of VARCHAR and BIT args in aggregate functions
+* [[DRILL-8408](https://issues.apache.org/jira/browser/DRILL-8408)] - Allow Implicit Casts on Join
+* [[DRILL-8410](https://issues.apache.org/jira/browser/DRILL-8410)] - Upgrade to Calcite 1.34
+* [[DRILL-8417](https://issues.apache.org/jira/browser/DRILL-8417)] - Allow Excel Reader to Ignore Formula Errors
+
+## Task
+* [[DRILL-8405](https://issues.apache.org/jira/browser/DRILL-8405)] - Upgrade to snakeyaml 2.0 due to CVE
+
diff --git a/blog/_posts/en/2023-04-29-drill-1.21.1-released.md b/blog/_posts/en/2023-04-29-drill-1.21.1-released.md
new file mode 100644
index 000000000..ef571c711
--- /dev/null
+++ b/blog/_posts/en/2023-04-29-drill-1.21.1-released.md
@@ -0,0 +1,11 @@
+---
+layout: post
+title: "Drill 1.21.1 Released"
+code: drill-1.21.1-released
+excerpt: Apache Drill 1.21.1 has been released.
+
+authors: ["jturton"]
+---
+
+Today, we're happy to announce the availability of Drill 1.21.1. You can download it [here](https://drill.apache.org/download/). You can find a complete list of improvements and JIRAs resolved in the 1.21.1 release [here]({{site.baseurl}}/docs/apache-drill-1-21-1-release-notes/).
+