Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.119.0 #1573

Closed
wants to merge 14 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
python-version: "3.10.13"

- id: cache
uses: actions/cache@v1
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/test_requirements.txt') }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v1
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
4 changes: 2 additions & 2 deletions Procfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
web: bin/start-nginx bin/start-pgbouncer newrelic-admin run-program uwsgi uwsgi.ini
worker: bin/start-pgbouncer newrelic-admin run-program celery -E -A main worker -B -l $BOOTCAMP_LOG_LEVEL
extra_worker: bin/start-pgbouncer newrelic-admin run-program celery -E -A main worker -l $BOOTCAMP_LOG_LEVEL
worker: bin/start-pgbouncer newrelic-admin run-program celery -A main worker -E -B -l $BOOTCAMP_LOG_LEVEL
extra_worker: bin/start-pgbouncer newrelic-admin run-program celery -A main worker -E -l $BOOTCAMP_LOG_LEVEL
16 changes: 16 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Release Notes
=============

Version 0.119.0
---------------

- Revert "chore(deps): update yarn to v1.22.22 (#1462)" (#1572)
- chore(deps): update actions/cache action to v4 (#1568)
- fix(deps): update react monorepo to v16.14.0
- fix(deps): update dependency sass to v1.77.6
- chore(deps): update yarn to v1.22.22 (#1462)
- fix(deps): update dependency yup to ^0.32.0
- fix(deps): update dependency user-util to ^0.3.0
- fix(deps): update dependency static3 to ^0.7.0
- fix(deps): update dependency sass to v1.77.5
- chore(deps): update nginx docker tag to v1.27.0
- Add -E flag to worker subcommand for sending task events
- Revert "Add flag for Celery to send task state change events"

Version 0.118.1 (Released July 01, 2024)
---------------

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
- "6379"

nginx:
image: nginx:1.26.0
image: nginx:1.27.0
ports:
- "8099:8099"
links:
Expand Down
2 changes: 1 addition & 1 deletion main/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from main.sentry import init_sentry


VERSION = "0.118.1"
VERSION = "0.119.0"

ENVIRONMENT = get_string(
name="BOOTCAMP_ENVIRONMENT",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
"query-string": "^6.4.0",
"raf": "^3.4.1",
"ramda": "^0.27.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-ga": "^2.7.0",
"react-google-recaptcha": "^1.0.5",
"react-hot-loader": "^4.12.20",
Expand All @@ -98,7 +98,7 @@
"reselect": "^4.0.0",
"rmwc": "^5.7.1",
"sanctuary": "^0.13.2",
"sass": "1.32.13",
"sass": "1.77.6",
"sass-lint": "^1.13.1",
"sass-loader": "10",
"serialize-javascript": "^3.1.0",
Expand All @@ -122,7 +122,7 @@
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^5.0.0",
"webpack-hot-middleware": "^2.25.0",
"yup": "^0.31.0"
"yup": "^0.32.0"
},
"resolutions": {
"merge": "^2.1.1",
Expand Down
14 changes: 7 additions & 7 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ pytz = "^2022.6"
requests= "^2.20"
sentry-sdk = "^0.20.0"
social-auth-app-django = "^5.4.0"
static3 = "^0.5.1"
static3 = "^0.7.0"
urllib3 = "^1.24.2"
uwsgi = "^2.0.20"
wagtail = "^5.2.1"
zeep = "^4.2.1"
Pillow = "^10.3.0"
user-util = "^0.1.5"
user-util = "^0.3.0"


[tool.poetry.group.dev.dependencies]
Expand Down
Loading
Loading