Skip to content

Commit 23708e3

Browse files
committed
[release] Perform 4.9 release
1 parent a9e2b36 commit 23708e3

File tree

12 files changed

+1019
-20
lines changed

12 files changed

+1019
-20
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Hue is also ideal for building your own [Cloud SQL Editor](https://docs.gethue.c
2121

2222
Read more on [gethue.com](http://gethue.com).
2323

24-
![Hue Editor](https://cdn.gethue.com/uploads/2020/09/hue-4.8.png)
24+
![Hue Editor](https://cdn.gethue.com/uploads/2021/02/hue-4.9.png)
2525

2626
Getting Started
2727
---------------
@@ -30,7 +30,7 @@ You can start Hue via three ways described below. Once setup, you would then nee
3030

3131
Quick Demos:
3232

33-
* Docker Compose: [Impala](https://gethue.com/blog/quickstart-sql-editor-for-apache-impala/), [Flink SQL](https://gethue.com/blog/tutorial-query-live-data-stream-with-flink-sql/), [ksqlDB](https://gethue.com/blog/tutorial-query-live-data-stream-with-kafka-sql/), [Phoenix SQL / HBase](https://gethue.com/blog/querying-live-kafka-data-in-apache-hbase-with-phoenix/), [Spark SQL](https://gethue.com/blog/querying-spark-sql-with-spark-thrift-server-and-hue-editor/)
33+
* Docker Compose: [Impala](https://gethue.com/blog/quickstart-sql-editor-for-apache-impala/), [Flink SQL](https://gethue.com/blog/sql-querying-live-kafka-logs-and-sending-live-updates-with-flink-sql/), [ksqlDB](https://gethue.com/blog/tutorial-query-live-data-stream-with-kafka-sql/), [Phoenix SQL / HBase](https://gethue.com/blog/querying-live-kafka-data-in-apache-hbase-with-phoenix/), [Spark SQL](https://gethue.com/blog/querying-spark-sql-with-spark-thrift-server-and-hue-editor/)
3434
* Live instance: [demo.gethue.com](https://demo.gethue.com/)
3535

3636
The Forum [is here](https://discourse.gethue.com/) in case you are looking for help.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# This file should be the one source of truth for for versions within HUE.
1818
# It is at least included by each of the default hue app's setup.py.
1919

20-
VERSION="4.8.0"
20+
VERSION="4.9.0"

desktop/libs/librdbms/java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<groupId>com.cloudera.hue</groupId>
2727
<artifactId>hue-parent</artifactId>
2828
<relativePath>../../../../maven/pom.xml</relativePath>
29-
<version>4.8.0-SNAPSHOT</version>
29+
<version>4.9.0-SNAPSHOT</version>
3030
</parent>
3131

3232
<groupId>com.cloudera.hue</groupId>

docs/docs-site/content/_index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ are executing 100s of 1000s of queries daily. It is free to install and also shi
2020

2121
Hue is also ideal for building your own [Cloud SQL Editor](/developer/components/) and any contributions are welcome.
2222

23-
!["Hue Editor"](https://cdn.gethue.com/uploads/2020/09/hue-4.8.png)
23+
!["Hue Editor"](https://cdn.gethue.com/uploads/2021/02/hue-4.9.png)
2424

2525

2626
Quick Start
@@ -42,6 +42,7 @@ Find how to reuse the SQL components/Parsers, call the API, extend Hue in the [D
4242
Releases
4343
--------
4444

45+
* February 2, 2021 --- [Version 4.9.0](releases/release-notes-4.9.0/index.html)
4546
* September 23, 2020 --- [Version 4.8.0](releases/release-notes-4.8.0/index.html)
4647
* April 10, 2020 --- [Version 4.7.0](releases/release-notes-4.7.0/index.html)
4748
* December 5, 2019 --- [Version 4.6.0](releases/release-notes-4.6.0/index.html)

docs/docs-site/content/developer/development/_index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -83,19 +83,19 @@ Now under Hue open `desktop/conf/pseudo-distributed.ini` file in a text editor,
8383

8484
1. Directly below the `[[beeswax]]` line, add the following:
8585

86-
# Host where HiveServer2 is running.
87-
hive_server_host=localhost
86+
# Host where HiveServer2 is running.
87+
hive_server_host=localhost
8888

89-
# Port where HiveServer2 Thrift server runs on.
90-
hive_server_port=10000
89+
# Port where HiveServer2 Thrift server runs on.
90+
hive_server_port=10000
9191

92-
thrift_version=7
92+
thrift_version=7
9393

9494
2. Below the `[[interpreters]]` of `[notebook]`, add:
9595

96-
[[[hive]]]
97-
name=Hive
98-
interface=hiveserver2
96+
[[[hive]]]
97+
name=Hive
98+
interface=hiveserver2
9999

100100
And restart Hue, open the Editors and start typing your first queries!
101101

@@ -702,7 +702,7 @@ To run the tests in watch mode:
702702
While in watch mode Jest will detect changes to all files and re-run related tests. There are
703703
also options to target specific files or tests. Press 'w' in the console to see the options.
704704

705-
In order to update the test snapshots, let the first checks of tests complete and then
705+
In order to update the test snapshots, let the first checks of tests complete and then
706706
press 'u' in the console to update the snapshots.
707707

708708
Note: on certain OS like Ubuntu, running the tests via a global jest seems to not hang your system

docs/docs-site/content/releases/release-notes-4.6.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "4.6.0"
33
date: 2019-12-05T18:28:08-07:00
44
draft: false
5-
weight: -4050
5+
weight: -4060
66
tags: ['skipIndexing']
77
---
88

docs/docs-site/content/releases/release-notes-4.7.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "4.7.0"
33
date: 2020-04-10T18:28:08-07:00
44
draft: false
5-
weight: -4050
5+
weight: -4070
66
tags: ['skipIndexing']
77
---
88

docs/docs-site/content/releases/release-notes-4.8.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "4.8.0"
33
date: 2020-09-23T00:00:00+00:00
44
draft: false
5-
weight: -4050
5+
weight: -4080
66
tags: ['skipIndexing']
77
---
88

0 commit comments

Comments
 (0)