Skip to content

Commit

Permalink
[release] Perform 4.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
agl29 committed Jan 19, 2023
1 parent 5d72724 commit 44e4238
Show file tree
Hide file tree
Showing 5 changed files with 1,078 additions and 15 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# This file should be the one source of truth for for versions within HUE.
# It is at least included by each of the default hue app's setup.py.

VERSION="4.10.0"
VERSION="4.11.0"
2 changes: 1 addition & 1 deletion desktop/libs/librdbms/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<groupId>com.cloudera.hue</groupId>
<artifactId>hue-parent</artifactId>
<relativePath>../../../../maven/pom.xml</relativePath>
<version>4.10.0-SNAPSHOT</version>
<version>4.11.0-SNAPSHOT</version>
</parent>

<groupId>com.cloudera.hue</groupId>
Expand Down
24 changes: 12 additions & 12 deletions docs/docs-site/content/developer/development/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -724,12 +724,12 @@ And add them and the authors to the release notes:

Pushing the release branch:

git push origin HEAD:branch-4.10.0
git push origin HEAD:branch-4.11.0

Tagging the release:

git tag -a release-4.10.0 -m "release-4.10.0"
git push origin release-4.10.0
git tag -a release-4.11.0 -m "release-4.11.0"
git push origin release-4.11.0

Draft a new release on https://github.com/cloudera/hue/releases.

Expand All @@ -739,7 +739,7 @@ Publish Github NPM package and Docker images at https://github.com/orgs/cloudera

Building the tarball release:

git checkout -b release-4.10.0 release-4.10.0
git checkout -b release-4.11.0 release-4.11.0
export PYTHON_VER=python3.8
make prod

Expand All @@ -749,27 +749,27 @@ You might need to upgrade the [Mysqlclient](https://docs.gethue.com/administrato
44 | #include "my_config.h"
| ^~~~~~~~~~~~~

Source of the release: https://github.com/cloudera/hue/archive/release-4.10.0.zip
Source of the release: https://github.com/cloudera/hue/archive/release-4.11.0.zip

Push to the CDN:

scp hue-4.10.0.tgz root@cdn.gethue.com:/var/www/cdn.gethue.com/downloads
scp hue-4.11.0.tgz root@cdn.gethue.com:/var/www/cdn.gethue.com/downloads

### Docker

Docker images are at https://hub.docker.com/u/gethue/:

docker build https://github.com/cloudera/hue.git#release-4.10.0 -t gethue/hue:4.10.0 -f tools/docker/hue/Dockerfile
docker tag gethue/hue:4.10.0 gethue/hue:latest
docker build https://github.com/cloudera/hue.git#release-4.11.0 -t gethue/hue:4.11.0 -f tools/docker/hue/Dockerfile
docker tag gethue/hue:4.11.0 gethue/hue:latest
docker images
docker login -u gethue
docker push gethue/hue
docker push gethue/hue:4.10.0
docker push gethue/hue:4.11.0

docker build https://github.com/cloudera/hue.git#release-4.10.0 -t gethue/nginx:4.10.0 -f tools/docker/nginx/Dockerfile;
docker tag gethue/nginx:4.10.0 gethue/nginx:latest
docker build https://github.com/cloudera/hue.git#release-4.11.0 -t gethue/nginx:4.11.0 -f tools/docker/nginx/Dockerfile;
docker tag gethue/nginx:4.11.0 gethue/nginx:latest
docker push gethue/nginx
docker push gethue/nginx:4.10.0
docker push gethue/nginx:4.11.0


### Kubernetes / Helm
Expand Down
Loading

0 comments on commit 44e4238

Please sign in to comment.