diff --git a/RELEASE.md b/RELEASE.md index bca63e5c5..bac4d91ac 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -11,6 +11,44 @@ This file is copied to nebari-dev/nebari-docs using a GitHub Action. --> ## Upcoming Release +## Release 2023.4.1 - April 12, 2023 + +> NOTE: Nebari requires Kubernetes version 1.23 and Digital Ocean now requires new clusters to run Kubernetes version 1.24. This means that if you are currently running on Digital Ocean, you should be fine but deploying on a new cluster on Digital Ocean is not possible until we upgrade Kubernetes version (see [issue 1622](https://github.com/nebari-dev/nebari/issues/1622) for more details). + + +### Feature changes and enhancements + +* Upgrades and improvements to conda-store including a new user-interface and greater administrator capabilities. +* Idle-culler settings can now be configured directly from the `nebari-config.yaml`. + + +### What's Changed +* PR: Raise timeout for jupyter session by @ppwadhwa in https://github.com/nebari-dev/nebari/pull/1646 +* PR lower dashboard launch timeout by @ppwadhwa in https://github.com/nebari-dev/nebari/pull/1647 +* PR: Update dashboard environment by @ppwadhwa in https://github.com/nebari-dev/nebari/pull/1655 +* Fix doc link in README.md by @tkoyama010 in https://github.com/nebari-dev/nebari/pull/1660 +* PR: Update dask environment by @ppwadhwa in https://github.com/nebari-dev/nebari/pull/1654 +* Feature remove jupyterlab news by @costrouc in https://github.com/nebari-dev/nebari/pull/1641 +* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/nebari-dev/nebari/pull/1644 +* Feat GitHub actions before_script and after_script steps by @costrouc in https://github.com/nebari-dev/nebari/pull/1672 +* Remove examples folder by @ppwadhwa in https://github.com/nebari-dev/nebari/pull/1664 +* Fix GH action typos by @kcpevey in https://github.com/nebari-dev/nebari/pull/1677 +* Github Actions CI needs id-token write permissions by @costrouc in https://github.com/nebari-dev/nebari/pull/1682 +* Update AWS force destroy script, include lingering volumes by @iameskild in https://github.com/nebari-dev/nebari/pull/1681 +* [pre-commit.ci] pre-commit autoupdate by @pre-commit-ci in https://github.com/nebari-dev/nebari/pull/1673 +* Make idle culler settings configurable from the `nebari-config.yaml` by @iameskild in https://github.com/nebari-dev/nebari/pull/1689 +* Update pyproject dependencies and add test to ensure it builds on conda-forge by @iameskild in https://github.com/nebari-dev/nebari/pull/1662 +* Retrieve secrets from Vault, fix test-provider CI by @iameskild in https://github.com/nebari-dev/nebari/pull/1676 +* Pull PyPI secrets from Vault by @iameskild in https://github.com/nebari-dev/nebari/pull/1696 +* Adding newest conda-store 0.4.14 along with superadmin credentials by @costrouc in https://github.com/nebari-dev/nebari/pull/1701 +* Update release notes for 2023.4.1 by @iameskild in https://github.com/nebari-dev/nebari/pull/1722 + +## New Contributors +* @ppwadhwa made their first contribution in https://github.com/nebari-dev/nebari/pull/1646 +* @tkoyama010 made their first contribution in https://github.com/nebari-dev/nebari/pull/1660 + +**Full Changelog**: https://github.com/nebari-dev/nebari/compare/2023.1.1...2023.4.1 + ### Feature changes and enhancements ## Release 2023.1.1 - January 30, 2023 diff --git a/nebari/constants.py b/nebari/constants.py index 1fb8c8ba5..1b6f83784 100644 --- a/nebari/constants.py +++ b/nebari/constants.py @@ -5,8 +5,8 @@ HIGHEST_SUPPORTED_K8S_VERSION = "1.23.5" -DEFAULT_NEBARI_DASK_VERSION = "2023.1.1" -DEFAULT_NEBARI_IMAGE_TAG = "2023.1.1" +DEFAULT_NEBARI_DASK_VERSION = "2023.4.1" +DEFAULT_NEBARI_IMAGE_TAG = "2023.4.1" DEFAULT_CONDA_STORE_IMAGE_TAG = "v0.4.14"