Test::Modern provides the best features of Test::More, Test::Fatal,
Test::Warnings, Test::API, Test::LongString, and Test::Deep, as well as
ideas from Test::Requires, Test::DescribeMe, Test::Moose, and
Test::CleanNamespaces.
Test::Modern also automatically imposes strict and warnings on your script,
and loads IO::File. (Much of the same stuff Modern::Perl does.)
Although Test::Modern is a modern testing framework, it should run fine on
pre-modern versions of Perl. It should be easy to install on Perl 5.8.9 and
above; and if you can persuade its dependencies to install (not necessarily
easy!), should be OK on anything back to Perl 5.6.1.
This simple test module checks the subroutines provided by a module. This is
useful for confirming a planned API in testing and ensuring that other
functions aren't unintentionally included via import.
Changelog:
Git v2.6.1 Release Notes
========================
Fixes since v2.6
----------------
* xdiff code we use to generate diffs is not prepared to handle
extremely large files. It uses "int" in many places, which can
overflow if we have a very large number of lines or even bytes in
our input files, for example. Cap the input size to soemwhere
around 1GB for now.
* Some protocols (like git-remote-ext) can execute arbitrary code
found in the URL. The URLs that submodules use may come from
arbitrary sources (e.g., .gitmodules files in a remote
repository), and can hurt those who blindly enable recursive
fetch. Restrict the allowed protocols to well known and safe
ones.
Git 2.6 Release Notes
=====================
Updates since v2.5
------------------
UI, Workflows & Features
* An asterisk as a substring (as opposed to the entirety) of a path
component for both side of a refspec, e.g.
"refs/heads/o*:refs/remotes/heads/i*", is now allowed.
* New userdiff pattern definition for fountain screenwriting markup
format has been added.
* "git log" and friends learned a new "--date=format:..." option to
format timestamps using system's strftime(3).
* "git fast-import" learned to respond to the get-mark command via
its cat-blob-fd interface.
* "git rebase -i" learned "drop commit-object-name subject" command
as another way to skip replaying of a commit.
* A new configuration variable can enable "--follow" automatically
when "git log" is run with one pathspec argument.
* "git status" learned to show a more detailed information regarding
the "rebase -i" session in progress.
* "git cat-file" learned "--batch-all-objects" option to enumerate all
available objects in the repository more quickly than "rev-list
--all --objects" (the output includes unreachable objects, though).
* "git fsck" learned to ignore errors on a set of known-to-be-bad
objects, and also allows the warning levels of various kinds of
non-critical breakages to be tweaked.
* "git rebase -i"'s list of todo is made configurable.
* "git send-email" now performs alias-expansion on names that are
given via --cccmd, etc.
* An environment variable GIT_REPLACE_REF_BASE tells Git to look into
refs hierarchy other than refs/replace/ for the object replacement
data.
* Allow untracked cache (experimental) to be used when sparse
checkout (experimental) is also in use.
* "git pull --rebase" has been taught to pay attention to
rebase.autostash configuration.
* The command-line completion script (in contrib/) has been updated.
* A negative !ref entry in multi-value transfer.hideRefs
configuration can be used to say "don't hide this one".
* After "git am" without "-3" stops, running "git am -3" pays attention
to "-3" only for the patch that caused the original invocation
to stop.
* When linked worktree is used, simultaneous "notes merge" instances
for the same ref in refs/notes/* are prevented from stomping on
each other.
* "git send-email" learned a new option --smtp-auth to limit the SMTP
AUTH mechanisms to be used to a subset of what the system library
supports.
* A new configuration variable http.sslVersion can be used to specify
what specific version of SSL/TLS to use to make a connection.
* "git notes merge" can be told with "--strategy=<how>" option how to
automatically handle conflicts; this can now be configured by
setting notes.mergeStrategy configuration variable.
* "git log --cc" did not show any patch, even though most of the time
the user meant "git log --cc -p -m" to see patch output for commits
with a single parent, and combined diff for merge commits. The
command is taught to DWIM "--cc" (without "--raw" and other forms
of output specification) to "--cc -p -m".
* "git config --list" output was hard to parse when values consist of
multiple lines. "--name-only" option is added to help this.
* A handful of usability & cosmetic fixes to gitk and l10n updates.
* A completely empty e-mail address <> is now allowed in the authors
file used by git-svn, to match the way it accepts the output from
authors-prog.
Performance, Internal Implementation, Development Support etc.
* In preparation for allowing different "backends" to store the refs
in a way different from the traditional "one ref per file in
$GIT_DIR or in a $GIT_DIR/packed-refs file" filesystem storage,
direct filesystem access to ref-like things like CHERRY_PICK_HEAD
from scripts and programs has been reduced.
* Computation of untracked status indicator by bash prompt
script (in contrib/) has been optimized.
* Memory use reduction when commit-slab facility is used to annotate
sparsely (which is not recommended in the first place).
* Clean up refs API and make "git clone" less intimate with the
implementation detail.
* "git pull" was reimplemented in C.
* The packet tracing machinery allows to capture an incoming pack
data to a file for debugging.
* Move machinery to parse human-readable scaled numbers like 1k, 4M,
and 2G as an option parameter's value from pack-objects to
parse-options API, to make it available to other codepaths.
* "git verify-tag" and "git verify-commit" have been taught to share
more code, and then learned to optionally show the verification
message from the underlying GPG implementation.
* Various enhancements around "git am" reading patches generated by
foreign SCM have been made.
* Ref listing by "git branch -l" and "git tag -l" commands has
started to be rebuilt, based on the for-each-ref machinery.
* The code to perform multi-tree merges has been taught to repopulate
the cache-tree upon a successful merge into the index, so that
subsequent "diff-index --cached" (hence "status") and "write-tree"
(hence "commit") will go faster.
The same logic in "git checkout" may now be removed, but that is a
separate issue.
* Tests that assume how reflogs are represented on the filesystem too
much have been corrected.
* "git am" has been rewritten in "C".
* git_path() and mkpath() are handy helper functions but it is easy
to misuse, as the callers need to be careful to keep the number of
active results below 4. Their uses have been reduced.
* The "lockfile" API has been rebuilt on top of a new "tempfile" API.
* To prepare for allowing a different "ref" backend to be plugged in
to the system, update_ref()/delete_ref() have been taught about
ref-like things like MERGE_HEAD that are per-worktree (they will
always be written to the filesystem inside $GIT_DIR).
* The gitmodules API that is accessed from the C code learned to
cache stuff lazily.
Also contains various documentation updates and code clean-ups.
Fixes since v2.5
----------------
Unless otherwise noted, all the fixes since v2.5 in the maintenance
track are contained in this release (see the maintenance releases'
notes for details).
* "git subtree" (in contrib/) depended on "git log" output to be
stable, which was a no-no. Apply a workaround to force a
particular date format.
(merge e7aac44 da/subtree-date-confusion later to maint).
* An attempt to delete a ref by pushing into a repository whose HEAD
symbolic reference points at an unborn branch that cannot be
created due to ref D/F conflict (e.g. refs/heads/a/b exists, HEAD
points at refs/heads/a) failed.
(merge b112b14 jx/do-not-crash-receive-pack-wo-head later to maint).
* The low-level "git send-pack" did not honor 'user.signingkey'
configuration variable when sending a signed-push.
(merge d830d39 db/send-pack-user-signingkey later to maint).
* "sparse checkout" misbehaved for a path that is excluded from the
checkout when switching between branches that differ at the path.
(merge 7d78241 as/sparse-checkout-removal later to maint).
* An experimental "untracked cache" feature used uname(2) in a
slightly unportable way.
(merge 100e433 cb/uname-in-untracked later to maint).
* A "rebase" replays changes of the local branch on top of something
else, as such they are placed in stage #3 and referred to as
"theirs", while the changes in the new base, typically a foreign
work, are placed in stage #2 and referred to as "ours". Clarify
the "checkout --ours/--theirs".
(merge f303016 se/doc-checkout-ours-theirs later to maint).
* The "rev-parse --parseopt" mode parsed the option specification
and the argument hint in a strange way to allow '=' and other
special characters in the option name while forbidding them from
the argument hint. This made it impossible to define an option
like "--pair <key>=<value>" with "pair=key=value" specification,
which instead would have defined a "--pair=key <value>" option.
(merge 2d893df ib/scripted-parse-opt-better-hint-string later to maint).
* Often a fast-import stream builds a new commit on top of the
previous commit it built, and it often unconditionally emits a
"from" command to specify the first parent, which can be omitted in
such a case. This caused fast-import to forget the tree of the
previous commit and then re-read it from scratch, which was
inefficient. Optimize for this common case.
(merge 0df3245 mh/fast-import-optimize-current-from later to maint).
* Running an aliased command from a subdirectory when the .git thing
in the working tree is a gitfile pointing elsewhere did not work.
(merge d95138e nd/export-worktree later to maint).
* "Is this subdirectory a separate repository that should not be
touched?" check "git clean" was inefficient. This was replaced
with a more optimized check.
(merge fbf2fec ee/clean-remove-dirs later to maint).
* The "new-worktree-mode" hack in "checkout" that was added in
nd/multiple-work-trees topic has been removed by updating the
implementation of new "worktree add".
(merge 65f9b75 es/worktree-add-cleanup later to maint).
* Remove remaining cruft from "git checkout --to", which
transitioned to "git worktree add".
(merge 114ff88 es/worktree-add later to maint).
* An off-by-one error made "git remote" to mishandle a remote with a
single letter nickname.
(merge bc598c3 mh/get-remote-group-fix later to maint).
* "git clone $URL", when cloning from a site whose sole purpose is to
host a single repository (hence, no path after <scheme>://<site>/),
tried to use the site name as the new repository name, but did not
remove username or password when <site> part was of the form
<user>@<pass>:<host>. The code is taught to redact these.
(merge adef956 ps/guess-repo-name-at-root later to maint).
* Running tests with the "-x" option to make them verbose had some
unpleasant interactions with other features of the test suite.
(merge 9b5fe78 jk/test-with-x later to maint).
* t1509 test that requires a dedicated VM environment had some
bitrot, which has been corrected.
(merge faacc5a ps/t1509-chroot-test-fixup later to maint).
* "git pull" in recent releases of Git has a regression in the code
that allows custom path to the --upload-pack=<program>. This has
been corrected.
Note that this is irrelevant for 'master' with "git pull" rewritten
in C.
(merge 13e0e28 mm/pull-upload-pack later to maint).
* When trying to see that an object does not exist, a state errno
leaked from our "first try to open a packfile with O_NOATIME and
then if it fails retry without it" logic on a system that refuses
O_NOATIME. This confused us and caused us to die, saying that the
packfile is unreadable, when we should have just reported that the
object does not exist in that packfile to the caller.
(merge dff6f28 cb/open-noatime-clear-errno later to maint).
* The codepath to produce error messages had a hard-coded limit to
the size of the message, primarily to avoid memory allocation while
calling die().
(merge f4c3edc jk/long-error-messages later to maint).
* strbuf_read() used to have one extra iteration (and an unnecessary
strbuf_grow() of 8kB), which was eliminated.
(merge 3ebbd00 jh/strbuf-read-use-read-in-full later to maint).
* We rewrote one of the build scripts in Perl but this reimplements
in Bourne shell.
(merge 57cee8a sg/help-group later to maint).
* The experimental untracked-cache feature were buggy when paths with
a few levels of subdirectories are involved.
(merge 73f9145 dt/untracked-subdir later to maint).
* "interpret-trailers" helper mistook a single-liner log message that
has a colon as the end of existing trailer.
* The "interpret-trailers" helper mistook a multi-paragraph title of
a commit log message with a colon in it as the end of the trailer
block.
(merge 5c99995 cc/trailers-corner-case-fix later to maint).
* "git describe" without argument defaulted to describe the HEAD
commit, but "git describe --contains" didn't. Arguably, in a
repository used for active development, such defaulting would not
be very useful as the tip of branch is typically not tagged, but it
is better to be consistent.
(merge 2bd0706 sg/describe-contains later to maint).
* The client side codepaths in "git push" have been cleaned up
and the user can request to perform an optional "signed push",
i.e. sign only when the other end accepts signed push.
(merge 68c757f db/push-sign-if-asked later to maint).
* Because the configuration system does not allow "alias.0foo" and
"pager.0foo" as the configuration key, the user cannot use '0foo'
as a custom command name anyway, but "git 0foo" tried to look these
keys up and emitted useless warnings before saying '0foo is not a
git command'. These warning messages have been squelched.
(merge 9e9de18 jk/fix-alias-pager-config-key-warnings later to maint).
* "git rev-list" does not take "--notes" option, but did not complain
when one is given.
(merge 2aea7a5 jk/rev-list-has-no-notes later to maint).
* When re-priming the cache-tree opportunistically while committing
the in-core index as-is, we mistakenly invalidated the in-core
index too aggressively, causing the experimental split-index code
to unnecessarily rewrite the on-disk index file(s).
(merge 475a344 dt/commit-preserve-base-index-upon-opportunistic-cache-tree-update later to maint).
* "git archive" did not use zip64 extension when creating an archive
with more than 64k entries, which nobody should need, right ;-)?
(merge 88329ca rs/archive-zip-many later to maint).
* The code in "multiple-worktree" support that attempted to recover
from an inconsistent state updated an incorrect file.
(merge 82fde87 nd/fixup-linked-gitdir later to maint).
* On case insensitive systems, "git p4" did not work well with client
specs.
* "git init empty && git -C empty log" said "bad default revision 'HEAD'",
which was found to be a bit confusing to new users.
(merge ce11360 jk/log-missing-default-HEAD later to maint).
* Recent versions of scripted "git am" has a performance regression in
"git am --skip" codepath, which no longer exists in the built-in
version on the 'master' front. Fix the regression in the last
scripted version that appear in 2.5.x maintenance track and older.
(merge b9d6689 js/maint-am-skip-performance-regression later to maint).
* The branch descriptions that are set with "git branch --edit-description"
option were used in many places but they weren't clearly documented.
(merge 561d2b7 po/doc-branch-desc later to maint).
* Code cleanups and documentation updates.
(merge 1c601af es/doc-clean-outdated-tools later to maint).
(merge 3581304 kn/tag-doc-fix later to maint).
(merge 3a59e59 kb/i18n-doc later to maint).
(merge 45abdee sb/remove-unused-var-from-builtin-add later to maint).
(merge 14691e3 sb/parse-options-codeformat later to maint).
(merge 4a6ada3 ad/bisect-cleanup later to maint).
(merge da4c5ad ta/docfix-index-format-tech later to maint).
(merge ae25fd3 sb/check-return-from-read-ref later to maint).
(merge b3325df nd/dwim-wildcards-as-pathspecs later to maint).
(merge 7aa9b9b sg/wt-status-header-inclusion later to maint).
(merge f04c690 as/docfix-reflog-expire-unreachable later to maint).
(merge 1269847 sg/t3020-typofix later to maint).
(merge 8b54c23 jc/calloc-pathspec later to maint).
(merge a6926b8 po/po-readme later to maint).
(merge 54d160e ss/fix-config-fd-leak later to maint).
(merge b80fa84 ah/submodule-typofix-in-error later to maint).
(merge 99885bc ah/reflog-typofix-in-error later to maint).
(merge 9476c2c ah/read-tree-usage-string later to maint).
(merge b8c1d27 ah/pack-objects-usage-strings later to maint).
(merge 486e1e1 br/svn-doc-include-paths-config later to maint).
(merge 1733ed3 ee/clean-test-fixes later to maint).
(merge 5fcadc3 gb/apply-comment-typofix later to maint).
(merge b894d3e mp/t7060-diff-index-test later to maint).
(merge d238710 as/config-doc-markup-fix later to maint).
add/find/remove of C structures. Any structure having a unique,
arbitrarily-typed key member can be hashed by adding a UT_hash_handle
member to the structure and calling these macros.
This release brings:
- internal code refactoring
- partial unification of the Makefiles generated
- support for installing pkg-config files and documentation from
sub-directories
- fix for a crash on Linux
- further portability fixes
Simplify Github distfile handling.
Backport a futimes fix from upstream master, fixes build on SunOS.
Changes since 0.23.2:
- blame: guard xdiff calls for large files
- diff: don't feed large files to xdiff
- merge_file: treat large files as binary
- xdiff: convert size variables to size_t
- GITERR_CHECK_ALLOC_ADDn: multi-arg adders
* 2015-08-13 Release 1.6.0
- Add complete method for readline completion
* 2015-06-21 Release 1.5.4
- Avoid %i syntax for now
* 2015-06-17 Release 1.5.3
- Make it run on 1.9 again.
- Avoid a warning in Time.dummy implementation.
## 2.1.2: 2015-09-15
### Improvements
* Improved GNU gettext compatibility: Ignored `LANGUAGE` environment
variable when either `LC_ALL`, `LC_MESSAGES` or `LANG` is C.
[GitHub#6] [Reported by Hleb Valoshka]
### Thanks
* Hleb Valoshka
=== kgio 2.10.0 - slimming down... / 2015-09-06 08:12 UTC
The largely-unused autopush functionality is now a no-op.
Existing applications will probably not notice, and are
better off using MSG_MORE anyways if they're on Linux.
Our poll(2) wrapper now uses rb_hash_clear if available,
reducing global method cache dependence.
shortlog of changes since 2.9.3:
README: remove reference to Rainbows!
writev: update comment on preserving errno
poll: avoid rb_funcall for rb_hash_clear
minor doc updates
remove autopush support and make it a no-op
HACKING: update URL for Message-ID lookup
### 1.7.7 / 2015-09-22
* Make HighLine::Question coerce its question argument into a String. (@97-109-107 and Abinoam P. Marques Jr. (@abinoam), #159, PR #160)
### 1.7.6 / 2015-09-17
* Fix a typo in a var name affecting solaris. (Danek Duvall (@dhduvall) and Abinoam P. Marques Jr. (@abinoam), #155, PR #156)
### 1.7.5 / 2015-09-14
* Support jruby9k for system extensions (Michael (@mmmries), PR #153)
### 1.7.4 / 2015-06-16
* Workaround on #55 for stty
## 3.1.7: 2015-09-22 {#version-3-1-7}
### Improvements
* Supported 3 character language names.
[GitHub#39][Patch by Vilius Paulauskas]
* Suppressed duplicated range in regular expression warning.
[GitHub#40][Patch by Vilius Paulauskas]
* Replaced invalid character instead of raising an error on encoding
conversion.
[GitHub#41][Patch by Vilius Paulauskas]
### Fixes
* Fixed a bug that undefined method is used.
[GitHub#38][Patch by Hiroshi Hatake]
### Thanks
* Hiroshi Hatake
* Vilius Paulauskas
pkgsrc change: update HOMEPAGE.
Version 2.0.1
* A few bug fixes.
Version 2.0.0
* bump to 2.0 to mark the change of maintainership. I hope I won't disappoint.
* require 'flexmock' no longer pulls test_unit_integration. Require the latter
explicitely
* dropped support for pre-2.0 Rubies
* added explicit minitest support. This makes the minitest integration much
nicer to work with (in particular, the flexmock_teardown is now executed "just
at the right place"), and fixes issues with minitest 5. Just require
flexmock/minitest to get it.
* partial mocks now supports prepended modules
* validation errors that happen when a method is called (i.e. unexpected
arguments, wrong call count) are reported with the backtrace of the call
instead of with the backtrace of the expectation definition.
0.17.2 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
- Clean up deprecation notes.
0.20.5 (2015-09-30)
-----
* Resumed updating changelog.
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
0.20.5 (2015-09-30)
-----
* Resumed updating changelog. Not much as changed -- mostly keeping version sync with other gems.
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
0.20.5 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
0.20.5 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
connections. Issue is resolved in this version.
Release Notes
7.1.2 (2015-08-22)
Don't raise an error if pip is not installed when checking for the latest pip version.
7.1.1 (2015-08-20)
Check that the wheel cache directory is writable before we attempt to write cached files to them.
Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip.
Added debug logging when using a cached wheel.
Respect platlib by default on platforms that have it separated from purlib.
Upgrade packaging to 15.3.
Normalize post-release spellings for rev/r prefixes.
Upgrade distlib to 0.2.1.
Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled.
Ensured that the executable written to shebangs is normcased.
Changed ScriptMaker to work better under Jython.
Upgrade ipaddress to 1.0.13.
7.1.0 (2015-06-30)
Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731.
Accept --no-binary and --only-binary via pip.conf. #2867.
Allow --allow-all-external within a requirements file.
Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file.
Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5.
Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows.
Allow ~ to be expanded within a cache directory in all situations.
7.0.3 (2015-06-01)
Fixed a regression where --no-cache-dir would raise an exception, fixes#2855.
7.0.2 (2015-06-01)
BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841)
BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841)
Expand ~ in the cache directory when caching wheels, fixes#2816.
Use python -m pip instead of pip when recommending an upgrade command to Windows users.
7.0.1 (2015-05-22)
Don't build and cache wheels for non-editable installations from VCSs.
Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0.
7.0.0 (2015-05-21)
BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options.
BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands.
BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options.
BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option.
BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment.
BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7'
Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes#497
Support --install-option and --global-option per requirement in requirement files (PR #2537)
Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618)
Allow fine grained control over the use of wheels and source builds. (PR #2699)
--no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699)
The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes#2677
Improve logging when a requirement marker doesn't match your environment (PR #2735)
Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767).
Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766).
Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761).
Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785).
Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796).
Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798).
6.1.1 (2015-04-07)
No longer ignore dependencies which have been added to the standard library, instead continue to install them.
6.1.0 (2015-04-07)
Fixes#2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538)
Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar.
Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487)
Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296.
Display format of latest package when using pip list --outdated. (PR #2475)
Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467)
Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441).
Display a warning when an undefined extra has been requested. (PR #2142)
Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535)
Don't follow symlinks when uninstalling files (PR #2552)
Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes#2481 (PR #2595)
Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616)
Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602)
Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561)
Output warnings and errors to stderr instead of stdout. (PR #2543)
Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396)
Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421)
6.0.8 (2015-02-04)
Fix an issue where the --download flag would cause pip to no longer use randomized build directories.
Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!).
Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether.
Retry deleting directories incase a process like an antivirus is holding the directory open temporarily.
Fix an issue where pip would hide the cursor on Windows but would not reshow it.
6.0.7 (2015-01-28)
Fix a regression where Numpy requires a build path without symlinks to properly build.
Fix a broken log message when running pip wheel without a requirement.
Don't mask network errors while downloading the file as a hash failure.
Properly create the state file for the pip version check so it only happens once a week.
Fix an issue where switching between Python 3 and Python 2 would evict cached items.
Fix a regression where pip would be unable to successfully uninstall a project without a normalized version.
6.0.6 (2015-01-03)
Continue the regression fix from 6.0.5 which was not a complete fix.
6.0.5 (2015-01-03)
Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function.
6.0.4 (2015-01-03)
Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar.
Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting.
Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable.
Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer.
Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag.
Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*.
Document the default cache directories for each operating system.
Create the cache directory when the pip version check needs to save to it instead of silently logging an error.
Fix a regression where the -q flag would not properly suppress the display of the progress bars.
6.0.3 (2014-12-23)
Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible.
Make --no-index imply --disable-pip-version-check.
6.0.2 (2014-12-23)
Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade.
Fix left over merge conflict markers in the documentation.
Document the backwards incompatible PEP 440 change in the 6.0.0 changelog.
6.0.1 (2014-12-22)
Fix executable file permissions for Wheel files when using the distutils scripts option.
Fix a confusing error message when an exceptions was raised at certain points in pip's execution.
Fix the missing list of versions when a version cannot be found that matches the specifiers.
Add a warning about the possibly problematic use of > when the given specifier doesn't match anything.
Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them.
6.0 (2014-12-22)
PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped.
BACKWARD INCOMPATIBLE Dropped support for Python 3.1.
BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806)
BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933)
BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability.
BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before.
DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching
DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion.
DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo).
Allow the new --trusted-host flag to also disable TLS verification for a particular hostname.
Added a --user flag to pip freeze and pip list to check the user site directory only.
Fixed#1873. Silence byte compile errors when installation succeed.
Added a virtualenv-specific configuration file. (PR #1364)
Added site-wide configuation files. (PR #1978)
Added an automatic check to warn if there is an updated version of pip available (PR #2049).
wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369)
Fixed#1424. Add --client-cert option for SSL client certificates.
Fixed#1484. pip show --files was broken for wheel installs. (PR #1635)
Fixed#1641. install_lib should take precedence when reading distutils config. (PR #1642)
Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688)
Fixed#1559. Stop breaking when given pip commands in uppercase (PR #1725)
Fixed#1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723)
Fixed#1769. pip wheel now returns an error code if any wheels fail to build.
Fixed#1775. pip wheel wasn't building wheels for dependencies of editable requirements.
Allow the use of --no-use-wheel within a requirements file. (PR #1859)
Fixed#1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866)
Fixed#1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868)
Fixed#1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869)
Fixed#1885. Properly handle extras when a project is installed via Wheel. (PR #1896)
Fixed#1180. Added support to respect proxies in pip search. It also fixes#932 and #1104. (PR #1902)
Fixed#798 and #1060. pip install --download works with vcs links. (PR #1926)
Fixed#1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967)
Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021)
Fixed#1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes#804 specifically for the case of wheel archives. (PR #1838)
Fixed#2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076)
Fixed#1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991)
Fixed#1433. Support environment markers in requirements.txt files. (PR #2134)
Automatically retry failed HTTP requests by default. (PR #1444, PR #2147)
Fixed#1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874)
Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178)
Fixed#2031 - Respect sys.executable on OSX when installing from Wheels.
Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183).
Support setuptools style environment markers in a source distribution (PR #2153).
remove those. From NEWS:
JTAG Layer:
SWD support with FTDI, Versaloon, J-Link, sysfsgpio
CMSIS-DAP massive speed and stability improvements
Versaloon driver ported to libusb-1.0
STLink can reestablish communication with a target that was disconnected or rebooted
STLink FAULT and WAIT SWD handling improved
New hla_serial command to distinguish between several HLA adapters attached to a single machine
Serial number support for CMSIS-DAP and J-Link adapters
Support for more J-Link adapters
TAP autoprobing improvements
Big speedup for SVF playback with USB Blaster
Boundary Scan:
Target Layer:
Stability improvements for targets that get disconnected or rebooted during a debug session
MIPS speed and reliability improvements
MIPS 1.5/2.0 fixes
ARMv7-R improvements
Cortex-A improvements, A7, A15 MPCores support
FPU support for ARMv7-M (Cortex-M4F)
TPIU/ITM support (including SWO/SWV tracing), can be captured with external tools or STLink
JTAG Serial Port (Advanced Debug System softcore) support
Profiling support for OpenRISC
ChibiOS/RT 3.0 support (with and without FPU)
FreeRTOS current versions support
Freescale MQX RTOS support
GDB target description support for MIPS
The last created target is auto-selected as the current
Flash Layer:
nRF51 async loader to improve flashing performance and stability
Cypress PSoC 41xx/42xx and CCG1 families flash driver
Silabs SiM3 family flash driver
Marvell Wireless Microcontroller SPI flash driver
Kinetis mass erase (part unsecuring) implemented
lpcspifi stability fixes
STM32 family sync with reference manuals, L0 support, bugfixes
LPC2000 driver automatically determines part and flash size
NXP LPC11(x)xx, LPC13xx, LPC15xx, LPC8xx, LPC5410x, LPC407x support
Atmel SAMD, SAMR, SAML21 devices support
Atmel SAM4E16 support
ZeroGecko family support
TI Tiva C Blizzard and Snowflake families support
Nuvoton NuMicro M051 support
EZR32 support in EFM32 driver
Board, Target, and Interface Configuration Scripts:
Normal target configs can work with HLA (STLink, ICDI) adapters
STM32 discovery and Nucleo boards configs
Gumstix AeroCore board config
General Plus GP326XXXA target config
Micrel KS869x target config
ASUS RT-N66U board config
Atmel SAM4E-EK board config
Atmel AT91SAM4L proper reset handling implemented
TI OMAP/AM 3505, 3517 target configs
nRF51822-mKIT board config
RC Module 1879-1 target config
TI TMDX570LS20SUSB board config
TI TMS570 USB Kit board config
TI CC2538, CC26xx target configs
TI AM437x major config improvements, DDR support
TI AM437X IDK board config
TI SimpleLink Wi-Fi CC3200 LaunchPad configs
Silicon Labs EM357, EM358 target configs
Infineon XMC1000, XMC4000 family targets and boards configs
Atheros AR9331 target config
TP-LINK TL-MR3020 board config
Alphascale asm9260t target and eval kit configs
Olimex SAM7-LA2 (AT91SAM7A2) board config
EFM32 Gecko boards configs
Spansion FM4 target and SK-FM4-176L-S6E2CC board configs
LPC1xxx target configs were restructured
IoT-LAB debug adapter config
DP BusBlaster KT-Link compatible config
Server Layer:
Polling period can be configured
shutdown command has an immediate effect
The program command doesn't lead to a shutdown by default, use optional exit parameter for the old behaviour
Proper OS signal handling was implemented
Async target notifications for the Tcl RPC
Changes in version 0.11
=======================
Released on October 23rd, 2014.
* Added support to print the details of all test cases (metadata and
their output) to 'report'. This is via a new '--verbose' flag which
replaces the previous '--show-context'.
* Added support to specify the amount of physical disk space required
by a test case. This is in the form of a new "required_disk_space"
metadata property, which can also be provided by ATF test cases as
"require.diskspace".
* Assimilated the contents of all the kyua-*-tester(1) and
kyua-*-interface(7) manual pages into more relevant places. In
particular, added more details on test program registration and their
metadata to kyuafile(5), and added kyua-test-isolation(7) describing
the isolation features of the test execution.
* Assimilated the contents of all auxiliary manual pages, including
kyua-build-root(7), kyua-results-files(7), kyua-test-filters(7) and
kyua-test-isolation(7), into the relevant command-specific manual
pages. This is for easier discoverability of relevant information
when reading how specific Kyua commands work.
* Issue 30: Plumbed through support to query configuration variables
from ATF's test case heads. This resolves the confusing situation
where test cases could only do this from their body and cleanup
routines.
* Issue 49: Extended 'report' to support test case filters as
command-line arguments. Combined with '--verbose', this allows
inspecting the details of a test case failure after execution.
* Issue 55: Deprecated support for specifying test_suite overrides on
a test program basis. This idiom should not be used but support for
it remains in place.
* Issue 72: Added caching support to the getcwd(3) test in configure so
that the result can be overriden for cross-compilation purposes.
* Issue 83: Changed manual page headings to include a "kyua" prefix in
their name. This prevents some possible confusion when displaying,
for example, the "kyua-test" manual page with a plain name of "test".
* Issue 84: Started passing test-suite configuration variables to plain
and TAP test programs via the environment. The name of the
environment variables set this way is prefixed by TEST_ENV_, so a
configuration variable of the form
'test_suites.some_name.allow_unsafe_ops=yes' in kyua.conf becomes
'TEST_ENV_allow_unsafe_ops=YES' in the environment.
* Issue 97 and 116: Fixed the build on Illumos.
* Issue 102: Set TMPDIR to the test case's work directory when running
the test case. If the test case happens to use the mktemp(3) family
of functions (due to misunderstandings on how Kyua works or due to
the reuse of legacy test code), we don't want it to easily escape the
automanaged work directory.
* Issue 103: Started being more liberal in the parsing of TAP test
results by treating the number in 'ok' and 'not ok' lines as optional.
* Issue 105: Started using tmpfs instead of md as a temporary file
system for tests in FreeBSD so that we do not leak md(4) devices.
* Issue 109: Changed the privilege dropping code to start properly
dropping group privileges when unprivileged_user is set. Also fixes
testers/run_test:fork_wait__unprivileged_group.
* Issue 110: Changed 'help' to display version information and clarified
the purpose of the 'about' command in its documentation.
* Issue 111: Fixed crash when defining a test program in a Kyuafile that
has not yet specified the test suite name.
* Issue 114: Improved the kyuafile(5) manual page by clarifying the
restrictions of the include() directive and by adding abundant
examples.
Version 0.19.6 - September 2015
* Programming languages support:
- AppData:
xgettext now supports AppData file format, used by software center
applications (e.g., GNOME Software) to describe installable
applications.
* A new macro AM_GNU_GETTEXT_REQUIRE_VERSION can be used to indicate
autopoint to pull the latest available infrastructure, instead of
the exact version specified with AM_GNU_GETTEXT_VERSION. When
AM_GNU_GETTEXT_REQUIRE_VERSION is used, AM_GNU_GETTEXT_VERSION is
ignored.
* po/Makefile.in.in can now insert the file $(DOMAIN).pot-header to
$(DOMAIN).pot, instead of the standard header comments.
* Bug fixes:
- Fix mishandling of gettext version numbers for minor releases, in
po-mode.el and gettextize.
- Fix build with --enable-relocatable.
Version 0.19.5 - July 2015
* xgettext now has a feature to perform syntax checks on msgid, which
could enforce common styles of translatable strings, such as to
prefer Unicode characters to the corresponding ASCII characters.
They can be enabled with --check option or special "xgettext: "
comment in the source code. By default, no syntax checks are
enabled.
* msgfilter and msgexec now have an option --newline, which appends a
newline character to filter input and trims it from the filter
output. This would allow filter programs to be more POSIX friendly.
* The base Unicode standard is now updated to 8.0.0. This
particularly improves "\N{...}" notation handling of xgettext for
Perl and Python.
* msginit is now capable of generating "Plural-Forms:" from Unicode
CLDR. This feature is still experimental, but you can try it by
setting the GETTEXTCLDRDIR environment variable pointing to the
directory where the CLDR archive is extracted. The actual
conversion is done by a helper program 'cldr-plural', which can be
used as a generic converter and evaluator of CLDR plural forms.
* Programming languages support:
- C++ with KDE: xgettext and msgfmt can now recognize KUIT (KDE User
Interface Text) markup. See the documentation section "KUIT
Format Strings" for more info.
- C++ with KDE: xgettext now recognizes all default KDE keywords.
This removes the need for a long list of --keyword and --flag
options to perform a reasonable extraction.
* Bug fixes:
- xgettext C++11 raw string recognition is now stricter and don't
accept unbalanced delimiters.
- Suppress baseless warnings which msgfmt emits when processing a
.desktop file.
- xgettext line wrapping behaviour is now consistent between comment
lines and non-comment lines.
- Fix msgfilter-7 test failure on some platforms.
- Fix VPATH build.
version 0.7.0
* updates related to new Linux systems, also fixed some
compiler warnings
* fixed bug when last line in configuration file was not
parsed (thanks to Richard Zidlicky<rz@linux-m68k.org>)
Version 6.5.1 - Sep 15 2015
[CHANGES]
New facilities:
o gtags(c, c++): New environment variable GTAGSFORCEENDBLOCK.
If this variable is set, each '}' at the first column brings
end of all blocks.
o gtags: New --skip-unreadable option.
If this option is specified, gtags skips unreadable files
instead of exiting the command.
[FIXED BUGS]
o gtags: There was a difference of interpretation of the langmap
between gtags and ctags. Now there is no difference.
o gtags (C++): Gtags did not pick up 'my_type1' as a definition
in the following example:
[xxx.cpp]
+------------------------
|using my_type1 = double;
Now it picks up the symbol as a definition.
o gtags (C++): gtags picked up 'DomainId_t' as a definition
in the following example:
[xxx.cc]
+------------------------
|typedef std::map<DomainId_t, int> map_t2;
Now it does not pick up it as a definition.
o gtags (C, C++): Gtags did not pick up 'pr_debug' as a definition
in the following example:
[xxx.h]
+------------------------
|extern void dump_stack(void) __cold;
|#define pr_debug() printk()
Now it picks up it as a definition.
o gtags (PHP): Gtags did not treat back-quote correctly.
[xxx.php]
+------------------------
|<?php `ls $echo ~/*`; ?>
Now it works.
[INCOMPATIBLE CHANGES]
o gozilla: Now, gozilla invokes firefox as a generic browser, that is, using
command line 'firefox url'. Because firefox have removed the -remote command
since version 39.
0.23.2 (2015-09-11)
===================
Bugs fixed
----------
* Compiler crash when analysing some optimised expressions.
* Coverage plugin was adapted to coverage.py 4.0 beta 2.
* C++ destructor calls could fail when '&' operator is overwritten.
* Incorrect C literal generation for large integers in compile-time
evaluated DEF expressions and constant folded expressions.
* Byte string constants could end up as Unicode strings when originating
from compile-time evaluated DEF expressions.
* Invalid C code when caching known builtin methods.
This fixes ticket 860.
* ``ino_t`` in ``posix.types`` was not declared as ``unsigned``.
* Declarations in ``libcpp/memory.pxd`` were missing ``operator!()``.
Patch by Leo Razoumov.
* Static cdef methods can now be declared in .pxd files.
Remove unneeded DEPENDS
Upstream changes:
0.119 2015-09-29
- remove use of Test::NoWarnings for user-facing tests
0.118 2015-07-27 TRIAL RELEASE
- overloading of & and | no longer can change All or Any objects
found as arguments
- an All as an argument to an All constructed is flattened out into its
All-ed values; the same goes for Any
Upstream changes:
0.9703 2015-09-29 Jarkko Hietaniemi <jhi@iki.fi>
- document (at user level) the openbsd random problem
- using the 5.22+ Inf was done the wrong way:
https://github.com/neilbowers/Graph/issues/1
0.9702 2015-09-28 Jarkko Hietaniemi <jhi@iki.fi>
- rt.cpan.org 107394 $Storable::VERSION may contain underscores
- follow-up to rt.cpan.org 104687: more docs, fixes, and tests for
diameter/radius/shortest_path/center_vertices/vertex_eccentricity
for corner cases like empty graph, single-vertex graphs, and
in general unconnected graphs
- for perl 5.22 or later one should be able to use Inf for Infinity
- openbsd before perl 5.20 had nondeterministic rand()
0.97 2015-09-22 Jarkko Hietaniemi <jhi@iki.fi>
- rt.cpan.org 104687 diameter and centre of a one vertex graph
- rt.cpan.org 107195 [PATCH] fix POD: add missing NAME header
- rt.cpan.org 107194 [PATCH] fix a spelling mistake
- rt.cpan.org #94046 Loading graph produces a warning with Perl 5.16.3
- rt.cpan.org 62626 Graph::TransitiveClosure::Matrix contradictory wrt reflexive
- rt.cpan.org 71793 Problem with APSP and default weight 1
- rt.cpan.org 79143 Graph scalar context override causes problems
- rt.cpan.org 92427 Graph::delete_vertex should not use _edges_at (in all cases)
- rt.cpan.org 85238 bug in edges() method?
- rt.cpan.org 93278 SPT_Dijkstra sometimes returns a wrong answer
- rt.cpan.org 78465 find_a_cycle and has_cycle are broken
- rt.cpan.org 92204 (longest path is not calculated correctly in this case)
- rt.cpan.org 65497 induced subgraph method
- plus various doc and code nits found while looking at the above
0.96_01 2014-03-09 @NEILB
- Taken over maintenance from JHI
- Specified min perl version 5.6.0
- Tweaked COPYRIGHT and LICENSE in pod to match usual form
- Added "use warnings", but that results in loads of warnings
about functions redefined. So added "no warnings 'redefine';".
Have to come back and work that one out!
- Set all VERSION's to 0.96_01. I suspect a switch to Dist::Zilla
might be coming soon...
- Updated README to acknowledge change in maintainer
- Reformatted as per CPAN::Changes::Spec
invoke the Makefile prior to having the perl dependency installed.
Instead, gather ldopts during configure and pass them to libsvn_swig_perl
in order to build with the necessary ldflags.
Changes in 3.3.2 since 3.3.1:
Brad King (2):
Makefile: Print color escapes only when necessary
CMake 3.3.2
Chuck Atkins (1):
find_*: Fix search order when the environment duplicates some HINTS
Daniel Pfeifer (3):
cmExtra{Kate,SublimeText}Generator: Remove unused cmXMLSafe includes
cmCTest{BZR,GIT,P4}: Remove unused cmXMLSafe includes
CTest: Fix XML double-encoding cases
Matt McCormick (1):
CMakeDetermine{C,CXX}Compiler: Avoid if() auto-dereferene in quoted arguments
Waf 1.8.14 has been released a few moments ago; it contains the following changes:
* Fixed a regression affecting Visual Studio detection on Python 3 when --msvc_lazy_autodetect is not provided
* Enabled vala processing on a folder basis with the vala_dir parameter - #1601
* Enabled vala resource processing - #1626
Waf 1.8.13 has been released today; it contains the following changes:
* Exposed the Popen parameters input/timeout to cmd_and_log/exec_command ('timeout' is for Python >= 3.3 though)
* Added 'with_sys_path' to Context.load_tool to use/skip sys.path
* Changed gccdeps so that it handles '..' within paths
* env = conf.env.derive().detach()
* Changed Sun compiler's default shared library flag from -Kpic to -xcode=pic32 - #1625
* Added bld(rule=, ..., cls_str=, cls_keyword=) for more descriptive outputs - #1598
* Added a lazy Visual Studio detection option --msvc_lazy_autodetect - #1614
* Changed the definition of function tests to prevent warnings with gcc - #1622
* The experimental untracked-cache feature were buggy when paths with
a few levels of subdirectories are involved.
* Recent versions of scripted "git am" has a performance regression
in "git am --skip" codepath, which no longer exists in the
built-in version on the 'master' front. Fix the regression in
the last scripted version that appear in 2.5.x maintenance track
and older.
Also contains typofixes, documentation updates and trivial code
clean-ups.
User-visible changes:
- Client-side bugfixes:
* svn: fix crash when saving credentials in kwallet (r1700740, r1700951)
* checkout/update: fix "access denied" error on Windows (r1701064 et al)
* update: fix crash when updating a conflicted tree (r1702198, r1702200)
* commit: fix possible crash (r1702231)
* ra_serf: do not crash on unexpected 'X-SVN-VR-Base' headers (r1702288)
* merge: fix crash when merging to a local add (r1702299 et al)
* svnmucc: fix error during propset+put for existing file (r1702467 et al)
* update: fix crash without .svn/tmp folder (r1701838, r1702203)
* checkout: remove unnecessary I/O operation (r1701638)
* merge: fix possible crash (r1701997)
* update: fix crash with some of the incoming deletes (r1702247)
* upgrade: fix crash for pre-1.3 wc with externals (r1702218 et al)
* revert: fix crash when reverting the root of a move (r1702237 et al)
* svn: do not crash upon specific database corruptions (r1702974, r1702991)
* svn: show utf8proc version in svn --version --verbose (r1702533, r1702891)
- Server-side bugfixes:
* fix reporting for empty representations in svnfsfs stats (r1698312 et al)
Developer-visible changes:
- General:
* fix svnfsfs_tests.py in fsfs-v4 and fsfs-v6 modes (r1700215 et al)
- API changes:
* disable unsupported operations for standard streams
Changelog: highlights only
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Fri Feb 7 00:55:18 2014 +0000
pstream.h (basic_ipstream::basic_ipstream(argv_type, pmode): Use
basic_ipstream::readable(pmode) to correctly set input mode.
test_pstreams.cc: Test execve-style construction for ipstream.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Fri Jul 12 00:20:21 2013 +0100
pstream.h: Add initializer-list constructors.
Make unary constructors explicit.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Thu Jul 11 23:27:43 2013 +0100
pstream.h: Add newpg pmode flag. Version 0.8.1.
test_pstreams.cc: Test newpg flag.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Fri Mar 29 17:42:22 2013 +0000
pstream.h: Doc tweak
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Wed Jan 23 00:43:11 2013 +0000
pstream.h: Put child in new process group and define pstreambuf::killpg()
Thanks to Hein-Pieter van Braam for the suggestion.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Sun Jan 20 19:15:41 2013 +0000
pstream.h: Retry interrupted writes
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Sun Jan 20 17:11:27 2013 +0000
pstream.h: Overload constructors for convenience.
Bump version to 0.7.3
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Mon Jun 25 22:57:26 2012 +0100
pstream.h: Update copyright years and remove RCSID.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Mon Jun 25 22:48:53 2012 +0100
pstream.h (pstreambuf::xsputn): Optimize.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Sun Jun 24 13:03:43 2012 +0100
pstream.h (basic_pstreambuf::open): Work with _FORTIFY_SOURCE.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Tue Nov 15 11:12:10 2011 +0000
(basic_pstreambuf::wpipe, basic_pstreambuf::rpipe): Fix for clang.
(PSTREAMS_VERSION): Bump to 0.7.2
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Thu Oct 14 19:57:41 2010 +0000
* pstream.h, test_pstreams.cc: Update copyright dates.
Author: Jonathan Wakely <pstreams@kayari.org>
Date: Thu Oct 14 19:55:19 2010 +0000
* pstream.h (pstreams_common::pstreams_common): Use basic_ios::rdbuf
to set the streambuf, basic_ios::init(0) has already been called.
py-pkgconfig is a Python wrapper for the pkg-config program. It
simplifies checking for libraries and the necessary compiler and linker
flags.
Add during the freeze as it is a prerequirement for fixing
devel/py-h5df.
Incompatible change in the newer ExtUtils-MakeMaker:
It places .o files where the source file lives (lib/File/ in this case),
whereas the older MakeMaker placed it in the current working dir
(toplevel in this case).
Thanks Matthias Ferdinand
http://mail-index.netbsd.org/pkgsrc-users/2015/09/19/msg022238.html
$ hg log --style changelog -b 3.6 -r 3.6.3:3.6.2
2015-09-08 Cédric Krier <ced@b2ck.com>
* CHANGELOG:
Prepare release 3.6.3
[12ad2caf0b4a] [3.6.3] <3.6>
2015-07-28 Cédric Krier <ced@b2ck.com>
* doc/usage.rst, tryton/gui/main.py:
opt-in for Mac integration
The Mac integration is not fully stable for now.
issue4595 review19341002 (grafted from
b00d6918cc6acee02921bb92e2c0ddbe1788c95c)
[0a41df770987] <3.6>
* tryton/config.py:
Decode windows HOME using the file system encoding
GTK requires to have string encoded in utf-8.
issue4870 review16471002 (grafted from
3a832b0ccf86fd80fb58f0e32f18647c4612b744)
[d8b7956f1fe4] <3.6>
* tryton/gui/window/view_form/model/record.py:
Check if field is loaded before adding its timestamp
issue4876 review20331003 (grafted from
4adab6dc64fa312664c6dfadce62f38cc065dacd)
[20357c8c7814] <3.6>
* tryton/common/common.py:
Don't decode file name from get_preview_filename
The file name received from get_preview_filename is already encoded
in utf-8.
issue4871 review8251002 (grafted from
19ac99adc0b71c99478f7510d10c8aab50fcbefd)
[facaf37c52cb] <3.6>
2015-07-09 Cédric Krier <ced@b2ck.com>
* tryton/common/domain_parser.py,
tryton/gui/window/view_form/screen/screen.py:
Add support of TimeDelta to DomainParser
issue4851 review20321002 (grafted from
6d3ea9bff014927d9073a892e1d02ce3eb5c5852)
[0458be2d858c] <3.6>
2015-07-07 Cédric Krier <ced@b2ck.com>
* doc/usage.rst:
Remove Tabs Position documenation
issue1014 (grafted from 97e4356ed90b91ff253ab30887c45a38c2b7f00f)
[6fd0b418e185] <3.6>
2015-07-01 Cédric Krier <ced@b2ck.com>
* tryton/common/datetime_.py,
tryton/gui/window/view_form/view/list_gtk/editabletree.py:
Call activate on Date, Time cell before getting value
The focus-out event is not yet triggered when editing is done which
result of the content of the cell not yet being parsed. So the
parsing must be forced by calling activate.
issue4826 review18341002 (grafted from
1f55c2dbde245703ff89d3a68f0aa90a8a27db8c)
[71e137fa3ddf] <3.6>
2015-07-01 David Harper <google@unicode2013.org>
* tryton/gui/window/view_form/model/field.py:
Fix set_client of new datetime from editable tree
issue4850 review20311002 (grafted from
67d552d629c7ea2bfedd93d1c0bf22b6f33ef98a)
[acf96fab06be] <3.6>
2015-07-01 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/form.py:
Display date and microsecond in logs
create and write dates should be formatted the same way as the
revisions.
issue4808 review18351002 (grafted from
ad74340d5c82480adef6115ba08677be8457c500)
[0b59dd061a53] <3.6>
2015-06-28 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/view_form/view/list.py:
Fix behaviour of TreeModel when record is None
issue4831 review16381002 (grafted from
1c35fe52323832015370d4831f3b09bdacdb27ed)
[39744a792077] <3.6>
2015-07-13 Cédric Krier <ced@b2ck.com>
* tryton/__init__.py:
Increase version number
[f0042c7ffa0a] <3.6>
* .hgtags:
Added tag 3.6.2 for changeset 94c93cbb7dd4
[4dbcf91f53fc] <3.6>
* CHANGELOG:
Prepare release 3.6.2
[94c93cbb7dd4] [3.6.2] <3.6>
$ hg log --style changelog -b 3.6 -r 3.6.3:3.6.2
2015-09-08 Cédric Krier <ced@b2ck.com>
* CHANGELOG:
Prepare release 3.6.3
[8a2f9afeb713] [3.6.3] <3.6>
2015-07-14 Cédric Krier <ced@b2ck.com>
* trytond/model/modelsql.py:
Get all eligible records when writting many values
The call to trigger_write_get_eligibles must be done with all the
records and not only the first set.
issue4863 review23311002 (grafted from
e87ffbe12522d4abe7565bb44f2ca0add34e171e)
[674cb62177cc] <3.6>
* trytond/model/modelview.py:
Always test field presence in initial value when computed changed
values
The value could be None which is also the default value returned by
dict.get. So it will fail to detect change in such case.
issue4839 review23281002 (grafted from
e54306367a05a86e94020c325529e91911393488)
[54a9317d3ede] <3.6>
2015-07-13 Cédric Krier <ced@b2ck.com>
* trytond/__init__.py:
Increase version number
[485c13d4e861] <3.6>
* .hgtags:
Added tag 3.6.2 for changeset 95f7272b4410
[2ce2d2ece951] <3.6>
* CHANGELOG:
Prepare release 3.6.2
[95f7272b4410] [3.6.2] <3.6>
3.29: 2015-09-02
Now included: git aliases that allow git to work with action stamps.
The new repomapper tool helps prepare contributor maps.
Use of branchify/branchify_map is now less likely to produce invalid resets.
branchify_map has been changed to handle subdirectories better.
"branchify_map reset" actually works now.
Prevent a crash on empty SVN comments produced by dumpfiltering.
'assign' command with no selection set or arguments lists assignments.
New --user-ignores option on Subversion reads passes through .gitignores.
'repotool initialize' now generates an easier-to-read conversion makefile.
Separate the logs between examples to allow for easier understanding.
# Log Splitter for RSpec
This `RSpec` plugin allows you to change the logger for your library for each
separate example. This gives the ability to see the log output for each
specific test.
Shim to load environment variables from `.env` into `ENV` in *development*.
Storing [configuration in the environment](http://www.12factor.net/config) is
one of the tenets of a [twelve-factor app](http://www.12factor.net/). Anything
that is likely to change between deployment environments-such as resource
handles for databases or credentials for external services - should be
extracted from the code into environment variables.
But it is not always practical to set environment variables on development
machines or continuous integration servers where multiple projects are
run. dotenv loads variables from a `.env` file into `ENV` when the environment
is bootstrapped.
# News
## 3.1.3 - 2015-07-26 {#version-3-1-3}
It's a bug fix release.
### Improvements
* Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
### Fixes
* `--location`: Fixed a bug that `--location LINE` doesn't work when
test script is specified as relative path. [Reported by TOMITA Masahiro]
The following doesn't work:
% ruby ./test.rb --location 10
The following works:
% ruby test.rb --location 10
### Thanks
* takiy33
* TOMITA Masahiro
### 3.3.2 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.1...v3.3.2)
Bug Fixes:
* Prevent thread deadlock errors during proxy creation (e.g. when using
`before_verifying_doubles` callbacks). (Jon Rowe, #980, #979)
### 3.3.1 / 2015-06-19
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.0...v3.3.1)
Bug Fixes:
* Fix bug in `before_verifying_double` callback logic that caused it to be called
once for each class in the ancestor list when mocking or stubbing a class. Now
it is only called for the mocked or stubbed class, as you would expect. (Sam
Phippen, #974)
### 3.3.1 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.0...v3.3.1)
Bug Fixes:
* Fix `be >`, `be <`, etc so that it fails rather than allowing an
argument error to be raised when compared against an object of the
wrong type. This allows it to be used in composed matcher expressions
against heterogeneous objects. (Dennis Günnewig, #809)
* Fix `respond_to` to work properly on target objects
that redefine the `method` method. (unmanbearpig, #821)
### 3.3.2 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)
Bug Fixes:
* Fix formatters to handle exceptions for which `backtrace` returns `nil`.
(Myron Marston, #2023)
* Fix duplicate formatter detection so that it allows subclasses of formatters
to be added. (Sebastián Tello, #2019)
### 3.3.1 / 2015-06-18
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)
Bug Fixes:
* Correctly run `before(:suite)` (and friends) in the context of an example
group instance, thus making the expected RSpec environment available.
(Jon Rowe, #1986)
2015-12 Release 0.5.1
Horst Duchene <monora@gmail.com>
* Changed edge sequence to match example picture (daa88e)
Chase <chase.gilliam@gmail.com>
* updated algorithms to 6.1 and added test unit to support newer rubies (fbd874)
2015-07-22 version 0.6.2:
* Fix release workflow: Ruby 2.1 and 2.2 are supported for Windows (2.0 is
omitted)
* Fix to encode symbols along its encoding
* Fix segmentation fault in minor case
2015-07-01 version 0.6.1:
* Added :compatibility_mode option to Packer#initialize. Default is false. If it
is set to true, str8 format and bin format family will not be used.
Release 2.2.1
* Fix executable resolution on Windows when a directory exists with the same
name as the command to run
Release 2.2.0
* Remove windows-pr dependency
=== 5.8.0 / 2015-08-06
* 2 minor enhancements:
* Add optional delegation mechanism to extend object with a mock. (zamith)
* Return early if there are no filtered methods. (jeremyevans)
* 1 bug fix:
* Don't extend io with pride if io is not a tty. (toy)
2.2.2 (07/15/2015)
Bugs fixed
* Fix uninitialized constant StringIO error in C extension
2.2.1 (07/13/2015)
Bugs fixed
* Aaron Lasseigne: Thanks for fixing my bad .travis.yml
* Kouhei Sutou: Numerous circular argument reference fixes, method redefined,
assigned but unused warnings, superclass mismatch warnings, etc.
* Fixed uninitialized variable when using C-ext.
* Fixed README require
* Fixed superclass mismatch in rbx when using C-ext.
* Lots of rubocop fixes, and added rubocop to travis
Version 0.1.8
Move flush into own method
Version 0.1.7
Don't use closed fobj
Add makefile
Version 0.1.6
Actually call fsync
Remove useless file
Simplify CI setup
Adapt to internal tox changes
Fix docs
Fix link
Split alternatives and credit
Update alternatives
Fix comment
TortoiseHg 3.5.1
TortoiseHg 3.5.1 is a regularly scheduled bugfix release.
Bugs Fixes
visdiff: preserve the executable bit after editing a file
Installer
setup: exclude setup.py and distutils from py2exe build
wix: add mercurial/help/scripting.txt (fixes#4264)
------
18.3.1
------
* Issue #425: Correct regression in setuptools.findall.
----
18.3
----
* Setuptools now allows disabling of the manipulation of the sys.path
during the processing of the easy-install.pth file. To do so, set
the environment variable ``SETUPTOOLS_SYS_PATH_TECHNIQUE`` to
anything but "rewrite" (consider "raw"). During any install operation
with manipulation disabled, setuptools packages will be appended to
sys.path naturally.
Future versions may change the default behavior to disable
manipulation. If so, the default behavior can be retained by setting
the variable to "rewrite".
* Issue #257: ``easy_install --version`` now shows more detail
about the installation location and Python version.
Fixes since v2.5.1
------------------
* "git init empty && git -C empty log" said "bad default revision 'HEAD'",
which was found to be a bit confusing to new users.
* The "interpret-trailers" helper mistook a multi-paragraph title of
a commit log message with a colon in it as the end of the trailer
block.
* When re-priming the cache-tree opportunistically while committing
the in-core index as-is, we mistakenly invalidated the in-core
index too aggressively, causing the experimental split-index code
to unnecessarily rewrite the on-disk index file(s).
* "git archive" did not use zip64 extension when creating an archive
with more than 64k entries, which nobody should need, right ;-)?
* The code in "multiple-worktree" support that attempted to recover
from an inconsistent state updated an incorrect file.
* "git rev-list" does not take "--notes" option, but did not complain
when one is given.
* Because the configuration system does not allow "alias.0foo" and
"pager.0foo" as the configuration key, the user cannot use '0foo'
as a custom command name anyway, but "git 0foo" tried to look these
keys up and emitted useless warnings before saying '0foo is not a
git command'. These warning messages have been squelched.
* We recently rewrote one of the build scripts in Perl, which made it
necessary to have Perl to build Git. Reduced Perl dependency by
rewriting it again using sed.
* t1509 test that requires a dedicated VM environment had some
bitrot, which has been corrected.
* strbuf_read() used to have one extra iteration (and an unnecessary
strbuf_grow() of 8kB), which was eliminated.
* The codepath to produce error messages had a hard-coded limit to
the size of the message, primarily to avoid memory allocation while
calling die().
* When trying to see that an object does not exist, a state errno
leaked from our "first try to open a packfile with O_NOATIME and
then if it fails retry without it" logic on a system that refuses
O_NOATIME. This confused us and caused us to die, saying that the
packfile is unreadable, when we should have just reported that the
object does not exist in that packfile to the caller.
* An off-by-one error made "git remote" to mishandle a remote with a
single letter nickname.
* A handful of codepaths that used to use fixed-sized arrays to hold
pathnames have been corrected to use strbuf and other mechanisms to
allow longer pathnames without fearing overflows.
Also contains typofixes, documentation updates and trivial code
clean-ups.
--------------
Version 1.94b:
--------------
- Changed allocator alignment to improve support for non-x86 systems (now
that llvm_mode makes this more feasible).
- Fixed a minor typo in afl-cmin. Spotted by Jonathan Neuschafer.
- Fixed an obscure bug that would affect people trying to use afl-gcc
with $TMP set but $TMPDIR absent. Spotted by Jeremy Barnes.
--------------
Version 1.93b:
--------------
- Hopefully fixed a problem with MacOS X and persistent mode, spotted by
Leo Barnes.
1.9.10
* Simplify clean list and add libtest build files.
* methodHandleParamTypes needs to refer to valid memory after rbffi_MethodHandle_Init
* tweak travis to allow failure in 2.2 on osx
* allow failure on osx 2.2 and head builds
* CLEAN tweak [ci skip]
1.9.9
* workaround bundler problem
* fix struct specs on 1.8 sets them to pending rather than checking for a raise but...
* better clean/clobber config
* Simplify cross build tasks and add rake-compiler-dock for building Windows binary gems.
* Added Platform.solaris? singleton method.
* fix library load... forever
* better native_type
* enable and fix warnings in specs.
* add compiler and platform based tests
* Fix compatibility with newer libffi on Windows/MSVC
* Handle better RUBY_VERSION.
New features and improvements
* Added support for compiler option -gsplit-dwarf.
Bug fixes
* Support external zlib in nonstandard directory.
* Avoid calling exit() inside an exit handler.
* Let exit handler terminate properly.
* Bail out on compiler option --save-temps in addition to -save-temps.
* Only log "Disabling direct mode" once when failing to read potential include files.
1.967_010 Sun Jul 7 11:23:53 2013
- Base the standalone precompiled parser's runtime name on the
parser's class, rather than use the fixed
"Parse::RecDescent::_Runtime". This prevents "already defined"
warnings when two standalone precompiled parsers are used.
- Add support for allowing precompiled parsers to share a common
runtime via the Precompile({-runtime_class}) option and the
PrecompiledRuntime() function.
- Warn on creation of Precompiled parsers that depend on
Parse::RecDescent.
- *** NON-BACKWARDS COMPATIBLE CHANGE! *** Change global the
<skip:> directive to eval similar to other <skip:> directives,
rather than being single-quoted in the resulting parser.
1.967011 Sat Sep 12 16:42:01 2015
- Correct some typos in the documentation. (RT.cpan.org #87185,
thanks dsteinbrunner!)
- Sort hash keys and rulenames when generating code. This keeps
the output text for a given input text the same, reducing
differences in automated builds. (RT.cpan.org #102160, thanks
Reiner!)
- Precompiled parsers now document which
$Parse::RecDescent::VERSION was used to generate
them. (RT.cpan.org #77001)
# Changelog
## 1.0.8 (August 6, 2015)
* fix kqueue assertion failed, postpone ArmKqueueWriter until all events are processed [#51, #176, #372, #401, #619]
* fix Rubinius GC, crank the machine from Ruby space when running Rubinius [#201, #202, #617]
* test to show that LineText2 preserves whitespace and newlines [#32, #622]
* bump up compiler warnings and resolve them [#616]
* fix Windows x64 use uintptr_t instead of unsigned long for binding pointers [#612, #615]
* fix linetext2 unroll tail recursion to avoid stack level too deep [#609]
* fix for compilation with SSL on windows [#601]
* open file descriptors and sockets with O_CLOEXEC where possible [#298, #488, #591]
* fix SmtpClient: send second EHLO after STARTTLS. [#589]
* fix nul-terminated strings in C, use StringValueCStr instead of StringValuePtr
Packaged by Timo Buhrmester in PR 50234.
Bam is a fast and flexible build system. Bam uses Lua to describe the
build process. It's takes its inspiration for the script files from
scons. While scons focuses on being 100% correct when building, bam
makes a few sacrifices to acquire fast full and incremental build times.
1.6.0
-----
* Strip comments in requirements files
1.5.0
-----
* Handle git being entirely absent
* We require the use of setuptools
* Fix retrieval of commit data and most recent tag
1.4.0
-----
* Fix docs for environment markers in extras
* Export ChangeLog and AUTHORS in install
* Updated from global requirements
* Updated from global requirements
* Show how long the git querying takes
* Add wsgi_scripts support to PBR
* Updated from global requirements
--------------
Version 1.92b:
--------------
- Yet another C++ fix (namespaces). Reported by Daniel Lockyer.
--------------
Version 1.91b:
--------------
- Another fix to make 1.90b actually work properly with C++ (d'oh).
Problem spotted by Daniel Lockyer.
--------------
Version 1.90b:
--------------
- Fixed a minor typo spotted by Kai Zhao; and made several other minor updates
to docs.
- Updated the project URL for python-afl. Requested by Jakub Wilk.
- Fixed a potential problem with deferred mode signatures getting optimized
out by the linker (with --gc-sections).
--------------
1.27 2015-09-06
- readline-7.0 support
new function
rl_callback_sigcleanup
- improve POD documents
- Gnu.xs: not to use obsoleted typedefs which were obsoleted
by ReadLine 6.3
- fix a wrong fix on 1.21 to let completion_function do case
insensitive match. [rt.cpan.org #72378]
- fix rl_display_match_list to show the first entry of the
array. The bug caused segmentation fault with readline-7.0.
- some improvement of Makefile.PL:
- add support homebrew on Mac OS X. [rt.cpan.org #104389]
- print an error string when system() fails.
- specify 'int' on 'main()'.
- use -O when -D_FORTIFY_SOURCE is defined.
--------------
0.36 2015-07-17 22:15 UTC
+ Fix : [RT #104312] : fatal hides perl errors in modules
no indirect 'fatal' will no longer hide compilation errors
occurring before indirect constructs.
Thanks Lukas Mai for reporting.
- Add following line for make test
BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
(upstream)
- Update 2.01 to 2.03
----------------------
2.03 2015-06-29
- Remove annoying warnings when version_ok called by itself GH #5 (DROLSKY)
2.02 2015-06-17
- Production release identical to 2.01_01 release
2.01_01 2015-06-15
- Added 'multiple' option to check each version inside a .pm file
with multiple packages.
-------------------
0.33 2015-06-06T03:36:58Z
- Tell Test::Stream::IPC to poll for results
0.32 2015-06-04T16:14:57Z
- Update for newer Test::Stream
- REmove some old Test::Stream support
-------------------
1.44 2015-07-06T00:29:56Z
* Fix file_has_* tests to work on Windows (RJBS) GitHub #13
1.43_02 2015-06-24T15:21:57Z
* check file_mode_has tests for Windows
1.43 2015-06-22T21:44:37Z
* Don't install README.pod
1.42 2015-06-16T17:58:11Z
* Fix problem with META* specifying requirements (RT #105210)
-----------------
0.22 2015-08-21
- The test_all_dependents() sub now lets you pass a filter subroutine instead
of an exclude regex. This is a lot simpler to implement in many cases.
- Remove following line, see 6th line of 1.04
INTERACTIVE_STAGE= test
(upstream)
- Update 1.03 to 1.05
-------------------
1.05 2015-06-06 JSTOWE
- Use sysread instead of getc() from ruittenb@cpan.org
- Set cursor visibility as per patch javibarroso@gmail.com
- Set isig/-isig to stty to allow signals as per javibarroso@gmail.com
- Simplify Makefile.PL slightly as metacpan appears to dislike it
- Use direct object notation for constructor in examples
- Use strict and warnings in examples/test.pl
1.04 2015-06-05 JSTOWE
- Now use strict and warnings, and drop use of vars.
- Specified min version of perl in code and metadata
- Moved Screen.pm to lib/Term/Screen.pm as per convention
- Reformatted this file as per CPAN::Changes::Spec
- Added github repo to metadata and pod
- make test will work non-interactively
- preserve exit code
- Fix regression caused by last resort change
- Add support for capabilities of more than 2 characters
1.17: Mon 17 Aug 08:30:54 BST 2015
- No changes version bounce
--------------
0.03 2015-06-28
- move to ExtUtils::MakeMaker and add author tests
- rewrite Changes according to CPAN::Changes::Spec
- improve standard doc parts in pod
- add newly introduced functions in LMU 0.408+
---------------
1.112 Sat Jul 25 2015
[ENHANCEMENTS]
- the 'trace' option now also outputs some information about process
termination and status (as requested by TIMB in RT #106046)
-------------------
0.11- B. Estrade (1):
Adding new test for signatures as part of Feb 2015 PRC.
Rafael Garcia-Suarez (8):
Bump version to 0.10
Merge pull request #6 from estrabd/Issue-5-add-signature-test
Fix skipping tests on earliers perls
Add new test to MANIFEST
Do not let get_code_location() segfault on XSUBs
Add a test for calling get_code_location on XSUBs
Add a pure-perl version of last test
Bump version
-------------------
1.99 2015-08-26
This release provides support for Elasticsearch 2.0.0-beta1 and above,
but the default client is still '1_0::Direct' and will remain so until
version 2.00 is released.
New features:
* Added default_qs_params, which will be added to every request
* Added max_time to the Bulk helper, to flush after a max elapsed time
* Added filter_path parameter to all methods which return JSON
* Added indices.flush_synced()
* Added render_search_template()
* Added cat.nodeattrs()
* Added human flag to indices.get and indices.get_settings
* Added rewrite flag to indices.validate_query
* Added rewrite flag to indices.analyze
* Added fields param to bulk()
* Added update_all_types to indices.create and indices.put_mapping
* Added request_cache to indices.put_warmer and indices.stats
* Added request to indices.clear_cache
* Added RequestTimeout exception for server-side timeouts
* Updated Plugin::Watcher with 1.0 API
Removed:
* Removed id and id_cache from indices.clear_cache
* Removed filter and filter_cache from indices.clear_cache
* Removed ignore_conflict from indices.put_mapping
Bugfixes:
* Fixed error handling in Hijk
* Fixed live test to non-existent IP address
--------------
0.28 2015-08-18 15:00 UTC
+ Chg : SUB() and EVAL() will now warn if they cannot find an
appropriate context in the current stack. They will still
return undef in this case, which is interpreted as the current
context when combined with other words.
+ Fix : [RT #104751] : Scope::Upper does not handle exotic stack types
Trying to target a scope above the current perl scope will now
result in a warning. In that case, the topmost context in the
current stack will still be returned.
Thanks Rafaël Garcia-Suarez for the report.
+ Fix : Test failures of threads tests on systems with harsh resource
constraints causing the threads to exit() during run.
+ Opt : Some internal structures were shrunk, resulting in memory
savings and small speedups.
- Add following line for make test
BUILD_DEPENDS+= p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable
(upstream)
- Update 1.125 to 1.126
------------------------
1.126 2015-08-10
[New Policies]
* Added a policy: ControlStructures::ProhibitYadaOperator - Never use ...
in production code.
[Bug Fixes]
* Fixed problems arising from having -b in your .perltidyrc file. Thanks
@hjkatz.
* Removed extra newline from policy names returned by P::C::Config->policies.
Thanks @ratsbane.
* `fc` and `say` are now covered by ProhibitUselessTopic. Thanks @JRaspass.
[Miscellanea]
* Add more strict/warnings importer modules. Thanks @oalders.
* Path::Tiny is now recommended over File::Slurp
* Micro-optimize by calling ->content() directly instead of going
through the overloads. Thanks @JRaspass.
* Square brackets are now allowed around your `## no critic` policy
list. Thanks @zdm.
-------------------
0.21 Wed Sep 2 18:00:00 2015
- Use compressed Sereal for encoding instead of Data::Dumper.
Reduces the disk footprint after installation by 4x.
The compressed tarball on the other hand is marginally bigger
because it means that we double-zlib compress the data.
0.20 Wed Sep 2 14:40:00 2015
- Perl 5.22.0 support.
-----------------------
1.4417 2015-06-09 16:19:41-06:00 America/Denver
- No changes from 1.4416
1.4416 2015-05-19 11:11:47-04:00 America/New_York (TRIAL RELEASE)
[FIXED]
- Minimum Perl was inadvertently set to v5.10.0. Now back to v5.8.1.
1.4415 2015-04-28 11:29:52-04:00 America/New_York (TRIAL RELEASE)
[TESTS]
- Outputs the version of backends used
[META]
- Updated repo metadata and boilerplate files
- Pointed issue tracker to the Perl-Toolchain-Gang Github repo
----------------------
0.041 2015-07-02 T. R. Wyant
No changes since 0.041_02.
0.040_02 2015-06-25 T. R. Wyant
Report \C (match octet) as removed in 5.23.0.
0.040_01 2015-06-20 T. R. Wyant
Accept non-ASCII whitespace under /x. The Whitespace object can be
multiple characters; the perl_version_introduced() becomes
'5.021001' if any of them is a code point above 127.
The perl_version_removed() method now returns '5.021001' when called
on a PPIx::Regexp object produced by parsing '?foo?' (match once
without explicit 'm'). The object produced by parsing 'm?foo?' still
returns the minimum Perl version.
0.040 2015-05-31 T. R. Wyant
No changes since 0.039_02.
0.039_02 2015-05-24 T. R. Wyant
Do not parse unadorned parentheses as capture groups when /n is in
effect. Instead, they are parsed as PPIx::Regexp::Structure. Named
captures appear to be unaffected by /n.
Made a verbose dump a little more so. Specifically, dump
max_capture_group where relevant, and display dumped values a bit
more informatively.
0.039_01 2015-05-23 T. R. Wyant
Report /n (no captures) as having been added in 5.21.8.
- Add following line for make test
BUILD_DEPENDS+= p5-Devel-CheckOS-[0-9]*:../../devel/p5-Devel-CheckOS
BUILD_DEPENDS+= p5-Package-Constants-[0-9]*:../../devel/p5-Package-Constants
BUILD_DEPENDS+= p5-Parallel-ForkManager-[0-9]*:../../devel/p5-Parallel-ForkManager
BUILD_DEPENDS+= p5-Search-Elasticsearch-[0-9]*:../../devel/p5-Search-Elasticsearch
- (Be careful, not all the dependent packages pass for 'make test', followings are suspect)
p5-MooseX-App-Cmd-0.31
git-base-2.5.1
p5-SQL-Abstract-Limit-0.14.1nb6
p5-IO-tty-1.12nb1
(upstream)
- Update 2.0.4 to 2.2.0
---------------------
2.2.0 2015-08-09
[ BUG FIXES ]
- Allow git to prompt user when calling sendemail (GH#25, Arthur Axel
fREW Schmidt)
- Tags were printed with the warning "at line blah". (GH#22)
[ ENHANCEMENTS ]
- Improve error message. (GH#24, frioux)
[ NEW FEATURES ]
- Store module name in config instead of relying on commit messages
(frioux, GH#26)
[ STATISTICS ]
- code churn: 8 files changed, 219 insertions(+), 438 deletions(-)
2.1.0 2015-06-01
[ ENHANCEMENTS ]
- Be a little more clever about finding out if the META repo is
git-based.
[ STATISTICS ]
- code churn: 3 files changed, 22 insertions(+), 4 deletions(-)
User-visible changes:
- Client-side bugfixes:
* Fix crash with GPG-agent with non-canonical $HOME
* Fix checkout errors with svn+ssh:// on Windows
* svn: expose expat and zlib versions in svn --version --verbose
* svn: improve help text for 'svn info --show-item'
- Server-side bugfixes:
* svnserve: fixed minor typo in help text
* Enable caching with memcached on Windows
* Fix an error leak in FSFS verification
* Fix incomplete membuffer cache initialization
* svnfsfs: fix some bugs and inconsistencies in load-index
- Client-side and server-side bugfixes:
* Fix alignment fault in ra_svn on 32 bit SPARC machines
- Bindings bugfixes:
* Fix memory corruption in copy source SWIG bindings
---------------------
(below is compiled from CHANGES)
================================
2015-06-03 10:10:18 -0400 v1_367
================================
- Version bump for release.
- Merge pull request #22 from zhouzhen1/prchallenge
- Some trivial changes for the CPAN PR challenge.
- rt.cpan.org 96039. Avoid close() on a FIFO until the reader is done.
- Cygwin seems to block on close() if a FIFO contains data. This test
deadlocks because it expects the ability to read from the FIFO
asynchronously later.
- rt.cpan.org 100499. Fix SuccessEvent values for AF_INET6.
- Applied ketas' micro patches, and updated an example in the docs.
- rt.cpan.org 101227. Comment on an unused assertion.
- rt.cpan.org 103842. Skip YAML line ending test on contemporary YAML.
- a couple of pod typo fix
- add 'use strict' to POE/Queue.pm and POE/Resource.pm
- Merge pull request #20 from nanis/nanis-fix-for-nmake
- Hard coded Unix-style directory separator causes problems on Windows
with nmake
- Enable bind for IN6ADDR_ANY
- Use File::Spec->catfile to compose certain paths
- Surrounding them with double quotes worked on Windows, but created
problems on other systems.
- Quote paths to fix errors with nmake on Windows
- C:\...\POE-1.366> nmake test
- "C:\opt\perl-5.20.1\bin\perl.exe" mylib/gen-tests.perl lib/POE.pm
Can't open perl script "mylib": Permission denied NMAKE : fatal error
U1077: 'C:\opt\perl-5.20.1\bin\perl.exe' : return code '0xd' Stop.
- This happens because perl ends up seeing mylib and /gen-tests.perl as
two separate thingies. It seemed to me that the most straightforward
solution which I do not think should effect any other platforms is to
quote the filename arguments. Hope this makes sense.
- Make loop discovery O(M+N) instead of O(M*N) stat() operations.
- fix typo ("Consier" => "Consider")
---------------------
1.010 2015-07-13
- Fix#101800 "[PATCH] Reinstate files to inc dir if deleted by external process"
Periodic temp directory cleaning programs (eg. "tmpwatch") may remove some
(older) files from $PAR_TEMP/inc, but keep others. This causes the packed
program to fail.
- When extracting a .par file to $PAR_TEMP/inc do NOT restore the original
modified timestamps of the file (so that the extracted files have
the time of extraction as their modified time).
- Add a "canary" file in $PAR_TEMP and back-date it 1 day. Hence any process
removing files in $PAR_TEMP based on timestamps should remove
the "canary" before others.
- If the canary file is missing, extract the .par to $PAR_TEMP/inc
as previously was done only when $PAR_TEMP/inc was missing.
+BUILD_DEPENDS+= p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires
+BUILD_DEPENDS+= p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean
# for make test
-#BUILD_DEPENDS+= p5-Types-Standard-[0-9]*:../../devel/p5-Types-Standard
+BUILD_DEPENDS+= p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny
+BUILD_DEPENDS+= p5-Test-RequiresInternet-[0-9]*:../../net/p5-Test-RequiresInternet
---------------
0.328 2015-09-03 20:37:50-04:00 America/New_York
- get command description from Pod by default (Jakob Voss)
- add a "--help" option to all commands by default (Jakob Voss)
- add "command_groups" to group commands in listing (Jakob Voss)
- fix the handling of "exit" in App::Cmd::Tester (Matthew Astley)
- add 'show_version_cmd' option to enable display of 'version'
command in command list. (John Anderson)
- minor documentation improvements (Alberto Simoes, rjbs)
issues (crashes, hangs) when building SDL packages in a session which
isn't logged into the console.
Tested in a full bulk build, some packages issue warnings for it being
an unrecognized option but I cannot see any failures due to it, and it
fixes a reasonable number of package builds.
- Update required version:
-DEPENDS+= p5-namespace-autoclean>=0.09:../../devel/p5-namespace-autoclean
+DEPENDS+= p5-namespace-autoclean>=0.16:../../devel/p5-namespace-autoclean
- Add following line for make test
BUILD_DEPENDS+= p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny
(upstream)
- Update 0.41 to 0.43
---------------------
0.43 2015-08-16 03:29:28Z
- add some diagnostics to a test that is failing occasionally
0.42 2015-06-04 06:17:43Z
- eliminate remaining uses of List::MoreUtils
- increase required version of namespace::autoclean to 0.16 to avoid test
failures
- Add following lines for make test
BUILD_DEPENDS+= p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny
BUILD_DEPENDS+= p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires
(upstream)
- Update to 0.34
----------------
0.34 2015-08-16 02:39:14Z
- bump namespace::clean prereq