Merge branch 'master' into nightly
This commit is contained in:
commit
676bf09be1
12
CHANGELOG.md
12
CHANGELOG.md
@ -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)
|
||||
|
||||
|
||||
@ -1 +0,0 @@
|
||||
- [Bugfix] Fix "cannot list resource 'pods'" on Kubernetes. (by @regisb)
|
||||
@ -1 +0,0 @@
|
||||
- [Bugfix] Fix superset database name in user creation with `do cairn-createuser`. (by @regisb)
|
||||
@ -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)
|
||||
@ -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)
|
||||
2
setup.py
2
setup.py
@ -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",
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user