Release 1.1.0
This commit is contained in:
parent
3b633ff41c
commit
dccf7a7e06
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -5,6 +5,13 @@ Dates are in the format `yyyy-mm-dd`.
|
||||||
|
|
||||||
## 1.1.0 - Unreleased
|
## 1.1.0 - Unreleased
|
||||||
|
|
||||||
|
### Better support for unquoted HTML attribute values
|
||||||
|
|
||||||
|
Oga can now parse HTML such as `<a href=foo("bar","baz")></a>` and basically any
|
||||||
|
other kind of value as long as it does not contain a `>` or whitespace.
|
||||||
|
|
||||||
|
See commit 3b633ff41c48c44893e42d3ba29ef7a5e3d70617 for more information.
|
||||||
|
|
||||||
### Support for replacing of DOM nodes
|
### Support for replacing of DOM nodes
|
||||||
|
|
||||||
The newly added method `Oga::XML::Node#replace` can be used to replace an
|
The newly added method `Oga::XML::Node#replace` can be used to replace an
|
||||||
|
@ -25,6 +32,12 @@ Thanks to Tero Tasanen for adding this.
|
||||||
See commit 0b4791b277abf492ae0feb1c467dfc03aef4f2ec and
|
See commit 0b4791b277abf492ae0feb1c467dfc03aef4f2ec and
|
||||||
<https://github.com/YorickPeterse/oga/pull/116> for more information.
|
<https://github.com/YorickPeterse/oga/pull/116> for more information.
|
||||||
|
|
||||||
|
### Encoding quotes in attribute values
|
||||||
|
|
||||||
|
When serializing elements back to XML Oga now properly encodes single/double
|
||||||
|
quotes in attribute values. See commit 074b53c18c85eaeba09557f6b0c5a6792f522c3e
|
||||||
|
for more information.
|
||||||
|
|
||||||
## 1.0.3 - 2015-06-16
|
## 1.0.3 - 2015-06-16
|
||||||
|
|
||||||
### Strict XML parsing support
|
### Strict XML parsing support
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
979cabb88f8379103aa3dffc02a6cd5803a47a6ac5b122320324573907e81130bf56114d91a736fc1b0d11656d9952689db8ec2e3a7baf39ece20f28c1c7cfc3
|
|
@ -0,0 +1 @@
|
||||||
|
30cd5f91b3db3b0638818136327077fed8a493918eba2438d0489489a17b1f58bd568f54c888e447a64b5a0de7ace706de08947fac817ac053ce6bb2f2096964
|
|
@ -1,3 +1,3 @@
|
||||||
module Oga
|
module Oga
|
||||||
VERSION = '1.0.3'
|
VERSION = '1.1.0'
|
||||||
end # Oga
|
end # Oga
|
||||||
|
|
Loading…
Reference in New Issue