Skip to content

Commit

Permalink
Merge branch 'develop' into bugfix/dask-dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelovilla committed Dec 21, 2023
2 parents f43a17f + 2aecee9 commit 955c52e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,25 @@ def _version_specific_upgrade(
return config


class Upgrade_2023_12_1(UpgradeStep):
version = "2023.12.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("\n ⚠️ Warning ⚠️")
rich.print(
"-> Please run the [green]rm -rf stages[/green] so that we can regenerate an updated set of Terraform scripts for your deployment."
)
rich.print("\n ⚠️ Deprecation Warning ⚠️")
rich.print(
f"-> [green]{self.version}[/green] is the last Nebari version that supports the jupyterlab-videochat extension."
)
rich.print()

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

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

0 comments on commit 955c52e

Please sign in to comment.