Merge remote-tracking branch 'origin/versions/micro' into versions/minor

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-10-29 00:50:25 -04:00
9 changed files with 31 additions and 22 deletions

View File

@@ -115,6 +115,16 @@
- Backport color log formatter from branch version/next.
- Don't raise error checking AnonymousUser for permissions.
Instead return always False.
- 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)
==================

View File

@@ -4,7 +4,7 @@ OCR backend
Mayan EDMS ships an OCR backend that uses the FLOSS engine Tesseract
(https://github.com/tesseract-ocr/tesseract/), but it can
use other engines. To support other engines crate a wrapper that subclasses the
use other engines. To support other engines create a wrapper that subclasses the
``OCRBackendBase`` class defined in mayan/apps/ocr/classes. This subclass should
expose the ``execute`` method. For an example of how the Tesseract backend
is implemented take a look at the file ``mayan/apps/ocr/backends/tesseract.py``

View File

@@ -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(
module=__name__, name='django-downloadview', version_string='==1.9'
@@ -225,7 +225,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='''
@@ -283,7 +283,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(
@@ -310,12 +310,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=_(

View File

@@ -1,5 +1,5 @@
from __future__ import unicode_literals
import logging
from django.utils.termcolors import colorize
@@ -20,4 +20,3 @@ class ColorFormatter(logging.Formatter):
text=record.msg, **PALETTE.get(record.levelname, {})
)
return super(ColorFormatter, self).format(record)

View File

@@ -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'

View File

@@ -1,6 +1,6 @@
Pillow==6.0.0
Pillow==6.2.1
PyPDF2==1.26.0
PyYAML==5.1.1
PyYAML==5.1.2
celery==4.3.0
django-activity-stream==0.7.0
django-celery-beat==1.5.0
@@ -28,7 +28,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
@@ -38,4 +38,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

View File

@@ -1 +1 @@
django==1.11.24
django==1.11.25

View File

@@ -3,8 +3,8 @@ devpi-server==5.0.0
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

View File

@@ -56,10 +56,10 @@ 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
PyYAML==5.1.2
celery==4.3.0
django-activity-stream==0.7.0
django-celery-beat==1.5.0
@@ -87,7 +87,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
@@ -97,7 +97,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: