## 2.1.2 (06 September 2012)
- Updated to latest jquery-ujs
- required radio bugfix
- Updated to jQuery 1.8.1
## 2.1.1 (18 August 2012)
- Updated to latest jquery-ujs
- ajax:aborted:file bugfixes
## 2.1.0 (16 August 2012)
- Updated to latest jquery-ujs
- jQuery 1.8.0 compatibility
- Updated to jQuery 1.8.0
- Updated to jQuery UI 1.8.23
## 2.0.3 (16 August 2012)
- Updated to latest jquery-ujs
- created `rails:attachBindings` to allow for customization of $.rails
object settings
- created `ajax:send` event to provide access to jqXHR object from ajax
requests
- added support for `data-with-credentials`
Opus is a totally open, royalty-free, highly versatile audio codec.
Opus is unmatched for interactive speech and music transmission
over the Internet, but also intended for storage and streaming
applications. It is standardized by the Internet Engineering Task
Force (IETF) as RFC 6716 which incorporated technology from Skype's
SILK codec and Xiph.Org's CELT codec.
== 1.4.1 Chromeo Fix
* Fix error when sending USR1 signal and no log file is supplied.
== 1.4.0 Chromeo
* kill -USR1 $PID for log rotation [catwell].
* Fix HUP signal being reseted after deamonization [atotic].
* Fix error with nil addresses in Connection#socket_address.
== 1.3.2 Low-bar Squat
* Remove mack and halcyon Rack adapters from automatic detection.
= 1.3.3 / 2012-08-19
* Improved documentation. (burningTyger, Konstantin Haase, Gabriel Andretta,
Anurag Priyam, michelc)
* No longer modify the load path. (Konstantin Haase)
* When keeping a stream open, set up callback/errback correctly to deal with
clients closing the connection. (Konstantin Haase)
* Fix bug where having a query param and a URL param by the same name would
concatinate the two values. (Konstantin Haase)
* Prevent douplicated log output when application is already wrapped in a
`Rack::CommonLogger`. (Konstantin Haase)
* Fix issue where `Rack::Link` and Rails were preventing indefinite streaming.
(Konstantin Haase)
* No longer cause warnings when running Ruby with `-w`. (Konstantin Haase)
* HEAD requests on static files no longer report a Content-Length of 0, but
instead the proper length. (Konstantin Haase)
* When protecting against CSRF attacks, drop the session instead of refusing
the request. (Konstantin Haase)
=== raindrops 0.10.0 - minor feature updates / 2012-06-19 08:30 UTC
Improvements to the Unix domain socket handling and small
bugfixes throughout.
Support for the "unix_diag" facility in Linux 3.3+ is planned
but not yet implemented (patches to raindrops@librelist.org
appreciated)
Brian Corrigan (1):
resolve symlinks to Unix domain sockets
Eric Wong (6):
unix_listener_stats follows and remembers symlinks
middleware/proxy: favor __send__ for method dispatch
unix: show zero-value stats for idle listeners
test_watcher: fix incorrect request/date comparison
watcher: sort index of listener listing
watcher: do not require Rack::Head for HEAD response
See "git log v0.9.0..v0.10.0" for full details
# Liquid Version History
## 2.4.0 / 2012-08-03
* Performance improvements
* Allow filters in `assign`
* Add `modulo` filter
* Ruby 1.8, 1.9, and Rubinius compatibility fixes
* Add support for `quoted['references']` in `tablerow`
* Add support for Enumerable to `tablerow`
* `strip_html` filter removes html comments
0.12.2 (06/24/2012)
* [Vertical Rhythm Module] Removed the $ie-font-ratio constatnt in favor of a
more clear $browser-default-font-size constant.
* [Vertical Rhythm Module] The establish-baseline mixin now styles the <html>
element instead of the <body> element. This makes the vertical rhythm module
work better with rem based measurements.
* [CSS3] Added 3D transform support for Mozillia, IE, and Opera.
* [CSS3] Added -ms support for css3 columns. Add support for the columns
shorthand property.
* [CSS3] Added -ms and -webkit support for CSS Regions. Docs
* [CSS3] Added mixins for column-break properties to the columns module.
* [CSS3] Added a css3/hyphenation module for the word-break and hyphens
properties.
* [CSS3] Made the API more consistent across the different mixins in the
transitions module.
* [CSS3] The text-shadow mixin now supports the spread parameter and it is
used to progressively enhance browsers that support it.
* [CSS3] Add a mixin for the unofficial filter property. Docs
* [CSS3] Removed the -ms prefix for gradients and transforms. Microsoft took
so long to release them, that the spec was approved first.
* [CLI] Added a -I option for adding sass import paths via the CLI during
compilation and project set up.
* [Configuration] For better ruby and rails integration, the add_import_path
command now accepts Sass::Importer objects and Ruby Pathname objects.
* Reverted the hide-text mixin to the -9999 method. If you prefer the Kellum
method then you need to set $hide-text-direction to right in your
stylesheets.
* $legacy-support-for-mozilla can be set to false to disable output for
Firefox 3.6 or earlier.
* Cleaned up the inline-block mixin to have less output and make the
vertical-alignment of that mixin configurable or even turned off. Details
* Output of SVG and original webkit gradients is now omitted when using the
degree-based linear gradient syntax.
* Added a --fonts-dir configuration flag for the compass command line.
* Added tint() and shade() color helper functions, for better
ligthening/darkening of colors.
* Set the standard :css_filename option for sass. This enables relative path
calculations for assets referred to by the stylesheet.
* Remove the Sass middleware if it gets accidently loaded.
0.9.15
~~~~~~
This is the last release to support Python2.4 and 2.5. It brings in a slew of
improvements to test tagging and concurrency, making running large test suites
with partitioned workers more reliable and easier to reproduce exact test
ordering in a given worker. See our sister project ``testrepository`` for a
test runner that uses these features.
Changes
-------
* ``PlaceHolder`` and ``ErrorHolder`` now support being given result details.
(Robert Collins)
* ``ErrorHolder`` is now just a function - all the logic is in ``PlaceHolder``.
(Robert Collins)
* ``TestResult`` and all other ``TestResult``-like objects in testtools
distinguish between global tags and test-local tags, as per the subunit
specification. (Jonathan Lange)
* This is the **last** release of testtools that supports Python 2.4 or 2.5.
These releases are no longer supported by the Python community and do not
receive security updates. If this affects you, you will need to either
stay on this release or perform your own backports.
(Jonathan Lange, Robert Collins)
* ``ThreadsafeForwardingResult`` now forwards global tags as test-local tags,
making reasoning about the correctness of the multiplexed stream simpler.
This preserves the semantic value (what tags apply to a given test) while
consuming less stream size (as no negative-tag statement is needed).
(Robert Collins, Gary Poster, #986434)
Improvements
------------
* API documentation corrections. (Raphaël Badin)
* ``ConcurrentTestSuite`` now takes an optional ``wrap_result`` parameter
that can be used to wrap the ``ThreadsafeForwardingResult``s created by
the suite. (Jonathan Lange)
* ``Tagger`` added. It's a new ``TestResult`` that tags all tests sent to
it with a particular set of tags. (Jonathan Lange)
* ``testresultdecorator`` brought over from subunit. (Jonathan Lange)
* All ``TestResult`` wrappers now correctly forward ``current_tags`` from
their wrapped results, meaning that ``current_tags`` can always be relied
upon to return the currently active tags on a test result.
* ``TestByTestResult``, a ``TestResult`` that calls a method once per test,
added. (Jonathan Lange)
* ``ThreadsafeForwardingResult`` correctly forwards ``tags()`` calls where
only one of ``new_tags`` or ``gone_tags`` are specified.
(Jonathan Lange, #980263)
* ``ThreadsafeForwardingResult`` no longer leaks local tags from one test
into all future tests run. (Jonathan Lange, #985613)
* ``ThreadsafeForwardingResult`` has many, many more tests. (Jonathan Lange)
This Objective Caml library provides easy access to compressed files in
bzip2 format. It provides functions for reading from and writing to compressed
files in these formats.
Introduce USE_GCC_RUNTIME for packages which build shared libraries, but
do not use libtool to do so, and add logic to always define _USE_GCC_SHLIB
on Solaris if either USE_LIBTOOL or USE_GCC_RUNTIME are defined. On Solaris,
a non-GNU linker is always used, so this correctly adds a dependency upon the
gcc runtime for those packages.
== 1.3.0 / 2012-08-19
* Ruby 1.8 and 1.9 support
* Tested, documented, refactored and made +faster+
* Added tons of syntax files
{lib/textpow/syntax}[https://github.com/grosser/textpow/tree/master/lib/textpow/syntax]
* Most nested ("include") syntaxes work out of the box
* Includes all the syntaxes from ultraviolet to improve testability
2012-07-20: Downgraded findlib version requirement to support the Debian
testing branch.
2012-07-16: Replaced String.trim function in myocamlbuild.ml to allow
compiling with OCaml 3.12.1.
2012-07-15: New major release version 2.0.0:
* Upgraded to OCaml 4.00
* Switched to Oasis for packaging
* Switched to OCamlBuild for the build process
* Rewrote README in Markdown
* Added stricter compilation flags
2012-05-19: Fixed cpp warnings and removed superfluous check for dynamic
linking library. The latter improves portability to FreeBSD.
2011-03-10: Added sqlite3_open_v2 functionality.
There are also some changes to the package itself: the upstream distribution
site changed; the maintainer e-mail address as well, and the package now
uses PLIST_VARS.
== 1.5.5 / unreleased
* Features
* Much-improved support for JRuby in 1.9 mode! Yay!
* Bugfixes
* Regression in JRuby Nokogiri add_previous_sibling (1.5.0 -> 1.5.1) #691
(Thanks, John Shahid!)
* JRuby unable to create HTML doc if URL arg provided #674 (Thanks, John
Shahid!)
* JRuby raises NullPointerException when given HTML document is nil or empty
string. #699
* JRuby 1.9 error, uncaught throw 'encoding_found', has been fixed. #673
* Invalid encoding returned in JRuby with US-ASCII. #583
* XmlSaxPushParser raises IndexOutOfBoundsException when over 512 characters
are given. #567, #615
* When xpath evaluation returns empty NodeSet, decorating NodeSet's base
document raises exception. #514
* JRuby raises exception when xpath with namespace is specified. pull
request #681 (Thanks, Piotr Szmielew)
* JRuby renders nodes without their namespace when subclassing Node. #695
* JRuby raises NAMESPACE_ERR (org.w3c.dom.DOMException) while instantiating
RDF::RDFXML::Writer. #683
* JRuby is not able to use namespaces in xpath. #493
kramdown 0.14.0 released
Published on Sunday, 16 September 2012
First of all please note that this release contains a backwards-incompatible
change: The syntax for specifying a code language for a code block or code
span has changed. Instead of using lang='CODELANG' one has to use
.language-CODELANG now.
This change has been introduced to avoid problems because the lang="..."
attribute is used by HTML for other purposes than setting the code
language. Furthermore using .language-CODELANG is also proposed by HTML5 and
it seems to be a good way to achieve the needed functionality.
Other changes in this release include the possibility of setting the code
language on the starting line of a fenced code block and a way of excluding
certain headers from the table of contents by assigning the .no_toc class to
them. Changes
* 2 major changes
o Code language is now specified via .language-CODELANG instead of
lang='CODELANG'
o Implemented support for setting language on fenced code block starting
line (initial patch by Bran)
* 1 minor change
o Headers with an ID can be prevented from showing in the TOC by assigning
the .no_toc class to them (patch by Tim Bates)
* 1 bug fix
o Numeric instead of symbolic HTML entities are now the default fallback
(patch by Gioele Barabucci)
kramdown 0.13.8 released
Published on Friday, 31 August 2012
This release brings two new options (one for adjusting header levels and the
other for enabling/disabling coderay). And the usual bug fixes. Changes
* 2 minor changes
o New option header_offset for offsetting all header levels (initial patch
by Michal Till)
o New option enable_coderay for enabling/disabling coderay (initial patch by
Bran)
* 5 bug fixes
o Reserved HTML characters in abbreviation titles are now correctly output
(patch by Alex Tomlins)
o Similar abbreviations (like CSS and CSS3) are now correctly parsed
o Fixed bug RF#29626: Text of mailto-link was sometimes wrongly obfuscated
(reported by B Wright)
o Fixed known Ruby 1.9.3 problem with RakeTest task (patch by Gioele
Barabucci)
o Fixed double output of ¡Æmarkdown¡Ç attribute on HTML elements in kramdown
converter
* 1 documentation change
o README file is now called README.md and uses kramdown syntax (patch by
Bran)
## 2.13.3 / August 21 2012
This release contains multiple bugfixes and handling of exotic situations. The
`Configuration#capture` method should now work in spite of `ActiveSupport`
shenanigans. Thank you, the community, for all of your contributions:
* Close input streams when sending commands that don't read input. Dylan Smith
(dylanahsmith)
* Listen for method definition on `Kernel` and undefine on `Namespace`. Chris
Griego (cgriego)
* Fixed shell `Thread.abort_on_exception` bug. George Malamidis (nutrun)
* Adding a log method to `Capistrano::Deploy::SCM::None` to maintain
consistency with other SCM classes. Kevin Lawver (kplawver)
* Add deprecation warning if someone uses old `deploy:symlink` syntax on
callbacks. Ken Mazaika (kenmazaika)
* Simplify the `finalize_update` code by respecting the `:shared_children`
variable during removal and recreation of the parent. John Knight
(knightlabs)
1.6.12
===
398b111 (Maint) Extract common elements of selinux tests
c534126 (#10819) Avoid reading from /proc/self/mounts in ruby
b95ea54 fix yum repo path in yaml file
3ad05f1 Remove version test from facter
fce4b01 fix redhat spec release template variable
903b1d9 Stop using sed to generate the preflight erb
601a967 Use git read-only packaging repo for public access
dd3401e Fixup apple packaging
e0454df Remove libexec from file list as its only in 2.x
1e7f5b3 Update debhelper compat to 7, add format
6659e61 Fixup redhat spec erb template for f17
6752530 Shift to using packaging repo
fe311c2 Remove obsolete tasks directory
900895f Group requires together
8c18e33 Move facter redhat spec file to erb
84f8e10 Add debian build artifacts to facter project
d2d3baf Replace rake/gempackagetask with rubygems/gempackagetask
6f58b4e Move tasks out of 'rake' subdirectory
db9d154 Move packaging files to ext, rm conf
c0cbe62 (#15464) Make Facter.version settable via Facter.version=
0b49eae (#15464) Make contributing easy via bundle Gemfile
bf6ee4f Retabbed conf/redhat/facter.spec to lineup tag contents.
defbfb8 (#15291) Add Vendor tag to Facter spec file
17243bb Update facter redhat spec for fedora 17
7ca9122 Update a facter build-requires for f17
d5d2328 (#11640) Added support for new OpenStack MAC addresses
1.6.11
===
f75e46e Add build-requires of ruby-rdoc for manpage generation
e9e084f (Maint) Update CONTRIBUTING.md to match Puppet
841b99a (#15687) Selinux: Test for policyvers before reading it
10aa3aa (#15049) Return only one selinuxfs path as string from mounts
f7f90e4 Update version nos to match Facter development
ab87a2c Modify facter spec to work with Ruby 1.9