|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -## 0.2.4 (2020-09-18) |
| 3 | +## 0.5.4 (2020-10-09) |
4 | 4 |
|
5 |
| -### Code Refactoring |
6 |
| - |
7 |
| -- rename `RsqlConfig.getFieldTypeHandlers` to `RsqlConfig.addFieldTypeHandlers` ([7bd52a4c](https://github.com/ymind/rsql-querydsl/commit/7bd52a4c4f5314ec5ef80ccc038702ffbb229363)) |
8 |
| -- remove name field from RsqlOperator ([0d8f36ae](https://github.com/ymind/rsql-querydsl/commit/0d8f36ae77a1e185f6297123984e9fc8a3fa6582)) |
9 |
| -- typo fix and code cleanup ([126d59e7](https://github.com/ymind/rsql-querydsl/commit/126d59e7dabb1ff32b08e1bfa31a979f17fe8612)) |
10 |
| -- split SortFieldTypeHandler ([2f64a51c](https://github.com/ymind/rsql-querydsl/commit/2f64a51c0c5646f311f6a137d3bc613bc4caf1f8)) |
11 |
| -- optimize type handlers ([c01d6e4e](https://github.com/ymind/rsql-querydsl/commit/c01d6e4e1b3a21ab3030d63b9b0955b76ddd10ea)) |
12 |
| -- make EntityManager none null ([7ea867a4](https://github.com/ymind/rsql-querydsl/commit/7ea867a4a49327f7341e19ace69742a9aec45175)) |
13 |
| -- make regexOptions private ([762b8339](https://github.com/ymind/rsql-querydsl/commit/762b83399b40e30ba8b8c7b3aaebd9f6d023347c)) |
14 |
| - |
15 |
| - |
16 |
| -### Features |
17 |
| - |
18 |
| -- support custom entity field type handler ([ce1ee662](https://github.com/ymind/rsql-querydsl/commit/ce1ee662c714e068af3b8a52a0f0e4c731d46fd6)) |
19 |
| - |
20 |
| - |
21 |
| -### Performance Improvements |
22 |
| - |
23 |
| -- **util**: enhance DateUtil ([c3f44b19](https://github.com/ymind/rsql-querydsl/commit/c3f44b1979daccce6acc057dbe3b283122ed454c)) |
| 5 | +### BREAKING CHANGES |
24 | 6 |
|
| 7 | +- rename `selectFrom` to `from` ([18be5930](https://github.com/ymind/rsql-querydsl/commit/18be59302ca8d89b45af18de94ffb31b7cb60454)) |
| 8 | +- rename `size` to `limit` ([7cfff03c](https://github.com/ymind/rsql-querydsl/commit/7cfff03c544e283ff95fc9f1c0901433d79e2fd7)) |
| 9 | +- remove `page-string` and `limit-string` support ([289e780a](https://github.com/ymind/rsql-querydsl/commit/289e780a2ed0e24a8c13e9ecda680599703d887a)) |
25 | 10 |
|
26 |
| -### Styles |
27 | 11 |
|
28 |
| -- code cleanup ([2d168474](https://github.com/ymind/rsql-querydsl/commit/2d168474ed319c04de6831c43a131112e87c3448)) |
| 12 | +### Bug Fixes |
29 | 13 |
|
| 14 | +- **common**: fix `FieldNotSupportedException` arguments type ([1d8497aa](https://github.com/ymind/rsql-querydsl/commit/1d8497aa71e1a636cf4e4839af1f6557ae85e458)) |
| 15 | +- QuerydslRsql.buildPredicate() return null when globalPredicate is null ([ee0c1191](https://github.com/ymind/rsql-querydsl/commit/ee0c11913899e95c1140859831a84e354aa5f84a)) |
30 | 16 |
|
31 |
| -### Chores |
32 | 17 |
|
33 |
| -- **deps**: upgrade org.jlleitschuh.gradle.ktlint version from 9.3.0 to 9.4.0 ([e7d7f497](https://github.com/ymind/rsql-querydsl/commit/e7d7f497b1e8a0e0283f1717343787f62351690a)) |
34 |
| -- **deps**: upgrade spring version from 2.3.2.RELEASE to 2.3.3.RELEASE ([5deb9de1](https://github.com/ymind/rsql-querydsl/commit/5deb9de17eb5d3896d306c942c1f9982aa12d08d)) |
35 |
| -- **deps**: upgrade team.yi.semantic-gitlog version from 0.5.12 to 0.5.13 ([1b0bb49c](https://github.com/ymind/rsql-querydsl/commit/1b0bb49c02428a1850f7edf5ffa6525d8ab4cf24)) |
36 |
| -- **deps**: upgrade spring version from 2.3.3.RELEASE to 2.3.4.RELEASE ([f437a348](https://github.com/ymind/rsql-querydsl/commit/f437a34861970107a3ef251f465e774bb012bf00)) |
| 18 | +### Features |
37 | 19 |
|
| 20 | +- support custom entity field type handler ([063203a0](https://github.com/ymind/rsql-querydsl/commit/063203a00d26c694d1e20de24a36e5cddbf49b4e)) |
38 | 21 |
|
39 |
| -### Build System |
40 | 22 |
|
41 |
| -- **gradle**: upgrade gradle version from 6.5.1 to 6.6.1 ([71eccb2f](https://github.com/ymind/rsql-querydsl/commit/71eccb2f3f91822bb1f853a690ef6f82717b700a)) |
42 |
| -- **kotlin**: upgrade kotlin version from 1.3.72 to 1.4.0 ([9b3d1692](https://github.com/ymind/rsql-querydsl/commit/9b3d1692fecdfeaae041ae7a3cc1c1014c6aa947)) |
43 |
| -- **kotlin**: upgrade kotlin version from 1.4.0 to 1.4.10 ([8efdbb95](https://github.com/ymind/rsql-querydsl/commit/8efdbb951464e668074d36d872242ef2620c481a)) |
| 23 | +### Performance Improvements |
44 | 24 |
|
| 25 | +- **util**: enhance DateUtil ([e59fcc40](https://github.com/ymind/rsql-querydsl/commit/e59fcc40afe374a7b368fbe8c2f706fd30581016)) |
45 | 26 |
|
46 |
| -## 0.1.10 (2020-08-18) |
47 | 27 |
|
48 |
| -### Bug Fixes |
| 28 | +### Code Refactoring |
49 | 29 |
|
50 |
| -- **common**: fix `FieldNotSupportedException` arguments type ([79305a96](https://github.com/ymind/rsql-querydsl/commit/79305a960f69425cad91dc583ea257fd63b1cfae)) |
| 30 | +- rename `RsqlConfig.getFieldTypeHandlers` to `RsqlConfig.addFieldTypeHandlers` ([e52044dc](https://github.com/ymind/rsql-querydsl/commit/e52044dc7025fc502ebee30787981d88d4300a62)) |
| 31 | +- make regexOptions private ([f254b81a](https://github.com/ymind/rsql-querydsl/commit/f254b81a1344000f6f49760b5b27507c6d0d54d4)) |
| 32 | +- make EntityManager none null ([882d5ade](https://github.com/ymind/rsql-querydsl/commit/882d5adeacbb72be7377a959309c124f249c98c6)) |
| 33 | +- optimize type handlers ([758a5abc](https://github.com/ymind/rsql-querydsl/commit/758a5abcc7bd98d8868a1a5e350dac60f7a78aad)) |
| 34 | +- remove name field from RsqlOperator ([64ab32bc](https://github.com/ymind/rsql-querydsl/commit/64ab32bcdbbd5723387b0662dcb5c04d53066c08)) |
| 35 | +- typo fix and code cleanup ([0e5e4d09](https://github.com/ymind/rsql-querydsl/commit/0e5e4d092eab0de781ded2aefc32e9171676a081)) |
| 36 | +- split SortFieldTypeHandler ([09b9a36c](https://github.com/ymind/rsql-querydsl/commit/09b9a36c1e4d339ad06a769d487b42e2c039913e)) |
51 | 37 |
|
52 | 38 |
|
53 |
| -### Styles |
| 39 | +### Chores |
54 | 40 |
|
55 |
| -- add ktlint plugin and fix code styles ([86cbdc7f](https://github.com/ymind/rsql-querydsl/commit/86cbdc7fff7d12af278b569fed3d1140aa7a535c)) |
| 41 | +- **bumped**: remove versions plugins ([c9e4c0a7](https://github.com/ymind/rsql-querydsl/commit/c9e4c0a70a6971ae445f7a70bfaff8df4755f029)) |
| 42 | +- **deps**: bumped spring boot from 2.3.0.RELEASE to 2.3.1.RELEASE ([4560b4be](https://github.com/ymind/rsql-querydsl/commit/4560b4be13fbb1eb221ba06e4b721c977ddaf399)) |
| 43 | +- **deps**: bumped spring boot from 2.3.1.RELEASE to 2.3.2.RELEASE ([6acd26b5](https://github.com/ymind/rsql-querydsl/commit/6acd26b59dc7010e26a5a040be0e325854586782)) |
| 44 | +- **deps**: bumped jackson-module-kotlin from 2.11.1 to 2.11.2 ([9028d3cc](https://github.com/ymind/rsql-querydsl/commit/9028d3cc13e9dea97fc5e9d76b553f1c16f51bcf)) |
| 45 | +- **deps**: bumped commons-lang3 from 3.10 to 3.11 ([116b18ec](https://github.com/ymind/rsql-querydsl/commit/116b18ec1f3ef310d18f494b688726f9a01fac92)) |
| 46 | +- **deps**: bumped spring version from 2.3.2.RELEASE to 2.3.3.RELEASE ([92b861d3](https://github.com/ymind/rsql-querydsl/commit/92b861d3f6408da16ce4dd5c7ad17ef36799bfe0)) |
| 47 | +- **deps**: bumped spring version from 2.3.3.RELEASE to 2.3.4.RELEASE ([5fa1ab45](https://github.com/ymind/rsql-querydsl/commit/5fa1ab455a4041a58ee696ce2ea1a3f325b4a9ee)) |
| 48 | +- **gradle**: bumped team.yi.semantic-gitlog from 0.5.3 to 0.5.12 ([16361c76](https://github.com/ymind/rsql-querydsl/commit/16361c76a1f47b4a6c0bbe39eaf7163a2e02387b)) |
| 49 | +- **gradle**: bumped team.yi.semantic-gitlog version from 0.5.12 to 0.5.13 ([8be2eb39](https://github.com/ymind/rsql-querydsl/commit/8be2eb394c726a643847a30c8534a8ea64a4fa54)) |
| 50 | +- **gradle**: bumped org.jlleitschuh.gradle.ktlint version from 9.3.0 to 9.4.0 ([dc3019d4](https://github.com/ymind/rsql-querydsl/commit/dc3019d4f07c5fc8ef6ac948d80ca8caad355fd1)) |
56 | 51 |
|
57 | 52 |
|
58 | 53 | ### Tests
|
59 | 54 |
|
60 |
| -- print sql and parameters ([2e536968](https://github.com/ymind/rsql-querydsl/commit/2e536968f1cddbca14ecca7561d15da4568872be)) |
61 |
| - |
62 |
| - |
63 |
| -## 0.1.9 (2020-08-05) |
64 |
| - |
65 |
| -### Bug Fixes |
66 |
| - |
67 |
| -- QuerydslRsql.buildPredicate() return null when globalPredicate is null ([a335828e](https://github.com/ymind/rsql-querydsl/commit/a335828e0f1c2b9dfaa4101dc03a96ff10aa92d4)) |
68 |
| - |
69 |
| - |
70 |
| -### Documentation |
71 |
| - |
72 |
| -- **changelog**: update changelog templates ([2763ff33](https://github.com/ymind/rsql-querydsl/commit/2763ff33d0c2a5724a76d2790fcbc026526c62bd)) |
| 55 | +- print sql and parameters ([0ede76b7](https://github.com/ymind/rsql-querydsl/commit/0ede76b797b702be338c2bdee41e6f0eeddf2226)) |
73 | 56 |
|
74 | 57 |
|
75 | 58 | ### Styles
|
76 | 59 |
|
77 |
| -- adjust code styles ([22bd64c3](https://github.com/ymind/rsql-querydsl/commit/22bd64c3221f82cdbb96aaf3291bc33714595fa5)) |
78 |
| - |
| 60 | +- add ktlint plugin and fix code styles ([21f6a89b](https://github.com/ymind/rsql-querydsl/commit/21f6a89bd7f557217c0da854b4f7b6c37ef9058f)) |
| 61 | +- adjust code styles ([1cae9169](https://github.com/ymind/rsql-querydsl/commit/1cae9169dfec2cba57c46d795572d952954e2cdf)) |
| 62 | +- code cleanup ([c2fde624](https://github.com/ymind/rsql-querydsl/commit/c2fde624c007ebcec7e428dec27cd467597070a3)) |
79 | 63 |
|
80 |
| -### Chores |
81 |
| - |
82 |
| -- **deps**: bump team.yi.semantic-gitlog from 0.5.3 to 0.5.12 ([36bf5e01](https://github.com/ymind/rsql-querydsl/commit/36bf5e01191d3691c0c73c4fc0bdfea6144469e8)) |
83 |
| -- **deps**: remove versions plugins ([ad710241](https://github.com/ymind/rsql-querydsl/commit/ad7102414c2e1a845b9dda95d457c0eb7668aa70)) |
84 |
| -- **deps**: bump spring boot from 2.3.1.RELEASE to 2.3.2.RELEASE ([6a36bc01](https://github.com/ymind/rsql-querydsl/commit/6a36bc01b6dfb7ce9333ee756507c2c044ad17c8)) |
85 |
| -- **deps**: bump jackson-module-kotlin from 2.11.1 to 2.11.2 ([c077a25d](https://github.com/ymind/rsql-querydsl/commit/c077a25d2d035ec4156f0d372e2533cc96c65df4)) |
86 |
| -- **deps**: bump commons-lang3 from 3.10 to 3.11 ([f1548e01](https://github.com/ymind/rsql-querydsl/commit/f1548e01b77ff988cc0a8f76851afa65e50a71aa)) |
87 |
| - |
88 |
| - |
89 |
| -### Continuous Integration |
90 | 64 |
|
91 |
| -- **github**: adjust ci config ([b056c2e0](https://github.com/ymind/rsql-querydsl/commit/b056c2e0e60da73d749e03f82043173915ee91cf)) |
92 |
| - |
93 |
| - |
94 |
| -## 0.1.2 (2020-08-02) |
95 |
| - |
96 |
| -### Chores |
| 65 | +### Documentation |
97 | 66 |
|
98 |
| -- **deps**: update versions ([c20d70c8](https://github.com/ymind/rsql-querydsl/commit/c20d70c8447c13c055f80bdb950816c533855cfc)) |
| 67 | +- **changelog**: adjust changelog templates ([e2a191d6](https://github.com/ymind/rsql-querydsl/commit/e2a191d66ae8a183f9eb193a98d0f0afcb92eb44)) |
99 | 68 |
|
100 | 69 |
|
101 | 70 | ### Build System
|
102 | 71 |
|
103 |
| -- **gradle**: upgrade gradle wrapper to 6.5.1 ([e7cb6c17](https://github.com/ymind/rsql-querydsl/commit/e7cb6c17d89e77067610fbe8216d21b886b99928)) |
| 72 | +- **chore**: bumped querydsl version from 4.3.1 to 4.4.0 ([7bb0af4f](https://github.com/ymind/rsql-querydsl/commit/7bb0af4fca5c10322d86510daa2fa55a87fd84b8)) |
| 73 | +- **chore**: bumped jackson-module-kotlin version from 2.11.2 to 2.11.3 ([1972f7b3](https://github.com/ymind/rsql-querydsl/commit/1972f7b3b071867ff8eb24a9029fb704ed509a20)) |
| 74 | +- **gradle**: bumped gradle wrapper version from 6.4.1 to 6.5.1 ([da2ca454](https://github.com/ymind/rsql-querydsl/commit/da2ca45418337e1329e8c6e5a6c4b82856eba68a)) |
| 75 | +- **gradle**: bumped gradle wrapper version from 6.5.1 to 6.6.1 ([19ed075c](https://github.com/ymind/rsql-querydsl/commit/19ed075c519e9ce957892ddde5ebc690b8bec3f5)) |
| 76 | +- **gradle**: bumped semantic-gitlog version from 0.5.13 to 0.5.17 ([a666c175](https://github.com/ymind/rsql-querydsl/commit/a666c175d2eb26151e5fdc6d3011ec9788ba241c)) |
| 77 | +- **gradle**: bumped ktlint version from 9.4.0 to 9.4.1 ([136c0925](https://github.com/ymind/rsql-querydsl/commit/136c092548a2a6def6304de741f28937d043c9e2)) |
| 78 | +- **kotlin**: bumped kotlin version from 1.3.72 to 1.4.0 ([727330e9](https://github.com/ymind/rsql-querydsl/commit/727330e9964bf1efb96f35219ef6012246997f91)) |
| 79 | +- **kotlin**: bumped kotlin version from 1.4.0 to 1.4.10 ([0aeb5d0c](https://github.com/ymind/rsql-querydsl/commit/0aeb5d0c970ba9b3924d8467904bcb897d5a5877)) |
104 | 80 |
|
105 | 81 |
|
106 | 82 | ### Continuous Integration
|
107 | 83 |
|
108 |
| -- **github**: disable push-back ([72bab6a1](https://github.com/ymind/rsql-querydsl/commit/72bab6a185119ea11cc8c508f0d20b99d4a2d6a5)) |
| 84 | +- **github**: disable push-back ([552c8f10](https://github.com/ymind/rsql-querydsl/commit/552c8f10cd58c4e3a00e3f30be3ea2d29ac4de4b)) |
| 85 | +- **github**: adjust ci config ([0f06f6cc](https://github.com/ymind/rsql-querydsl/commit/0f06f6cc56b273b0d07ae89510f4f175e85a2582)) |
| 86 | +- **github**: adjust project version update command ([4c7f68e9](https://github.com/ymind/rsql-querydsl/commit/4c7f68e97fcded9d17ccb732f556a29309f66b56)) |
109 | 87 |
|
110 | 88 |
|
111 | 89 | ## 0.1.0 (2020-06-03)
|
112 | 90 |
|
113 | 91 | ### Features
|
114 | 92 |
|
115 |
| -- implement primary features and challenges ([b8132d53](https://github.com/ymind/rsql-querydsl/commit/b8132d53c66694f519bc5104d3843f934a008200)) |
| 93 | +- implement primary features and challenges ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd)) |
116 | 94 |
|
0 commit comments