From 0a73b8857d738bcccf7f5a44b59609681195de74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 10 Oct 2023 11:40:43 +0200 Subject: [PATCH] v16.1.3 --- CHANGELOG.md | 7 +++++++ changelog.d/20231003_144841_paulo_mongodb_connect.md | 1 - changelog.d/20231004_114528_dave_fix_cms_base_settings.md | 1 - changelog.d/20231010_111112_regis_fix_py2neo.md | 1 - tutor/__about__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 changelog.d/20231003_144841_paulo_mongodb_connect.md delete mode 100644 changelog.d/20231004_114528_dave_fix_cms_base_settings.md delete mode 100644 changelog.d/20231010_111112_regis_fix_py2neo.md diff --git a/CHANGELOG.md b/CHANGELOG.md index ab88a53..ad0be3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,13 @@ instructions, because git commits are used to generate release notes: + +## v16.1.3 (2023-10-10) + +- [Improvement] Adds `connect=False` to the LMS and CMS' MongoDB connection to prevent `ServerSelectionError` after a cluster failover. (by @open-craft) +- [Bugfix] Override `CMS_BASE` setting in Studio for the development environment. Without this, parts of Studio will try to use the devstack default of localhost:8010 instead. (by @ormsbee) +- [Bugfix] Fix build error caused by py2neo package that was abruptly pulled from pypi and GitHub. (by @regisb) + ## v16.1.2 (2023-10-02) diff --git a/changelog.d/20231003_144841_paulo_mongodb_connect.md b/changelog.d/20231003_144841_paulo_mongodb_connect.md deleted file mode 100644 index 0f3cb5d..0000000 --- a/changelog.d/20231003_144841_paulo_mongodb_connect.md +++ /dev/null @@ -1 +0,0 @@ -[Improvement] Adds `connect=False` to the LMS and CMS' MongoDB connection to prevent `ServerSelectionError` after a cluster failover. (by @open-craft) diff --git a/changelog.d/20231004_114528_dave_fix_cms_base_settings.md b/changelog.d/20231004_114528_dave_fix_cms_base_settings.md deleted file mode 100644 index c4dcce5..0000000 --- a/changelog.d/20231004_114528_dave_fix_cms_base_settings.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Override CMS_BASE setting in Studio for the development environment. Without this, parts of Studio will try to use the devstack default of localhost:8010 instead. (by @ormsbee) \ No newline at end of file diff --git a/changelog.d/20231010_111112_regis_fix_py2neo.md b/changelog.d/20231010_111112_regis_fix_py2neo.md deleted file mode 100644 index 676fb20..0000000 --- a/changelog.d/20231010_111112_regis_fix_py2neo.md +++ /dev/null @@ -1 +0,0 @@ -- [Bugfix] Fix build error caused by py2neo package that was abruptly pulled from pypi and GitHub. (by @regisb) diff --git a/tutor/__about__.py b/tutor/__about__.py index bc40710..004ee58 100644 --- a/tutor/__about__.py +++ b/tutor/__about__.py @@ -2,7 +2,7 @@ import os # Increment this version number to trigger a new release. See # docs/tutor.html#versioning for information on the versioning scheme. -__version__ = "16.1.2" +__version__ = "16.1.3" # The version suffix will be appended to the actual version, separated by a # dash. Use this suffix to differentiate between the actual released version and