Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-21.0.0'></a>
## v21.0.0 (2025-11-03)

- 💥[Deprecation] Remove preview sites from allowed embedding pages as the preview page has been migrated to the learning MFE. (by @Danyal-Faheem)

- [Bugfix] Fix cookies issues by upgrading nbgitpuller version. (by @Abdul-Muqadim-Arbisoft)

- [Improvement] Migrate from pylint and black to ruff. (by @Abdul-Muqadim-Arbisoft)
- [Improvement] Test python package distribution build when running make test. (by @Abdul-Muqadim-Arbisoft)

- 💥[Feature] Upgrade to Ulmo. (by @Abdul-Muqadim-Arbisoft)

<a id='changelog-20.0.0'></a>
## v20.0.0 (2025-06-10)

Expand Down

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/20250907_195728_abdul.muqadim_migrate_ruff.md

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"tutor>=20.0.0,<21.0.0",
"tutor-mfe>=20.0.0,<21.0.0"
"tutor>=21.0.0,<22.0.0",
"tutor-mfe>=21.0.0,<22.0.0"
]
# these fields will be set by hatch_build.py
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"tutor[dev]>=20.0.0,<21.0.0",
"tutor[dev]>=21.0.0,<22.0.0",
"ruff",
]

Expand Down
2 changes: 1 addition & 1 deletion tutorjupyter/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "20.0.0"
__version__ = "21.0.0"
2 changes: 0 additions & 2 deletions tutorjupyter/templates/jupyter/apps/jupyterhub_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ LMS_HOST }}:8000",
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}",
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ CMS_HOST }}:8001",
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ PREVIEW_LMS_HOST }}",
"{% if ENABLE_HTTPS %}https{% else %}http{% endif %}://{{ PREVIEW_LMS_HOST }}:8000",
]
{% if MFE_HOST is defined %}
frame_ancestors += [
Expand Down
Loading