forked from openware/peatio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
5511 lines (3912 loc) · 385 KB
/
CHANGELOG.md
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Changelog
## [Unreleased](https://github.com/openware/peatio/tree/HEAD)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.6...HEAD)
**Closed issues:**
- Vault::HTTPConnectionError: The Vault server at `http://127.0.0.1:8200' [\#2752](https://github.com/openware/peatio/issues/2752)
**Merged pull requests:**
- Update drone config [\#2759](https://github.com/openware/peatio/pull/2759) ([calj](https://github.com/calj))
- Update currency price field [\#2757](https://github.com/openware/peatio/pull/2757) ([mnaichuk](https://github.com/mnaichuk))
- Bump master with 2.7.0. Update API docs [\#2753](https://github.com/openware/peatio/pull/2753) ([mnaichuk](https://github.com/mnaichuk))
- Add the ability to exclude users by role from PnL calculation [\#2751](https://github.com/openware/peatio/pull/2751) ([calj](https://github.com/calj))
- Enhancement: Return deposit address in account entity [\#2747](https://github.com/openware/peatio/pull/2747) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.6](https://github.com/openware/peatio/tree/2.6.6) (2020-12-11)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.5...2.6.6)
**Merged pull requests:**
- Remove market creation validation for unvisible market [\#2765](https://github.com/openware/peatio/pull/2765) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.5](https://github.com/openware/peatio/tree/2.6.5) (2020-12-09)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.4...2.6.5)
**Merged pull requests:**
- Skip deposit fee collection transaction [\#2762](https://github.com/openware/peatio/pull/2762) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.4](https://github.com/openware/peatio/tree/2.6.4) (2020-12-08)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.3...2.6.4)
**Merged pull requests:**
- Enhancement: Return deposit address in account entity [\#2761](https://github.com/openware/peatio/pull/2761) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.3](https://github.com/openware/peatio/tree/2.6.3) (2020-12-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.2...2.6.3)
**Merged pull requests:**
- Add the ability to exclude users by role from PnL calculation [\#2760](https://github.com/openware/peatio/pull/2760) ([calj](https://github.com/calj))
- Update drone config [\#2758](https://github.com/openware/peatio/pull/2758) ([calj](https://github.com/calj))
## [2.6.2](https://github.com/openware/peatio/tree/2.6.2) (2020-12-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.1...2.6.2)
**Merged pull requests:**
- Update currency price field [\#2756](https://github.com/openware/peatio/pull/2756) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.1](https://github.com/openware/peatio/tree/2.6.1) (2020-12-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.44...2.6.1)
**Merged pull requests:**
- Update API docs for 2-6-stable [\#2754](https://github.com/openware/peatio/pull/2754) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.44](https://github.com/openware/peatio/tree/2.5.44) (2020-12-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.6.0...2.5.44)
**Merged pull requests:**
- Update API docs for 2-5-stable [\#2755](https://github.com/openware/peatio/pull/2755) ([mnaichuk](https://github.com/mnaichuk))
## [2.6.0](https://github.com/openware/peatio/tree/2.6.0) (2020-12-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.43...2.6.0)
**Closed issues:**
- BountyHunt : Integrating Peatio Management API V2 [\#2737](https://github.com/openware/peatio/issues/2737)
**Merged pull requests:**
- Feature: allow user to change the email [\#2750](https://github.com/openware/peatio/pull/2750) ([dpatsora](https://github.com/dpatsora))
- Fix: tx\[input\] fetch [\#2746](https://github.com/openware/peatio/pull/2746) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add ability to cancel orders on upstream [\#2745](https://github.com/openware/peatio/pull/2745) ([dpatsora](https://github.com/dpatsora))
- Add Gnosis base plugin [\#2744](https://github.com/openware/peatio/pull/2744) ([mnaichuk](https://github.com/mnaichuk))
- Fix specs for PostgreSQL [\#2742](https://github.com/openware/peatio/pull/2742) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Generate wallet settings on creation [\#2741](https://github.com/openware/peatio/pull/2741) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Update withdraw limits logic [\#2740](https://github.com/openware/peatio/pull/2740) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add ability to configure wallet features from settings [\#2738](https://github.com/openware/peatio/pull/2738) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Abilities for user permissions [\#2736](https://github.com/openware/peatio/pull/2736) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Add Opendax wallet plugin [\#2735](https://github.com/openware/peatio/pull/2735) ([chumaknadya](https://github.com/chumaknadya))
- Add matching exchange for trading daemons. Delete deprecated amqp configs [\#2733](https://github.com/openware/peatio/pull/2733) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Allow dot in currency code for API endpoints [\#2731](https://github.com/openware/peatio/pull/2731) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Add user permissions [\#2730](https://github.com/openware/peatio/pull/2730) ([chumaknadya](https://github.com/chumaknadya))
- Fix: Dont mask beneficiary account number on admin endpoints [\#2729](https://github.com/openware/peatio/pull/2729) ([chumaknadya](https://github.com/chumaknadya))
- Update WalletService trigger\_webhook\_event method [\#2727](https://github.com/openware/peatio/pull/2727) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add ability to update wallet settings [\#2725](https://github.com/openware/peatio/pull/2725) ([chumaknadya](https://github.com/chumaknadya))
- Enhancement: Disable WLs if there are no in DB or zero limits [\#2724](https://github.com/openware/peatio/pull/2724) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Remove partial wallet settings update [\#2722](https://github.com/openware/peatio/pull/2722) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Add possibility to import and export Operation::Accounts [\#2720](https://github.com/openware/peatio/pull/2720) ([dpatsora](https://github.com/dpatsora))
- Fix InfluxDB sharding spec [\#2716](https://github.com/openware/peatio/pull/2716) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Add error message for adjustment creation if user balance is insufficient [\#2715](https://github.com/openware/peatio/pull/2715) ([Kohelbekker](https://github.com/Kohelbekker))
- Update vault policies documentation [\#2712](https://github.com/openware/peatio/pull/2712) ([calj](https://github.com/calj))
- Add separate user and password for archive DB [\#2711](https://github.com/openware/peatio/pull/2711) ([dnfd](https://github.com/dnfd))
- Update dependencies [\#2710](https://github.com/openware/peatio/pull/2710) ([calj](https://github.com/calj))
- Fix: do not fail on start if VAULT\_TOKEN is unset [\#2709](https://github.com/openware/peatio/pull/2709) ([calj](https://github.com/calj))
- Feature: Mask beneficiary account\_number on API level [\#2708](https://github.com/openware/peatio/pull/2708) ([chumaknadya](https://github.com/chumaknadya))
- Update vault rails gem. Fix update wallet params [\#2707](https://github.com/openware/peatio/pull/2707) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Update import/export rake tasks for payment\_addresses [\#2703](https://github.com/openware/peatio/pull/2703) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Encrypt Beneficiary data [\#2702](https://github.com/openware/peatio/pull/2702) ([mnaichuk](https://github.com/mnaichuk))
- Remove uri validation from wallet model [\#2700](https://github.com/openware/peatio/pull/2700) ([mnaichuk](https://github.com/mnaichuk))
- Optimize PnL main query [\#2699](https://github.com/openware/peatio/pull/2699) ([calj](https://github.com/calj))
- WIP: Introduce CoinGecko API Endpoints [\#2698](https://github.com/openware/peatio/pull/2698) ([dpatsora](https://github.com/dpatsora))
- Feature: Add CMC integration [\#2696](https://github.com/openware/peatio/pull/2696) ([chumaknadya](https://github.com/chumaknadya))
- Fix database migration for MariaDB [\#2694](https://github.com/openware/peatio/pull/2694) ([calj](https://github.com/calj))
- Add the support of MariaDB ([calj](https://github.com/calj))
- Feature: Add export:configs Rake task [\#2693](https://github.com/openware/peatio/pull/2693) ([vshatravenko](https://github.com/vshatravenko))
- Feature: Add import:configs Rake task [\#2692](https://github.com/openware/peatio/pull/2692) ([vshatravenko](https://github.com/vshatravenko))
- Feature: trigger custom image build [\#2691](https://github.com/openware/peatio/pull/2691) ([josadcha](https://github.com/josadcha))
- Feature: Peatio orders Management API [\#2689](https://github.com/openware/peatio/pull/2689) ([dpatsora](https://github.com/dpatsora))
- Fix: Wallet links update. Deposit spread wallet recalculation [\#2687](https://github.com/openware/peatio/pull/2687) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add wallet link && fix blockchain\_key on currency creation [\#2686](https://github.com/openware/peatio/pull/2686) ([chumaknadya](https://github.com/chumaknadya))
- Enhancement: Update spread deposit with currency price [\#2685](https://github.com/openware/peatio/pull/2685) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Implement adaptive gas\_price setting [\#2684](https://github.com/openware/peatio/pull/2684) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Create member via Management API [\#2681](https://github.com/openware/peatio/pull/2681) ([dpatsora](https://github.com/dpatsora))
- Feature: Add rake task to fetch currency current price [\#2680](https://github.com/openware/peatio/pull/2680) ([chumaknadya](https://github.com/chumaknadya))
- Feature: add admin currencies fetch filters [\#2678](https://github.com/openware/peatio/pull/2678) ([oyershov](https://github.com/oyershov))
- Enhancement: Delete symbol from currency table [\#2676](https://github.com/openware/peatio/pull/2676) ([chumaknadya](https://github.com/chumaknadya))
- Add rake task for load trades and build k-lines. Update 2-4 migration documentation [\#2675](https://github.com/openware/peatio/pull/2675) ([mnaichuk](https://github.com/mnaichuk))
- Update CI to build images for branches matching {fix,integration}/\* [\#2674](https://github.com/openware/peatio/pull/2674) ([calj](https://github.com/calj))
- Feature: Add token type to currency model [\#2672](https://github.com/openware/peatio/pull/2672) ([chumaknadya](https://github.com/chumaknadya))
- Enhancement: Add ability to create market by engine name [\#2671](https://github.com/openware/peatio/pull/2671) ([chumaknadya](https://github.com/chumaknadya))
- Update peatio-bitgo version. Change rid length for withdraw [\#2669](https://github.com/openware/peatio/pull/2669) ([mnaichuk](https://github.com/mnaichuk))
- Fix wallet load\_balance method. Update WalletBalances job [\#2667](https://github.com/openware/peatio/pull/2667) ([mnaichuk](https://github.com/mnaichuk))
- Improve Engines and Markets seed [\#2665](https://github.com/openware/peatio/pull/2665) ([mnaichuk](https://github.com/mnaichuk))
- Global Withdraw Limits [\#2670](https://github.com/openware/peatio/pull/2670) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Unify deposit addresses for ETH & ERC20 tokens [\#2575](https://github.com/openware/peatio/pull/2575) ([mnaichuk](https://github.com/mnaichuk))
- Feature: added transfer\_type in deposit and withdraw [\#2664](https://github.com/openware/peatio/pull/2664) ([mnaichuk](https://github.com/mnaichuk))
- Speedup tests execution [\#2661](https://github.com/openware/peatio/pull/2661) ([calj](https://github.com/calj))
- feature: limit number of currencies/markets [\#2660](https://github.com/openware/peatio/pull/2660) ([dinesh-skyach](https://github.com/dinesh-skyach))
- Fix: Add from\_addresses on deposit creation [\#2656](https://github.com/openware/peatio/pull/2656) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Define token type in currency model [\#2672](https://github.com/openware/peatio/pull/2672) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Introduce yaml based admin permissions in peatio [\#2643](https://github.com/openware/peatio/pull/2643) ([chumaknadya](https://github.com/chumaknadya))
## [2.5.43](https://github.com/openware/peatio/tree/2.5.43) (2020-11-03)
[Full Changelog](https://github.com/openware/peatio/compare/2.2.34...2.5.43)
**Merged pull requests:**
- Feature: Submit and cancel finex-spot orders via Peatio API [\#2705](https://github.com/openware/peatio/pull/2705) ([dpatsora](https://github.com/dpatsora))
## [2.2.34](https://github.com/openware/peatio/tree/2.2.34) (2020-11-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.63...2.2.34)
## [2.3.63](https://github.com/openware/peatio/tree/2.3.63) (2020-11-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.23...2.3.63)
## [2.4.23](https://github.com/openware/peatio/tree/2.4.23) (2020-11-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.42...2.4.23)
## [2.5.42](https://github.com/openware/peatio/tree/2.5.42) (2020-11-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.41...2.5.42)
## [2.5.41](https://github.com/openware/peatio/tree/2.5.41) (2020-10-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.40...2.5.41)
**Merged pull requests:**
- Feature: Add possibility to import and export Operation::Accounts [\#2721](https://github.com/openware/peatio/pull/2721) ([dpatsora](https://github.com/dpatsora))
## [2.5.40](https://github.com/openware/peatio/tree/2.5.40) (2020-10-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.39...2.5.40)
**Merged pull requests:**
- Feature: Add export:configs Rake task \(\#2693\) [\#2706](https://github.com/openware/peatio/pull/2706) ([mnaichuk](https://github.com/mnaichuk))
- Integration/vault renew token improved [\#2704](https://github.com/openware/peatio/pull/2704) ([calj](https://github.com/calj))
## [2.5.39](https://github.com/openware/peatio/tree/2.5.39) (2020-09-29)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.38...2.5.39)
**Merged pull requests:**
- Optimize PnL main query [\#2688](https://github.com/openware/peatio/pull/2688) ([calj](https://github.com/calj))
## [2.5.38](https://github.com/openware/peatio/tree/2.5.38) (2020-09-24)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.37...2.5.38)
**Closed issues:**
- Bitcoin deposit monitoring is failing! Peatio::Blockchain::ClientError: 401 Unauthorized [\#2690](https://github.com/openware/peatio/issues/2690)
**Merged pull requests:**
- Feature: trigger custom image build [\#2695](https://github.com/openware/peatio/pull/2695) ([josadcha](https://github.com/josadcha))
## [2.5.37](https://github.com/openware/peatio/tree/2.5.37) (2020-09-09)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.36...2.5.37)
## [2.5.36](https://github.com/openware/peatio/tree/2.5.36) (2020-09-03)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.62...2.5.36)
**Merged pull requests:**
- Update CI to build images for branches matching {fix,integration}/\* [\#2677](https://github.com/openware/peatio/pull/2677) ([calj](https://github.com/calj))
## [2.3.62](https://github.com/openware/peatio/tree/2.3.62) (2020-09-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.22...2.3.62)
## [2.4.22](https://github.com/openware/peatio/tree/2.4.22) (2020-09-01)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.35...2.4.22)
**Merged pull requests:**
- Update sassc & ffi dependencies [\#2673](https://github.com/openware/peatio/pull/2673) ([calj](https://github.com/calj))
## [2.5.35](https://github.com/openware/peatio/tree/2.5.35) (2020-08-24)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.34...2.5.35)
**Merged pull requests:**
- Update peatio-bitgo version. Change rid length for withdraw [\#2668](https://github.com/openware/peatio/pull/2668) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.34](https://github.com/openware/peatio/tree/2.5.34) (2020-08-17)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.61...2.5.34)
**Merged pull requests:**
- Fix wallet balance parse in the daemons [\#2666](https://github.com/openware/peatio/pull/2666) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.61](https://github.com/openware/peatio/tree/2.3.61) (2020-08-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.21...2.3.61)
**Merged pull requests:**
- Enhancement: Skip pending ERC-20 transaction in blockchain daemon [\#2659](https://github.com/openware/peatio/pull/2659) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.21](https://github.com/openware/peatio/tree/2.4.21) (2020-08-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.33...2.4.21)
**Merged pull requests:**
- Enhancement: Skip pending ERC-20 transaction in blockchain daemon [\#2658](https://github.com/openware/peatio/pull/2658) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.33](https://github.com/openware/peatio/tree/2.5.33) (2020-08-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.32...2.5.33)
**Merged pull requests:**
- Fix: Add from\_addresses on deposit creation [\#2657](https://github.com/openware/peatio/pull/2657) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.32](https://github.com/openware/peatio/tree/2.5.32) (2020-08-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.31...2.5.32)
**Merged pull requests:**
- Enhancement: Filter trade by type && expose received_amount ([chumaknadya](https://github.com/chumaknadya))
## [2.5.31](https://github.com/openware/peatio/tree/2.5.31) (2020-08-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.30...2.5.31)
**Merged pull requests:**
- Add wallet balances. Add cron job for wallet balances update ([mnaichuk](https://github.com/mnaichuk))
## [2.5.30](https://github.com/openware/peatio/tree/2.5.30) (2020-08-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.29...2.5.30)
- Add wallet balances. Add cron job for wallet balances update ([mnaichuk](https://github.com/mnaichuk))
## [2.5.29](https://github.com/openware/peatio/tree/2.5.29) (2020-08-06)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.28...2.5.29)
**Merged pull requests:**
- Move data from main database to archive database [\#2632](https://github.com/openware/peatio/pull/2632) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.28](https://github.com/openware/peatio/tree/2.5.28) (2020-08-06)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.27...2.5.28)
## [2.5.27](https://github.com/openware/peatio/tree/2.5.27) (2020-08-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.26...2.5.27)
**Merged pull requests:**
- AML integration [\#2589](https://github.com/openware/peatio/pull/2589) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.26](https://github.com/openware/peatio/tree/2.5.26) (2020-08-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.25...2.5.26)
**Merged pull requests:**
- Feature: PnL calculation for traders ([calj](https://github.com/calj))
## [2.5.25](https://github.com/openware/peatio/tree/2.5.25) (2020-08-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.24...2.5.25)
- Accounting: add member_id in platform revenues [\#2607](https://github.com/openware/peatio/pull/2607) ([calj](https://github.com/calj))
**Merged pull requests:**
## [2.5.24](https://github.com/openware/peatio/tree/2.5.24) (2020-08-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.20...2.5.24)
**Merged pull requests:**
- Add jobs table [\#2649](https://github.com/openware/peatio/pull/2649) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.20](https://github.com/openware/peatio/tree/2.4.20) (2020-08-03)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.60...2.4.20)
## [2.3.60](https://github.com/openware/peatio/tree/2.3.60) (2020-08-01)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.23...2.3.60)
## [2.5.23](https://github.com/openware/peatio/tree/2.5.23) (2020-07-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.22...2.5.23)
**Merged pull requests:**
- Rewrite deposit collection flow [\#2636](https://github.com/openware/peatio/pull/2636) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.22](https://github.com/openware/peatio/tree/2.5.22) (2020-07-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.21...2.5.22)
## [2.5.21](https://github.com/openware/peatio/tree/2.5.21) (2020-07-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.59...2.5.21)
**Merged pull requests:**
- Add rake task for distribution [\#2631](https://github.com/openware/peatio/pull/2631) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.20](https://github.com/openware/peatio/tree/2.5.20) (2020-06-26)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.19...2.5.20)
**Merged pull requests:**
- Feature: expose maker & taker fee for order entity (#2627) ([vpetrusenko](https://github.com/vpetrusenko))
## [2.5.19](https://github.com/openware/peatio/tree/2.5.19) (2020-06-24)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.18...2.5.19)
**Merged pull requests:**
- Remove inqury from TradingFee model ([mnaichuk](https://github.com/mnaichuk))
## [2.5.18](https://github.com/openware/peatio/tree/2.5.18) (2020-06-24)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.17...2.5.18)
**Merged pull requests:**
- Fix format function in TickersJob ([mnaichuk](https://github.com/mnaichuk))
## [2.5.17](https://github.com/openware/peatio/tree/2.5.17) (2020-06-24)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.19...2.5.17)
- Add caching for the most used public endpoints [\#2625](https://github.com/openware/peatio/pull/2625) ([mnaichuk](https://github.com/mnaichuk))
# Change Log
## [2.4.19](https://github.com/openware/peatio/tree/2.4.19) (2020-06-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.16...2.4.19)
**Merged pull requests:**
- Remove date parsing in api/v2/public/version [\#2623](https://github.com/openware/peatio/pull/2623) ([calj](https://github.com/calj))
## [2.5.16](https://github.com/openware/peatio/tree/2.5.16) (2020-06-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.15...2.5.16)
**Merged pull requests:**
- Remove date parsing in api/v2/public/version [\#2622](https://github.com/openware/peatio/pull/2622) ([calj](https://github.com/calj))
- Fix secret replace in deposit collection [\#2620](https://github.com/openware/peatio/pull/2620) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Skip pending ERC-20 transaction in blockchain daemon [\#2615](https://github.com/openware/peatio/pull/2615) ([dpatsora](https://github.com/dpatsora))
- Add to Currency model description, homepage and price [\#2601](https://github.com/openware/peatio/pull/2601) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.15](https://github.com/openware/peatio/tree/2.5.15) (2020-06-11)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.14...2.5.15)
**Merged pull requests:**
- Update configuration for database pool [\#2619](https://github.com/openware/peatio/pull/2619) ([mnaichuk](https://github.com/mnaichuk))
- Update configuration for database pool [\#2618](https://github.com/openware/peatio/pull/2618) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.14](https://github.com/openware/peatio/tree/2.5.14) (2020-06-11)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.13...2.5.14)
**Merged pull requests:**
- Add ability to configure database pool size [\#2617](https://github.com/openware/peatio/pull/2617) ([mnaichuk](https://github.com/mnaichuk))
- Add symbolize keys to WalletService init. Update wallet templates [\#2616](https://github.com/openware/peatio/pull/2616) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Skip pending ERC-20 transaction in blockchain daemon [\#2614](https://github.com/openware/peatio/pull/2614) ([dpatsora](https://github.com/dpatsora))
## [2.5.13](https://github.com/openware/peatio/tree/2.5.13) (2020-06-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.58...2.5.13)
**Merged pull requests:**
- Feature: Add ability to skip deposit collection on hot wallet [\#2613](https://github.com/openware/peatio/pull/2613) ([mnaichuk](https://github.com/mnaichuk))
- Configurate wallet\_service with pa\_secret on deposit collection [\#2612](https://github.com/openware/peatio/pull/2612) ([mnaichuk](https://github.com/mnaichuk))
- Accounting: add member\_id in platform revenues [\#2607](https://github.com/openware/peatio/pull/2607) ([calj](https://github.com/calj))
## [2.3.58](https://github.com/openware/peatio/tree/2.3.58) (2020-06-09)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.12...2.3.58)
**Merged pull requests:**
- \[Snyk\] Fix for 2 vulnerabilities [\#2596](https://github.com/openware/peatio/pull/2596) ([snyk-bot](https://github.com/snyk-bot))
## [2.5.12](https://github.com/openware/peatio/tree/2.5.12) (2020-06-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.18...2.5.12)
## [2.4.18](https://github.com/openware/peatio/tree/2.4.18) (2020-06-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.11...2.4.18)
## [2.5.11](https://github.com/openware/peatio/tree/2.5.11) (2020-06-05)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.10...2.5.11)
**Merged pull requests:**
- Fix versionning generation in CI \(\#2604\) [\#2606](https://github.com/openware/peatio/pull/2606) ([calj](https://github.com/calj))
- Fix versionning generation in CI \(\#2604\) [\#2605](https://github.com/openware/peatio/pull/2605) ([calj](https://github.com/calj))
- Fix versionning generation in CI [\#2604](https://github.com/openware/peatio/pull/2604) ([calj](https://github.com/calj))
## [2.5.10](https://github.com/openware/peatio/tree/2.5.10) (2020-06-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.17...2.5.10)
## [2.4.17](https://github.com/openware/peatio/tree/2.4.17) (2020-06-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.16...2.4.17)
**Merged pull requests:**
- Enhancement: add pagination to POST management/accounts/balances [\#2603](https://github.com/openware/peatio/pull/2603) ([ec](https://github.com/ec))
## [2.4.16](https://github.com/openware/peatio/tree/2.4.16) (2020-06-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.15...2.4.16)
**Merged pull requests:**
- Fix: Bitgo address generation [\#2608](https://github.com/openware/peatio/pull/2608) ([chumaknadya](https://github.com/chumaknadya))
- Fix: Bitgo address generation [\#2599](https://github.com/openware/peatio/pull/2599) ([chumaknadya](https://github.com/chumaknadya))
## [2.4.15](https://github.com/openware/peatio/tree/2.4.15) (2020-06-02)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.14...2.4.15)
**Merged pull requests:**
- Fix: Update error handling for trading\_fee api [\#2595](https://github.com/openware/peatio/pull/2595) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Update error handling for trading\_fee api [\#2594](https://github.com/openware/peatio/pull/2594) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Update error handling for trading\_fee api [\#2593](https://github.com/openware/peatio/pull/2593) ([mnaichuk](https://github.com/mnaichuk))
- Bump peatio-electrum plugin to 2.6.1 [\#2592](https://github.com/openware/peatio/pull/2592) ([calj](https://github.com/calj))
- \[Snyk\] Security upgrade kaminari from 1.1.1 to 1.2.1 [\#2586](https://github.com/openware/peatio/pull/2586) ([snyk-bot](https://github.com/snyk-bot))
## [2.4.14](https://github.com/openware/peatio/tree/2.4.14) (2020-06-01)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.57...2.4.14)
**Merged pull requests:**
- Feature: Add ability to resend beneficiary pin [\#2591](https://github.com/openware/peatio/pull/2591) ([dpatsora](https://github.com/dpatsora))
- Feature: Add ability to resend beneficiary pin [\#2590](https://github.com/openware/peatio/pull/2590) ([dpatsora](https://github.com/dpatsora))
- Feature: Add ability to resend beneficiary pin [\#2582](https://github.com/openware/peatio/pull/2582) ([dpatsora](https://github.com/dpatsora))
- Enhancement: add management api to retrieve non-zero balances [\#2570](https://github.com/openware/peatio/pull/2570) ([ec](https://github.com/ec))
- Feature: Portfolio calculation [\#2562](https://github.com/openware/peatio/pull/2562) ([chumaknadya](https://github.com/chumaknadya))
## [2.3.57](https://github.com/openware/peatio/tree/2.3.57) (2020-05-29)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.9...2.3.57)
**Merged pull requests:**
- Do not expose engine data in admin api [\#2584](https://github.com/openware/peatio/pull/2584) ([mnaichuk](https://github.com/mnaichuk))
- Add ability to set user rate limit [\#2580](https://github.com/openware/peatio/pull/2580) ([Kohelbekker](https://github.com/Kohelbekker))
## [2.5.9](https://github.com/openware/peatio/tree/2.5.9) (2020-05-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.13...2.5.9)
**Merged pull requests:**
- Add ability to set user rate limit [\#2579](https://github.com/openware/peatio/pull/2579) ([Kohelbekker](https://github.com/Kohelbekker))
## [2.4.13](https://github.com/openware/peatio/tree/2.4.13) (2020-05-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.56...2.4.13)
**Merged pull requests:**
- Add ability to set user rate limit [\#2578](https://github.com/openware/peatio/pull/2578) ([Kohelbekker](https://github.com/Kohelbekker))
## [2.3.56](https://github.com/openware/peatio/tree/2.3.56) (2020-05-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.12...2.3.56)
**Merged pull requests:**
- Add ability to set user rate limit via ENV variable [\#2577](https://github.com/openware/peatio/pull/2577) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.12](https://github.com/openware/peatio/tree/2.4.12) (2020-05-25)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.8...2.4.12)
## [2.5.8](https://github.com/openware/peatio/tree/2.5.8) (2020-05-25)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.7...2.5.8)
**Merged pull requests:**
- \[Snyk\] Security upgrade puma from 3.12.4 to 3.12.6 [\#2574](https://github.com/openware/peatio/pull/2574) ([snyk-bot](https://github.com/snyk-bot))
- Change Influxdb configuration names [\#2573](https://github.com/openware/peatio/pull/2573) ([mnaichuk](https://github.com/mnaichuk))
- \[Snyk\] Fix for 5 vulnerabilities [\#2563](https://github.com/openware/peatio/pull/2563) ([snyk-bot](https://github.com/snyk-bot))
## [2.5.7](https://github.com/openware/peatio/tree/2.5.7) (2020-05-22)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.6...2.5.7)
**Merged pull requests:**
- Enhancement: add management api to retrieve non-zero balances [\#2598](https://github.com/openware/peatio/pull/2598) ([ec](https://github.com/ec))
- Enhancement: add management api to retrieve non-zero balances [\#2597](https://github.com/openware/peatio/pull/2597) ([ec](https://github.com/ec))
- Improve market states for api [\#2572](https://github.com/openware/peatio/pull/2572) ([mnaichuk](https://github.com/mnaichuk))
- Add export rake task for engines [\#2571](https://github.com/openware/peatio/pull/2571) ([mnaichuk](https://github.com/mnaichuk))
- Add export rake task for engines [\#2569](https://github.com/openware/peatio/pull/2569) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.6](https://github.com/openware/peatio/tree/2.5.6) (2020-05-22)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.5...2.5.6)
**Merged pull requests:**
- Renew of vault token with ENV. Remove sensitive data from admin entities [\#2568](https://github.com/openware/peatio/pull/2568) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.5](https://github.com/openware/peatio/tree/2.5.5) (2020-05-21)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.4...2.5.5)
**Merged pull requests:**
- Feature: Add filters for currencies, markets and wallets [\#2567](https://github.com/openware/peatio/pull/2567) ([dpatsora](https://github.com/dpatsora))
- Improve orders and trades filtes. Add data field in engine admin API [\#2565](https://github.com/openware/peatio/pull/2565) ([mnaichuk](https://github.com/mnaichuk))
- Improve orders and trades filtes. Add data field in engine admin API [\#2564](https://github.com/openware/peatio/pull/2564) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.4](https://github.com/openware/peatio/tree/2.5.4) (2020-05-21)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.2...2.5.4)
## [2.5.2](https://github.com/openware/peatio/tree/2.5.2) (2020-05-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.3...2.5.2)
## [2.5.3](https://github.com/openware/peatio/tree/2.5.3) (2020-05-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.0...2.5.3)
**Merged pull requests:**
- Update irix version [\#2561](https://github.com/openware/peatio/pull/2561) ([mnaichuk](https://github.com/mnaichuk))
- Update irix version [\#2560](https://github.com/openware/peatio/pull/2560) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Add Management API for beneficiaries [\#2559](https://github.com/openware/peatio/pull/2559) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Add Management API for beneficiaries [\#2558](https://github.com/openware/peatio/pull/2558) ([chumaknadya](https://github.com/chumaknadya))
- Misc improvements [\#2556](https://github.com/openware/peatio/pull/2556) ([calj](https://github.com/calj))
- Add peatio electrum gem [\#2554](https://github.com/openware/peatio/pull/2554) ([calj](https://github.com/calj))
- Improve vault support [\#2544](https://github.com/openware/peatio/pull/2544) ([mnaichuk](https://github.com/mnaichuk))
## [2.5.0](https://github.com/openware/peatio/tree/2.5.0) (2020-05-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.5.1...2.5.0)
## [2.5.1](https://github.com/openware/peatio/tree/2.5.1) (2020-05-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.11...2.5.1)
**Merged pull requests:**
- Fix: Avoid to use join in admin API for tables with a large amount of data. Change Kaminari usage in pagination [\#2602](https://github.com/openware/peatio/pull/2602) ([mnaichuk](https://github.com/mnaichuk))
- Fix market migration with existing data [\#2555](https://github.com/openware/peatio/pull/2555) ([mnaichuk](https://github.com/mnaichuk))
- Add default value for data market field [\#2553](https://github.com/openware/peatio/pull/2553) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Avoid to use join in admin API for tables with a large amount of data. Change Kaminari usage in pagination [\#2551](https://github.com/openware/peatio/pull/2551) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.11](https://github.com/openware/peatio/tree/2.4.11) (2020-05-13)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.10...2.4.11)
**Merged pull requests:**
- Use scheduling in blockchain daemon to reflect config changes in DB [\#2552](https://github.com/openware/peatio/pull/2552) ([ysv](https://github.com/ysv))
- Fix: Remove nested SQL transactions in blockchain daemon. Update deposit model [\#2548](https://github.com/openware/peatio/pull/2548) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.10](https://github.com/openware/peatio/tree/2.4.10) (2020-05-13)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.9...2.4.10)
**Closed issues:**
- ETH deposit processing: undefined method `dig' for nil:NilClass [\#2539](https://github.com/openware/peatio/issues/2539)
- running error [\#2479](https://github.com/openware/peatio/issues/2479)
- Major issue between order submit api and order\_processor daemon [\#2399](https://github.com/openware/peatio/issues/2399)
- BitGO, setup [\#1971](https://github.com/openware/peatio/issues/1971)
- Admin panel logo [\#1796](https://github.com/openware/peatio/issues/1796)
- \[Bug\] Admin panel saving currency with space and API call to this currency [\#1770](https://github.com/openware/peatio/issues/1770)
- Parity Ethereum client support [\#1768](https://github.com/openware/peatio/issues/1768)
- \[Feature request\] Hide dangerous information from admin panel after it was saved to DB and rewrite it in case of new information input. [\#1764](https://github.com/openware/peatio/issues/1764)
- \[Feature request\] Admin panel, wallets creation for BTC like coins. [\#1760](https://github.com/openware/peatio/issues/1760)
- Account pusher event not firing [\#1749](https://github.com/openware/peatio/issues/1749)
- Validate address correctness on wallet save [\#1741](https://github.com/openware/peatio/issues/1741)
- Order update event is not firing [\#1729](https://github.com/openware/peatio/issues/1729)
- Notify if bump fails [\#1685](https://github.com/openware/peatio/issues/1685)
- The confirmation amount upon deposit and withdraw are late for one confirmation. [\#1673](https://github.com/openware/peatio/issues/1673)
- Market orders are able to buy/sold only first two price positions. [\#1635](https://github.com/openware/peatio/issues/1635)
- Documentation for Bitgo intergration into Peatio embed in the admin panel [\#1490](https://github.com/openware/peatio/issues/1490)
- Can you set up a stop loss function module in Trading UI?(Stop-Profit) [\#1466](https://github.com/openware/peatio/issues/1466)
- Deposit for Ethereum wallet stops to work, if there are more than 15 currencies \(v.1.8\) [\#1434](https://github.com/openware/peatio/issues/1434)
- Support ERC20 using BitGo [\#1291](https://github.com/openware/peatio/issues/1291)
- Problem with precision and rounding \(to be documented\) [\#1270](https://github.com/openware/peatio/issues/1270)
- Performance of order creation, matching & trade execution \[to be documented\] [\#1145](https://github.com/openware/peatio/issues/1145)
**Merged pull requests:**
- Use scheduling in blockchain daemon to reflect config changes in DB [\#2550](https://github.com/openware/peatio/pull/2550) ([ysv](https://github.com/ysv))
- Update gems dependencies [\#2549](https://github.com/openware/peatio/pull/2549) ([mnaichuk](https://github.com/mnaichuk))
- Add docs about engines [\#2546](https://github.com/openware/peatio/pull/2546) ([dnfd](https://github.com/dnfd))
- Fix market entity for admin api [\#2545](https://github.com/openware/peatio/pull/2545) ([mnaichuk](https://github.com/mnaichuk))
- Delete encrypt for market data. Update upstream daemon [\#2543](https://github.com/openware/peatio/pull/2543) ([mnaichuk](https://github.com/mnaichuk))
- Add renew process to vault initializer [\#2542](https://github.com/openware/peatio/pull/2542) ([mnaichuk](https://github.com/mnaichuk))
- Add manager role [\#2540](https://github.com/openware/peatio/pull/2540) ([mnaichuk](https://github.com/mnaichuk))
- Add admin api for engines [\#2538](https://github.com/openware/peatio/pull/2538) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Add user portfolio API module [\#2537](https://github.com/openware/peatio/pull/2537) ([mnaichuk](https://github.com/mnaichuk))
- Update peatio-core version [\#2536](https://github.com/openware/peatio/pull/2536) ([mnaichuk](https://github.com/mnaichuk))
- Update column type for data engines [\#2534](https://github.com/openware/peatio/pull/2534) ([mnaichuk](https://github.com/mnaichuk))
- Feature: add POST admin/blockchain/process\_block [\#2526](https://github.com/openware/peatio/pull/2526) ([ec](https://github.com/ec))
- Enhancement: Improve deposit model. Add ability to collect through api [\#2510](https://github.com/openware/peatio/pull/2510) ([mnaichuk](https://github.com/mnaichuk))
- Websocket documentation for peatio 2.4 [\#2505](https://github.com/openware/peatio/pull/2505) ([calj](https://github.com/calj))
- Fix: Ability to save wallet secret on update [\#2501](https://github.com/openware/peatio/pull/2501) ([chumaknadya](https://github.com/chumaknadya))
## [2.4.9](https://github.com/openware/peatio/tree/2.4.9) (2020-04-20)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.8...2.4.9)
**Merged pull requests:**
- Update irix and peatio-bitgo versions [\#2533](https://github.com/openware/peatio/pull/2533) ([mnaichuk](https://github.com/mnaichuk))
- Update irix and peatio-bitgo versions [\#2532](https://github.com/openware/peatio/pull/2532) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Include post\_only order in market/depth [\#2531](https://github.com/openware/peatio/pull/2531) ([dnfd](https://github.com/dnfd))
## [2.4.8](https://github.com/openware/peatio/tree/2.4.8) (2020-04-20)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.55...2.4.8)
**Closed issues:**
- Dockerfile.plugin permission errors in the process [\#2423](https://github.com/openware/peatio/issues/2423)
**Merged pull requests:**
- Feature: Include post\_only order in market/depth [\#2530](https://github.com/openware/peatio/pull/2530) ([dnfd](https://github.com/dnfd))
- Remove old helpers [\#2528](https://github.com/openware/peatio/pull/2528) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Add Engine model [\#2527](https://github.com/openware/peatio/pull/2527) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Update UID and GID to the app user for all project files [\#2499](https://github.com/openware/peatio/pull/2499) ([apaulb](https://github.com/apaulb))
## [2.3.55](https://github.com/openware/peatio/tree/2.3.55) (2020-04-14)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.7...2.3.55)
**Merged pull requests:**
- Update sdk image to 2.4.5 [\#2524](https://github.com/openware/peatio/pull/2524) ([mnaichuk](https://github.com/mnaichuk))
- Remove old Peatio admin panel [\#2523](https://github.com/openware/peatio/pull/2523) ([mnaichuk](https://github.com/mnaichuk))
- Return wallet balance in admin api [\#2522](https://github.com/openware/peatio/pull/2522) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Alive check for a blockchain node to get the latest block [\#2521](https://github.com/openware/peatio/pull/2521) ([chumaknadya](https://github.com/chumaknadya))
- Merge 2-4 branch to master [\#2520](https://github.com/openware/peatio/pull/2520) ([mnaichuk](https://github.com/mnaichuk))
- Enhancement: Add ability to fail withdraw from skipped state [\#2519](https://github.com/openware/peatio/pull/2519) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Expose deposit address && beneficiaries for admin endpoints [\#2518](https://github.com/openware/peatio/pull/2518) ([chumaknadya](https://github.com/chumaknadya))
- Fix file permissions [\#2496](https://github.com/openware/peatio/pull/2496) ([apaulb](https://github.com/apaulb))
## [2.4.7](https://github.com/openware/peatio/tree/2.4.7) (2020-04-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.6...2.4.7)
**Merged pull requests:**
- Fix: Add docs && changelog generation on master branch [\#2515](https://github.com/openware/peatio/pull/2515) ([chumaknadya](https://github.com/chumaknadya))
- Experimental: Remove LOCKING\_BUFFER\_FACTOR from buy market order [\#2509](https://github.com/openware/peatio/pull/2509) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.6](https://github.com/openware/peatio/tree/2.4.6) (2020-04-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.5...2.4.6)
**Merged pull requests:**
- Add feature to search currency by code or name in /public/currencies [\#2516](https://github.com/openware/peatio/pull/2516) ([ysv](https://github.com/ysv))
- Enhancement: Add Kaigara installation to the Dockerfile [\#2514](https://github.com/openware/peatio/pull/2514) ([vshatravenko](https://github.com/vshatravenko))
## [2.4.5](https://github.com/openware/peatio/tree/2.4.5) (2020-04-03)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.4...2.4.5)
**Merged pull requests:**
- Update export task with data field for market [\#2513](https://github.com/openware/peatio/pull/2513) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.4](https://github.com/openware/peatio/tree/2.4.4) (2020-04-01)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.3...2.4.4)
**Merged pull requests:**
- Fix: add ability to cancel order by uuid [\#2508](https://github.com/openware/peatio/pull/2508) ([mikoim](https://github.com/mikoim))
## [2.4.3](https://github.com/openware/peatio/tree/2.4.3) (2020-03-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.2...2.4.3)
**Merged pull requests:**
- Update irix version [\#2506](https://github.com/openware/peatio/pull/2506) ([mnaichuk](https://github.com/mnaichuk))
## [2.4.2](https://github.com/openware/peatio/tree/2.4.2) (2020-03-26)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.0...2.4.2)
**Merged pull requests:**
- Update peatio plugins [\#2504](https://github.com/openware/peatio/pull/2504) ([mnaichuk](https://github.com/mnaichuk))
- Update peatio plugins [\#2503](https://github.com/openware/peatio/pull/2503) ([mnaichuk](https://github.com/mnaichuk))
- Update websocket API documentation for peatio 2.4 [\#2502](https://github.com/openware/peatio/pull/2502) ([calj](https://github.com/calj))
## [2.4.0](https://github.com/openware/peatio/tree/2.4.0) (2020-03-25)
[Full Changelog](https://github.com/openware/peatio/compare/2.4.1...2.4.0)
## [2.4.1](https://github.com/openware/peatio/tree/2.4.1) (2020-03-25)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.54...2.4.1)
**Closed issues:**
- Can't place new order: \#\<Encoding::UndefinedConversionError: \"\\xE0\" from ASCII-8BIT to UTF-8\> [\#2493](https://github.com/openware/peatio/issues/2493)
- Trading UI bid/ask cancellation doesn't work [\#1776](https://github.com/openware/peatio/issues/1776)
**Merged pull requests:**
- Fix: Ability to save wallet secret on update [\#2500](https://github.com/openware/peatio/pull/2500) ([chumaknadya](https://github.com/chumaknadya))
- Fix: Add created\_at to transaction entity [\#2498](https://github.com/openware/peatio/pull/2498) ([chumaknadya](https://github.com/chumaknadya))
- Fix: Add created\_at to transaction entity [\#2497](https://github.com/openware/peatio/pull/2497) ([chumaknadya](https://github.com/chumaknadya))
- \[Snyk\] Fix for 1 vulnerabilities [\#2494](https://github.com/openware/peatio/pull/2494) ([snyk-bot](https://github.com/snyk-bot))
- Enhancement: Improve deposits, withdrawals and transactions filters [\#2492](https://github.com/openware/peatio/pull/2492) ([mnaichuk](https://github.com/mnaichuk))
- Feature: redeploy on master.devkube.com [\#2491](https://github.com/openware/peatio/pull/2491) ([dpatsora](https://github.com/dpatsora))
- Features and improvements pack [\#2490](https://github.com/openware/peatio/pull/2490) ([akulakovaa](https://github.com/akulakovaa))
- Setup redeploy on devkube [\#2489](https://github.com/openware/peatio/pull/2489) ([dpatsora](https://github.com/dpatsora))
- Feature: add POST management/currencies/list API endpoint [\#2487](https://github.com/openware/peatio/pull/2487) ([ec](https://github.com/ec))
- Feature: add POST /management/markets/list API endpoint [\#2486](https://github.com/openware/peatio/pull/2486) ([ec](https://github.com/ec))
- Add CronJob Daemon for K-lines and Tickers [\#2485](https://github.com/openware/peatio/pull/2485) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Clean rails built in warnings [\#2483](https://github.com/openware/peatio/pull/2483) ([mnaichuk](https://github.com/mnaichuk))
- Fix ./bin/setup [\#2482](https://github.com/openware/peatio/pull/2482) ([akulakovaa](https://github.com/akulakovaa))
- Fix: add ability to search order by uuid [\#2481](https://github.com/openware/peatio/pull/2481) ([akulakovaa](https://github.com/akulakovaa))
- Add ability to read tickers from influx [\#2480](https://github.com/openware/peatio/pull/2480) ([mnaichuk](https://github.com/mnaichuk))
- Add Trading docs [\#2478](https://github.com/openware/peatio/pull/2478) ([mnaichuk](https://github.com/mnaichuk))
- Update Peatio API documentation [\#2477](https://github.com/openware/peatio/pull/2477) ([mnaichuk](https://github.com/mnaichuk))
- Improve API filtering for order history [\#2476](https://github.com/openware/peatio/pull/2476) ([mnaichuk](https://github.com/mnaichuk))
- Prepare doc for Peatio v2.4 migration [\#2475](https://github.com/openware/peatio/pull/2475) ([dpatsora](https://github.com/dpatsora))
- Initialize Blockchain and Wallet adapters in service creation. Updat… [\#2474](https://github.com/openware/peatio/pull/2474) ([mnaichuk](https://github.com/mnaichuk))
- Expose UUID [\#2473](https://github.com/openware/peatio/pull/2473) ([dnfd](https://github.com/dnfd))
- Fix: Collect deposits after sql transaction [\#2471](https://github.com/openware/peatio/pull/2471) ([mnaichuk](https://github.com/mnaichuk))
- Publish events to specific exchange [\#2470](https://github.com/openware/peatio/pull/2470) ([dnfd](https://github.com/dnfd))
- Enhancement: Delete total header from admin API endpoints [\#2468](https://github.com/openware/peatio/pull/2468) ([chumaknadya](https://github.com/chumaknadya))
- Update to Rails 5.2.4 [\#2466](https://github.com/openware/peatio/pull/2466) ([mod](https://github.com/mod))
- Enhancement: Add validation for trading fees, blockchains, transfers [\#2464](https://github.com/openware/peatio/pull/2464) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Add filters by deposit/withdraw states [\#2463](https://github.com/openware/peatio/pull/2463) ([chumaknadya](https://github.com/chumaknadya))
- Fix: Change beneficiary address validation [\#2462](https://github.com/openware/peatio/pull/2462) ([chumaknadya](https://github.com/chumaknadya))
- Feature: Add ability to create deposits and confirm withdrawals through Webhooks. [\#2460](https://github.com/openware/peatio/pull/2460) ([mnaichuk](https://github.com/mnaichuk))
- Add finex as third party engine support. Add to\_reject withdrawal state. Add maker role [\#2459](https://github.com/openware/peatio/pull/2459) ([mnaichuk](https://github.com/mnaichuk))
- Add Peatio Upstream worker. Add Opendax Upstream [\#2458](https://github.com/openware/peatio/pull/2458) ([mnaichuk](https://github.com/mnaichuk))
- Remove precision from order timestamps [\#2457](https://github.com/openware/peatio/pull/2457) ([dnfd](https://github.com/dnfd))
- Add ability to filter zero user balances [\#2444](https://github.com/openware/peatio/pull/2444) ([dpatsora](https://github.com/dpatsora))
- Experimental: Tweak public markets endpoint [\#2395](https://github.com/openware/peatio/pull/2395) ([ysv](https://github.com/ysv))
## [2.3.54](https://github.com/openware/peatio/tree/2.3.54) (2020-02-20)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.53...2.3.54)
**Merged pull requests:**
- Improve Deposit and Withdraw filters [\#2456](https://github.com/openware/peatio/pull/2456) ([mnaichuk](https://github.com/mnaichuk))
- Improve Deposit and Withdraw filters [\#2455](https://github.com/openware/peatio/pull/2455) ([mnaichuk](https://github.com/mnaichuk))
- Add rake task for export and import PaymentAddresses [\#2454](https://github.com/openware/peatio/pull/2454) ([mnaichuk](https://github.com/mnaichuk))
- Remove deprecated amqp daemons [\#2451](https://github.com/openware/peatio/pull/2451) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.53](https://github.com/openware/peatio/tree/2.3.53) (2020-02-19)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.52...2.3.53)
**Closed issues:**
- Deleting old canceled orders [\#2319](https://github.com/openware/peatio/issues/2319)
**Merged pull requests:**
- Remove account\_id from Withdraw model \(\#2445\) [\#2610](https://github.com/openware/peatio/pull/2610) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add report exception to screen for OrderProcessor initialize [\#2453](https://github.com/openware/peatio/pull/2453) ([mnaichuk](https://github.com/mnaichuk))
- Fix: Add report exception to screen for OrderProcessor initialize [\#2452](https://github.com/openware/peatio/pull/2452) ([mnaichuk](https://github.com/mnaichuk))
- Replace legacy authentication with jwt-rack [\#2450](https://github.com/openware/peatio/pull/2450) ([ysv](https://github.com/ysv))
- Remove :touch account after user creation [\#2449](https://github.com/openware/peatio/pull/2449) ([mnaichuk](https://github.com/mnaichuk))
- Rake task for import users and active accounts [\#2448](https://github.com/openware/peatio/pull/2448) ([mnaichuk](https://github.com/mnaichuk))
- Remove account\_id from Withdraw model [\#2445](https://github.com/openware/peatio/pull/2445) ([mnaichuk](https://github.com/mnaichuk))
- Record Trades and K-lines to InfluxDB [\#2441](https://github.com/openware/peatio/pull/2441) ([mnaichuk](https://github.com/mnaichuk))
- Feature/openfinex integration [\#2440](https://github.com/openware/peatio/pull/2440) ([mod](https://github.com/mod))
- Remove :touch\_account after currency creation [\#2429](https://github.com/openware/peatio/pull/2429) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.52](https://github.com/openware/peatio/tree/2.3.52) (2020-02-12)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.51...2.3.52)
**Merged pull requests:**
- Misc improvements for 2-3-stable [\#2583](https://github.com/openware/peatio/pull/2583) ([mnaichuk](https://github.com/mnaichuk))
- Add ability to select orders with different states [\#2447](https://github.com/openware/peatio/pull/2447) ([mnaichuk](https://github.com/mnaichuk))
- Add ability to select orders with different states [\#2446](https://github.com/openware/peatio/pull/2446) ([mnaichuk](https://github.com/mnaichuk))
- Improve errors messages in Account model. Add daemons locking by key [\#2443](https://github.com/openware/peatio/pull/2443) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Rake task for revert trading activity for a particular user [\#2437](https://github.com/openware/peatio/pull/2437) ([mnaichuk](https://github.com/mnaichuk))
- Feature: rake tasks for drop accounting and extract configs [\#2426](https://github.com/openware/peatio/pull/2426) ([ymasiuk](https://github.com/ymasiuk))
## [2.3.51](https://github.com/openware/peatio/tree/2.3.51) (2020-01-31)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.50...2.3.51)
**Merged pull requests:**
- Fix: disable beneficiary validation on withdrawal failing [\#2442](https://github.com/openware/peatio/pull/2442) ([mnaichuk](https://github.com/mnaichuk))
- Fix: disable beneficiary validation on withdrawal failing [\#2439](https://github.com/openware/peatio/pull/2439) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.50](https://github.com/openware/peatio/tree/2.3.50) (2020-01-16)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.49...2.3.50)
**Closed issues:**
- Potential Feature: Module/Plugin Functionality [\#2362](https://github.com/openware/peatio/issues/2362)
**Merged pull requests:**
- Fix: Add validations for crypto address in beneficiary [\#2438](https://github.com/openware/peatio/pull/2438) ([mnaichuk](https://github.com/mnaichuk))
- Enhauncement: update sdk version [\#2436](https://github.com/openware/peatio/pull/2436) ([chumaknadya](https://github.com/chumaknadya))
- Enhauncement: update sdk version [\#2435](https://github.com/openware/peatio/pull/2435) ([chumaknadya](https://github.com/chumaknadya))
- Fix vulnerabilities CVE-2019-16770 CVE-2019-16782 [\#2432](https://github.com/openware/peatio/pull/2432) ([ysv](https://github.com/ysv))
- Guardrails integration & minor security issue fixes [\#2431](https://github.com/openware/peatio/pull/2431) ([ysv](https://github.com/ysv))
- Fix event api message on trade\_completed [\#2430](https://github.com/openware/peatio/pull/2430) ([mnaichuk](https://github.com/mnaichuk))
- Validate beneficiary address uniqueness for crypto on creation [\#2428](https://github.com/openware/peatio/pull/2428) ([ysv](https://github.com/ysv))
- Enhancement: Update sdk image [\#2424](https://github.com/openware/peatio/pull/2424) ([chumaknadya](https://github.com/chumaknadya))
- Use Vault for encrypting and decrypting data in production [\#2419](https://github.com/openware/peatio/pull/2419) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.49](https://github.com/openware/peatio/tree/2.3.49) (2019-11-27)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.48...2.3.49)
**Merged pull requests:**
- Enhancement: Update sdk image [\#2425](https://github.com/openware/peatio/pull/2425) ([chumaknadya](https://github.com/chumaknadya))
## [2.3.48](https://github.com/openware/peatio/tree/2.3.48) (2019-11-22)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.47...2.3.48)
**Merged pull requests:**
- Fix: docs generated step for drone pipeline [\#2421](https://github.com/openware/peatio/pull/2421) ([chumaknadya](https://github.com/chumaknadya))
- Don't use Vault in transit mode for encrypting and decrypting data in… [\#2420](https://github.com/openware/peatio/pull/2420) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.47](https://github.com/openware/peatio/tree/2.3.47) (2019-11-20)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.46...2.3.47)
**Merged pull requests:**
- Fix: docs generated step for drone pipeline [\#2422](https://github.com/openware/peatio/pull/2422) ([chumaknadya](https://github.com/chumaknadya))
- Feature: add notification step && add step for pushing docs to sdk [\#2418](https://github.com/openware/peatio/pull/2418) ([chumaknadya](https://github.com/chumaknadya))
- Feature: incremental order-book [\#2400](https://github.com/openware/peatio/pull/2400) ([calj](https://github.com/calj))
## [2.3.46](https://github.com/openware/peatio/tree/2.3.46) (2019-11-16)
[Full Changelog](https://github.com/openware/peatio/compare/2.2.33...2.3.46)
## [2.2.33](https://github.com/openware/peatio/tree/2.2.33) (2019-11-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.45...2.2.33)
**Merged pull requests:**
- Feature: update version of plugins [\#2417](https://github.com/openware/peatio/pull/2417) ([ymasiuk](https://github.com/ymasiuk))
## [2.3.45](https://github.com/openware/peatio/tree/2.3.45) (2019-11-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.2.32...2.3.45)
**Merged pull requests:**
- Feature: update version of plugins [\#2416](https://github.com/openware/peatio/pull/2416) ([ymasiuk](https://github.com/ymasiuk))
- Feature: improve bump step in drone pipeline && change docs structure [\#2415](https://github.com/openware/peatio/pull/2415) ([chumaknadya](https://github.com/chumaknadya))
- Update gem versions [\#2414](https://github.com/openware/peatio/pull/2414) ([mnaichuk](https://github.com/mnaichuk))
- Feature: Use drone CI [\#2411](https://github.com/openware/peatio/pull/2411) ([Kohelbekker](https://github.com/Kohelbekker))
- Do not expose wallet sensitive settings data on admin api [\#2403](https://github.com/openware/peatio/pull/2403) ([dnfd](https://github.com/dnfd))
- Fix: move travis to openware repo [\#2402](https://github.com/openware/peatio/pull/2402) ([mnaichuk](https://github.com/mnaichuk))
- Add ability to set member group, select member by uid and get all exi… [\#2401](https://github.com/openware/peatio/pull/2401) ([mnaichuk](https://github.com/mnaichuk))
## [2.2.32](https://github.com/openware/peatio/tree/2.2.32) (2019-11-14)
[Full Changelog](https://github.com/openware/peatio/compare/2.0.41...2.2.32)
**Merged pull requests:**
- Fix: using drone CI [\#2410](https://github.com/openware/peatio/pull/2410) ([Kohelbekker](https://github.com/Kohelbekker))
## [2.0.41](https://github.com/openware/peatio/tree/2.0.41) (2019-11-14)
[Full Changelog](https://github.com/openware/peatio/compare/2.2.31...2.0.41)
**Merged pull requests:**
- Feature: add confirmations field to transactions API [\#2413](https://github.com/openware/peatio/pull/2413) ([ymasiuk](https://github.com/ymasiuk))
- Feature: add ability to add note to withdraw by management api [\#2412](https://github.com/openware/peatio/pull/2412) ([ymasiuk](https://github.com/ymasiuk))
- Fix: rename assets folder && change images path in websocket\_api.md [\#2409](https://github.com/openware/peatio/pull/2409) ([chumaknadya](https://github.com/chumaknadya))
- Use drone CI [\#2408](https://github.com/openware/peatio/pull/2408) ([Kohelbekker](https://github.com/Kohelbekker))
- Feature: add notify step to drone pipeline [\#2407](https://github.com/openware/peatio/pull/2407) ([chumaknadya](https://github.com/chumaknadya))
- Fix of asks data [\#2406](https://github.com/openware/peatio/pull/2406) ([akulakovaa](https://github.com/akulakovaa))
## [2.2.31](https://github.com/openware/peatio/tree/2.2.31) (2019-11-12)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.44...2.2.31)
**Merged pull requests:**
- Feature: Update the CI to use SDK for version bumps [\#2405](https://github.com/openware/peatio/pull/2405) ([chumaknadya](https://github.com/chumaknadya))
- Allow filtering by multiple states in admin/withdraws [\#2397](https://github.com/openware/peatio/pull/2397) ([dnfd](https://github.com/dnfd))
- Add pagination to currencies markets & balances. Expose currency position [\#2394](https://github.com/openware/peatio/pull/2394) ([ysv](https://github.com/ysv))
- Feature: Add tid to /account deposits endpoints [\#2393](https://github.com/openware/peatio/pull/2393) ([akulakovaa](https://github.com/akulakovaa))
- Add deposits and withdraws history to one API endpoint [\#2392](https://github.com/openware/peatio/pull/2392) ([ymasiuk](https://github.com/ymasiuk))
- Add deposits and withdraws history to one API endpoint [\#2207](https://github.com/openware/peatio/pull/2207) ([ymasiuk](https://github.com/ymasiuk))
## [2.3.44](https://github.com/openware/peatio/tree/2.3.44) (2019-11-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.43...2.3.44)
**Merged pull requests:**
- Expose explorer transaction and address in admin api [\#2396](https://github.com/openware/peatio/pull/2396) ([dnfd](https://github.com/dnfd))
## [2.3.43](https://github.com/openware/peatio/tree/2.3.43) (2019-10-15)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.42...2.3.43)
**Merged pull requests:**
- Use redis gem with hiredis instead of rails-redis [\#2390](https://github.com/openware/peatio/pull/2390) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.42](https://github.com/openware/peatio/tree/2.3.42) (2019-10-10)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.41...2.3.42)
**Merged pull requests:**
- Add ability to update currency through Management api [\#2389](https://github.com/openware/peatio/pull/2389) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.41](https://github.com/openware/peatio/tree/2.3.41) (2019-10-07)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.40...2.3.41)
**Merged pull requests:**
- Return member accounts for all currencies for admin [\#2387](https://github.com/openware/peatio/pull/2387) ([mnaichuk](https://github.com/mnaichuk))
- Validate order price and origin\_volume only on creating [\#2385](https://github.com/openware/peatio/pull/2385) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.40](https://github.com/openware/peatio/tree/2.3.40) (2019-10-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.39...2.3.40)
**Merged pull requests:**
- Ability to edit market through management API [\#2384](https://github.com/openware/peatio/pull/2384) ([shal](https://github.com/shal))
## [2.3.39](https://github.com/openware/peatio/tree/2.3.39) (2019-10-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.2.30...2.3.39)
## [2.2.30](https://github.com/openware/peatio/tree/2.2.30) (2019-10-04)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.38...2.2.30)
**Merged pull requests:**
- Update ruby to 2.6.5 for security reasons [\#2386](https://github.com/openware/peatio/pull/2386) ([mnaichuk](https://github.com/mnaichuk))
- Crash daemons on Mysql connection error [\#2383](https://github.com/openware/peatio/pull/2383) ([calj](https://github.com/calj))
## [2.3.38](https://github.com/openware/peatio/tree/2.3.38) (2019-09-30)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.37...2.3.38)
**Merged pull requests:**
- Fix \#update\_legacy\_balance for locked accounts [\#2380](https://github.com/openware/peatio/pull/2380) ([mnaichuk](https://github.com/mnaichuk))
- Support beneficiary\_id in management API create withdraw [\#2378](https://github.com/openware/peatio/pull/2378) ([shal](https://github.com/shal))
- \[ci skip\] Prepare for 2.3.0 release [\#2376](https://github.com/openware/peatio/pull/2376) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.37](https://github.com/openware/peatio/tree/2.3.37) (2019-09-26)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.36...2.3.37)
**Merged pull requests:**
- Add visible, deposit\_enabled, withdrawal\_enabled columns to Currency [\#2374](https://github.com/openware/peatio/pull/2374) ([mnaichuk](https://github.com/mnaichuk))
## [2.3.36](https://github.com/openware/peatio/tree/2.3.36) (2019-09-25)
[Full Changelog](https://github.com/openware/peatio/compare/2.3.35...2.3.36)