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

Scheduled weekly dependency update for week 41 #28

Closed
wants to merge 5 commits into from

Conversation

pyup-bot
Copy link
Collaborator

@pyup-bot pyup-bot commented Oct 9, 2017

Updates

Here's a list of all the updates bundled in this pull request. I've added some links to make it easier for you to find all the information you need.

django 1.11.5 » 1.11.6 PyPI | Changelog | Homepage
flask-sqlalchemy 2.3.0 » 2.3.1 PyPI | Changelog | Repo | Docs
pillow 4.2.1 » 4.3.0 PyPI | Changelog | Homepage
sqlalchemy-utils 0.32.17 » 0.32.18 PyPI | Changelog | Repo
tabulate 0.8.0 » 0.8.1 PyPI | Repo

Changelogs

django 1.11.5 -> 1.11.6

1.11.6

===========================

October 5, 2017

Django 1.11.6 fixes several bugs in 1.11.5.

Bugfixes

  • Made the CharField form field convert whitespace-only values to the
    empty_value when strip is enabled (:ticket:28555).
  • Fixed crash when using the name of a model's autogenerated primary key
    (id) in an Index's fields (:ticket:28597).
  • Fixed a regression in Django 1.9 where a custom view error handler such as
    handler404 that accesses csrf_token could cause CSRF verification
    failures on other pages (:ticket:28488).

===========================

flask-sqlalchemy 2.3.0 -> 2.3.1

2.3.1


Released on October 5, 2017

  • If a model has a table name that matches an existing table in the metadata,
    use that table. Fixes a regression where reflected tables were not picked up
    by models. (551_)
  • Raise the correct error when a model has a table name but no primary key.
    (556_)
  • Fix repr on models that don't have an identity because they have not been
    flushed yet. (555_)
  • Allow specifying a max_per_page limit for pagination, to avoid users
    specifying high values in the request args. (542_)
  • For paginate with error_out=False, the minimum value for page is
    1 and per_page is 0. (558_)

.. _542: pallets-eco/flask-sqlalchemy#542
.. _551: pallets-eco/flask-sqlalchemy#551
.. _555: pallets-eco/flask-sqlalchemy#555
.. _556: pallets-eco/flask-sqlalchemy#556
.. _558: pallets-eco/flask-sqlalchemy#558

pillow 4.2.1 -> 4.3.0

