Upstream changes:
0.11 2015-10-09 rurban
- add libressl support, unsupported random_egd() with libressl
0.10 2015-02-04 rurban
- fix LIBS argument, fatal on Windows. thanks to kmx
0.09 2015-02-04 rurban
- add missing hints/MSWin32.pl (kmx, RT #56455)
- add a couple of distro tests
- fix gcov target
0.08 2015-02-03 rurban
- remove Devel::CheckLib which does not work for 2 required libs
- replace DynaLoader by XSLoader
0.07 2015-02-03 rurban
- Bump version to publish an official release
0.06 rurban
- Typo in doc (dsteinbrunner)
0.05 2013-04-02 14:31:30 rurban
- Add inc/Devel/CheckLib, improve POD, add README and some helper targets
- Better diagnostics when the openssl libraries are not found
- Support INCDIR= and LIBDIR= arguments to Makefile.PL
- Add MSWin32 hints to find the openssl libraries
- Autocreate README
- Fix some -Wpointer-sign warnings
- Remove wrong Crypt::OpenSSL::RSA package names in docs and errmsg
2.0.1:
Sam Lantinga - Tue Jul 7 11:40:33 PDT 2015
* Added support for 'smpl' format loop points in music WAV files
Sam Lantinga - Sat Aug 23 10:57:26 2014
* Fixed floating point exception in Mix_Volume()
David Ludwig - Mon Apr 14 22:15:36 2014
* Added support for building for Windows RT and Windows Phone
Isaac Burns - Sun Sep 15 21:50:27 PDT 2013
* Added support for loading MP3 files as sound chunks
- Add LICENSE as gnu-gpl-v1, add comment on patch
(upstream)
- Update 2.36 to 2.39
-------------------
* Revision 2.39 2015/05/13 12:24:47 fred
* Summary: Don't use uninitialized structs when ioctl() fails, e.g. if run with stdout
* redirected. Problem reported by Jan Stary.
*
* Revision 2.38 2015/04/20 14:50:42 fred
* Summary: Added patch for AIX61 contributed by Michael Staats
*
* Revision 2.37 2015/04/20 10:15:29 fred
* Summary: V2.36
---------------
1.406 2014-05-13
- always use global kernel mount table (/proc/mounts), not the process
mirror
- add support for getting canonical device path
- add support for package wide settings to tune Sys::Filesystem even
when used indirectly
-------------------
Changes in Sys::SigAction 0.21 20 Nov 2013
-------------------------------------------
Remove erroneous note at the end of the POD related to references to
this module in DBD:Oracle. In reality the reference was in DBI, and
it is still there.
Close pod error bug (which referred to the above paragraph)
submitted by the Debian Packaging team.
Changes in Sys::SigAction 0.20 4 Aug 2013
-------------------------------------------
Even if "Time::HiRes::ualarm()" exists, it may not necessarily
work. (There were way too many broken smoke tests which might have
been the result of this). One reason for this may also bave been
that the test was looking for too small an interval in the
sub-second timeout tests. On busy systems, this may also have been
causing tests to fail.
This version got rid of the attempt at tracking broken environments
in timeout.t (the hash structure mentioned in the previous change).
The sub-second timer tests now set a timeout at 0.1 seconds, and
check for a delta time that is less than 0.8 seconds. Proving that
they completed in under 1 second. This provides a 0.7 second range
of execution time to account for busy systems. Previous tests, only
allowed for something less than 0.1 second.
Makefile.PL now looks for "Time::HiRes::ualarm()", and tests it. If
it works, high resolution timeouts are enabled. Makefile.PL reports
what it finds, and t/timeout.t reports when high resolution tests
are disabled, but timeout.t should not fail because of this... it
will just run fewer tests.
Changes in Sys::SigAction 0.19 27 Jul 2013
-------------------------------------------
Change sig_alarm() to use HiRes::ualarm() instead of
HiRes::alarm(). Hoping to fix hires test failures on some platforms.
Build a hash structure in timeout.t to disable the HiRes tests on
certain platforms where these functions may to be consistently
broken, but disable them for at least another round, hoping that the
change to using HiRes::ualarm() solves the problem.
Also, restructure timeout.t to hardcode the number of tests
run. Apparently Test::More on perl 5.8.x insisteds on getting the
plan before ANY tests are run.
Build similar structure in mask.t to disable the test on certain
platforms were signal masking appears to be broken. Currently this
is set to
my $mask_broken_platforms = {
'archname' => { 'i686-cygwin-thread-multi-64int' => 1
}
,'perlver' => { 'v5.10.1' => 1
}
};
Update Makefile.PL to note the fact the HiRes timeouts may broken on
some platforms.
Changes in Sys::SigAction 0.18 24 Jul 2013
-------------------------------------------
Fix "bareword" error on some platforms at least, by explicitly
importing INT_MAX from POSIX module.
Fix Changes file which listed verson 0.16 twice when it should have
list version 0.17 for the more recent changes.
Changes in Sys::SigAction 0.17 22 Jul 2013
-------------------------------------------
Fix timeout.t to use POSIX::pause() instead of select(), which was
used to optimized the while ( 1 ) loop in the forever function. This
caused failures on some platforms. pause() is right solution --
thanks (again) to Carsten Gaebler and for the suggestion for
handling the Time::HiRes request. Update Makefile.PL to note the
fact the HiRes timeouts may broken on some platforms.
More double eval documentation cleanup that had not been previously
caught in the POD. (bug #79130).
When Time::HiRes is present, allow for long timeouts longer than the
POSIX::INT_MAX microseconds when Time::HiRes is present. Just call
call alarm() instead of ualarm() in the case where input argument
would result in a msecs value in an argument to ualarm which is
larger than POSIX::INT_MAX (and, of course, add a test for this in
timeout.t). (bug/enhancement request #75784)
Fix typos in dbd-oracle-timeout.POD (bug #87141). It appears that
the DBD:oracle module may now have internal handling for this
problem (DBD::oracle not longer references Sys::SigAction).
Changes in Sys::SigAction 0.16 21 Jul 2013
-------------------------------------------
Thanks to excellent patches from Carsten Gaebler (contact me if you
want to contact him), timeout_call() now supports passing an array
of arguments which it will pass to the code it executes.
Minor tweak to POD.
--------------
0.17 2016-02-03T18:35:33Z
- Added URI::_ado, which subclasses URI::_odbc to provide a `dbi_dsn()`
that returns a DSN using DBD::ADO. NOTE: This class is experimental,
since I was unable to figure out the best default values for the
connection string -- there are so many options! Feedback and
recommendations wanted (Issue #11).
- The `dbi_dsn` method of URI::mssql now supports a single argument to
specify the DBI driver for which to return a DSN. Pass in "sybase" or
"ado" (experimental) to get a DSN for either of those drivers,
instead. Based on work by Dan Muey.
--------------
6.44 2016-02-04
- Removed deprecated format_regex attribute from Mojolicious::Routes::Pattern.
- Improved get command not to use the user agent of the application.
- Improved Mojo::JSON performance slightly.
---------------------
Changes in 1.7.2 (May 2015)
- Adapted platform detection for Linux 4.*
Thanks to C. Affolter for reporting the issue (CPAN ticket 104652)
Changes in 1.7.1 (September 2013)
- "make test" now aborts if STDOUT is not a terminal, same as already
for STDIN. Suggested by Alexandr Ciornii via CPAN ticket 82564.
-------------------
0.42 2015-02-14
- improve deprecation docs
0.41 2015-02-14
[DEPRECATIONS]
- revert the decision to not deprecate UMASK=0, re-deprecating GH #5
0.40 2013-11-15
- fix prototype mismatch with chmod() when autodie is used. GH #3 (arrestee)
[DEPRECATIONS]
- undeprecating the default of $UMASK is true
tested against my local chmod and it does obey umask. This will no
longer be removed.
0.39 2013-09-14
- fix tests failing to run as user with override privileges
RT #88543 ( zefram )
- add more tests
0.38 2013-09-09
- fix sticky bit tests for BSD ( Slaven ReziÄ<87> )
- disable windows tests
0.37 2013-09-08
- verify and fix RT #78107 chmod('o+t') should set sticky-bit like unix
chmod o+t
0.36 2013-09-08
- improve Pod using Pod::Weaver, this will allow better linking on web
interfaces
0.35 2013-09-08
- add read/write tests
- remove REVISIONS from pod
- add Test::PodSpelling, and fix spelling errors
0.34 2013-09-08
- fix basic.t to not fail on windows
0.33 2013-09-07
[DEPRECATIONS]
- $UMASK is true, this behavior is surprising if you're used to UNIX chmod
[NEWS]
- new maintainer Caleb Cushing
- migrate to Dist::Zilla
- add tests (note test failures are likely to be a result of new tests,
the code hasn't really changed)
-------------------
1.55 2016-01-11 - Shlomi Fish
- Add the "{ glob => 0 }" option to remove().
- See https://rt.cpan.org/Ticket/Display.html?id=78405
- Thanks to SHARYANTO for the request.
1.54 2016-01-10 - Shlomi Fish
- Fix a typo in the documentation:
- https://rt.cpan.org/Ticket/Display.html?id=72010
- Thanks to DFH, and dsteinbrunner for the report.
- Hopefully fix the GitHub remote to make it more MetaCPAN-friendly.
1.53 2016-01-10 - Shlomi Fish
- Convert the distribution from Module-Install to Dist-Zilla.
- Module-Install is undermaintained and unloved.
- Fix a problem running the tests in parallel.
- https://rt.cpan.org/Public/Bug/Display.html?id=90183
- Thanks to ETHER, RJBS, and KENTNL for the report and the analysis.
- Earlier report by EDENC - thanks as well.
- https://rt.cpan.org/Ticket/Display.html?id=71779
- Removed trailing whitespace and \r-s.
- The \r-s confused Dist-Zilla abstract extraction.
-----------------------
D-Bus 1.11.0 (2015-12-02)
==
The "peppermint deer" release.
Dependencies:
- On non-Windows platforms, dbus now requires an <inttypes.h> that defines
C99 constants such as PRId64 and PRIu64.
Enhancements:
- D-Bus Specification version 0.27
Specify that services should not reply if NO_REPLY_EXPECTED was used
(fd.o #75749, Lars Uebernickel)
- Add a script to do continuous-integration builds, and metadata to run it
on travis-ci.org. To use this, clone the dbus git repository on GitHub
and set it up with travis-ci.org; the only special setting needed is
"only build branches with a .travis.yml". (fd.o #93194, Simon McVittie)
- If dbus-daemon is run with --systemd-activation, do not require
org.freedesktop.systemd1.service to exist (fd.o #93194, Simon McVittie)
Fixes:
- Re-order dbus-daemon startup so that on SELinux systems, the thread
that reads AVC notifications retains the ability to write to the
audit log (fd.o #92832, Laurent Bigonville)
- Print 64-bit integers on non-GNU Unix platforms (fd.o #92043, Natanael Copa)
- When using the Monitoring interface, match messages' destinations
(fd.o #92074, Simon McVittie)
- On Linux with systemd, stop installing a reference to the obsolete
dbus.target, and enable dbus.socket statically (fd.o #78412, #92402;
Simon McVittie)
- On Windows, when including configuration files with <include> or
<includedir>, apply the same relocation as for the Exec paths
in .service files (fd.o #92028, Simon McVittie)
- Add support for backtraces on Windows (fd.o #92721, Ralf Habacker)
- Fix many -Wpointer-sign warnings (fd.o #93069, Ralf Habacker)
Changelog:
Fix:
Fix issue which could lead to the removal of stored passwords under certain circumstances (1242176)
Allows spaces in cookie names (1244505)
Fix WebSockets when used in a Service Worker context (1243942)
Disable opus/vorbis audio with H.264 (1245696)
Require NSS 3.21 (1244069)
Ship the Gecko SDK (1243740)
Fix for graphics startup crash (GNU/Linux) (1222171)
Fix a crash in cache networking (1244076)
---------------------
2015-05-28 wimpunk
* [r183] ., release: Removing unneeded release directory
2015-03-23 wimpunk
* [r182] ddclient: Reverting to the old perl requirements like
suggested in #75
The new requirements were added when adding support for cloudflare. By the
simple fix suggested by Roy Tam we could revert the requirements which make
ddclient back usable on CentOS and RHEL.
* [r181] ddclient: ddclient: made json optional
As suggested in pull 7 on github by @abelbeck and @Bugsbane it is
better to make the
use of JSON related to the use of cloudflare.
* [r180] ddclient: ddclient: reindenting cloudflare
Indenting cloudflare according to the vim tags
* [r179] ddclient: ddclient: correction after duckdns merge
Correcting duckdns configuration after commit r178
* [r178] ddclient: Added simple support for Duckdns www.duckdns.org
Patch provided by gkranis on github.
Merge branch 'gkranis'
2015-03-21 wimpunk
* [r177] README.md: Added duckDNS to the README.md
* [r176] sample-etc_rc.d_init.d_ddclient.ubuntu: update ubuntu init.d script
Merge pull request #9 from gottaloveit/master
* [r175] Changelog, Changelog.old: Renamed Changelog to
Changelog.old
Avoiding conflicts on case insensitive filesystems
* [r174] ddclient: Add missing config line for CloudFlare
Merge pull request #19 from shikasta-net/fixes
* [r173] ddclient: Merge pull request #22 from reddyr/patch-1
loopia.se changed the "Current Address:" output string to "Current IP
Address:"
* [r172] ddclient: fixed missing ) for cloudflare service hash
Merge pull request #16 from adepretis/master
2015-01-20 wimpunk
* [r171] README.md, ddclient, sample-etc_ddclient.conf: Adding
support for google domain
Patch gently provided through github on
https://github.com/wimpunk/ddclient/pull/13
2014-10-08 wimpunk
* [r170] README.md, ddclient, sample-etc_ddclient.conf: Added
support for Cloudflare and multi domain support for namecheap
Pull request #7 from @roberthawdon
See https://github.com/wimpunk/ddclient/pull/7 for more info.
2014-09-09 wimpunk
* [r169] ddclient: Bugfix: allowing long username-password
combinations
Patch provided by @dirdi through github.
2014-08-20 wimpunk
* [r166] ddclient: Fixing bug #72: Account info revealed during
noip update
* [r165] ddclient: Interfaces can be named almost anything on
modern systems.
Patch provided by Stephen Couchman through github
2014-06-30 wimpunk
* [r164] ddclient: Only delete A RR, not any RR for the FQDN
Make the delete command specific to A RRs. This prevents ddclient
from deleting other RRs unrelated to the dynamic address, but on the
same FQDN. This can be specifically a problem with KEY RRs when using
SIG(0) instead of symmetric keys.
Reported by: Wellie Chao
Bug report: http://sourceforge.net/p/ddclient/bugs/71/Fixes#71
2014-06-02 wimpunk
* [r163] README.md, ddclient: Adding support for nsupdate.
Patch provided by Daniel Roethlisberger <daniel@roe.ch> through
github.
2014-04-29 wimpunk
* [r162] README.md, README.ssl, ddclient: Removed revision
information
Revision information isn't very usable when switching to git.
2014-03-20 wimpunk
* [r161] README.md, README.ssl, ddclient,
sample-etc_rc.d_init.d_ddclient.alpine: Added Alpine Linux init
script
Patch send by Tal on github.
* [r160] RELEASENOTE: Corrected release note
2013-12-26 wimpunk
* [r159] release/readme.txt: Commiting updated release information
* [r158] README.md, RELEASENOTE: Committing release notes and
readme information to trunk