Add test target.
New in 3.1:
* The generated C code is now in ANSI-C by default. If you want to support
pre-ANSI-C compilers, you need to provide the option --language=C on the
command line or %language=C in the source file.
* The 'len' parameter of the hash function and of the lookup function is now
of type 'size_t' instead of 'unsigned int'. This makes it safe to call these
functions with strings of length > 4 GB, on 64-bit machines.
* Added option --constants-prefix.
* Added declaration %define constants-prefix.
- Fixed a corner case where depending on the order of events when installing
multiple packages (i.e. when installing packages with dependencies, some
of which might also use d2to1) we would end up calling the incorrect
Distribution class (the patched version from setuptools, where d2to1
needs to get to the unpatched version from distutils for some cases).
- Upgraded bundled copy of the ``six`` module to the current version
(1.9.0). This fixes incompatibility between d2to1 and other packages
that import different versions of ``six`` during their setup (the older
version of ``six`` had a habit of fighting with other ``six`` instances
over ``sys.modules``, which is fixed in newer versions).
- Upgraded to latest ``ez_setup.py`` so that the most up to date version
of setuptools will be correctly bootstrapped in the rare cases that it
is needed.
- Included some miscellaneous hacks to keep d2to1 working, nominally, with
Python 2.5 despite the broad move away from Python 2.5 support in the
Python community. The d2to1 v0.2.x releases will be the last to continue
Python 2.5 support, given that testing it has become more difficult (and
the overhead is probably no longer worth it).
For full changes, please refer CHANGESLOG.md file.
* libgit2 v0.24.6 and libgit2 v0.25.1, January 9th, 2017
Includes two fixes, one performs extra sanitization for some edge cases in
the Git Smart Protocol which can lead to attempting to parse outside of the
buffer.
The second fix affects the certificate check callback. It provides a valid
parameter to indicate whether the native cryptographic library considered
the certificate to be correct. This parameter is always 1/true before these
releases leading to a possible MITM.
This does not affect you if you do not use the custom certificate callback
or if you do not take this value into account. This does affect you if you
use pygit2 or git2go regardless of whether you specify a certificate check
callback.
taca@ was right. UPDATE_GEMSPEC is better than the patch, and can be used
now since it was moved from gem.mk to rubyversion.mk. With this new version, rdoc is added, because the application breaks without it. Also, selenium-webdriver was downgraded to 2.53.4. Duplicate entries removed from PLIST. Changes are:
Defect #13622: "Clear" button in Spent Time Report tab also clears global filters
Defect #14658: Wrong activity timezone on user page
Defect #14817: Redmine loses filters after deleting a spent time
Defect #22034: Locked users disappear from project settings
Defect #23922: Time Entries context menu/bulk edit shows activities not available for the time entry's project
Defect #24000: z-index children menu should be greater than content
Defect #24092: bundler error: selenium-webdriver requires Ruby version >= 2.0.
Defect #24156: Redmine might create many AnonymousUser and AnonymousGroup entries
Defect #24274: Query totals and query buttons overlaps on small screens
Defect #24297: Show action not allowed for time entries in closed projects
Defect #24311: Project field disappears when target project disallows user to edit the project
Defect #24348: acts_as_versioned use old style (Rails 2.x) of method call for #all
Defect #24595: Unarchive link for a subproject of a closed project does not work
Defect #24646: X-Sendfile is missing in response headers
Defect #24693: Spent time on subtasks should also be reassigned when deleting an issue
Defect #24718: Prevent from reassigning spent time to an issue that is going to be deleted
Defect #24722: Error when trying to reassign spent time when deleting issues from different projects
Patch #24003: Catalan Translation
Patch #24004: Spanish & Spanish (PA) Translation
Patch #24062: Allow only vertical reorderingin sortable lists
Patch #24283: Validate length of string fields
Patch #24296: Add tablename to siblings query to prevent AmbiguousColumn errors
This is a simple wrapper over the kqueue (supported on FreeBSD, NetBSD,
OpenBSD, and Darwin). It uses the FFI gem to avoid having to compile a C
extension.
API documentation is available on rdoc.info:
http://rdoc.info/projects/mat813/rb-kqueue.
Fix the REPLACE statement for WITHOUT ROWID tables that lack secondary indexes so that it works correctly with triggers and foreign keys. This was a new bug caused by performance optimizations added in version 3.16.0. Ticket 30027b613b4
Fix the sqlite3_value_text() interface so that it correctly translates content generated by zeroblob() into a string of all 0x00 characters. This is a long-standing issue discovered after the 3.16.1 release by OSS-Fuzz
Fix the bytecode generator to deal with a subquery in the FROM clause that is itself a UNION ALL where one side of the UNION ALL is a view that contains an ORDER BY. This is a long-standing issue that was discovered after the release of 3.16.1. See ticket 190c2507.
Adjust the sqlite3_column_count() API so it more often returns the same values for PRAGMA statements as it did in prior releases, to minimize disruption to applications that might be using that interface in unexpected ways.
The LLVMContext gains a new runtime check (see LLVMContext::discardValueNames()) that can be set to discard Value names (other than GlobalValue). This is intended to be used in release builds by clients that are interested in saving CPU/memory as much as possible.
There is no longer a “global context” available in LLVM, except for the C API.
The autoconf build system has been removed in favor of CMake. LLVM 3.9 requires CMake 3.4.3 or later to build. For information about using CMake please see the documentation on Building LLVM with CMake. For information about the CMake language there is also a CMake Primer document available.
C API functions LLVMParseBitcode, LLVMParseBitcodeInContext, LLVMGetBitcodeModuleInContext and LLVMGetBitcodeModule having been removed. LLVMGetTargetMachineData has been removed (use LLVMGetDataLayout instead).
The C API function LLVMLinkModules has been removed.
The C API function LLVMAddTargetData has been removed.
The C API function LLVMGetDataLayout is deprecated in favor of LLVMGetDataLayoutStr.
The C API enum LLVMAttribute and associated API is deprecated in favor of the new LLVMAttributeRef API. The deprecated functions are LLVMAddFunctionAttr, LLVMAddTargetDependentFunctionAttr, LLVMRemoveFunctionAttr, LLVMGetFunctionAttr, LLVMAddAttribute, LLVMRemoveAttribute, LLVMGetAttribute, LLVMAddInstrAttribute, LLVMRemoveInstrAttribute and LLVMSetInstrParamAlignment.
TargetFrameLowering::eliminateCallFramePseudoInstr now returns an iterator to the next instruction instead of void. Targets that previously did MBB.erase(I); return; now probably want return MBB.erase(I);.
SelectionDAGISel::Select now returns void. Out-of-tree targets will need to be updated to replace the argument node and remove any dead nodes in cases where they currently return an SDNode * from this interface.
Added the MemorySSA analysis, which hopes to replace MemoryDependenceAnalysis. It should provide higher-quality results than MemDep, and be algorithmically faster than MemDep. Currently, GVNHoist (which is off by default) makes use of MemorySSA.
The minimum density for lowering switches with jump tables has been reduced from 40% to 10% for functions which are not marked optsize (that is, compiled with -Os).
Continuous Testing is a concept and tool to re-run software tests as
soon as the developer saves the source code.
"Test::Continuous" is a tool based on App::Prove that implements this
concept for Perl.
See <http://groups.csail.mit.edu/pag/continuoustesting/> for the
original implementation of Continuous Testing as an Eclipse plugin. See
also Zentest <http://www.zenspider.com/ZSS/Products/ZenTest/> for the
same concept implemented in Ruby's world.
------------------------------
* Noteworthy changes in release 3.5 (2016-08-20) [stable]
** Bug fixes
diff3 no longer malfunctions due to use-after-free
[bug introduced in 3.4]
diff --color no longer colorizes when TERM=dumb
* A fix for the aarch64/ppc64 linker issue that has been plaguing us
for a while (https://github.com/buytenh/ivykis/issues/6). I don't
have access to a ppc box, but I reproduced the problem in an aarch64
(qemu-system-aarch64) virtual machine and fixed it there.
* libivykis.so now no longer pulls in libpthread.so, and linking
against libpthread.so is now fully optional. If libpthread isn't
linked in, ivykis can perform various optimizations, such as
skipping pthread mutex calls, and iv_event can skip creating an
eventfd when running in single-threaded mode.
* iv_signal now lets you register a thread-specific signal interest,
indicated by the IV_SIGNAL_FLAG_THIS_THREAD flag, for which the
handler will be called when that signal is delivered to the thread
the interest was registered in (and will not trigger if the signal
is delivered to another thread in the process).
WINDOW structure.
Include <term.h> when needed and rename lines and columns vars to avoid
conflicts.
Builds and works with NetBSD-8 curses, so use mk/curses.buildlink3.mk
and test for getsyx(3) in curses rather than indescriminately linking
to ncurses.
Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.)
Added experimental support for PRAGMA functions.
Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config().
Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates.
Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each.
Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator.
Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process.
Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards.
Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode.
Added ".mode quote" to the command-line shell.
Added ".lint fkey-indexes" to the command-line shell.
Added the .imposter dot-command to the command-line shell.
Added the remember(V,PTR) SQL function as a loadable extension.
Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to SQLITE_UNTESTABLE to better reflect the implications of using it.
Bug Fixes:
Fix a long-standing bug in the query planner that caused incorrect results on a LEFT JOIN where the left-hand table is a subquery and the join constraint is a bare column name coming from the left-hand subquery. Ticket 2df0107b.
Correctly handle the integer literal -0x8000000000000000 in the query planner.
Upstream changes:
1.23 2016-11-16
- add %Preload rules for List::SomeUtils and Pod::Simple::Transcode
- get rid of Module::Install, use ExtUtils::MakeMaker