4.3.0


  • Fix warning on pointer cast in isblock 2775, 2778
    [cgohlke]
  • Doc: Added macOS High Sierra tested Pillow version 2777
    [radarhere]
  • Use correct Windows handle type on 64 bit in imagingcms 2774
    [cgohlke]

  • 64 Bit Windows fix for block storage 2773
    [cgohlke]

  • Fix "expression result unused" warning 2764
    [radarhere]
  • Add 16bit Read/Write and RLE read support to SgiImageFile 2769
    [jbltx, wiredfool]
  • Block & array hybrid storage 2738
    [homm]
  • Common seek frame position check 1849
    [radarhere]
  • Doc: Add note about aspect ratio to Image thumbnail script 2281
    [wilsonge]
  • Fix ValueError: invalid version number '1.0.0rc1' in scipy release candidate 2771
    [cgohlke]
  • Unfreeze requirements.txt 2766
    [hugovk]
  • Test: ResourceWarning tests 2756
    [hugovk]
  • Use n_frames to determine is_animated if possible 2315
    [radarhere]
  • Doc: Corrected parameters in documentation 2768
    [radarhere]
  • Avoid unnecessary Image operations 1891
    [radarhere]
  • Added register_extensions method 1860
    [radarhere]
  • Fix TIFF support for I;16S, I;16BS, and I;32BS rawmodes 2748
    [wiredfool]
  • Fixed doc syntax in ImageDraw 2752
    [radarhere]
  • Fixed support for building on Windows/msys2. Added Appveyor CI coverage for python3 on msys2 2476
    [wiredfool]
  • Fix ValueError in Exif/Tiff IFD 2719
    [wiredfool]
  • Use pathlib2 for Path objects on Python < 3.4 2291
    [asergi]
  • Export only required properties in unsafe_ptrs 2740
    [homm]
  • Alpha composite fixes 2709
    [homm]
  • Faster Transpose operations, added 'Transverse' option 2730
    [homm]
  • Deprecate ImageOps undocumented functions gaussian_blur, gblur, unsharp_mask, usm and box_blur in favor of ImageFilter implementations 2735
    [homm]
  • Dependencies: Updated freetype to 2.8.1 2741
    [radarhere]
  • Bug: Player skipped first image 2742
    [radarhere]
  • Faster filter operations for Kernel, Gaussian, and Unsharp Mask filters 2679
    [homm]
  • EPS: Add showpage to force rendering of some EPS images 2636
    [kaplun]
  • DOC: Fix type of palette parameter in Image.quantize. 2703
    [kkopachev]
  • DOC: Fix Ico docs to match code 2712
    [hugovk]
  • Added file pointer save to SpiderImagePlugin 2647
    [radarhere]
  • Add targa version 2 footer 2713
    [jhultgre]
  • Removed redundant lines 2714
    [radarhere]
  • Travis CI: Use default pypy/pypy3 2721
    [hugovk]
  • Fix for SystemError when rendering an empty string, added in 4.2.0 2706
    [wiredfool]
  • Fix for memory leaks in font handling added in 4.2.0 2634
    [wiredfool]
  • Tests: cleanup, more tests. Fixed WMF save handler 2689
    [radarhere]
  • Removed debugging interface for Image.core.grabclipboard 2708
    [radarhere]
  • Doc syntax fix 2710
    [radarhere]
  • Faster packing and unpacking for RGB, LA, and related storage modes 2693
    [homm]
  • Use RGBX rawmode for RGB JPEG images where possible 1989
    [homm]
  • Remove palettes from non-palette modes in _new 2702
    [wiredfool]
  • Delete transparency info when convert'ing RGB/L to RGBA 2633
    [olt]
  • Code tweaks to ease type annotations 2687
    [neiljp]
  • Fixed incorrect use of 's' to byteslike object 2691
    [wiredfool]
  • Fix JPEG subsampling labels for subsampling=2 2698
    [homm]
  • Region of interest (box) for resampling 2254
    [homm]
  • Basic support for Termux (android) in setup.py 2684
    [wiredfool]
  • Bug: Fix Image.fromarray for numpy.bool type. 2683
    [wiredfool]
  • CI: Add Fedora 24 and 26 to Docker tests
    [wiredfool]
  • JPEG: Fix ZeroDivisionError when EXIF contains invalid DPI (0/0). 2667
    [vytisb]
  • Depends: Updated openjpeg to 2.2.0 2669
    [radarhere]
  • Depends: Updated Tk Tcl to 8.6.7 2668
    [radarhere]
  • Depends: Updated libimagequant to 2.10.2 2660
    [radarhere]
  • Test: Added test for ImImagePlugin tell() 2675
    [radarhere]
  • Test: Additional tests for SGIImagePlugin 2659
    [radarhere]
  • New Image.getchannel method 2661
    [homm]
  • Remove unused im.copy2 and core.copy methods 2657
    [homm]
  • Fast Image.merge() 2677
    [homm]
  • Fast Image.split() 2676
    [homm]
  • Fast image allocation 2655
    [homm]
  • Storage cleanup 2654
    [homm]
  • FLI: Use frame count from FLI header 2674
    [radarhere]
  • Test: Test animated FLI file 2650
    [hugovk]
  • Bug: Fixed uninitialized memory in bc5 decoding 2648
    [ifeherva]
  • Moved SgiImagePlugin save error to before the start of write operations 2646
    [radarhere]
  • Move createfontdatachunk.py so isn't installed globally 2645
    [hugovk]
  • Bug: Fix unexpected keyword argument 'align' 2641
    [hugovk]
  • Add newlines to error message for clarity 2640
    [hugovk]
  • Docs: Updated redirected URL 2637
    [radarhere]
  • Bug: Fix JPEG DPI when EXIF is invalid 2632
    [wiredfool]
  • Bug: Fix for font getsize on empty string 2624
    [radarhere]
  • Docs: Improved ImageDraw documentation 2626
    [radarhere]
  • Docs: Corrected alpha_composite args documentation 2627
    [radarhere]
  • Docs: added the description of the filename attribute to images.rst 2621
    [dasdachs]
  • Dependencies: Updated libimagequant to 2.10.1 2616
    [radarhere]
  • PDF: Renamed parameter to not shadow built-in dict 2612
    [kijeong]

sqlalchemy-utils 0.32.17 -> 0.32.18

0.32.18

^^^^^^^^^^^^^^^^^^^^

  • Made aggregated attributes to work with subclass objects (287, pull request courtesy of fayazkhan)

That's it for now!

Happy merging! 🤖

@pyup-bot
Copy link
Collaborator Author

Closing this in favor of #29

@pyup-bot pyup-bot closed this Oct 16, 2017
@puruckertom puruckertom deleted the pyup-scheduled-update-10-09-2017 branch October 16, 2017 14:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants