Merge branch 'master' into nightly

This commit is contained in:
Régis Behmo 2023-09-07 18:31:55 +02:00
commit 676bf09be1
7 changed files with 14 additions and 7 deletions

View File

@ -19,6 +19,18 @@ instructions, because git commits are used to generate release notes:
<!-- scriv-insert-here -->
<a id='changelog-16.0.3'></a>
## v16.0.3 (2023-09-07)
- [Bugfix] Fix "Error: invalid_request Mismatching redirect URI" - ensure superset respects X-Forwarded-For/X-Forwarded-Proto headers set by Caddy. This effectively fixes running Cairn on HTTPS without a 3rd-party web proxy. (by @ravikhetani)
<a id='changelog-16.0.2'></a>
## v16.0.2 (2023-09-04)
- [Bugfix] Fix "cannot list resource 'pods'" on Kubernetes. (by @regisb)
- [Bugfix] Fix superset database name in user creation with `do cairn-createuser`. (by @regisb)
- [Improvement] Users will now have the access to graded field in course_blocks table with this change which indicates if course unit is graded or not. (by @Faraz32123)
<a id='changelog-16.0.1'></a>
## v16.0.1 (2023-07-17)

View File

@ -1 +0,0 @@
- [Bugfix] Fix "cannot list resource 'pods'" on Kubernetes. (by @regisb)

View File

@ -1 +0,0 @@
- [Bugfix] Fix superset database name in user creation with `do cairn-createuser`. (by @regisb)

View File

@ -1 +0,0 @@
- [Improvement] Users will now have the access to graded field in course_blocks table with this change which indicates if course unit is graded or not. (by @Faraz32123)

View File

@ -1 +0,0 @@
- [Bugfix] Fix "Error: invalid_request Mismatching redirect URI" - ensure superset respects X-Forwarded-For/X-Forwarded-Proto headers set by caddy. (by @ravikhetani)

View File

@ -26,7 +26,7 @@ ABOUT = load_about()
setup(
name="tutor-cairn",
version=ABOUT["__package_version__"],
version=ABOUT["__version__"],
url="https://github.com/overhangio/tutor-cairn",
project_urls={
"Code": "https://github.com/overhangio/tutor-cairn",

View File

@ -1,5 +1,4 @@
__version__ = "16.0.2"
__package_version__ = __version__
__version__ = "16.0.3"
# Handle version suffix for nightly, just like tutor core.
__version_suffix__ = "nightly"