Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.
This package provides C runtime for mingw-w64 x86_64 target.
Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.
This package provides mingw-w64 bootstrap GCC for x86_64 target.
Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.
This package provides headers for mingw-w64 x86_64 target.
Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.
This package provides mingw-w64 GNU binutils for x86_64 target.
Mingw-w64 is an advancement of the original mingw.org project,
created to support the GCC compiler on Windows systems. It has
forked it in 2007 in order to provide support for 64 bits and new
APIs. It has since then gained widespread use and distribution.
Changelog:
No new functionality is introduced in these releases.
The following compatibility fixes are included. Users are encouraged to upgrade.
* Bug 1462303 - Connecting to a server that was recently upgraded to
TLS 1.3 would result in a SSL_RX_MALFORMED_SERVER_HELLO error.
* Bug 1460673 - Fix a rare bug with PKCS#12 files.
Changelog:
* Mew now supports Emacs 24.3 or later only.
* Supporting stunnel 5.
* Supporting GnuPG 2.1.23 or later.
The command name should be "gpg" instead of "gpg2".
Put the following to your "~/.gnupg/gpg.conf".
no-auto-key-retrieve
auto-key-locate local
* Using LibreOffice (soffice) on Unix by default
Changelog:
Version 5.46, 2018.05.28, urgency: MEDIUM
* New features
- The default cipher list was updated to a safer value:
"HIGH:!aNULL:!SSLv2:!DH:!kDHEPSK".
* Bugfixes
- Default accept address restored to INADDR_ANY.
Version 5.45, 2018.05.21, urgency: MEDIUM
* New feature sponsored by https://loadbalancer.org/
- Implemented delayed deallocation of service sections
after configuration file reload.
* Other new features
- OpenSSL DLLs updated to version 1.0.2o.
- Deprecated the sslVersion option.
- The "socket" option is now also available in service sections.
- Implemented try-restart in the SysV init script (thx to
Peter Pentchev).
- TLS 1.3 compliant session handling for OpenSSL 1.1.1.
- Default "failover" value changed from "rr" to "prio".
- New "make check" tests.
* Bugfixes
- A service no longer refuses to start if binding fails for
some (but not all) addresses:ports.
- Fixed compression handling with OpenSSL 1.1.0 and later.
- _beginthread() replaced with safer _beginthreadex().
- Fixed exception handling in libwrap.
- Fixed exec+connect services.
- Fixed automatic resolver delaying.
- Fixed a Gentoo cross-compilation bug (thx to Joe Harvell).
- A number of "make check" framework fixes.
- Fixed false postive memory leak logs.
- Build fixes for OpenSSL versions down to 0.9.7.
- Fixed (again) round-robin failover in the FORK threading model.
Version 5.44, 2017.11.26, urgency: MEDIUM
* New features
- Signed Win32 executables, libraries, and installer.
* Bugfixes
- Default accept address restored to INADDR_ANY.
- Fixed a race condition in "make check".
- Fixed removing the pid file after configuration reload.
Version 5.43, 2017.11.05, urgency: LOW
* New features
- OpenSSL DLLs updated to version 1.0.2m.
- Android build updated to OpenSSL 1.1.0g.
- Allow for multiple "accept" ports per section.
- Self-test framework (make check).
- Added config load before OpenSSL init (thx to Dmitrii Pichulin).
- OpenSSL 1.1.0 support for Travis CI.
- OpenSSL 1.1.1-dev compilation fixes.
* Bugfixes
- Fixed a memory fault on Solaris.
- Fixed round-robin failover in the FORK threading model.
- Fixed handling SSL_ERROR_ZERO_RETURN in SSL_shutdown().
- Minor fixes of the logging subsystem.
SQLite Release 3.24.0:
Add support for PostgreSQL-style UPSERT.
Add support for auxiliary columns in r-tree tables.
Add C-language APIs for discovering SQL keywords used by SQLite: sqlite3_keyword_count(), sqlite3_keyword_name(), and sqlite3_keyword_check().
Add C-language APIs for dynamic strings based on the sqlite3_str object.
Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT.
Add the sorter-reference optimization as a compile-time option. Only available if compiled with SQLITE_ENABLE_SORTER_REFERENCES.
Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan.
Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API.
CLI Enhancements:
Automatically intercepts the raw EXPLAIN QUERY PLAN output and reformats it into an ASCII-art graph.
Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments.
Added the --append option to the ".backup" command.
Added the ".dbconfig" command.
Performance:
UPDATE avoids unnecessary low-level disk writes when the contents of the database file do not actually change. For example, "UPDATE t1 SET x=25 WHERE y=?" generates no extra disk I/O if the value in column x is already 25. Similarly, when doing UPDATE on records that span multiple pages, only the subset of pages that actually change are written to disk. This is a low-level performance optimization only and does not affect the behavior of TRIGGERs or other higher level SQL structures.
Queries that use ORDER BY and LIMIT now try to avoid computing rows that cannot possibly come in under the LIMIT. This can greatly improve performance of ORDER BY LIMIT queries, especially when the LIMIT is small relative to the number of unrestricted output rows.
The OR optimization is allowed to proceed even if the OR expression has also been converted into an IN expression. Uses of the OR optimization are now also more clearly shown in the EXPLAIN QUERY PLAN output.
The query planner is more aggressive about using automatic indexes for views and subqueries for which it is not possible to create a persistent index.
Make use of the one-pass UPDATE and DELETE query plans in the R-Tree extension where appropriate.
Performance improvements in the LEMON-generated parser.
Bug fixes:
For the right-hand table of a LEFT JOIN, compute the values of expressions directly rather than loading precomputed values out of an expression index as the expression index might not contain the correct value.
Do not attempt to use terms from the WHERE clause to enable indexed lookup of the right-hand table of a LEFT JOIN.
Fix a memory leak that can occur following a failure to open error in the CSV virtual table
Fix a long-standing problem wherein a corrupt schema on the sqlite_sequence table used by AUTOINCREMENT can lead to a crash.
Fix the json_each() function so that it returns valid results on its "fullkey" column when the input is a simple value rather than an array or object.
Pylint 1.9.2:
* Fix `KeyError` raised when using docparams and NotImplementedError is documented.
* Don't include excepthandlers that don't have a name when looking for exception-escape
* Rewrite the comprehension-escape and exception-escape to work only on the corresponding nodes
These two checks were implemented in terms of visit_namne, that is, for every name in the tree,
we looked to see if that name leaked. This was resulting in a couple of false positives
and also in a performance issue, since we were calling nodes_of_class() and scope() for each
name node. Instead, this approach uses the visit methods for exception and comprehension nodes
and looks to see from there if the current scope uses leaked names.
This is not the ideal situation as well, ideal would be to have access to the definition
frame of each name, but that requires some extra engineering effort in astroid to get it right.
* builtins is allowed to redefine builtins.
1.6.5
* Don't propagate Uninferable objects when inferring BinOps
* Protect against passing lookup_class to non-class proxied objects
In some cases the _proxied object points to another Instance, not to the
Class of an Instance node (usually this happens with enum and with our
hardcoded inference support for this library). Instead of getting a TypeError,
we check before if the _proxied matches what we expect.
U-Boot is a bootloader for embedded boards based on PowerPC, ARM, MIPS and
several other processors, which can be installed in a boot ROM and used to
initialize and test the hardware or to download and run application code.
This package provides U-Boot for the SOPINE A64 with SOPINE Baseboard
"Model A".
Version 3.2
2018-03-31
* New models, IC-7850/IC-7851 in IC-785x. Mike, W9MDB
* Fix ft991_get_mode, Mike, W9MDB
* New model, FT-891. Mike, W9MDB
* New Barrett 2050 backend, Mike, W9MDB
* New Flrig backend, Mike, W9MDB
* New model, IC-M710, Mike, W9MDB
* Build instructions and test script for Python3
* Rename autogen.sh to bootsrap and don't call configure
* micro-ham support. Christoph, DL1YCF
* New rotator, SPID MD-01/02 in ROT2 mode, Norvald Ryeng, LA6YKA
* New model, Flex 6400/6600, Mike, W9MDB
* New model, IC-7610, Mike, W9MDB
* Add support for CM108B PTT, Max Lock
* New model, Rohde & Schwarz XK2100, Mike, W9MDB
* Many other bug fixes and enhancements
Ideally, this should happen in the main Makefiles and not in
an included file like this one, but the change for that is too big
for me for now and this fixes u-boot-pine64.
Pytest 3.6.1:
Bug Fixes
* Fixed a bug where stdout and stderr were logged twice by junitxml when a test was marked xfail.
* Fix usefixtures mark applyed to unittest tests by correctly instantiating FixtureInfo.
* Fix assertion rewriter compatibility with libraries that monkey patch file objects.
Improved Documentation
* Added a section on how to use fixtures as factories to the fixture documentation.
Trivial/Internal Changes
* Enable caching for pip/pre-commit in order to reduce build time on travis/appveyor.
* Switch pytest to the src/ layout as we already suggested it for good practice - now we implement it as well.
* Fix if in tests to support 3.7.0b5, where a docstring handling in AST got reverted.
* Remove some python2.5 compatibility code.
3.57.0:
Using an unordered collection with the :func:~hypothesis.strategies.permutations strategy has been deprecated because the order in which e.g. a set shrinks is arbitrary. This may cause different results between runs.
3.56.10:
This release makes :obj:~hypothesis.settings.define_setting a private method, which has the effect of hiding it from the documentation.
3.56.9:
This is another release with no functionality changes as part of changes to Hypothesis's new release tagging scheme.
3.56.8:
This is a release with no functionality changes that moves Hypothesis over to a new release tagging scheme.
3.56.7:
This release provides a performance improvement for most tests, but in particular users of sampled_from who don't have numpy installed should see a significant performance improvement.
3.56.6:
This patch contains further internal work to support Mypy. There are no user-visible changes... yet.
Version 3.15 01-May-2018
------------------------
1. The "logo" line "NE version xxxx" was showing the PCRE version which was
current when NE was compiled (static) instead of getting the current (dynamic)
version from a shared library. This is now fixed and the line reformatted.
2. Minor error in command line decoding; for switch items such as -id it was
checking the text pointer (which might be partly unset) instead of the number
field.
3. There is now a maximum linelength that NE will handle when reading a file in
non-binary mode. The limit is 100,000 bytes. This prevents it going into a
meltdown memory thrashing state for a file that contains an excessively long
line.
Version 3.14 26-February-2018
-----------------------------
1. Two calls to error_moan() for failing to open a file were missing a second
argument (specifying reading or writing), leading to a crash for an unknown
file.
2. Added strerror() calls to all failed-do-open file errors.
3. Added some "fall through" comments when deliberately falling through.
4. Increased an internal buffer size to avoid format-overflow warning in "show
wordcount" command.
5. Implemented -notraps to disable catching crash signals. This makes crashes
easier to debug.
* Add support for Adobe Illustrator documents (#311990, Bastien
Nocera)
* The comics backend now uses libarchive and unarr instead of
spawning commands (#720742, Bastien Nocera)
* Add flag EV_DOCUMENT_LOAD_FLAG_NO_CACHE to not setup the
document cache during the load. It will be setup later only if
needed (#780210, Bastien Nocera, Carlos Garcia Campos)
* Speed up thumbnailing by using EV_DOCUMENT_LOAD_FLAG_NO_CACHE
flag (#780210, Bastien Nocera)
* Improve performance of the links sidebar (#779614, Benjamin
Berg)
* Select the active file when open containing folder (#741377,
Germán Poo-Caamaño)
* Improve performance of scrolling in thumbnails sidebar (#691448,
Nelson Benítez León)
* Don't copy remote files before thumbnailing (#780351, Bastien
Nocera)
* Fix toggling layers that are not in the current visible range of
pages (#780139, Georges Dupéron)
#342110, Nelson Benítez León)
+ many bugfixes and translation updates
Upstream changes:
**** 1.09 Jun 4, 2018
Avoid use of EC_GROUP_new, EC_GROUP_set_curve_GFp, and
EC_GFp_mont_method which are expected to disappear.
Fix filename conflict when tests run in parallel using make -j
**** 1.08 May 11, 2018
Internal reorganisation to use OpenSSL EVP interface