diff --git a/CHANGELOG.md b/CHANGELOG.md
index d3e1f9e..2538528 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -19,6 +19,17 @@ instructions, because git commits are used to generate release notes:
+
+## v19.0.0 (2024-10-23)
+
+- 💥[Feature] Upgrade to Sumac. (by @Faraz32123)
+- [BugFix] Uwsgi workers wasn't starting properly using `UWSGI_WORKERS` flag, passing the value directly fixes the issue. (by @Faraz32123)
+- 💥[Feature] Update Credentials Image to use Ubuntu `24.04` as base OS. (by @Faraz32123)
+ - Add `mime-support` alternatives that are `media-types mailcap`.
+ - Update `python-openssl` to `python3-openssl`.
+- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
+
+
## v18.0.0 (2024-06-07)
diff --git a/changelog.d/20240621_170044_regis.md b/changelog.d/20240621_170044_regis.md
deleted file mode 100644
index d7d2eb7..0000000
--- a/changelog.d/20240621_170044_regis.md
+++ /dev/null
@@ -1 +0,0 @@
-- [Bugfix] Fix legacy warnings during Docker build. (by @regisb)
diff --git a/changelog.d/20241010_175810_faraz.maqsood_ubuntu_upgrade.md b/changelog.d/20241010_175810_faraz.maqsood_ubuntu_upgrade.md
deleted file mode 100644
index 3c522cc..0000000
--- a/changelog.d/20241010_175810_faraz.maqsood_ubuntu_upgrade.md
+++ /dev/null
@@ -1,3 +0,0 @@
-- 💥[Feature] Update Credentials Image to use Ubuntu `24.04` as base OS. (by @Faraz32123)
- - Add `mime-support` alternatives that are `media-types mailcap`.
- - Update `python-openssl` to `python3-openssl`.
\ No newline at end of file
diff --git a/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md b/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md
deleted file mode 100644
index c5101ae..0000000
--- a/changelog.d/20241022_194734_faraz.maqsood_uwsgi_workers_not_starting_properly.md
+++ /dev/null
@@ -1 +0,0 @@
-- [BugFix] Uwsgi workers wasn't starting properly using `UWSGI_WORKERS` flag, passing the value directly fixes the issue. (by @Faraz32123)
diff --git a/setup.py b/setup.py
index 4522042..9136d05 100644
--- a/setup.py
+++ b/setup.py
@@ -44,8 +44,8 @@ def load_about():
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.9",
- install_requires=["tutor>=18.0.0,<19.0.0", "tutor-discovery>=18.0.0,<19.0.0", "tutor-mfe>=18.0.0,<19.0.0"],
- extras_require={"dev": ["tutor[dev]>=18.0.0,<19.0.0"]},
+ install_requires=["tutor>=19.0.0,<20.0.0", "tutor-discovery>=19.0.0,<20.0.0", "tutor-mfe>=19.0.0,<20.0.0"],
+ extras_require={"dev": ["tutor[dev]>=19.0.0,<20.0.0"]},
entry_points={"tutor.plugin.v1": ["credentials = tutorcredentials.plugin"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
diff --git a/tutorcredentials/__about__.py b/tutorcredentials/__about__.py
index c6a8b8e..0122a6f 100644
--- a/tutorcredentials/__about__.py
+++ b/tutorcredentials/__about__.py
@@ -1 +1 @@
-__version__ = "18.0.0"
+__version__ = "19.0.0"
diff --git a/tutorcredentials/templates/credentials/build/credentials/Dockerfile b/tutorcredentials/templates/credentials/build/credentials/Dockerfile
index 4e47ac9..10338c1 100644
--- a/tutorcredentials/templates/credentials/build/credentials/Dockerfile
+++ b/tutorcredentials/templates/credentials/build/credentials/Dockerfile
@@ -70,7 +70,7 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
# https://pypi.org/project/setuptools/
# https://pypi.org/project/pip/
# https://pypi.org/project/wheel/
- setuptools==69.1.1 pip==24.0 wheel==0.43.0
+ setuptools==75.1.0 pip==24.2 wheel==0.44.0
# Install base requirements
RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install -r requirements/production.txt
@@ -80,7 +80,7 @@ RUN --mount=type=cache,target=/openedx/.cache/pip,sharing=shared pip install \
# Use redis as a django cache https://pypi.org/project/django-redis/
django-redis==5.4.0 \
# uwsgi server https://pypi.org/project/uWSGI/
- uwsgi==2.0.24
+ uwsgi==2.0.27
{{ patch("credentials-dockerfile-post-python-requirements") }}