Age | Commit message (Collapse) | Author | Files | Lines |
|
* (0.4.6) Major changes:
* Create patch functions to mimic the new String.lowercase_ascii,
String.uppercase_ascii, String.capitalize_ascii and
String.uncapitalize_ascii found in OCaml 4.03.0
* Disable tests depending on not yet buildable units with OCaml 4.03.0 (e.g.
expect which depends on batteries, which doesn't yet compile)
* Minimal version of OCaml is now 3.12.1. (Debian Wheezy version)
* (0.4.5) Major changes:
* Build and install annotation files.
* Use builtin bin_annot and annot tags.
* Tag .mly files on the same basis as .ml and .mli files
(required by menhir).
* Remove 'program' constraint from C-dependencies.
Currently, when a library has C-sources and e.g. an executable
depends on that library, then changing the C-sources and running
'-build' does not yield a rebuild of the library.
By adding these dependencies (rather removing the constraint),
it seems to work fine.
* Minor changes:
* Add tests tag if --enable-tests.
* Remove ocaml 4.02 warnings.
* Fix the automatic use of -syntax for OCamlVersion >= 3.12.1.
* Use the right ocamlfind binary to get all supported packages.
The name of the ocamlfind binary should be read from the configuration.
This is especially useful when cross-compiling.
* Features:
* no_automatic_syntax (alpha): Disable the automatic inclusion
of -syntax camlp4o for packages that matches the internal heuristic
(if a dependency ends with a .syntax or is a well known syntax).
* compiled_setup_ml (alpha): Fix a bug using multiple arguments
to the configure script.
Thanks to Christopher Zimmermann, Jerome Vouillon, Tomohiro Matsuyama
and Christoph Höger for their pull requests and to help release this version.
|
|
OCamlbuild 0.9.2 is a release to support OCaml 4.03. Martin Neuhäußer
contributed new flags for flambda-specific optimization options. We
also extend the scope of the flags -opaque and -for-pack, to align
with 4.03 best practices. Note that OCamlbuild should still work
correctly under older OCaml releases.
- 67: Add support for flambda's optimization parameters
The flags are named according to the flambda options with two exceptions:
optimization_rounds(int) for -rounds <int>
optimize({2,3,classic}) for -O{2,3,classic}
(Martin Neuhäußer)
- 70 (pratial): fix hygiene complains about the build directory under
Windows
(Andreas Hauptmann, Gabriel Scherer)
- 73: also pass predicates(foo) to ocamldep
(Jérémie Dimino)
- extend the scope of the -opaque flag under 4.03
(Gabriel Scherer)
- extend the scope of the -for-pack flag to ocamlc,
as recommend by OCaml compiler maintainers in
[5996](http://caml.inria.fr/mantis/view.php?id=5995#c13339)
(Gabriel Scherer)
|
|
|
|
|
|
TortoiseHg 3.8.1
TortoiseHg 3.8.1 is a feature release. 3.8.0 was skipped since
Mercurial tagged 3.8.1 the same day as 3.8.0.
Bug Fixes
guifork: disable interaction with tty input (refs #4469)
qtapp: disable interaction with tty on GUI (fixes #4469)
postreview: suggest wiki if reviewboard extension not enabled (fixes #4463)
workbench: fall back to revset query on "go to revision" (fixes #4084)
Improvements
clone: add a --config extensions.largefiles= option
paths: always respect the HG environment variable
Installer
updates to packaged dulwich and hgsubversion
|
|
Mercurial 3.8 / 3.8.1 (2016-5-1)
(3.8.1 was released immediately after 3.8 to fix a release oversight.)
Regularly scheduled feature release. This release contains a
low-priority security fix for:
CVE-2016-3105 Mercurial: arbitrary code execution when converting Git repos
Mercurial prior to 3.8 allowed arbitrary code execution when
using the convert extension on Git repos with hostile names.
This could affect automated code conversion services that allow
arbitrary repository names. This is a further side-effect of
Git CVE-2015-7545. Reported and fixed by Blake Burkhart.
There's also an overview of new features available.
1.1. commands
bookmarks: add 'hg push -B .' for pushing the active bookmark (issue4917)
bookmarks: avoid creating a nested repository during testing
branchmap: check node against changelog instead of repo
commands: add postincoming explicit brev argument (API)
commands: centralize code to update with extra care for non-file components
commit: block amend while histedit is in progress (issue4800)
fileset: replace predicate by filesetpredicate of registrar (API)
graft: suggest the correct tool to continue (not graft)
graft: use single quotes around command hint
log: disable graph styling when HGPLAIN is set (issue5212)
log: fix seen state handling for > 2 parents (issue5174)
log: fix status template to list copy source per dest (issue5155)
merge: minimize conflicts when common base is not shown (issue4447)
pull: activate a bookmark matching with the destination of the update (BC)
pull: deactivate a bookmark not matching with the destination of the update
revert: makes interactive mode ask to forget added files (issue4936)
verify: check directory manifests
verify: check for orphaned dirlogs
verify: include "manifest" prefix in a few more places
verify: move cross-checking of changeset/manifest out of _crosscheckfiles()
verify: show progress while verifying dirlogs
verify: don't init subrepo when missing one is referenced (issue5128) (API)
1.2. core
bdiff: balance recursion to avoid quadratic behavior (issue4704)
bdiff: further restrain potential quadratic performance
hook: report untrusted hooks as failure (issue5110) (BC)
revset: remove useless extpredicate class (API)
revset: make sort() do dumb multi-pass sorting for multiple keys (issue5218)
templater: load and expand aliases by template engine (API) (issue4842)
templater: separate function to create templater from map file (API)
ui: add prompt argument to write (issue5154) (API)
1.3. extensions
convert: keep converted hg parents that are outside convert.hg.revs (BC)
histedit: adds hint how to reorder changesets at editor (issue3766)
histedit: improve error when run on nodes with children (issue5056)
histedit: make histedit aware of obsolescense not stored in state (issue4800)
largefiles: add abstract methods in remotestore class
largefiles: don't access repo.changelog directly in getlfilestoupload
largefiles: don't explicitly list optional parameters that are not used
largefiles: drop partial support for not having a user cache
largefiles: introduce push --lfrev to control which revisions are pushed
largefiles: replace invocation of os.path module by vfs in lfcommands.py
largefiles: specify unit for ui.progress when operating on files
largefiles: use revisions as a ui.progress unit
rebase: 'hg pull --rebase' now update only if there was nothing to rebase
rebase: add potential divergent commit hashes to error message (issue5086)
rebase: adds storing collapse message (issue4792)
rebase: choose default destination the same way as 'hg merge' (BC)
rebase: explicitly test abort from ambiguous destination
rebase: fix crash when rebase aborts while rebasing obsolete revisions
rebase: mention help merge-tools in help
rebase: perform update through the 'update' command
rebase: remove experimental option from 'rebase' config section
rebase: respect checkunknown and checkignored in more cases
rebase: suggest the correct tool to continue (not rebase)
rebase: restrict rebase destination to the pulled set (issue5214)
shelve: adds restoring newly created branch (issue5048) (BC)
shelve: changes getting opts values by get method
shelve: make non bare shelve not saving branch information in bundle
shelve: preserve newly created branch on non-bare shelve in wctx (BC)
shelve: suggest the correct tool to continue (not unshelve)
1.4. hgweb
hgweb: add option to convert encoding of graphdata()
hgweb: add parents to json-log (issue5074)
hgweb: generate last change date for an empty atom-bookmarks feed (issue5022)
1.5. unsorted
blackbox: optionally log event source
bugzilla: do not load style file if template is specified (BC)
bundle: move writebundle() from changegroup.py to bundle2.py (API)
bundle: warn when update to revision existing only in a bundle (issue5004)
bundlerepo: properly handle hidden linkrev in filelog (issue4945)
changelog: add class to represent parsed changelog revisions
changelog: avoid slicing raw data until needed
changelog: backed out changeset 1778770e1982
changelog: backed out changeset 86de91c56355
changelog: lazily parse date/extra field
changelog: lazily parse description
changelog: lazily parse files
changelog: lazily parse manifest node
changelog: lazily parse user
changelog: lazy decode description (API)
changelog: lazy decode user (API)
changelog: parse description last
chg: fallback to original hg for some unsupported commands or flags
chg: forward job control signals to worker process (issue5051)
chg: pass sensitive command line flags to server
chgserver: create new process group after fork (issue5051)
date: reallow negative timestamp, fix for Windows buggy gmtime() (issue2513)
debugrevlog: fix dumping manifest fails on empty first revision (issue5062)
demandimport: blacklist sqlalchemy.events as it has side effects (issue5085)
demandimport: enforce ignore list while processing modules in fromlist
destutil: choose non-closed branch head at first (BC)
dispatch: add wd parameter to _getlocal
dispatch: catch KeyboardInterrupt more broadly
dispatch: factor out command failure handling into a function
dispatch: flush ui before returning from dispatch
dispatch: make cmdalias forward command attributes to function
dispatch: make loading extra information from extension extensible
dispatch: show deprecation warning if command has no attributes (issue5137)
dispatch: store norepo/optionalrepo/inferrepo attributes in function (API)
dispatch: strip command line options like config file options
encoding: add option to escape non-ascii characters in JSON
graphlog: bring back color to node symbol template
graphmod: set default edge styles for ascii graphs (BC)
hg: perform update after pulling during clone with share (issue5103)
http: support sending hgargs via POST body instead of in GET or headers
localrepo: move new repo requirements into standalone function (API)
localrepo: support background closing for wwrite()
mail: retain hostname for sslutil.wrapsocket (issue5203)
match: rename "narrowmatcher" to "subdirmatcher" (API)
mpatch: un-nest the move() method
mpatch: unify mpatchError (issue5182)
notify: do not load style file if template is specified (BC)
record: deprecate the extension
registrar: add templatefilter to mark a function as template filter (API)
registrar: add templatefunc to mark a function as template function (API)
registrar: add templatekeyword to mark a function as template keyword (API)
registrar: remove useless base classes (API)
remove: add progress support
remove: fix --force option help description (issue5177)
remove: queue warnings until after status messages (issue5140) (API)
scmutil: support background closing for write()
serve: add chdir command for --daemon-postexec
serve: rename --daemon-pipefds to --daemon-postexec (BC)
sslutil: require a server hostname when wrapping sockets (API)
streamclone: specify unit for ui.progress when handling data
subrepo: disable localizations when calling Git (issue5176)
templatefilters: drop broken "jsonescape" from filters table (BC)
templatefilters: make json filter be byte-transparent (BC) (issue4926)
templatekw: switch ctx of list expression to rev of {parents} (BC)
test-debugextensions: passes with byte-compilation disabled (issue5147)
testing: expand Hypothesis tests with branch commands
tests: add test for "log -r wdir() -p" (issue4871)
tests: ensure that 'hg update' is disabled during histedit (issue3655)
tests: update test output for test written on stable branch (issue5104)
treemanifest: don't use cp -T, not supported on OS X
update: change default destination to tipmost descendant (issue4673) (BC)
update: check command line before modifying repo
version: verbose list internal and external extension source (issue4731)
|
|
* Sync with firefox45-45.1.1
|
|
v21.0.0
02 May 2016
Removed ez_setup.py from Setuptools sdist. The bootstrap script
will be maintained in its own branch and should be generally
be retrieved from its canonical location at
https://bootstrap.pypa.io/ez_setup.py.
v20.10.0
25 Apr 2016
#553: egg_info section is now generated in a deterministic
order, matching the order generated by earlier versions of
Python. Except on Python 2.6, order is preserved when existing
settings are present.
#556: Update to Packaging 16.7, restoring support for deprecated
python_implmentation marker.
#555: Upload command now prompts for a password when uploading
to PyPI (or other repository) if no password is present in
.pypirc or in the keyring.
|
|
2.10.0 (04-29-2016)
+++++++++++++++++++
**New Features**
- SOCKS Proxy Support! (requires PySocks; $ pip install requests[socks])
**Miscellaneous**
- Updated bundled urllib3 to 1.15.1.
2.9.2 (04-29-2016)
++++++++++++++++++
**Improvements**
- Change built-in CaseInsensitiveDict (used for headers) to use OrderedDict
as its underlying datastore.
**Bugfixes**
- Don't use redirect_cache if allow_redirects=False
- When passed objects that throw exceptions from ``tell()``, send them via
chunked transfer encoding instead of failing.
- Raise a ProxyError for proxy related connection issues.
|
|
|
|
Changes not found.
|
|
2016-05-01 meld 3.16.0
======================
Translations:
* Josef Andersson (sv)
|
|
A Python module for decorators, wrappers and monkey patching.
The aim of the wrapt module is to provide a transparent object proxy for
Python, which can be used as the basis for the construction of function
wrappers and decorator functions.
The wrapt module focuses very much on correctness. It therefore goes way
beyond existing mechanisms such as functools.wraps() to ensure that
decorators preserve introspectability, signatures, type checking abilities
etc. The decorators that can be constructed using this module will work in
far more scenarios than typical decorators and provide more predictable and
consistent behaviour.
To ensure that the overhead is as minimal as possible, a C extension module
is used for performance critical components. An automatic fallback to a pure
Python implementation is also provided where a target system does not have a
compiler to allow the C extension to be compiled.
|
|
--------------
Version 2.11b:
--------------
- Fixed a minor typo in instrumented_cmp, spotted by Hanno Eissfeldt.
- Added a missing size check for deterministic insertion steps.
- Made an improvement to afl-gotcpu when -Z not used.
- Fixed a typo in post_library_png.so.c in experimental/. Spotted by Kostya
Serebryany.
|
|
but apparently the OCAMLBUILD_LIBDIR variable doesn't get passed on
properly when set in MAKE_ENV.
|
|
|
|
from the ocaml package starting with 4.03.0.
|
|
Uninstalling findlib no longer uninstalls the ocamlbuild library by accident
(Gabriel Scherer, Edwin Török)
Adding an "ocamldoc" library, providing the cmi's for ocamldoc plugins
(suggested by Armaël Guéneau)
Support for OCaml-4.03: recognize that the new -color option has an argument
(reported by Guillaume Bury)
|
|
needed because of ocaml upgrade.
|
|
Update DEPENDS
Upstream changes:
2.1801 2016-05-02
[OTHER]
- bundled an updated ExtUtils::HasCompiler, to support building with a
noexec $TMPDIR.
|
|
3.3 as off boost 1.60.
|
|
Bump PKGREVISION.
|
|
While here, fix typo and add test dependency.
Changelog only covers 0.5:
0.5
```
* Fix binding with self as a kwarg. (Robert Collins #14)
|
|
|
|
XULRunner is a runtime environment for applications using the
XML User Interface Language, XUL. It is the successor of the "Gecko"
runtime environment.
This package tracks 45 extended support release.
|
|
* Sync with firefox38-38.8.0
|
|
--------------------------------------
0.69 2016-04-22 11:27:12Z
- attributes' "init_arg" settings are now respected when retrieving command
line options (thanks, Olaf Alders! -- PR#6)
|
|
|
|
--------------------------------------------------
1.0.2 - 2015-02-17
- Avoid an unhelpful warning
|
|
------------------------------------------
0.004004 2016-01-19 22:09:43-05:00 America/New_York
- Fixed issue 3
0.004003 2015-10-29 10:45:03-07:00 America/Los_Angeles
- Fixed issue 6
------------------------------------------
From https://github.com/cazador481/MooX-Log-Any/issues?q=is%3Aissue+is%3Aclosed
- #3 distribution version doesn't match module version
- #6 Add meta yml provides
|
|
----------------------------------------
1.21 2016-04-05
- %Preload: add rules for List::MoreUtils and Log::Dispatch
- %Preload: make the following modules require the unicore stuff:
charnames.pm
Unicode/Normalize.pm
Unicode/UCD.pm
- add helper _glob_in_inc_1()
- remove all references to http://par.perl.org/, doesn't exist anymore
|
|
- Add Following lines for make test
+BUILD_DEPENDS+=p5-IO-All-[0-9]*:../../devel/p5-IO-All
+BUILD_DEPENDS+=p5-Test-InDistDir-[0-9]*:../../devel/p5-Test-InDistDir
+BUILD_DEPENDS+=p5-Pod-Markdown-[0-9]*:../../textproc/p5-Pod-Markdown
(upstream)
- Updated devel/p5-Module-Install-ReadmeFromPod to 0.26
==============================
2016-04-26 13:54:51 +0100 0.26
==============================
Date: Tue Apr 26 13:54:51 2016 +0100
Missed prereq IO::All
==============================
2016-04-24 18:53:01 +0100 0.24
==============================
Date: Sun Apr 24 18:31:17 2016 +0100
Release engineering for 0.24
Date: Sun Apr 24 18:28:52 2016 +0100
Update README
Date: Sun Apr 24 18:13:19 2016 +0100
- Merge pull request #4 from djerius/markdown
- add support for markdown output
Date: Sun Apr 24 18:12:34 2016 +0100
- Merge pull request #5 from djerius/namespace
- only load IO::All and Capture::Tiny in admin mode
Date: Fri Oct 24 13:19:16 2014 +0100
Fixes for Makefile.PL
Date: Mon Sep 22 10:22:03 2014 -0400
only load IO::All and Capture::Tiny in admin mode
Date: Sat Sep 20 17:07:05 2014 -0400
add support for markdown output
Date: Sat Aug 9 23:28:18 2014 +0200
ensure outputs are always written in binary mode
|
|
|
|
pyhash is a python non-cryptographic hash library. It provide
several common hash algorithms with C/C++ implementation for
performance.
|
|
--------------------------------------------
0.341 2016-01-30T22:18:20
- fixed 20_parse_self.t; version.pm is not used anymore (Kenichi Ishigaki)
0.340 2016-01-30T20:42:39
- load_first_existing_class() is now working (Anthony Brummett)
- Class::Load::load_class(), try_load_class() and load_optional_class() are working (Anthony Brummett)
- Detect uses of Module::Runtime (Anthony Brummett)
- include extractuse as provided by Jonathan Yu in example/ (Anthony Brummett)
- Linkify POD modules, mention Module::Extract::Use to resolve RT#45571. (Jeremy Mates)
|
|
- ChangeLog unknown
|
|
---------------------------------------
5.20160429
- Updated for v5.22.2
5.20160320
- Updated vor v5.23.9
5.20160228
- [perl #127624] corelist: wrong Digest::SHA version in 5.18.4
5.20160220
- Updated for v5.23.8
5.20160120
- Updated for v5.23.7
5.20151220
- Updated for v5.23.6
5.20151213
- Updated for v5.22.1
5.20151120
- Updated for v5.23.5
5.20151020
- Updated for v5.23.4
5.20150920
- Updated for v5.23.3
5.20150912
- Updated for v5.20.3
|
|
----------------------------------------
0.4218 - Sun Apr 24 16:39:47 BST 2016
- Skip XS test when link_executable fails
0.42_17 - Mon Mar 21 14:02:06 CET 2016
- Read extra_linker_flags using its accessor [Salvador Fandino]
- Convert win shell splitting to m//gc parser, fixing handling of 0
and handling of backslashes preceeding a double quote [Graham Knop]
- Win32 installation of MB with gmake require SHELL env var to be set
[bulk88]
|
|
---------------------------------------------
1.002 2016-04-27 BOOK
- Increased the test coverage (from ~400 to ~11000 unit tests)
|
|
------------------------------------
5.047 2016-04-23 16:20:13+01:00 Europe/London
- cast things to Path::Class as needed, for now, for v6 backcompat
(don't expect more commits like this)
5.046 2016-04-22 15:50:27+01:00 Europe/London
- avoid using syntax that is called ambiguous on older perls
5.045 2016-04-22 11:37:13+01:00 Europe/London
- add 'relationship' option to AutoPrereqs plugin (Karen Etheridge)
- PrereqScanner role abstracts much of the AutoPrereqs behavior
(thanks, Olivier Mengu辿!)
- remove duplicates from the results of the :ExecFiles filefinder
- [MakeMaker] now rejects version ranges in prereqs if eumm_version is
not specified to be high enough (7.1101) to guarantee it can be
handled (Karen Etheridge)
- allow comments in an authordep specification with a version
- make FakeReleaser a bit more of a drop-in for UploadToCPAN
(Erik Carlsson)
- make PkgDist preserve blank line after 'package' for PkgVersion
(Chisel Wright)
- add rename option to [GatherDir::Template] (Alastair McGowan-Douglas)
- META.json is now emitted in ASCII (using \u... for non-ASCII
characters) to avoid a bug in older versions of JSON::PP on older
versions of perl
- "dzil build --in ." no longer allows you to blow away your cwd
|
|
BUILD_DEPENDS+= p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean
|
|
BUILD_DEPENDS+=p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable
|
|
|
|
|
|
forcing a revbump as it only impacts a specific lesser-used platform.
|
|
---------------------------------------------
20160315 Tue Mar 15 16:21:33 PDT 2016
Promoted to full release
20160310.2049_001 Thu Mar 10 20:49:00 PST 2016
Docs
* Fix broken link in POD
[github #120] (thanks Manwar)
Distribution Fixes
* Generate README from POD
[github #122/#123/#124] (thanks jluis)
* Silence bogus Kwalitee failure
[github #121] (thanks jluis)
20151120.1519_001 Fri Nov 20 15:19:44 PST 2015
Bug Fixes
* Fix missing semi-colon
[github #118] (thanks joenio)
Distribution Fixes
* Bump required version of Lexical::SealRequireHints to fix RT #93759
[github #119] (thanks chorny)
|
|
(make test fails, but that is not by this update)
---------------------------------
0.70 2015/12/15 18:17:43
[CHANGES]
* Support perl 5.8.x (tested on 5.8.9, presumed working as far as
5.8.4)
0.69 2015/11/09 19:56:58
[CHANGES]
* Use Future->catch instead of poorly-implemented string-eq test
* Use L<...> instead of C<...> in docs where appropriate (RT107417)
(thanks Arthur Axel 'fREW' Schmidt)
[BUGFIXES]
* Don't silently swallow Listener acceptor failures (RT107806)
* Don't silently swallow other ->connect errors
* Remember to ->unwatch_io before setting IaHandle's handle to undef
|
|
----------------------------------------
0.415 2016-05-01
- Release 0.414_001 as 0.415 without further changes
0.414_001 2016-04-13
- fix RT#75727 - after's XS implementation call XSRETURN(-1) when it
doesn't find an element (2nd patch provided by Reini Urban,
regression test provided by Tony Cook)
- fix RT#113117 - XS's minmax() sometimes return undef (perl >= 5.20),
thanks PERLANCAR and SREZIC
- explicit test for thesis in RT#110998 - XS implementation of pairwise
fails with memory allocation error when there are more return values
than in original lists -- thesis is proven wrong
- efficiency improvements by bulk88
- improve some tests to get clearer reports
- distinguish between "Makefile.PL find's a .git directory" and
"Makefile.PL runs in maintainer mode"
|
|
|
|
Bats is a TAP-compliant testing framework for Bash. It provides a
simple way to verify that the UNIX programs you write behave as
expected.
A Bats test file is a Bash script with special syntax for defining
test cases. Under the hood, each test case is just a function with
a description.
|