Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 0.4.2 and update README #439

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
48 changes: 48 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,54 @@ Reporting and data retrieval app for `Open edX <https://open.edx.org/>`__.
`Figures is on PyPI <https://pypi.org/project/Figures/>`__


Mar 3, 2022 - Figures release 0.4.2
===================================

This release adds an optionan new pipeline workflow

For details, `please read here <https://github.com/appsembler/figures/issues/428>`__

To enable this feature, you need to update the LMS settings (aka 'server-vars.yml') as follows:

server-vars.yml::

FIGURES:
DAILY_TASK: 'figures.tasks.populate_daily_metrics_next'

In Django settigs, you would check the var here::

from django.conf import settings
settings.ENV_TOKENS['FIGURES'].get('DAILY_TASK')

PR about the workflow update:

* Pipeline improvement prerequisites

* https://github.com/appsembler/figures/pull/427

* Figures pipeline performance improvement

* https://github.com/appsembler/figures/pull/429

* Fix enrollment data backfill Django management command

* https://github.com/appsembler/figures/pull/432

Other PRs

* Revert devsite 'courseware' app namepace back to originial

* https://github.com/appsembler/figures/pull/434

* Bump url-parse from 1.5.1 to 1.5.10 in /frontend

* https://github.com/appsembler/figures/pull/431

* Bump urijs from 1.19.6 to 1.19.8 in /frontend

* https://github.com/appsembler/figures/pull/430


Feb 4, 2022 - Main Branch
=========================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(
name='Figures',
version='0.4.1',
version='0.4.2',
packages=find_packages(),
include_package_data=True,
license='MIT',
Expand Down