mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 06:37:46 +00:00
v15.3.3
This commit is contained in:
parent
3377ffc38a
commit
679fe5f86b
13
CHANGELOG.md
13
CHANGELOG.md
@ -20,6 +20,19 @@ instructions, because git commits are used to generate release notes:
|
||||
|
||||
<!-- scriv-insert-here -->
|
||||
|
||||
<a id='changelog-15.3.3'></a>
|
||||
## v15.3.3 (2023-03-22)
|
||||
|
||||
- [Improvement] Make it possible to extend or override the configuration of the uWSGI server. (by @MoisesGSalas)
|
||||
- [Improvement] Running `tutor dev launch --mount=edx-platform` now performs all necessary setup for a local edx-platform development. This includes running setup.py, installing node modules, and building assets; previously, those steps had to be run explicitly after bind-mounting a local copy of edx-platform (by @kdmccormick).
|
||||
- [Bugfix] Running jobs in development mode with `tutor dev do ...` will now correctly use the development image. Previously, it used the production image, just like `tutor local do ...`. (by @kdmccormick)
|
||||
- [Improvement] Faster build with `npm clean-install` instead of `npm install` in the openedx Docker image. This may change the version of npm packages installed next to edx-platform. (by @regisb)
|
||||
- [Feature] Introduce the `DOCKER_BUILD_COMMAND` filter which makes it possible to customize the `docker build` command. (by @regisb)
|
||||
- [Improvement] During openedx image build, copy `dockerize` utility from Docker registry for better efficiency. (by @regisb)
|
||||
- [Improvement] Better highlight enabled plugins in `tutor plugins list`. (by @regisb)
|
||||
|
||||
- [Bugfix] Make sure that v0 plugin patches are applied in the same order as plugins are listed. (by @regisb)
|
||||
|
||||
<a id='changelog-15.3.1'></a>
|
||||
## v15.3.2 (2023-03-13)
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
<!--
|
||||
Create a changelog entry for every new user-facing change. Please respect the following instructions:
|
||||
- Indicate breaking changes by prepending an explosion 💥 character.
|
||||
- Prefix your changes with either [Bugfix], [Improvement], [Feature], [Security], [Deprecation].
|
||||
- You may optionally append "(by @<author>)" at the end of the line, where "<author>" is either one (just one)
|
||||
of your GitHub username, real name or affiliated organization. These affiliations will be displayed in
|
||||
the release notes for every release.
|
||||
-->
|
||||
|
||||
<!-- - 💥[Feature] Foobarize the blorginator. This breaks plugins by renaming the `FOO_DO` filter to `BAR_DO`. (by @regisb) -->
|
||||
<!-- - [Improvement] This is a non-breaking change. Life is good. (by @billgates) -->
|
||||
- [Improvement] Make it possible to extend or override the configuration of the uWSGI server. (by @MoisesGSalas)
|
@ -1 +0,0 @@
|
||||
- [Improvement] Running ``tutor dev launch --mount=edx-platform`` now performs all necessary setup for a local edx-platform development. This includes running setup.py, installing node modules, and building assets; previously, those steps had to be run explicitly after bind-mounting a local copy of edx-platform (by @kdmccormick).
|
@ -1 +0,0 @@
|
||||
- [Bugfix] Running jobs in development mode with ``tutor dev do ...`` will now correctly use the development image. Previously, it used the production image, just like ``tutor local do ...``. (by @kdmccormick)
|
@ -1 +0,0 @@
|
||||
- [Improvement] Faster build with `npm clean-install` instead of `npm install` in the openedx Docker image. This may change the version of npm packages installed next to edx-platform. (by @regisb)
|
@ -1 +0,0 @@
|
||||
- [Feature] Introduce the `DOCKER_BUILD_COMMAND` which makes it possible to customize the `docker build` command. (by @regisb)
|
@ -1 +0,0 @@
|
||||
- [Improvement] During openedx image build, copy `dockerize` utility from Docker registry for better efficiency. (by @regisb)
|
@ -1 +0,0 @@
|
||||
- [Improvement] Better highlight enabled plugins in `tutor plugins list`. (by @regisb)
|
@ -1 +0,0 @@
|
||||
- [Bugfix] Make sure that v0 plugin patches are applied in the same order as plugins are listed. (by @regisb)
|
@ -2,7 +2,7 @@ import os
|
||||
|
||||
# Increment this version number to trigger a new release. See
|
||||
# docs/tutor.html#versioning for information on the versioning scheme.
|
||||
__version__ = "15.3.2"
|
||||
__version__ = "15.3.3"
|
||||
|
||||
# The version suffix will be appended to the actual version, separated by a
|
||||
# dash. Use this suffix to differentiate between the actual released version and
|
||||
|
Loading…
Reference in New Issue
Block a user