Skip to content

Commit 69ec73b

Browse files
committed
🔖(patch) bump release to 1.2.0
Added - Add automatic portability between consumer sites for friend websites or different environments of the same website, - Enforce either the `consumer site` or the `playlist` field is set on a LTI passport, and not both, - Improve admin pages for the playlist and video models, - Add unicity constraints on the playlist and video models, - Improve string representation for the a playlist model. Fixed - Improve test to secure portability of a video to the same playlist on another site, making sure it has precedence over a video linked to another playlist on the other site, - Isolate route definitions to avoid circular dependencies in the frontend, - Add unicity test timed text tracks to confirm soft deleted records are ignored, - Copy related tracks correctly when duplicating a video, - Replace the `upload-policy` API endpoint by `initiate-upload` that reset the upload state and returns the AWS S3 upload policy in a single POST query, - Add field `is_ready_to_play` to compensate removing field `state`, - Rename `state` field to `upload_state` as it does not represent the state of the object nymore but the state of the latest upload attempted on this object, - Enforce read-only on `upload_state` and `active_stamp` fields as they should only be updated by AWS via the `update-state` API endpoint.
1 parent 769da07 commit 69ec73b

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## [1.2.0] - 2019-01-15
12+
1113
### Added
1214

1315
- Add automatic portability between consumer sites for friend websites or different environments
14-
of the same website.
16+
of the same website
1517
- Enforce either the `consumer site` or the `playlist` field is set on a LTI
1618
passport, and not both
1719
- Improve admin pages for the playlist and video models
@@ -21,7 +23,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
2123
### Fixed
2224

2325
- Improve test to secure portability of a video to the same playlist on another site, making sure
24-
it has precedence over a video linked to another playlist on the other site.
26+
it has precedence over a video linked to another playlist on the other site
27+
- Isolate route definitions to avoid circular dependencies in the frontend
2528
- Add unicity test timed text tracks to confirm soft deleted records are ignored
2629
- Copy related tracks correctly when duplicating a video
2730
- Replace the `upload-policy` API endpoint by `initiate-upload` that reset the upload
@@ -30,7 +33,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
3033
- Rename `state` field to `upload_state` as it does not represent the state of the object
3134
anymore but the state of the latest upload attempted on this object
3235
- Enforce read-only on `upload_state` and `active_stamp` fields as they should only be
33-
updated by AWS via the `update-state` API endpoint.
36+
updated by AWS via the `update-state` API endpoint
3437

3538
## [1.1.2] - 2019-01-11
3639

@@ -69,7 +72,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
6972

7073
- Minor fixes and improvements on features and tests
7174

72-
[unreleased]: https://github.com/openfun/marsha/compare/v1.1.2...master
75+
[unreleased]: https://github.com/openfun/marsha/compare/v1.2.0...master
76+
[1.2.0]: https://github.com/openfun/marsha/compare/v1.1.2...v1.2.0
7377
[1.1.2]: https://github.com/openfun/marsha/compare/v1.1.1...v1.1.2
7478
[1.1.1]: https://github.com/openfun/marsha/compare/v1.1.0...v1.1.1
7579
[1.1.0]: https://github.com/openfun/marsha/compare/v1.0.0...v1.1.0

src/backend/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = marsha
33
description = A FUN video provider for Open edX
44
long_description = file:README.rst
5-
version = 1.1.2
5+
version = 1.2.0
66
author = Open FUN (France Universite Numerique)
77
author_email = [email protected]
88
license = MIT

src/frontend/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": "1.1.2",
3+
"version": "1.2.0",
44
"description": "🐠 a FUN LTI video provider",
55
"main": "front/index.tsx",
66
"scripts": {

0 commit comments

Comments
 (0)