Skip to content

Commit 489f9e1

Browse files
committed
version bump to 0.4.0
1 parent c1fac46 commit 489f9e1

File tree

3 files changed

+35
-5
lines changed

3 files changed

+35
-5
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# hiqdev/yii2-hiart
22

3+
## [0.4.0] - 2019-02-20
4+
5+
- Fixed Debug panel to follow Yii API changes ([@SilverFire])
6+
- Trigger `EVENT_AFTER_FIND` for joined relations after poppulation for consistency reasons ([@SilverFire])
7+
- Allowed array `Query::$from` in REST QueryBuilder ([@hiqsol], [[email protected]])
8+
- Other minor improvements ([@SilverFire], [@hiqsol])
9+
310
## [0.3.0] - 2018-06-27
411

512
- Fixed bugs ([@hiqsol], [@tafid], [@SilverFire], [@BladeRoot])
@@ -91,7 +98,7 @@
9198
[[email protected]]: https://github.com/tafid
9299
[@BladeRoot]: https://github.com/BladeRoot
93100
[[email protected]]: https://github.com/BladeRoot
94-
[Under development]: https://github.com/hiqdev/yii2-hiart/compare/0.2.0...HEAD
101+
[Under development]: https://github.com/hiqdev/yii2-hiart/compare/0.3.0...HEAD
95102
[0.0.4]: https://github.com/hiqdev/yii2-hiart/compare/0.0.3...0.0.4
96103
[0.0.3]: https://github.com/hiqdev/yii2-hiart/compare/0.0.2...0.0.3
97104
[0.0.2]: https://github.com/hiqdev/yii2-hiart/compare/0.0.1...0.0.2
@@ -101,3 +108,4 @@
101108
[0.1.2]: https://github.com/hiqdev/yii2-hiart/compare/0.1.1...0.1.2
102109
[0.2.0]: https://github.com/hiqdev/yii2-hiart/compare/0.1.2...0.2.0
103110
[0.3.0]: https://github.com/hiqdev/yii2-hiart/compare/0.2.0...0.3.0
111+
[0.4.0]: https://github.com/hiqdev/yii2-hiart/compare/0.3.0...0.4.0

history.md

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# hiqdev/yii2-hiart
22

3+
## [0.4.0] - 2019-02-20
4+
5+
- Fixed Debug panel to follow Yii API changes
6+
- [3bca836] 2019-02-20 Add CSRF token to "Run query" link, enhanced JSON formatting [@SilverFire]
7+
- Trigger `EVENT_AFTER_FIND` for joined relations after poppulation for consistency reasons
8+
- [8b81afe] 2019-02-15 Trigger EVENT_AFTER_FIND for joined relations for consistency [@SilverFire]
9+
- Allowed array `Query::$from` in REST QueryBuilder
10+
- [1f887c5] 2018-07-05 Allowed array `Query::$from` in REST QueryBuilder [@hiqsol]
11+
- [ddbc454] 2018-07-05 Query from accepte Array [[email protected]]
12+
- Other minor improvements
13+
- [c1fac46] 2019-02-20 csfixed [@SilverFire]
14+
- [93cf023] 2019-02-20 hideved [@SilverFire]
15+
- [2b27164] 2019-01-29 Reduce notices [@SilverFire]
16+
- [1c46fad] 2018-07-04 fixed #19 PHP notice only variables should be passed by reference [@hiqsol]
17+
318
## [0.3.0] - 2018-06-27
419

520
- Fixed bugs
@@ -254,7 +269,6 @@
254269
- [b69881a] 2016-01-14 HiArtException - changed user-friendly message [@SilverFire]
255270
- [f9cb92b] 2016-01-14 Added Collection::checkConsistency property [@SilverFire]
256271
- [3b7614f] 2016-01-13 PHPDoc improved [@SilverFire]
257-
- [1d1d191] 2016-01-13 Merge branch 'bscheshirwork-master' [@SilverFire]
258272
- [19aea44] 2016-01-13 The errorChecker should be set first [[email protected]]
259273
- [747d1a7] 2016-01-11 PHPDocs improved [@SilverFire]
260274
- [cb1f5be] 2016-01-11 STARTED REDOING with Guzzle [@hiqsol]
@@ -394,7 +408,6 @@
394408
[b69881a]: https://github.com/hiqdev/yii2-hiart/commit/b69881a
395409
[f9cb92b]: https://github.com/hiqdev/yii2-hiart/commit/f9cb92b
396410
[3b7614f]: https://github.com/hiqdev/yii2-hiart/commit/3b7614f
397-
[1d1d191]: https://github.com/hiqdev/yii2-hiart/commit/1d1d191
398411
[19aea44]: https://github.com/hiqdev/yii2-hiart/commit/19aea44
399412
[747d1a7]: https://github.com/hiqdev/yii2-hiart/commit/747d1a7
400413
[cb1f5be]: https://github.com/hiqdev/yii2-hiart/commit/cb1f5be
@@ -556,7 +569,7 @@
556569
[d3756e4]: https://github.com/hiqdev/yii2-hiart/commit/d3756e4
557570
[ea50c04]: https://github.com/hiqdev/yii2-hiart/commit/ea50c04
558571
[8047d37]: https://github.com/hiqdev/yii2-hiart/commit/8047d37
559-
[Under development]: https://github.com/hiqdev/yii2-hiart/compare/0.2.0...HEAD
572+
[Under development]: https://github.com/hiqdev/yii2-hiart/compare/0.3.0...HEAD
560573
[0.0.4]: https://github.com/hiqdev/yii2-hiart/compare/0.0.3...0.0.4
561574
[0.0.3]: https://github.com/hiqdev/yii2-hiart/compare/0.0.2...0.0.3
562575
[0.0.2]: https://github.com/hiqdev/yii2-hiart/compare/0.0.1...0.0.2
@@ -651,3 +664,12 @@
651664
[59ee8c2]: https://github.com/hiqdev/yii2-hiart/commit/59ee8c2
652665
[2518063]: https://github.com/hiqdev/yii2-hiart/commit/2518063
653666
[0.3.0]: https://github.com/hiqdev/yii2-hiart/compare/0.2.0...0.3.0
667+
[c1fac46]: https://github.com/hiqdev/yii2-hiart/commit/c1fac46
668+
[93cf023]: https://github.com/hiqdev/yii2-hiart/commit/93cf023
669+
[3bca836]: https://github.com/hiqdev/yii2-hiart/commit/3bca836
670+
[8b81afe]: https://github.com/hiqdev/yii2-hiart/commit/8b81afe
671+
[2b27164]: https://github.com/hiqdev/yii2-hiart/commit/2b27164
672+
[1f887c5]: https://github.com/hiqdev/yii2-hiart/commit/1f887c5
673+
[ddbc454]: https://github.com/hiqdev/yii2-hiart/commit/ddbc454
674+
[1c46fad]: https://github.com/hiqdev/yii2-hiart/commit/1c46fad
675+
[0.4.0]: https://github.com/hiqdev/yii2-hiart/compare/0.3.0...0.4.0

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
yii2-hiart 0.3.0 2018-06-27 18:55:23 +0300 98384bd6736285d0af52effa87b60690d606099a
1+
yii2-hiart 0.4.0 2019-02-20 15:10:40 +0200 c1fac46d31063c966307d2d6b39de7eba0af52af

0 commit comments

Comments
 (0)