From ae7e9061f517271c46b466ce011b870e54256650 Mon Sep 17 00:00:00 2001 From: Samuel Paccoud - FUN MOOC Date: Mon, 8 Apr 2019 18:25:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96(chore)=20bump=20release=20to=201.0?= =?UTF-8?q?.0-beta.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added - Add i18n tooling to export strings to Crowdin, retrieve and compile translations, for the frontend and the backend. All translations are committed inside the project, - Add links to switch language from the menu, - Add social network badges in the footer, on course pages and on blog posts, - Make categories configurable via the CMS, multi-dimensional and nested, - Add blog post pages in a section called `News`, - Update Elasticsearch indexes each time a page is modified and published, - Improve fulltext search to match partial words, - Add end-to-end tests for the search functionality to secure behavior. Changed - Make site look generic and deploy it to richie.education, - Build frontend in production mode, - Upgrade to Python 3.7 - Switch to indexing courses instead of course runs, - Allow course run dates to be null. If a start date is null, the course run is `to be programmed`, if an end date is null, the course run (or its enrollment) is deemed to last forever, - Use our own Elasticsearch image to allow running it with a non-root user, - Move persons to the courses app, - Rename database tables to `richie_*` to regain control of their name, - Improve structure and packaging to allow using Richie as a third party application in another DjangoCMS project, - Many cosmetic and UI fixes and improvements following first user feedbacks. --- CHANGELOG.md | 37 ++++++++++++++++++++++++++++--------- setup.cfg | 2 +- src/frontend/package.json | 2 +- 3 files changed, 30 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46997c04fa..75d182b071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,24 +8,42 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [1.0.0-beta.4] - 2019-04-08 + ### Added -- We now package and distribute the front-end application _via_ NPM (see - [richie.education](https://www.npmjs.com/package/richie-education)). +- Add i18n tooling to export strings to Crowdin, retrieve and compile translations, for the + frontend and the backend. All translations are committed inside the project, +- Add links to switch language from the menu, +- Add social network badges in the footer, on course pages and on blog posts, +- Make categories configurable via the CMS, multi-dimensional and nested, +- Add blog post pages in a section called `News`, +- Update Elasticsearch indexes each time a page is modified and published, +- Improve fulltext search to match partial words, +- Add end-to-end tests for the search functionality to secure behavior. ### Changed -- Front-end styles are now all in the same place, _i.e._ in `src/frontend/scss` - -### Fixed - -- Fix the `collectstatic` management command execution (bad `STATICFILES_DIRS` definition) +- Make site look generic and deploy it to richie.education, +- Build frontend in production mode, +- Upgrade to Python 3.7, +- Switch to indexing courses instead of course runs, +- Allow course run dates to be null. If a start date is null, the course run is + `to be programmed`, if an end date is null, the course run (or its enrollment) is deemed to + last forever, +- Use our own Elasticsearch image to allow running it with a non-root user, +- Move persons to the courses app, +- Rename database tables to `richie_*` to regain control of their name, +- Improve structure and packaging to allow using Richie as a third party application in another + DjangoCMS project, +- Many cosmetic and UI fixes and improvements following first user feedbacks. ## [1.0.0-beta.3] - 2019-03-15 ### Changed -- Improved Docker image: now it does not ship with the project sources but only with runtime-required requirements (_i.e._ the sandbox and richie's package installed globally). +- Improved Docker image: now it does not ship with the project sources but only with + runtime-required requirements (_i.e._ the sandbox and richie's package installed globally). ### Fixed @@ -86,7 +104,8 @@ As we prepare to release, here are some improvements and fixes still ahead of us - finish integrating the missing pages and improve the sandbox environment; - test and polish the use of richie as a django app / node dependency. -[unreleased]: https://github.com/openfun/richie/compare/v1.0.0-beta.3...master +[unreleased]: https://github.com/openfun/richie/compare/v1.0.0-beta.4...master +[1.0.0-beta.4]: https://github.com/openfun/richie/compare/v1.0.0-beta.3...v1.0.0-beta.4 [1.0.0-beta.3]: https://github.com/openfun/richie/compare/v1.0.0-beta.2...v1.0.0-beta.3 [1.0.0-beta.2]: https://github.com/openfun/richie/compare/v1.0.0-beta.1...v1.0.0-beta.2 [1.0.0-beta.1]: https://github.com/openfun/richie/compare/v1.0.0-beta.0...v1.0.0-beta.1 diff --git a/setup.cfg b/setup.cfg index 08cb8ca780..7a0ae3ada0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = richie -version = 1.0.0-beta.3 +version = 1.0.0-beta.4 description = A FUN portal for Open edX long_description = file:README.md long_description_content_type = text/markdown diff --git a/src/frontend/package.json b/src/frontend/package.json index 98d1481978..f7fd325004 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,6 +1,6 @@ { "name": "richie-education", - "version": "1.0.0-beta.3", + "version": "1.0.0-beta.4", "description": "A CMS for Open Education", "main": "sandbox/manage.py", "scripts": {