diff --git a/HISTORY.rst b/HISTORY.rst index c94d32f0b9..35cda5027c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -12,6 +12,13 @@ - Enable the main menu workflow runtime link when the workflow view permission is granted to at least one workflow. - Make Postgres container wait delay configurable. +- Update Django to version 1.11.25. +- Update PyYAML to version 5.1.2. +- Update celery to version 3.1.26.post2. +- Update django-celery to version 3.2.2. +- Update pathlib2 to version 2.3.5. +- Update whitenoise to version 4.1.4. +- Update Pillow to version 6.2.1. 3.2.8 (2019-10-01) ================== diff --git a/mayan/__init__.py b/mayan/__init__.py index 4dffd359e1..f85d46980c 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.8' __build__ = 0x030208 -__build_string__ = 'v3.2.8_Tue Oct 1 13:31:40 2019 -0400' +__build_string__ = 'v3.2.8-20-g2edacc9a06_Mon Oct 28 23:12:39 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' diff --git a/mayan/apps/common/dependencies.py b/mayan/apps/common/dependencies.py index 97bfb1b0d4..b7182a5630 100644 --- a/mayan/apps/common/dependencies.py +++ b/mayan/apps/common/dependencies.py @@ -36,7 +36,7 @@ PythonDependency( ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - ''', module=__name__, name='django', version_string='==1.11.24' + ''', module=__name__, name='django', version_string='==1.11.25' ) PythonDependency( copyright_text=''' @@ -59,7 +59,7 @@ PythonDependency( LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ''', module=__name__, name='PyYAML', version_string='==5.1.1' + ''', module=__name__, name='PyYAML', version_string='==5.1.2' ) PythonDependency( copyright_text=''' @@ -117,7 +117,7 @@ PythonDependency( Celery under the GPL license. The BSD license, unlike the GPL, let you distribute a modified version without making your changes open source. - ''', module=__name__, name='celery', version_string='==3.1.24' + ''', module=__name__, name='celery', version_string='==3.1.26.post2' ) PythonDependency( copyright_text=''' @@ -318,7 +318,7 @@ PythonDependency( module=__name__, name='mock', version_string='==2.0.0' ) PythonDependency( - module=__name__, name='pathlib2', version_string='==2.3.4' + module=__name__, name='pathlib2', version_string='==2.3.5' ) PythonDependency( copyright_text=''' @@ -376,7 +376,7 @@ PythonDependency( ''', module=__name__, name='sh', version_string='==1.12.14' ) PythonDependency( - module=__name__, name='whitenoise', version_string='==4.1.2' + module=__name__, name='whitenoise', version_string='==4.1.4' ) PythonDependency( @@ -399,12 +399,12 @@ PythonDependency( PythonDependency( environment=environment_development, help_text=_( 'Provides style checking.' - ), module=__name__, name='flake8', version_string='==3.7.7' + ), module=__name__, name='flake8', version_string='==3.7.9' ) PythonDependency( environment=environment_development, help_text=_( 'Command line environment with autocompletion.' - ), module=__name__, name='ipython', version_string='==5.5.0' + ), module=__name__, name='ipython', version_string='==5.8.0' ) PythonDependency( environment=environment_development, help_text=_( diff --git a/mayan/apps/converter/dependencies.py b/mayan/apps/converter/dependencies.py index 7cc4960a3c..050f7d8570 100644 --- a/mayan/apps/converter/dependencies.py +++ b/mayan/apps/converter/dependencies.py @@ -24,7 +24,7 @@ BinaryDependency( ) PythonDependency( copyright_attribute='PIL.__doc__', module=__name__, name='Pillow', - version_string='==6.0.0', + version_string='==6.2.1', ) PythonDependency( module=__name__, name='PyPDF2', version_string='==1.26.0' diff --git a/requirements/base.txt b/requirements/base.txt index 7919f51384..5621a05cf0 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,7 +1,7 @@ -Pillow==6.0.0 +Pillow==6.2.1 PyPDF2==1.26.0 -PyYAML==5.1.1 -celery==3.1.24 +PyYAML==5.1.2 +celery==3.1.26.post2 django-activity-stream==0.7.0 django-celery==3.2.1 django-colorful==1.3 @@ -29,7 +29,7 @@ graphviz==0.10.1 gunicorn==19.9.0 mock==2.0.0 node-semver==0.6.1 -pathlib2==2.3.4 +pathlib2==2.3.5 pycountry==18.12.8 pyocr==0.6 python-dateutil==2.8.0 @@ -39,4 +39,4 @@ pytz==2019.1 requests==2.21.0 sh==1.12.14 swagger-spec-validator==2.4.3 -whitenoise==4.1.2 +whitenoise==4.1.4 diff --git a/requirements/common.txt b/requirements/common.txt index 25d563b64e..ec1ad20b4c 100644 --- a/requirements/common.txt +++ b/requirements/common.txt @@ -1 +1 @@ -django==1.11.24 +django==1.11.25 diff --git a/requirements/development.txt b/requirements/development.txt index 8689376c36..c68cd54462 100644 --- a/requirements/development.txt +++ b/requirements/development.txt @@ -2,8 +2,8 @@ Werkzeug==0.15.4 django-debug-toolbar==1.11 django-extensions==2.1.9 django-rosetta==0.9.3 -flake8==3.7.7 -ipython==5.5.0 +flake8==3.7.9 +ipython==5.8.0 readme==0.7.1 safety==1.8.5 transifex-client==0.13.6 diff --git a/setup.py b/setup.py index 8b0516670d..ae7f89e7b5 100644 --- a/setup.py +++ b/setup.py @@ -56,11 +56,11 @@ def find_packages(directory): return packages install_requires = """ -django==1.11.24 -Pillow==6.0.0 +django==1.11.25 +Pillow==6.2.1 PyPDF2==1.26.0 -PyYAML==5.1.1 -celery==3.1.24 +PyYAML==5.1.2 +celery==3.1.26.post2 django-activity-stream==0.7.0 django-celery==3.2.1 django-colorful==1.3 @@ -88,7 +88,7 @@ graphviz==0.10.1 gunicorn==19.9.0 mock==2.0.0 node-semver==0.6.1 -pathlib2==2.3.4 +pathlib2==2.3.5 pycountry==18.12.8 pyocr==0.6 python-dateutil==2.8.0 @@ -98,7 +98,7 @@ pytz==2019.1 requests==2.21.0 sh==1.12.14 swagger-spec-validator==2.4.3 -whitenoise==4.1.2 +whitenoise==4.1.4 """.split() with open('README.rst') as f: