Skip to content

Commit ee1db3e

Browse files
authored
Prepare 2025.6.1 release (#3064)
2 parents b90d5da + a3c701a commit ee1db3e

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

RELEASE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,18 @@ This file is copied to nebari-dev/nebari-docs using a GitHub Action. -->
99

1010
---
1111

12+
## Release 2025.6.1 - June 06, 2025
13+
14+
### What's Changed
15+
- Enable resource monitoring for cirun runners by @aktech in https://github.com/nebari-dev/nebari/pull/3047
16+
- Add filesystem scan in Trivy GHA workflow to scan Python dependencies by @marcelovilla in https://github.com/nebari-dev/nebari/pull/3045
17+
- Pin click to avoid incompatibility issues with Typer by @marcelovilla in https://github.com/nebari-dev/nebari/pull/3051
18+
- improve node taint regex by @Adam-D-Lewis in https://github.com/nebari-dev/nebari/pull/3027
19+
- Change JupyterLab default windowing mode to defer by @marcelovilla in https://github.com/nebari-dev/nebari/pull/3055
20+
- Upgrade JupyterHub Helm Chart to use 5.3.0 by @marcelovilla in https://github.com/nebari-dev/nebari/pull/3052
21+
22+
**Full Changelog**: https://github.com/nebari-dev/nebari/compare/2025.4.2...2025.6.1
23+
1224
## Release 2025.4.2 - April 25, 2025
1325

1426
> NOTE: You may notice messages like groups: cannot find name for group ID <number> when using the terminal. These warnings are harmless and do not affect system functionality or permissions. We're aware of the issue and it will be resolved in the next version.

src/_nebari/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CURRENT_RELEASE = "2025.4.2"
1+
CURRENT_RELEASE = "2025.6.1"
22

33
HELM_VERSION = "v3.15.3"
44
KUSTOMIZE_VERSION = "5.4.3"

src/_nebari/upgrade.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1824,6 +1824,23 @@ def _version_specific_upgrade(
18241824
return config
18251825

18261826

1827+
class Upgrade_2025_6_1(UpgradeStep):
1828+
"""
1829+
Upgrade step for Nebari version 2025.6.1
1830+
"""
1831+
1832+
version = "2025.6.1"
1833+
1834+
@override
1835+
def _version_specific_upgrade(
1836+
self, config, start_version, config_filename: Path, *args, **kwargs
1837+
):
1838+
1839+
rich.print("Ready to upgrade to Nebari version [green]2025.6.1[/green].")
1840+
1841+
return config
1842+
1843+
18271844
__rounded_version__ = str(rounded_ver_parse(__version__))
18281845

18291846
# Manually-added upgrade steps must go above this line

0 commit comments

Comments
 (0)