File: Changelog.md

package info (click to toggle)
ruby-morpher 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 1,444; makefile: 4
file content (73 lines) | stat: -rw-r--r-- 1,974 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# v0.4.1 2021-06-23

* Add various builder methods `Morpher::Transform#{array,seq,maybe}`
* Add Morpher::Transform::Maybe

# v0.4.0 2021-03-07

* Change semantics of optional hash keys to aways fill `nil` valued keys.

# v0.3.0 2021-02-22

* Re-implement as extraction from Morpher::Transform

# v0.2.3 2014-04-22

[Compare v0.2.2..v0.2.3](https://github.com/mbj/morpher/compare/v0.2.2...v0.2.3)

Changes:

* Dependency updates.

# v0.2.2 2014-04-10

[Compare v0.2.1..v0.2.2](https://github.com/mbj/morpher/compare/v0.2.1...v0.2.2)

Changes:

* Add Morpher.sexp returning a morpher AST node via evaluating a block with sexp node API available.
* Add Morpher.build returning a morpher evaluator via evaluating a block with sexp node API available.
* Fix evaluation errors on Transformer::Map node.
* Ensure mutant coverage scores on CI

# v0.2.1 2014-03-29

[Compare v0.2.0..v0.2.1](https://github.com/mbj/morpher/compare/v0.2.0...v0.2.1)

Changes:

* Fix warnings on multiple method definition

# v0.2.0 2014-03-09

[Compare v0.1.0..v0.2.0](https://github.com/mbj/morpher/compare/v0.1.0...v0.2.0)

Changes:

* Add param node s(:param, Model, :some, :attributes) to build Transformer::Domain::Param

Breaking-Changes:

* Rename {load,dump}_attributes_hash to {load,dump}_attribute_hash
* Require {load,dump}_attribute_hash param to be an instance of Transformer::Domain::Param

# v0.1.0 2014-03-08

[Compare v0.0.1..v0.1.0](https://github.com/mbj/morpher/compare/v0.0.1...v0.1.0)

Breaking-Changes:

* Renamed `Morpher.evaluator(node)` to `Morpher.compile(node)`
* Rename node: `symbolize_key` to `key_symbolize`
* Rename node: `anima_load` to `load_attributes_hash`
* Rename node: `anima_dump` to `dump_attributes_hash`
* The ability to rescue/report anima specific exceptions has been dropped

Changes:

* Add {dump,load}_{attribute_accessors,instance_variables} as additional strategies to
  transform from / to domain objects.

# v0.0.1 2014-03-02

First public release.