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
7 changes: 7 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
=============

Version 0.65.5
--------------

- use courseware_url from language_options, filter them by is_enrollable (#3276)
- fix: add heading tags to My Learning course titles for screen readers (#3253)
- dashboard translations UI (#3269)

Version 0.65.3 (Released May 01, 2026)
--------------

Expand Down
2 changes: 1 addition & 1 deletion frontends/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"ol-test-utilities": "0.0.0"
},
"dependencies": {
"@mitodl/mitxonline-api-axios": "^2026.4.23",
"@mitodl/mitxonline-api-axios": "2026.5.1",
"@tanstack/react-query": "^5.66.0",
"axios": "^1.12.2",
"tiny-invariant": "^1.3.3"
Expand Down
8 changes: 8 additions & 0 deletions frontends/api/src/mitxonline/test-utils/factories/courses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,14 @@ const course: PartialFactory<CourseWithCourseRunsSerializerV2> = (
min_weekly_hours: `${faker.number.int({ min: 1, max: 5 })} hours`,
max_weekly_hours: `${faker.number.int({ min: 6, max: 10 })} hours`,
courseruns: runs,
language_options: runs.map((run) => ({
id: run.id,
courseware_id: run.courseware_id,
courseware_url: run.courseware_url ?? "",
language: "en",
title: run.title,
run_tag: run.run_tag,
})),
min_price: faker.number.int({ min: 0, max: 1000 }),
max_price: faker.number.int({ min: 1000, max: 2000 }),
include_in_learn_catalog: faker.datatype.boolean(),
Expand Down
2 changes: 1 addition & 1 deletion frontends/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@emotion/styled": "^11.11.0",
"@floating-ui/react": "^0.27.16",
"@mitodl/course-search-utils": "^3.5.2",
"@mitodl/mitxonline-api-axios": "^2026.4.23",
"@mitodl/mitxonline-api-axios": "2026.5.1",
"@mitodl/smoot-design": "^6.24.0",
"@mui/material": "^6.4.5",
"@mui/material-nextjs": "^6.4.3",
Expand Down
Loading
Loading