BUGS FIXED
* The internal functions mpn_sbpi1_div_qr_sec mpn_sbpi1_div_r_sec could
compute garbage with a low probability. They are now rewritten, and the
test code has been improved.
* A bug in the ia64 implementation of mpn_divrem_2, clobbering some
callee-save registers, has been fixed. This is an internal
function, with the bug manifesting itself as miscomputation in,
e.g., mpn_sqrtrem.
* The documentation now correctly says 'const' for input arguments.
Upstream changes:
0.58 2013-09-13 16:57:41Z (Karen Etheridge)
- remove use of deprecated $Config::Any::YAML::NO_YAML_XS_WARNING in tests
- warnings tests bypassed during installation
- author metadata moved to contributors
0.57 2013-09-07 21:29:05Z (Karen Etheridge)
- spelling fixes (RT#87780, David Steinbrunner)
- removed use of deprecated Class::MOP::load_class
- repository migrated from shadowcat to the github moose organization
Update DEPENDS
Upstream changes:
0.37 2013-09-26 04:08:21Z (Karen Etheridge)
* repository migrated to the github moose organization
* re-release with fixed compile test
0.36 2013-09-10 02:33:28Z (Karen Etheridge)
* Depend on 'aliased'.
* The test suite now uses Test::Fatal instead of Test::Exception. (Karen
Etheridge)
* removed use of deprecated Class::MOP::load_class, calling enum with a list
* converted use of Class::MOP::class_of to Moose::Util::find_meta
* new WARNING section added to pod, regarding future utility of this module
Update DEPENDS
Upstream changes:
1.003001 - 2013-09-10
- abbreviate class names from created by create_class_with_roles if they are
too long for perl to handle (RT#83248)
- prevent destructors from failing in global destruction for certain
combinations of Moo and Moose classes subclassing each other (RT#87810)
- clarify in docs that Sub::Quote's captured variables are copies, not aliases
- fix infinite recursion if an isa check fails due to another isa check
(RT#87575)
- fix Sub::Quote and Sub::Defer under threads (RT#87043)
- better diagnostics when bad parameters given to has
Upstream changes:
1.003002 2013-09-04
- abbreviate generated package names if they are longer than perl can handle
(RT#83248)
- add explicit dependency on the version of Exporter that added 'import'
MessagePack is a binary-based efficient object serialization library. It
enables to exchange structured objects between many languages like JSON. But
unlike JSON, it is very fast and small.}
This package is MessagePack implementation for Ruby.
2013-9-22 meld 1.8.1
====================
Fixes:
* Add AppData file (Kai Willadsen)
* Change order of version control selection for CVS and old SVN (Kai
Willadsen)
* Fix escaped markup in folder comparisons (Kai Willadsen)
Translations:
* Daniel Mustieles (es)
* Enrico Nicoletto (pt_BR)
* Gabor Kelemen (hu)
* Marek Černocký (cs)
* Milo Casagrande (it)
* Piotr Drąg (pl)
This is 'pydoctor', an API documentation generator that works by
static analysis.
It was written primarily to replace epydoc for the purposes of the
Twisted project as epydoc has difficulties with zope.interface. If it
happens to work for your code too, that's a nice bonus at this stage :)
pydoctor puts a fair bit of effort into resolving imports and
computing inheritance hierarchies and, as it aims at documenting
Twisted, knows about zope.interface's declaration API and can present
information about which classes implement which interface, and vice
versa.
pycparser is a parser for the C language, written in pure Python.
It is a module designed to be easily integrated into applications
that need to parse C source code.
Foreign Function Interface for Python calling C code. The aim of
this project is to provide a convenient and reliable way of calling
C code from Python. The interface is based on LuaJIT's FFI and
follows a few principles:
o The goal is to call C code from Python. You should be able to do
so without learning a 3rd language: every alternative requires
you to learn their own language (Cython, SWIG) or API (ctypes).
So we tried to assume that you know Python and C and minimize
the extra bits of API that you need to learn.
o Keep all the Python-related logic in Python so that you don't
need to write much C code.
o Work either at the level of the ABI (Application Binary Interface)
or the API (Application Programming Interface). Usually, C
libraries have a specified C API but often not an ABI.
o We try to be complete. For now some C99 constructs are not
supported, but all C89 should be, including macros.
o We attempt to support both PyPy and CPython, with a reasonable
path for other Python implementations like IronPython and Jython.
o Note that this project is not about embedding executable C code
in Python, unlike Weave. This is about calling existing C libraries
from Python.
Changes in dconf 0.18.0
========================
Translations updates:
Basque
Danish
Japanese
Korean
Portuguese
Punjabi
Changes in dconf 0.17.1
========================
Documentation updates, including better coverage of profiles.
Translations updates:
Assamese
Belarusian
Catalan
Dutch
Estonian
Finnish
French
German
Hungarian
Indonesian
Italian
Korean
Latvian
Polish
Russian
Serbian
Tajik
Thai
Traditional Chinese
Changes in dconf 0.17.0
========================
Fix a semi-serious thread safety issue:
https://bugzilla.gnome.org/show_bug.cgi?id=703073
Some improvements to the editor:
- fix some compile warnings
- use gresource
- cancel searches on escape
Translation updates:
Brazilian Portuguese
Czech
Esperanto
Friulian
Galician
German
Hebrew
Indonesian
Lithuanian
Malayalam
Norwegian bokmål
Slovak
Slovenian
Spanish
Tajik
0.7.3 (2013-07-02):
- Do not report undefined name for generator expression and dict or
set comprehension at class level.
- Deprecate `Checker.pushFunctionScope` and `Checker.pushClassScope`:
use `Checker.pushScope` instead.
- Remove dependency on Unittest2 for the tests.
0.7.2 (2013-04-24):
- Fix computation of `DoctestSyntaxError.lineno` and `col`.
- Add boolean attribute `Checker.withDoctest` to ignore doctests.
- If environment variable `PYFLAKES_NODOCTEST` is set, skip doctests.
- Environment variable `PYFLAKES_BUILTINS` accepts a comma-separated
list of additional built-in names.
0.7.1 (2013-04-23):
- File `bin/pyflakes` was missing in tarball generated with distribute.
- Fix reporting errors in non-ASCII filenames (Python 2.x).
0.7.0 (2013-04-17):
- Add --version and --help options.
- Support `python -m pyflakes` (Python 2.7 and Python 3.x).
- Add attribute `Message.col` to report column offset.
- Do not report redefinition of variable for a variable used in a list
comprehension in a conditional.
- Do not report redefinition of variable for generator expressions and
set or dict comprehensions.
- Do not report undefined name when the code is protected with a
`NameError` exception handler.
- Do not report redefinition of variable when unassigning a module imported
for its side-effect.
- Support special locals like `__tracebackhide__` for py.test.
- Support checking doctests.
- Fix issue with Turkish locale where `'i'.upper() == 'i'` in Python 2.
0.6.1 (2013-01-29):
- Fix detection of variables in augmented assignments.
0.6.0 (2013-01-29):
- Support Python 3 up to 3.3, based on the pyflakes3k project.
- Preserve compatibility with Python 2.5 and all recent versions of Python.
- Support custom reporters in addition to the default Reporter.
- Allow function redefinition for modern property construction via
property.setter/deleter.
- Fix spurious redefinition warnings in conditionals.
- Do not report undefined name in __all__ if import * is used.
- Add WindowsError as a known built-in name on all platforms.
- Support specifying additional built-ins in the `Checker` constructor.
- Don't issue Unused Variable warning when using locals() in current scope.
- Handle problems with the encoding of source files.
- Remove dependency on Twisted for the tests.
- Support `python setup.py test` and `python setup.py develop`.
- Create script using setuptools `entry_points` to support all platforms,
including Windows.
Changelog:
What's new in 1.509.3 (2013/09/09)
Standalone install does not work with Apache + mod_proxy_ajp + SSL (issue 5753)
Reload configuration from disk no longer works after upgrade to Jenkins 1.512. (issue 17977)
Build Now link on MultiJob page doesn't work (issue 16974)
Add descriptions for custom tools (issue 18771)
Lazy loading causes massive delays after a period of inactivity when loading dashboard (issue 16023)
NPE running matrix job (issue 18024)
LastSuccessful and LastStable symlinks are invalid under Windows (issue 17681)
IllegalStateException from MavenProject.getParent can break MavenFingerprinter.recordParents (issue 17775)
NPE (isEmpty) from main.groovy (issue 15309)
DependencyClassLoader#getTransitiveDependencies returns disabled plugins (issue 18654)
parameter description don't use MarkupFormatter (issue 18427)
Incompatible signature change in 1.489: AbstractProject.doBuild (issue 18356)
Display Name is not shown (issue 17715)
Fingerprint throws exceptions on 1.518 (issue 18337)
FingerprintAction deserialization leads to NPE (issue 17125)
update view via REST API doesn't work (issue 17302)
MavenModuleSetBuild.getResult is expensive (issue 18895)
Builds disappear from jobs - hudson.util.IOException2: Invalid directory name - java.text.ParseException: Unparseable date: "39" (issue 15587)
Outdated JRuby libs (issue 14351)
Fingerprint performance (issue 16301)
10,000+ jobs tied to a label make Node index page unusably unresponsive (issue 18660)
"Delete Project" link fails with 403 Exception: No valid crumb was included in the request (issue 18032)
Manually uploaded plugins are incorrectly unpacked (issue 4543)
Decorated Launcher Does Not Maintain "isUnix" for RemoteLauncher (issue 18368)
Test harness packs copies of Maven into plugin archive (issue 18918)
All Maven 2 builds fail with java.lang.NoSuchMethodError DigestUtils.md5Hex (issue 18178)
Changelog:
FIXED
Security fixes can be found here
Fixed in Firefox ESR 17.0.9
MFSA 2013-91 User-defined properties on DOM proxies get the wrong "this" object
MFSA 2013-90 Memory corruption involving scrolling
MFSA 2013-89 Buffer overflow with multi-column, lists, and floats
MFSA 2013-88 compartment mismatch re-attaching XBL-backed nodes
MFSA 2013-83 Mozilla Updater does not lock MAR file after signature verification
MFSA 2013-82 Calling scope for new Javascript objects can lead to memory corruption
MFSA 2013-79 Use-after-free in Animation Manager during stylesheet cloning
MFSA 2013-76 Miscellaneous memory safety hazards (rv:24.0 / rv:17.0.9)
MFSA 2013-65 Buffer underflow when generating CRMF requests
Changelog:
2013-07-10 v3.5.2 allow ENV vars to be set from repo options, for use in
triggers and hooks
bug-fix: the new set-default-roles feature was being
invoked on every run of "perms" and overriding it!
SCons implements special handling for a number of platforms, notably
older UNIX variants. Unfortunately it does not carry this handling
through to the rest of its infrastructure, and so these platforms are
missing fundamental features such as shared library support.
Rather than treating it as a special case and adding "or sunos" to
every single platform check, leave it to be detected as the default
'posix' platform. The only loss is that the sunos platform file is
no longer loaded, however there is little in there of value to us.
This has the added benefit of fixing the assumption SCons makes that
all SunOS platforms must use the Sun Studio tools, and ensures that we
are able to use GCC too.
* native modules may not be linked against libsvn_swig_perl-1, because module
Makefile may be created before creating the library, and not found.
* inversely, libsvn_swig_perl-1 of previous version may found, but cannot linked
because of buildlink sandbox.
Bump PKGREVISION (for safe side with update of patch for Makefile.PL).
* Update comment, `Second hunk' had been removed.
* fixes patch migration at updated to 1.8.0, original part had been changed,
but still using old part + additional part.