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
25 changes: 0 additions & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,6 @@ jobs:
ports:
- 6379:6379

elastic:
image: docker.elastic.co/elasticsearch/elasticsearch:9.2.3
env:
network.host: "0.0.0.0"
http.cors.enabled: "true"
http.cors.allow-origin: "*"
rest.action.multi.allow_explicit_index: "false"
ES_JAVA_OPTS: -Xms512m -Xmx512m"
ports:
- 9200:9200

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

Expand Down Expand Up @@ -73,19 +62,6 @@ jobs:
- name: Install project
run: poetry install --no-interaction

# Configurations required for elasticsearch.
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144

- name: Runs Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: 6.7.1

- name: Running Celery
run: |
celery -A mitxpro worker -B -l INFO &
Expand Down Expand Up @@ -116,7 +92,6 @@ jobs:
CELERY_RESULT_BACKEND: redis://localhost:6379/4
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres # pragma: allowlist secret
WEBPACK_DISABLE_LOADER_STATS: "True"
ELASTICSEARCH_URL: localhost:9200
EXTERNAL_COURSE_SYNC_API_KEY: fake_external_course_sync_api_key # pragma: allowlist secret
MAILGUN_KEY: fake_mailgun_key
MAILGUN_SENDER_DOMAIN: other.fake.site
Expand Down
9 changes: 9 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Release Notes
=============

Version 0.190.1
---------------

- chore: remove unused Elastic search from CI (#3755)
- fix(deps): update dependency chai to v6 (#3754)
- fix(deps): update dependency dj-database-url to v3.1.0 (#3753)
- fix(deps): update dependency boto3 to v1.42.26 (#3752)
- fix(deps): update dependency celery to v5.6.2 (#3748)

Version 0.190.0 (Released January 15, 2026)
---------------

Expand Down
1 change: 0 additions & 1 deletion docker-compose-notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ x-environment: &py-environment
MITXPRO_BASE_URL: ${MITXPRO_BASE_URL:-http://xpro.odl.local:8053}
MITXPRO_SECURE_SSL_REDIRECT: "False"
MITXPRO_DB_DISABLE_SSL: "True"
ELASTICSEARCH_URL: elastic:9200
CELERY_TASK_ALWAYS_EAGER: "False"
REDIS_URL: redis://redis:6379/4
DOCKER_HOST: ${DOCKER_HOST:-missing}
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ x-environment: &py-environment
MITXPRO_DB_DISABLE_SSL: "True"
MITXPRO_ADMIN_EMAIL: admin@localhost
MITOL_DIGITAL_CREDENTIALS_AUTH_TYPE: xpro
ELASTICSEARCH_URL: elastic:9200
CELERY_TASK_ALWAYS_EAGER: "False"
REDIS_URL: redis://redis:6379/4
DOCKER_HOST: ${DOCKER_HOST:-missing}
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.190.0"
VERSION = "0.190.1"

env.reset()

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"babel-loader": "^10.0.0",
"bootstrap": "^4.4.1",
"casual-browserify": "^1.5.19-2",
"chai": "^5.0.0",
"chai": "^6.0.0",
"chai-as-promised": "^8.0.0",
"codecov": "^3.7.1",
"css-loader": "^7.0.0",
Expand Down
89 changes: 54 additions & 35 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ python = "^3.13"
Pillow = "10.4.0"
PyNaCl = "1.6.2"
beautifulsoup4 = "4.8.2"
boto3 = "1.42.25"
celery = "5.5.3"
boto3 = "1.42.26"
celery = "5.6.2"
celery-redbeat = "2.3.3"
dj-database-url = "3.0.1"
dj-database-url = "3.1.0"
django = "4.2.27"
django-anymail = { version = "13.1", extras = ["mailgun"] }
django-filter = "^23.4"
Expand Down
Loading