3.5.2:
New guide to using window functions in Peewee.
New and improved table name auto-generation. This feature is not backwards compatible, so it is disabled by default. To enable, set legacy_table_names=False in your model's Meta options. For more details, see table names documentation.
Allow passing single fields/columns to window function order_by and partition_by arguments.
Support for FILTER (WHERE...) clauses with window functions and aggregates.
Added IdentityField class suitable for use with Postgres 10's new identity column type. It can be used anywhere AutoField or BigAutoField was being used previously.
Fixed bug creating indexes on tables that are in attached databases (SQLite).
Fixed obscure bug when using prefetch() and ModelAlias to populate a back-reference related model.
3.5.1:
New features
------------
New documentation for working with relationships in Peewee.
Improved tests and documentation for MySQL upsert functionality.
Allow database parameter to be specified with ModelSelect.get() method.
Add QualifiedNames helper to peewee module exports.
Add temporary= meta option to support temporary tables.
Allow a Database object to be passed to constructor of DataSet helper.
Bug fixes
---------
Fixed edge-case where attempting to alias a field to it's underlying column-name (when different), Peewee would not respect the alias and use the field name instead.
Raise a ValueError when joining and aliasing the join to a foreign-key's object_id_name descriptor. Should prevent accidentally introducing O(n) queries or silently ignoring data from a joined-instance.
Fixed bug for MySQL when creating a foreign-key to a model which used the BigAutoField for it's primary-key.
Fixed bugs in the implementation of user-defined aggregates and extensions with the APSW SQLite driver.
Fixed regression introduced in 3.5.0 which ignored custom Model __repr__().
Fixed regression from 2.x in which inserting from a query using a SQL() was no longer working.
19.9.0:
* fix: address a regression that prevented syslog support from working
* fix: correctly set REMOTE_ADDR on versions of Python 3 affected by
Python Issue 30205 <https://bugs.python.org/issue30205>_
* fix: show zero response length correctly in access log
* fix: prevent raising :exc:AttributeError when --reload is not passed
in case of a :exc:SyntaxError raised from the WSGI application.
* The internal module gunicorn.workers.async was renamed to gunicorn.workers.base_async
since async is now a reserved word in Python 3.7.
Release 1.13.2:
Added support for accessing client host keys via the OpenSSH ssh-keysign program when doing host-based authentication. If ssh-keysign is present and enabled on the system, an AsyncSSH based SSH client can use host-based authentication without access to the host private keys.
Added support for using pathlib path objects when reading and writing private and public keys and certificates.
Added support for auth_completed() callback in the SSHServer class which runs when authentication completes successfully on each new connection.
Fixed host-based authentication unit tests to mock out calls to getnameinfo() to avoid failures on systems with restricted network functionality.
## Version 0.11.4 (2018-07-03)
* Fix dependency matching to correctly consider DEPENDS rather than simply
attempting to pull in the highest version. Resolves issues with installing
packages depending on samba and their conflicts against tdb and talloc.
Version 1.4.3 released
* audio2tape
* Replace deprecated auto_ptr with unique_ptr
* createhdf
* Cast size_t variables to unsigned long in printf() statements
* fmfconv
* Fix printf() conversion specifiers
* Fix ULAW identification
* Force pad byte to value zero in WAV files
* rzxdump
* Cast size_t variables to unsigned long in printf() statements
* Fix printf() conversion specifiers
* snapdump
* Cast size_t variables to unsigned long in printf() statements
* Fix printf() conversion specifiers
* tape2pulses
* Close file on error
* tzxlist
* Fix printf() conversion specifiers
libspectrum 1.4.4:
* Various minor bug fixes/improvements:
* Fix memory allocation in g_array_set_size()
* Cast whole expressions in printf() statements
* Fix up printf() related warnings
* Fix detection of small files in SZX unit tests
0.15.42:
fix regression showing only on narrow Python 2.7 (py27mu) builds
run pre-commit tox on Python 2.7 wide and narrow, as well as 3.4/3.5/3.6/3.7/pypy
0.15.41:
add detection of C-compile failure, which was removed while no longer dependent on libyaml, C-extensions compilation still needs a compiler though.
0.15.40:
added links to landing places as suggested in issue 190
fixes issue 201: decoding unicode escaped tags on Python2
0.15.39:
merge P.R.27 improving package startup time (and loading when regexp not actually used)
0.15.38:
fix for losing precision when roundtripping floats
fix for hardcoded dir separator not working for Windows
0.15.37:
again trying to create installable files for 187
0.15.36:
fix issue 187, incompatibility of C extension with 3.7
Version 3.16.0:
* Restore old behavior with regard to the type of decoded empty
strings with speedups enabled on Python 2.x
* Add python_requires to setup.py to help pip
* Fix CSS in docs when built locally
FEATURES:
- Connect Feature Beta: This version includes a major new feature for
Consul named Connect. Connect enables secure service-to-service
communication with automatic TLS encryption and identity-based
authorization.
- Connect must be enabled explicitly in configuration so upgrading a
cluster will not affect any existing functionality until it's
enabled.
- This is a Beta feature, we don't recommend enabling this in
production yet. Please see the documentation for more information.
- dns: Enable PTR record lookups for services with IPs that have no
registered node
- ui: Default to serving the new UI. Setting the `CONSUL_UI_LEGACY`
environment variable to `1` or `true` will revert to serving the old
UI
IMPROVEMENTS:
- agent: A Consul user-agent string is now sent to providers when
making retry-join requests
- client: Add metrics for failed RPCs
- agent: Add configuration entry to control including TXT records for
node meta in DNS responses
- client: Make RPC rate limit configuration reloadable
BUG FIXES:
- agent: Fixed an issue where watches were being duplicated on reload.
- agent: Fixed an issue with Agent watches on a HTTPS only agent would
fail to use TLS.
- agent: Fixed bug that would cause unnecessary and frequent logging
yamux keepalives
- dns: Re-enable full DNS compression
Potential Incompatibilities
- All Corba applications are now moved from the OTP repository
- A new Corba repository will be created https://github.com/erlang
- New applications ftp and tftp, moved from inets
- ssl no longer supports 3_DES cipher suites or RSA-key exchange
cipher suites by default
- Erlang:monitor on a primitive node (erl_interface, jinterface, etc)
will no longer fail with badarg exception. Instead a monitor will be
created, but it will only supervise the connection to the node.
Erts:
- Enhanced IO scalability
- Support for usage of distribution controller processes for
alternative transports, routing etc
- compact instructions on 64bit systems for code below 4GB 20% less
memory for loaded code
- Rewrite of the efile-driver with NIFs and "Dirty schedulers"
resulting in faster file operations
- non-smp VM removed
- link and monitor optimized for scalability
- os:getenv/putenv now work on thread-safe emulation. No longer in
sync with libc getenv(3). Manual synchronization will be needed.
Compiler:
- Misc compiler optimizations including contributions from the Elixir
team resulting in 10% improvements in benchmarks
- "Tuple calls" have been removed from the run-time system.
- Code such as f({ok, Val}) -> {ok, Val} is now automatically
rewritten to f({ok, Val} = Tuple) -> Tuple. this reduces code size,
execution time, and removed GC pressure.
- More information in stacktrace from a number of operators
- erlang:get_stacktrace/0 deprecated to be replaced with try ... catch
C:R:Stacktrace -> ...
- Creation of small maps with literal keys optimized.
- A new predefined macro OTP_RELEASE and preprocessor directives -if
and -elif
Security:
- DTLS is now supported in the SSL application
- Enhanced support for distribution over TLS
- "unsecure" ciphers removed from defaults in SSL and SSH.
- A new option value defined to facilitate implementing exec servers.
Old option kept for compatibility, but now gives errors on stderror.
Standard libraries:
- New API for logging, logger
- New uri_string module for parsing URIs according to "The standard"
- New function lists:search(list,fun/1) -> {ok, Value} | false
- Changed default behaviour of .erlang loading. escript, erlc,
dialyzer and typer no longer load an .erlang at all.
3.0.0:
Renamed format property to source.
source property Cam is now Camera or HD Camera
source property Telesync is now Telesync or HD Telesync
source property PPV is now Pay-per-view
source property DVB is now Digital TV
source property VOD is now Video on Demand
source property WEBRip is now Web with additional property other: Rip
source property WEB-DL is now Web
source property AHDTV is now Analog HDTV
source property UHDTV is now Ultra HDTV
source property HDTC is now HD Telecine
screen_size property 360i was added.
screen_size property 480i was added.
screen_size property 576i was added.
screen_size property 900i was added.
screen_size property 1440p was added.
screen_size property 4K is now 2160p
screen_size property 4320p was added.
video_codec property h264 is now H.264
video_codec property h265 is now H.265
video_codec property Mpeg2 is now MPEG-2
video_codec property Real is now RealVideo
video_codec property XviD is now Xvid
video_profile property BP is now Baseline.
video_profile property HP is now High.
video_profile property XP is now Extended.
video_profile property MP is now Main.
video_profile property Hi422P is now High 4:2:2.
video_profile property Hi444PP is now High 4:4:4 Predictive.
video_profile property High 10 was added.
video_profile property 8bit was removed. 8bit is detected as color_depth: 8-bit
video_profile property 10bit was removed. 10bit is detected as color_depth: 10-bit
audio_codec property DTS-HD was added.
audio_codec property AC3 is now Dolby Digital
audio_codec property EAC3 is now Dolby Digital Plus
audio_codec property TrueHD is now Dolby TrueHD
audio_codec property DolbyAtmos is now Dolby Atmos.
audio_profile property HE is now High Efficiency.
audio_profile property LC is now Low Complexity.
audio_profile property HQ is now High Quality.
audio_profile property HDMA is now Master Audio.
edition property Collector Edition is now Collector
edition property Special Edition is now Special
edition property Criterion Edition is now Criterion
edition property Deluxe Edition is now Deluxe
edition property Limited Edition is now Limited
edition property Theatrical Edition is now Theatrical
edition property Director's Definitive Cut was added.
episode_details property Oav and Ova were removed. They are now other: Original Animated Video
episode_details property Omake is now Extras
episode_details property Final was added.
other property Rip was added.
other property DDC was removed. DDC is now edition: Director's Definitive Cut
other property CC was removed. CC is now edition: Criterion
other property FINAL was removed. FINAL is now episode_details: Final
other property Original Animated Video was added.
other property OV is now Original Video
other property AudioFix is now Audio Fixed
other property SyncFix is now Sync Fixed
other property DualAudio is now Dual Audio
other property Fansub is now Fan Subtitled
other property Fastsub is now Fast Subtitled
other property FullHD is now Full HD
other property UltraHD is now Ultra HD
other property mHD and HDLight are now Micro HD
other property HQ is now High Quality
other property HR is now High Resolution
other property LD is now Line Dubbed
other property MD is now Mic Dubbed
other property Low Definition was added.
other property LiNE is now Line Audio
other property R5 is now Region 5
other property Region C was added.
other property ReEncoded is now Reencoded
other property WideScreen is now Widescreen
Added Ultra HD Blu-ray as new source possible value.
Added Standard Dynamic Range as new other possible value.
Added HDR10 as new other possible value.
Added Dolby Vision as new other possible value.
Added BT.2020 as new other possible value.
Added 12-bit as new color_depth possible value.
Added IMAX as new edition possible value.
Added Upscaled as new other possible value.
Added High Frame Rate as new other possible value.
Added Ultimate as new edition possible value.
Added Fan as new edition possible value.
Added High Resolution Audio as new audio_profile possible value.
Added Extended Surround as new audio_profile possible value.
Added EX as new audio_profile possible value
Added Opus as new audio_codec possible value
Added aspect_ratio as new property. Also used to validate if a screen_size is a standard resolution.
Fixed unwanted language and country detection for exotic languages.
Added default and configurable list of allowed languages and countries
Added VC-1 as new video_codec possible value
Enhanced dash-separated release_group detection.
Changed size output to return guessit.Quantity object.
Changed size output to return guessit.Size object.
Added audio_video_rate as new possible property.
Added video_video_rate as new possible property.
Added frame_rate as new possible property.
Added disc as a new possible property.
Added H.263 as new video_codec possible value.
Added VP7 as new video_codec possible value.
Added VP8 as new video_codec possible value.
Added VP9 as new video_codec possible value.
Added Vorbis as new audio_codec possible value.
Added PCM as new audio_codec possible value.
Added LPCM as new audio_codec possible value.
Added Digital Master as new source possible value.
Added several new values for streaming_service.
Added new options --includes and --excludes.
Added Sample as new other possible value.
Added Obfuscated as new other possible value.
Added Proof as new other possible value.
Added Repost as new other possible value.
Added advanced guessit configuration to config files.
Add support for pathlib.Path objects on guessit API input.
3.65.0:
This release deprecates the :obj:~hypothesis.settings.max_shrinks setting in favor of an internal heuristic. If you need to avoid shrinking examples, use the :obj:~hypothesis.settings.phases setting instead. (:issue:1235)
3.64.2:
This release fixes a bug where an internal assertion error could sometimes be triggered while shrinking a failing test.
3.64.1:
This patch fixes type-checking errors in our vendored pretty-printer, which were ignored by our mypy config but visible for anyone else (whoops). Thanks to Pi Delport for reporting :issue:1359 so promptly.
3.64.0:
This release adds :ref:an interface <custom-function-execution> which can be used to insert a wrapper between the original test function and :func:@given <hypothesis.given> (:issue:1257). This will be particularly useful for test runner extensions such as :pypi:pytest-trio, but is not recommended for direct use by other users of Hypothesis.
3.63.0:
This release adds a new mechanism to infer strategies for classes defined using :pypi:attrs, based on the the type, converter, or validator of each attribute. This inference is now built in to :func:~hypothesis.strategies.builds and :func:~hypothesis.strategies.from_type.
On Python 2, :func:~hypothesis.strategies.from_type no longer generates instances of int when passed long, or vice-versa.
3.62.0:
This release adds PEP 484 type hints to Hypothesis on a provisional basis, using the comment-based syntax for Python 2 compatibility. You can :ref:read more about our type hints here <our-type-hints>.
It also adds the py.typed marker specified in PEP 561. After you pip install hypothesis, :pypi:mypy 0.590 or later will therefore type-check your use of our public interface!
3.61.0:
This release deprecates the use of :class:~hypothesis.settings as a context manager, the use of which is somewhat ambiguous.
Users should define settings with global state or with the :func:@settings(...) <hypothesis.settings> decorator.
3.60.1:
Fixed a bug in generating an instance of a Django model from a strategy where the primary key is generated as part of the strategy. See :ref:details here <django-generating-primary-key>.
3.60.0:
This release add initialize decorator for stateful testing (originally discussed in :issue:1216). initialize act as a special rule that is only called once, and all initialize rules are guaranteed to be called before any normal rule is called.
5.2.0:
Fixed saving a multiframe image as a single frame PDF
If a Qt version is already imported, attempt to use it first
Fix transform fill color for alpha images
TGA: Add support for writing RLE data
TGA: Read and write LA data
QuantOctree.c: Remove erroneous attempt to average over an empty range
Changed ICNS format tests to pass on OS X 10.11
Fixed bug in ImageDraw.multiline_textsize()
Added getsize_multiline support for PIL.ImageFont
Added ImageFile get_format_mimetype method
Changed mmap file pointer to use context manager
Changed ellipse point calculations to be more evenly distributed
Only extract first Exif segment
Tests: Test ImageDraw2, WalImageFile
Remove unnecessary '#if 0' code
Tests: Added GD tests
Fix collections ABCs DeprecationWarning in Python 3.7
unpack_from is faster than unpack of slice
Docs: Add coordinate system links and file handling links in documentation
Tests: TestFilePng: Fix test_save_l_transparency()
Docs: Correct argument name
Docs: Update CMake download URL
Docs: Improve Image.transform documentation
Fix transform fillcolor argument when image mode is RGBA or LA
Tests: More specific Exception testing
Add getrgb HSB/HSV color strings
Allow float values in getrgb HSL color string
AppVeyor: Upgrade to Python 2.7.15 and 3.4.4
AppVeyor: Upgrade to PyPy 6.0.0
Deprecate PILLOW_VERSION and VERSION
Support Python 3.7
Depends: Update freetype to 2.9.1, libjpeg to 9c, libwebp to 1.0.0
Build macOS wheels with Xcode 6.4, supporting older macOS versions
Fix _i2f compilation on some GCC versions
Changed encoderinfo to have priority over info when saving GIF images
Rename PIL.version to PIL._version and remove it from module
Enable background colour parameter on rotate
Remove unnecessary #if 1 directive
Remove unused Python class, Path
Fix dereferencing type-punned pointer will break strict-aliasing
Django 2.0.7:
Bugfixes
Fixed admin changelist crash when using a query expression without asc() or desc() in the page’s ordering.
Fixed admin check crash when using a query expression in ModelAdmin.ordering.
Fixed __regex and __iregex lookups with MySQL 8.
Fixed migrations crash with namespace packages on Python 3.7
Django 1.11.14:
Bugfixes:
Fixed WKBWriter.write() and write_hex() for empty polygons on GEOS 3.6.1+.
Fixed a regression in Django 1.10 that could result in large memory usage when making edits using ModelAdmin.list_editable
The Culmus project aims at providing the Hebrew-speaking GNU/Linux
and Unix community with a basic collection of Hebrew fonts for X
Windows. Presently the collection contains fifteen font families
of different styles.
MAME 0.199
Today’s the day for our mid-year MAME release. MAME 0.199 includes
support for the incredibly elusive Spanish arcade title El Fin Del
Tiempo, and the rare Pac-Man hack Titan. Other rare bootlegs added
include Come-Cocos (derived from Ms. Pac-Man) and Gran Rally (a
Spanish bootleg of Pole Position II).
There are some pretty big improvements to Tatsumi games (Apache 3,
Cycle Warriors, Round Up 5), some NMK mahjong games work substantially
better (Urashima Mahjong, Mahjong Daireikai, Mahjong Channel Zoom
In), and Big Run looks better than ever. War: The Final Assault no
longer crashes thanks to a fix in Voodoo emulation.
Floppy drive emulation has been further improved, and a fairly
major issue with Apple IIgs and Mac 3.5" drives has been fixed.
Sound Blaster direct DAC mode is now supported. Improved Dreamcast
GD-ROM emulation allows Daytona USA 2001 to boot. The HP 9000/300
series can now boot from floppy, and the medium-resolution colour
graphics option is supported. Tiger Electronics fans can enjoy
Battle Arena Toshinden for R-Zone.
Of course we’ve also added more alternate versions of supported
systems, software list updates, bug fixes, and internal improvements.
You can read all the details in the whatsnew.txt file, or get source
and Windows binaries from the download page.
2018-06-22 Richard Russon <rich@flatcap.org>
* Features
- Expand variables inside backticks
- Honour SASL-IR IMAP capability in SASL PLAIN
* Bug Fixes
- Fix toggle-read
- Do not truncate shell commands on ; or #
- pager: index must be rebuilt on MUTT_REOPENED
- Handle a BAD response in AUTH PLAIN w/o initial response
- fcc_attach: Don't ask every time
- Enlarge path buffers PATH_MAX (4096)
- Move LSUB call from connection establishment to mailbox SELECTion
* Translations
- Update Chinese (Simplified): 100%
- Update Czech: 100%
- Update German: 100%
- Update Lithuanian: 100%
- Update Portuguese (Brazil): 100%
- Update Slovak: 59%
- Reduce duplication of messages
* Code
- Tidy up the mailbox API
- Tidy up the header cache API
- Tidy up the encryption API
- Add doxygen docs for more functions
- Refactor more structs to use STAILQ
Version 1.2.9
Fixed issue where chaining multiple join elements inside of Query.join() might not correctly adapt to the previous left-hand side, when chaining joined inheritance classes that share the same base class.
Fixed bug in cache key generation for baked queries which could cause a too-short cache key to be generated for the case of eager loads across subclasses. This could in turn cause the eagerload query to be cached in place of a non-eagerload query, or vice versa, for a polymorhic “selectin” load, or possibly for lazy loads or selectin loads as well.
Fixed bug in new polymorphic selectin loading where the BakedQuery used internally would be mutated by the given loader options, which would both inappropriately mutate the subclass query as well as carry over the effect to subsequent queries.
Fixed regression caused by 4256 (itself a regression fix for 4228) which breaks an undocumented behavior which converted for a non-sequence of entities passed directly to the Query constructor into a single-element sequence. While this behavior was never supported or documented, it’s already in use so has been added as a behavioral contract to Query.
Fixed an issue that was both a performance regression in 1.2 as well as an incorrect result regarding the “baked” lazy loader, involving the generation of cache keys from the original Query object’s loader options. If the loader options were built up in a “branched” style using common base elements for multiple options, the same options would be rendered into the cache key repeatedly, causing both a performance issue as well as generating the wrong cache key. This is fixed, along with a performance improvement when such “branched” options are applied via Query.options() to prevent the same option objects from being applied repeatedly.