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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: cat Aptfile | sudo xargs apt-get install

- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.11"

Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repos:
- "config/keycloak/*"
additional_dependencies: ["gibberish-detector"]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.15.0"
rev: "v0.15.1"
hooks:
- id: ruff-format
- id: ruff
Expand All @@ -60,7 +60,7 @@ repos:
- id: shellcheck
args: ["--severity=warning"]
- repo: https://github.com/rhysd/actionlint
rev: v1.7.10
rev: v1.7.11
hooks:
- id: actionlint
name: actionlint
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.138.4
---------------

- Merge migration conflict courses 0081 (#3311)
- [pre-commit.ci] pre-commit autoupdate (#3299)
- Update letter_grade to allow more chars (#3289)
- Update dependency webpack to v5.104.1 [SECURITY] (#3274)
- Update actions/setup-python digest to a309ff8 (#3297)

Version 0.138.3 (Released February 19, 2026)
---------------

Expand Down
17 changes: 17 additions & 0 deletions courses/migrations/0081_alter_courserungrade_letter_grade.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.1.15 on 2026-02-10 17:56

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("courses", "0080_set_grade_run_related_name"),
]

operations = [
migrations.AlterField(
model_name="courserungrade",
name="letter_grade",
field=models.CharField(blank=True, max_length=10, null=True),
),
]
12 changes: 12 additions & 0 deletions courses/migrations/0082_merge_0081.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Generated by Django 5.1.15 on 2026-02-20 16:01

from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("courses", "0081_alter_courserungrade_letter_grade"),
("courses", "0081_set_program_requirement_path_collation"),
]

operations = []
2 changes: 1 addition & 1 deletion courses/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1904,7 +1904,7 @@ class CourseRunGrade(TimestampedModel, AuditableModel, ValidateOnSaveMixin):
grade = models.FloatField(
null=False, validators=[MinValueValidator(0.0), MaxValueValidator(2.0)]
)
letter_grade = models.CharField(max_length=6, blank=True, null=True) # noqa: DJ001
letter_grade = models.CharField(max_length=10, blank=True, null=True) # noqa: DJ001
passed = models.BooleanField(default=False)
set_by_admin = models.BooleanField(default=False)

Expand Down
2 changes: 1 addition & 1 deletion courses/serializers/v1/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class CourseRunGradeSerializer(serializers.ModelSerializer):
"""CourseRunGrade serializer"""

grade = serializers.FloatField(read_only=True, min_value=0.0, max_value=1.0)
letter_grade = serializers.CharField(read_only=True, max_length=6, allow_null=True)
letter_grade = serializers.CharField(read_only=True, max_length=10, allow_null=True)

class Meta:
model = models.CourseRunGrade
Expand Down
2 changes: 1 addition & 1 deletion frontend/public/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"video.js": "7.21.7",
"videojs-youtube": "2.6.1",
"waait": "1.0.5",
"webpack": "5.94.0",
"webpack": "5.104.1",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-bundle-tracker": "1.4.0",
"webpack-cli": "6.0.1",
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
from openapi.settings_spectacular import open_spectacular_settings

VERSION = "0.138.3"
VERSION = "0.138.4"

log = logging.getLogger()

Expand Down
2 changes: 1 addition & 1 deletion openapi/specs/v0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,7 @@ components:
type: string
readOnly: true
nullable: true
maxLength: 6
maxLength: 10
passed:
type: boolean
readOnly: true
Expand Down
2 changes: 1 addition & 1 deletion openapi/specs/v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,7 @@ components:
type: string
readOnly: true
nullable: true
maxLength: 6
maxLength: 10
passed:
type: boolean
readOnly: true
Expand Down
2 changes: 1 addition & 1 deletion openapi/specs/v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,7 @@ components:
type: string
readOnly: true
nullable: true
maxLength: 6
maxLength: 10
passed:
type: boolean
readOnly: true
Expand Down
Loading
Loading