Skip to content

Commit

Permalink
🔖(minor) bump release to 2.1.0
Browse files Browse the repository at this point in the history
Added
- Add accessibility section from Richie course syllabus
  in contract definition template through RDF attributes
- Update signatories for organization owners and student on ongoing
  signature procedures
- Add enrollments pages
- Addition of clickable columns value in the different lists
- Add admin page to decrypt additional data sent to Sentry
- Allow to link a syllabus inside the product detail view
- Add Lyra payment backend

Changed
- Store certificate images through a new DocumentImage model
- Migrate to Sentry SDK 2.0
- Add required filter by `Organization` and search through
  query on learner for certificate view in django admin
- Migrate from `django-fsm` to `viewflow.fsm`
- Use generic AdminCourseProductRelationSerializer
- Make editing forms in auto save mode
- Format all displayed date to the format "10/14/1983, 1:30 PM"

Fixed
- Prevent newsletter subscription on user save failure
- Query string search for enrollment in django admin backoffice
- Encrypt sentry additional data (may contain sensitive data)
  • Loading branch information
jbpenrath authored and lunika committed May 3, 2024
1 parent 4c67905 commit 8ee6821
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to

## [Unreleased]

## [2.1.0] - 2024-05-02

### Added

- Add accessibility section from Richie course syllabus
Expand All @@ -31,8 +33,6 @@ and this project adheres to
- Make editing forms in auto save mode
- Format all displayed date to the format "10/14/1983, 1:30 PM"

### Removed

### Fixed

- Contract's context `course_start`, `course_end`, `course_effort`
Expand Down Expand Up @@ -289,7 +289,8 @@ and this project adheres to
- First working version serving sellable micro-credentials for multiple
organizations synchronized to a remote catalog

[unreleased]: https://github.com/openfun/joanie/compare/v2.0.1...main
[unreleased]: https://github.com/openfun/joanie/compare/v2.1.0...main
[2.1.0]: https://github.com/openfun/joanie/compare/v2.0.1...v2.1.0
[2.0.1]: https://github.com/openfun/joanie/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/openfun/joanie/compare/v1.2.0...v2.0.0
[1.2.0]: https://github.com/openfun/joanie/compare/v1.1.0...v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion arnold.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# arnold.yml
metadata:
name: joanie
version: 2.0.1
version: 2.1.0
source:
path: src/tray
2 changes: 1 addition & 1 deletion src/backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "joanie"
version = "2.0.1"
version = "2.1.0"
authors = [{ "name" = "Open FUN (France Université Numérique)", "email" = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "admin",
"version": "2.0.1",
"version": "2.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8072",
Expand Down
2 changes: 1 addition & 1 deletion src/mail/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mail_mjml",
"version": "2.0.1",
"version": "2.1.0",
"description": "An util to generate html and text django's templates from mjml templates",
"type": "module",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/openApiClientJs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "joanie-openapi-client-ts",
"version": "2.0.1",
"version": "2.1.0",
"private": true,
"description": "Tool to generate Typescript api client for joanie",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/tray/tray.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
metadata:
name: joanie
version: 2.0.1
version: 2.1.0
4 changes: 2 additions & 2 deletions src/tray/vars/all/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ joanie_nginx_static_cache_expires: "1M"

# -- admin nginx
joanie_admin_nginx_image_name: "fundocker/joanie-admin"
joanie_admin_nginx_image_tag: "2.0.1"
joanie_admin_nginx_image_tag: "2.1.0"
joanie_admin_nginx_port: 8061
joanie_admin_nginx_replicas: 1
joanie_admin_nginx_healthcheck_port: 5000
Expand All @@ -41,7 +41,7 @@ joanie_database_secret_name: "joanie-postgresql-{{ joanie_vault_checksum | defau

# -- joanie
joanie_image_name: "fundocker/joanie"
joanie_image_tag: "2.0.1"
joanie_image_tag: "2.1.0"
# The image pull secret name should match the name of your secret created to
# login to your private docker registry
joanie_image_pull_secret_name: ""
Expand Down

0 comments on commit 8ee6821

Please sign in to comment.