Skip to content

Release 0.26.0 #1858

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

Merged
merged 21 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2eeba37
separate starts and as taught in, show anytime availability (#1828)
gumaerc Nov 18, 2024
68b5a9b
Update dependency pytest-cov to v6 (#1818)
renovate[bot] Nov 19, 2024
86560c8
Update dependency safety to v3 (#1819)
renovate[bot] Nov 19, 2024
e4b2b78
Update dependency django-anymail to v12 (#1815)
renovate[bot] Nov 19, 2024
04018b7
vector search endpoint (#1827)
shanbady Nov 19, 2024
97ff40c
Update dependency @mui/lab to v6.0.0-beta.15 (#1830)
renovate[bot] Nov 19, 2024
c09f9b5
Server rendering for homepage, units and topics listing pages (#1822)
jonkafton Nov 20, 2024
9540c63
Revert "Server rendering for homepage, units and topics listing pages…
jonkafton Nov 20, 2024
ae68125
Refactor user lists and learning paths hooks out of learning resource…
jonkafton Nov 21, 2024
c3ccd2f
similar resources carousel (#1835)
gumaerc Nov 21, 2024
d49cd8a
set min cpu and memory. also add qdrant container (#1845)
shanbady Nov 22, 2024
0370de1
Consistent qdrant point ids (#1839)
shanbady Nov 22, 2024
c8d09cd
Update dependency ruff to v0.8.0 (#1853)
renovate[bot] Nov 23, 2024
13eada0
Update postgres Docker tag to v12.22 (#1854)
renovate[bot] Nov 23, 2024
b8157d0
Update Yarn to v4.5.2 (#1851)
renovate[bot] Nov 25, 2024
0e4c18e
Remove some unused exports from ol-components (#1844)
ChristopherChudzicki Nov 25, 2024
48cb5e0
Query membership endpoints for resources belonging to user lists and …
jonkafton Nov 25, 2024
f2758b7
Server rendering for homepage, units and topics listing pages (#1847)
jonkafton Nov 25, 2024
4ec49a3
Refactor date/time parsing for mitpe events (#1840)
mbertrand Nov 25, 2024
c515186
Merge branch 'release'
mbertrand Nov 25, 2024
c3a202d
Release 0.26.0
odlbot Nov 25, 2024
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: 4 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
"tika",
"celery",
"nginx",
"redis"
"redis",
"qdrant"
],
"hostRequirements": { "cpus": 4, "memory": "8gb" },
"secrets": {
"EDX_API_CLIENT_ID": {},
"EDX_API_CLIENT_SECRET": {},
Expand All @@ -23,5 +25,5 @@
},
"features": {},
"postStartCommand": "while [ \"$(python manage.py showmigrations | grep \"\\[ \\]\" | wc -l)\" -ne \"0\" ]; do echo \"waiting for migrations\"; sleep 2; done && python manage.py update_offered_by && python manage.py update_platforms && python manage.py update_departments_schools && python manage.py update_course_number_departments && python manage.py backpopulate_mitxonline_data && python manage.py backpopulate_micromasters_data && python manage.py backpopulate_resource_channels --overwrite --all && python manage.py recreate_index --all",
"forwardPorts": [8062, 8063]
"forwardPorts": [8062, 8063, 6333]
}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# Label used to access the service container
db:
# Docker Hub image
image: postgres:12.20
image: postgres:12.22
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
Expand Down
584 changes: 292 additions & 292 deletions .yarn/releases/yarn-4.5.1.cjs → .yarn/releases/yarn-4.5.2.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.5.1.cjs
yarnPath: .yarn/releases/yarn-4.5.2.cjs

# https://github.com/vitejs/vite-plugin-react-swc/issues/74#issuecomment-1520484130
# https://github.com/swc-project/swc/issues/5616#issuecomment-1265639797
Expand Down
23 changes: 23 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Release Notes
=============

Version 0.26.0
--------------

- Refactor date/time parsing for mitpe events (#1840)
- Server rendering for homepage, units and topics listing pages (#1847)
- Query membership endpoints for resources belonging to user lists and learning paths (#1846)
- Remove some unused exports from ol-components (#1844)
- Update Yarn to v4.5.2 (#1851)
- Update postgres Docker tag to v12.22 (#1854)
- Update dependency ruff to v0.8.0 (#1853)
- Consistent qdrant point ids (#1839)
- set min cpu and memory. also add qdrant container (#1845)
- similar resources carousel (#1835)
- Refactor user lists and learning paths hooks out of learning resources (#1842)
- Revert "Server rendering for homepage, units and topics listing pages (#1822)" (#1838)
- Server rendering for homepage, units and topics listing pages (#1822)
- Update dependency @mui/lab to v6.0.0-beta.15 (#1830)
- vector search endpoint (#1827)
- Update dependency django-anymail to v12 (#1815)
- Update dependency safety to v3 (#1819)
- Update dependency pytest-cov to v6 (#1818)
- separate starts and as taught in, show anytime availability (#1828)

Version 0.25.0 (Released November 25, 2024)
--------------

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
db:
profiles:
- backend
image: postgres:12.20
image: postgres:12.22
healthcheck:
test: ["CMD", "pg_isready"]
interval: 3s
Expand Down
4 changes: 2 additions & 2 deletions frontends/api/src/clients.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const learningResourcesSearchAdminParamsApi =

const featuredApi = new FeaturedApi(undefined, BASE_PATH, axiosInstance)

const learningpathsApi = new LearningpathsApi(
const learningPathsApi = new LearningpathsApi(
undefined,
BASE_PATH,
axiosInstance,
Expand Down Expand Up @@ -95,7 +95,7 @@ const testimonialsApi = new TestimonialsApi(undefined, BASE_PATH, axiosInstance)

export {
learningResourcesApi,
learningpathsApi,
learningPathsApi,
userListsApi,
topicsApi,
articlesApi,
Expand Down
Loading