Skip to content

Commit c198413

Browse files
authored
Merge pull request #33 from overhangio/ulmo
feat: upgrade to ulmo
2 parents 8e825fc + cfd0e39 commit c198413

6 files changed

Lines changed: 16 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ instructions, because git commits are used to generate release notes:
1919

2020
<!-- scriv-insert-here -->
2121

22+
<a id='changelog-21.0.0'></a>
23+
## v21.0.0 (2025-11-03)
24+
25+
- 💥[Deprecation] Remove preview sites from allowed embedding pages as the preview page has been migrated to the learning MFE. (by @Danyal-Faheem)
26+
27+
- [Bugfix] Fix cookies issues by upgrading nbgitpuller version. (by @Abdul-Muqadim-Arbisoft)
28+
29+
- [Improvement] Migrate from pylint and black to ruff. (by @Abdul-Muqadim-Arbisoft)
30+
- [Improvement] Test python package distribution build when running make test. (by @Abdul-Muqadim-Arbisoft)
31+
32+
- 💥[Feature] Upgrade to Ulmo. (by @Abdul-Muqadim-Arbisoft)
33+
2234
<a id='changelog-20.0.0'></a>
2335
## v20.0.0 (2025-06-10)
2436

changelog.d/20250722_135840_abdul.muqadim_nbgitpuller_version_upgrade.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/20250907_195728_abdul.muqadim_migrate_ruff.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ classifiers = [
2727
"Programming Language :: Python :: 3.12",
2828
]
2929
dependencies = [
30-
"tutor>=20.0.0,<21.0.0",
31-
"tutor-mfe>=20.0.0,<21.0.0"
30+
"tutor>=21.0.0,<22.0.0",
31+
"tutor-mfe>=21.0.0,<22.0.0"
3232
]
3333
# these fields will be set by hatch_build.py
3434
dynamic = ["version"]
3535

3636
[project.optional-dependencies]
3737
dev = [
38-
"tutor[dev]>=20.0.0,<21.0.0",
38+
"tutor[dev]>=21.0.0,<22.0.0",
3939
"ruff",
4040
]
4141

tutorjupyter/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "20.0.0"
1+
__version__ = "21.0.0"

tutorjupyter/templates/jupyter/apps/jupyterhub_config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@
2929
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ LMS_HOST }}:8000",
3030
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}",
3131
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}:8001",
32-
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ PREVIEW_LMS_HOST }}",
33-
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ PREVIEW_LMS_HOST }}:8000",
3432
]
3533
{% if MFE_HOST is defined %}
3634
frame_ancestors += [

0 commit comments

Comments
 (0)