File: ChangeLog.md

package info (click to toggle)
ruby-nokogiri-diff 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: ruby: 272; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,095 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
### 0.3.0 / 2024-01-24

* Require [ruby](http://www.ruby-lang.org/) >= 2.0.0.
* Require [tdiff](http://github.com/postmodern/tdiff) ~> 0.4.
* Switched to using `require_relative` to improve load-times.
* Added `# frozen_string_literal: true` to all files.

### 0.2.0 / 2013-04-22

* {Nokogiri::XML::Node#tdiff_each_child} now sorts attributes by name, so that
  changes in attribute order is ignored. (thanks @bhollis)
* {Nokogiri::XML::Node#tdiff_equal} now supports `Nokogiri::XML::Comment`
  and `Nokogiri::XML::ProcessingInstruction` objects. (thanks @bhollis)

### 0.1.2 / 2012-05-28

* Require tdiff ~> 0.3, >= 0.3.2.
* Added {Nokogiri::Diff::VERSION}.
* Replaced ore-tasks with
  [rubygems-tasks](https://github.com/postmodern/rubygems-tasks#readme).

### 0.1.1 / 2012-05-09

* Require nokogiri ~> 1.5.

### 0.1.0 / 2010-11-29

* Initial release:
  * Performs a breadth-first comparison between children nodes.
  * Compares XML/HTML Elements, Attributes, Text nodes and DTD nodes.
  * Allows calculating differences between documents, or just enumerating
    the added or removed nodes.