Skip to content

Commit

Permalink
Release 2024.5.1 updates (#2461)
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciusdc authored May 13, 2024
1 parent eba9317 commit f32d1bb
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
15 changes: 15 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ This file is copied to nebari-dev/nebari-docs using a GitHub Action. -->

---

### Release 2024.5.1 - May 13, 2024

## What's Changed

* make userscheduler run on general node group by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2415>
* Upgrade to Pydantic V2 by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2348>
* Pydantic2 PR fix by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2421>
* remove redundant pydantic class, fix bug by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2426>
* Update `python-keycloak` version pins constraints by @viniciusdc in <https://github.com/nebari-dev/nebari/pull/2435>
* add HERA_TOKEN env var to user pods by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2438>
* fix docs link by @Adam-D-Lewis in <https://github.com/nebari-dev/nebari/pull/2443>
* Update allowed admin groups by @aktech in <https://github.com/nebari-dev/nebari/pull/2429>

**Full Changelog**: <https://github.com/nebari-dev/nebari/compare/2024.4.1...2024.5.1>

## Release 2024.4.1 - April 20, 2024

### What's Changed
Expand Down
2 changes: 1 addition & 1 deletion src/_nebari/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CURRENT_RELEASE = "2024.4.1"
CURRENT_RELEASE = "2024.5.1"

# NOTE: Terraform cannot be upgraded further due to Hashicorp licensing changes
# implemented in August 2023.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ def service_for_jhub_apps(name, url):
"url": url,
"external": True,
},
"oauth_no_confirm": True,
}

c.JupyterHub.services.extend(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ resource "helm_release" "jupyterhub" {

repository = "https://jupyterhub.github.io/helm-chart/"
chart = "jupyterhub"
version = "4.0.0-0.dev.git.6586.h0a16e5a0"
version = "3.2.1"

values = concat([
file("${path.module}/values.yaml"),
Expand Down
11 changes: 11 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,17 @@ def _version_specific_upgrade(
return config


class Upgrade_2024_5_1(UpgradeStep):
version = "2024.5.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("Ready to upgrade to Nebari version [green]2024.5.1[/green].")

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

# Manually-added upgrade steps must go above this line
Expand Down

0 comments on commit f32d1bb

Please sign in to comment.