Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:

services:
db:
image: postgres:17.7
image: postgres:18.1
# Health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand All @@ -26,7 +26,7 @@ jobs:
- 6379:6379

steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Apt update
run: sudo apt-get update -y
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
javascript-tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Setup NodeJS
uses: actions/setup-node@v2-beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
github.event_name == 'workflow_dispatch' ||
github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
ref: release
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candiate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
github.event_name == 'workflow_dispatch' ||
github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
ref: release-candidate
- uses: akhileshns/heroku-deploy@e3eb99d45a8e2ec5dca08735e089607befa4bf28
Expand Down
12 changes: 12 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release Notes
=============

Version 0.191.1
---------------

- chore(deps): update dependency faker to v40.4.0 (#3784)
- chore(deps): update actions/checkout digest to de0fac2 (#3781)
- chore(deps): update nginx docker tag to v1.29.5 (#3782)
- fix(deps): update dependency boto3 to v1.42.44 (#3783)
- chore(deps): update postgres docker tag to v18 (#3772)
- fix(deps): update dependency django to v4.2.28 [security] (#3778)
- fix(deps): update dependency google-api-python-client to v2.188.0 (#3775)
- fix(deps): update dependency boto3 to v1.42.40 (#3774)

Version 0.191.0 (Released February 09, 2026)
---------------

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ x-extra-hosts: &default-extra-hosts

services:
db:
image: postgres:17.7
image: postgres:18.1
environment:
POSTGRES_PASSWORD: postgres # pragma: allowlist secret
ports:
Expand All @@ -32,7 +32,7 @@ services:
- "6379"

nginx:
image: nginx:1.29.4
image: nginx:1.29.5
ports:
- "8053:8053"
links:
Expand Down
2 changes: 1 addition & 1 deletion mitxpro/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from mitxpro.celery_utils import OffsettingSchedule
from mitxpro.sentry import init_sentry

VERSION = "0.191.0"
VERSION = "0.191.1"

env.reset()

Expand Down
34 changes: 17 additions & 17 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ python = "^3.13"
Pillow = "10.4.0"
PyNaCl = "1.6.2"
beautifulsoup4 = "4.8.2"
boto3 = "1.42.39"
boto3 = "1.42.44"
celery = "5.6.2"
celery-redbeat = "2.3.3"
dj-database-url = "3.1.0"
django = "4.2.27"
django = "4.2.28"
django-anymail = { version = "13.1", extras = ["mailgun"] }
django-filter = "^23.4"
django-hijack = "3.7.6"
Expand All @@ -34,7 +34,7 @@ django-webpack-loader = "1.8.1"
djangorestframework = "3.16.1"
edx-api-client = "1.14.0"
flaky = "3.8.1"
google-api-python-client = "2.187.0"
google-api-python-client = "2.188.0"
google-auth = "1.35.0"
hubspot-api-client = "^6.1.0"
ipython = "^9.0.0"
Expand Down Expand Up @@ -67,7 +67,7 @@ zeep = "4.3.2"
bpython = "*"
django-debug-toolbar = "*"
factory-boy = "3.3.3"
faker = "40.1.2"
faker = "40.4.0"
freezegun = "1.5.5"
hypothesis = "4.24.6"
ipdb = "*"
Expand Down