Skip to content

Commit d86f4ff

Browse files
arbrandesclaude
andcommitted
chore: use stable frontend-base and app releases
Graduate frontend-base, frontend-base-compat, and the core frontend apps (authn, learner-dashboard, instructor-dashboard, notifications) from alpha to their stable 1.0.0/3.0.0 releases. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c2f6f2d commit d86f4ff

4 files changed

Lines changed: 35 additions & 34 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [Improvement] Bump frontend-base, frontend-base-compat, and the core frontend apps (`authn`, `learner-dashboard`, `instructor-dashboard`, `notifications`) from alpha to their stable `1.0.0`/`3.0.0` releases. (by @arbrandes)

tutormfe/plugin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,22 +118,22 @@
118118
CORE_FRONTEND_APPS: dict[str, FRONTEND_APP_ATTRS_TYPE] = {
119119
"authn": {
120120
"npm_package": "@openedx/frontend-app-authn",
121-
"npm_version": "^1.0.0-alpha || 0.0.0-dev",
121+
"npm_version": "^1.0.0 || 0.0.0-dev",
122122
"enabled": False,
123123
},
124124
"learner-dashboard": {
125125
"npm_package": "@openedx/frontend-app-learner-dashboard",
126-
"npm_version": "^1.0.0-alpha || 0.0.0-dev",
126+
"npm_version": "^1.0.0 || 0.0.0-dev",
127127
"enabled": False,
128128
},
129129
"instructor-dashboard": {
130130
"npm_package": "@openedx/frontend-app-instructor-dashboard",
131-
"npm_version": "^1.0.0-alpha || 0.0.0-dev",
131+
"npm_version": "^1.0.0 || 0.0.0-dev",
132132
"enabled": True,
133133
},
134134
"notifications": {
135135
"npm_package": "@openedx/frontend-app-notifications",
136-
"npm_version": "^3.0.0-alpha || 0.0.0-dev",
136+
"npm_version": "^3.0.0 || 0.0.0-dev",
137137
"enabled": True,
138138
},
139139
}

tutormfe/templates/mfe/build/mfe/site/package-lock.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tutormfe/templates/mfe/build/mfe/site/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@
3434
"{{ app['npm_package'] }}": "{{ app['npm_version'] }}",
3535
{%- endfor %}
3636
{%- if get_frontend_compat_mfes() %}
37-
"@openedx/frontend-base-compat": "^1.0.0-alpha || 0.0.0-dev",
38-
"@edx/frontend-platform": "npm:@openedx/frontend-base-compat@^1.0.0-alpha || 0.0.0-dev",
39-
"@openedx/frontend-plugin-framework": "npm:@openedx/frontend-base-compat@^1.0.0-alpha || 0.0.0-dev",
37+
"@openedx/frontend-base-compat": "^1.0.0 || 0.0.0-dev",
38+
"@edx/frontend-platform": "npm:@openedx/frontend-base-compat@^1.0.0 || 0.0.0-dev",
39+
"@openedx/frontend-plugin-framework": "npm:@openedx/frontend-base-compat@^1.0.0 || 0.0.0-dev",
4040
{%- endif %}
41-
"@openedx/frontend-base": "^1.0.0-alpha || 0.0.0-dev"
41+
"@openedx/frontend-base": "^1.0.0 || 0.0.0-dev"
4242
},
4343
{%- if get_frontend_compat_mfes() %}
4444
"overrides": {
45-
"@edx/frontend-platform": "npm:@openedx/frontend-base-compat@^1.0.0-alpha || 0.0.0-dev",
46-
"@openedx/frontend-plugin-framework": "npm:@openedx/frontend-base-compat@^1.0.0-alpha || 0.0.0-dev"
45+
"@edx/frontend-platform": "npm:@openedx/frontend-base-compat@^1.0.0 || 0.0.0-dev",
46+
"@openedx/frontend-plugin-framework": "npm:@openedx/frontend-base-compat@^1.0.0 || 0.0.0-dev"
4747
},
4848
{%- endif %}
4949
"devDependencies": {

0 commit comments

Comments
 (0)