Skip to content

Commit d9a4e97

Browse files
committed
🔖(minor) bump release to 5.12.0
Removed - Remove all legacy Cloudfront code and mentions - Remove all legacy Lambdas Changed - Use associate_by_email when RENATER_FER_SAML switch is enabled
1 parent bdf747e commit d9a4e97

File tree

17 files changed

+28
-25
lines changed

17 files changed

+28
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

11+
## [5.12.0] - 2025-11-06
12+
1113
### Removed
1214

1315
- Remove all legacy Cloudfront code and mentions
@@ -2117,7 +2119,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
21172119

21182120
- Minor fixes and improvements on features and tests
21192121

2120-
[unreleased]: https://github.com/openfun/marsha/compare/v5.11.1...master
2122+
[unreleased]: https://github.com/openfun/marsha/compare/v5.12.0...master
2123+
[5.11.2]: https://github.com/openfun/marsha/compare/v5.11.1...v5.12.0
21212124
[5.11.1]: https://github.com/openfun/marsha/compare/v5.11.0...v5.11.1
21222125
[5.11.0]: https://github.com/openfun/marsha/compare/v5.10.0...v5.11.0
21232126
[5.10.0]: https://github.com/openfun/marsha/compare/v5.9.1...v5.10.0

arnold.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# arnold.yml
22
metadata:
33
name: marsha
4-
version: 5.11.1
4+
version: 5.12.0
55
source:
66
path: src/tray

src/backend/marsha/account/management/commands/dedupe_accounts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
logger = logging.getLogger(__name__)
1414

1515

16-
# pylint: disable=too-many-locals
16+
# pylint: disable=too-many-locals,too-many-branches
1717
def dedupe_accounts(
1818
options: dict[str, Any],
1919
) -> tuple[list[Any], dict[Any, Any], dict[Any, Any], list[Any], list[Any]]:

src/backend/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = marsha
33
description = A FUN video provider for Open edX
4-
version = 5.11.1
4+
version = 5.12.0
55
author = Open FUN (France Universite Numerique)
66
author_email = [email protected]
77
license = MIT

src/frontend/apps/lti_site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "marsha",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"description": "🐠 a FUN LTI video provider",
55
"main": "front/index.tsx",
66
"scripts": {

src/frontend/apps/standalone_site/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "standalone_site",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"private": true,
55
"scripts": {
66
"start": "vite",

src/frontend/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "common",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"license": "MIT",
55
"private": true,
66
"workspaces": {
@@ -58,16 +58,16 @@
5858
"@types/react-dom": "18.3.1",
5959
"@typescript-eslint/typescript-estree": "8.20.0",
6060
"eslint": "8.57.0",
61-
"eslint-config-marsha": "5.11.1",
61+
"eslint-config-marsha": "5.12.0",
6262
"@faker-js/faker": "9.3.0",
6363
"grommet": "2.43.0",
64-
"lib-classroom": "5.11.1",
65-
"lib-common": "5.11.1",
66-
"lib-components": "5.11.1",
67-
"lib-markdown": "5.11.1",
68-
"lib-video": "5.11.1",
69-
"lib-tests": "5.11.1",
70-
"marsha-config": "5.11.1",
64+
"lib-classroom": "5.12.0",
65+
"lib-common": "5.12.0",
66+
"lib-components": "5.12.0",
67+
"lib-markdown": "5.12.0",
68+
"lib-video": "5.12.0",
69+
"lib-tests": "5.12.0",
70+
"marsha-config": "5.12.0",
7171
"prettier": "3.4.2",
7272
"react": "18.3.1",
7373
"react-dom": "18.3.1",

src/frontend/packages/eslint-config-marsha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-marsha",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"main": "index.js",
55
"license": "MIT",
66
"dependencies": {

src/frontend/packages/lib_classroom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lib-classroom",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"license": "MIT",
55
"directories": {
66
"lib": "lib"

src/frontend/packages/lib_common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lib-common",
3-
"version": "5.11.1",
3+
"version": "5.12.0",
44
"license": "MIT",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

0 commit comments

Comments
 (0)