forked from rero/rero-ils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
2664 lines (2153 loc) · 249 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
## [v1.10.0](https://github.com/rero/rero-ils/tree/v1.10.0) (2022-04-04)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.9.0...v1.10.0)
**New feature:**
- Holdings request [\#2651](https://github.com/rero/rero-ils/pull/2651) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: notifications](https://github.com/rero/rero-ils/labels/f:%20notifications)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] [[f: activity-logs](https://github.com/rero/rero-ils/labels/f:%20activity-logs)] ([vgranata](https://github.com/vgranata))
**Implemented enhancements:**
- Display 20 loans instead of 10 loans in the public patron account [\#2750](https://github.com/rero/rero-ils/issues/2750) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- The first document title should be of type `bf:Title` [\#2581](https://github.com/rero/rero-ils/issues/2581) [[f: editor](https://github.com/rero/rero-ils/labels/f:%20editor)] [[f: activity-logs](https://github.com/rero/rero-ils/labels/f:%20activity-logs)]
- Loans should be sorted in ascending order on due date [\#2263](https://github.com/rero/rero-ils/issues/2263) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)]
- The organisation view is lost after a patron edited his/her profile or account [\#2195](https://github.com/rero/rero-ils/issues/2195) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- Edit profile for a patron: descriptions missing [\#2101](https://github.com/rero/rero-ils/issues/2101) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)]
- selfcheck: add column for comments [\#2744](https://github.com/rero/rero-ils/pull/2744) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] ([lauren-d](https://github.com/lauren-d))
**Fixed bugs:**
- Field ` reproductionOf` has wrong label in the document public view [\#2801](https://github.com/rero/rero-ils/issues/2801) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- The due date of a loan is displayed with a delay of one day in the UI [\#2748](https://github.com/rero/rero-ils/issues/2748) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- A late renewal does not effectively generate the overdue preview fees [\#2741](https://github.com/rero/rero-ils/issues/2741) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- Item tasks: temporary locations are not cleaned correctly [\#2694](https://github.com/rero/rero-ils/issues/2694) [[f: activity-logs](https://github.com/rero/rero-ils/labels/f:%20activity-logs)]
- "Show more" button doesn't work in public interface [\#2691](https://github.com/rero/rero-ils/issues/2691) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- Add fixtures: accounts, library acquisition settings, order and order lines [\#2687](https://github.com/rero/rero-ils/issues/2687)
- ProvisionActivity field : wrong separator for agents [\#2670](https://github.com/rero/rero-ils/issues/2670) [[f: editor](https://github.com/rero/rero-ils/labels/f:%20editor)]
- Item number displayed on holdings for serial and standard items [\#2494](https://github.com/rero/rero-ils/issues/2494) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)] [[f: serials](https://github.com/rero/rero-ils/labels/f:%20serials)]
- Cancellation of a request leads in some cases to the wrong item status [\#2454](https://github.com/rero/rero-ils/issues/2454) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- In the notification "Prêt impossible car l’exemplaire est déjà prêté" precise the document is on loan to another patron [\#2401](https://github.com/rero/rero-ils/issues/2401) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)]
- Item location and category update when parents holdings is changed. [\#1436](https://github.com/rero/rero-ils/issues/1436) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: serials](https://github.com/rero/rero-ils/labels/f:%20serials)]
- dojson: fix work access point and title [\#2824](https://github.com/rero/rero-ils/pull/2824) ([rerowep](https://github.com/rerowep))
- tests: fix acquisition translation problem [\#2823](https://github.com/rero/rero-ils/pull/2823) ([zannkukai](https://github.com/zannkukai))
- items: delete obsolete temporary locations [\#2790](https://github.com/rero/rero-ils/pull/2790) [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] ([BadrAly](https://github.com/BadrAly))
- operation log: fix document title for loan [\#2788](https://github.com/rero/rero-ils/pull/2788) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: activity-logs](https://github.com/rero/rero-ils/labels/f:%20activity-logs)] ([lauren-d](https://github.com/lauren-d))
- oauth: make some information optional [\#2757](https://github.com/rero/rero-ils/pull/2757) [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)] ([jma](https://github.com/jma))
- Some strings of the user profile editor (public interface) are not translated [\#2000](https://github.com/rero/rero-ils/issues/2000)
- Add fixtures: accounts, library acquisition settings, order and order lines [\#2687](https://github.com/rero/rero-ils/issues/2687)
- circulation: cancel intransit request with loans [\#2756](https://github.com/rero/rero-ils/pull/2756) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([BadrAly](https://github.com/BadrAly))
- items: update location and type after parents changes [\#2747](https://github.com/rero/rero-ils/pull/2747) ([BadrAly](https://github.com/BadrAly))
- alembic: fix elasticsearch timeout [\#2743](https://github.com/rero/rero-ils/pull/2743) ([lauren-d](https://github.com/lauren-d))
- selfcheck: fix item not found. [\#2740](https://github.com/rero/rero-ils/pull/2740) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([lauren-d](https://github.com/lauren-d))
**Merged pull requests:**
- tests: fix `test_fees_after_extend` uni test [\#2807](https://github.com/rero/rero-ils/pull/2807) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([zannkukai](https://github.com/zannkukai))
- dojson: fix contribution [\#2806](https://github.com/rero/rero-ils/pull/2806) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] ([rerowep](https://github.com/rerowep))
- public ui: fix wrong label for ReproductionOf [\#2804](https://github.com/rero/rero-ils/pull/2804) ([PascalRepond](https://github.com/PascalRepond))
- acquisition: complete fixtures for some resources [\#2802](https://github.com/rero/rero-ils/pull/2802) ([BadrAly](https://github.com/BadrAly))
- documentation: update changelog parameters [\#2797](https://github.com/rero/rero-ils/pull/2797) ([PascalRepond](https://github.com/PascalRepond))
- item: fix item serialization [\#2789](https://github.com/rero/rero-ils/pull/2789) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([zannkukai](https://github.com/zannkukai))
- documents: escape double quotes in summary [\#2787](https://github.com/rero/rero-ils/pull/2787) ([vgranata](https://github.com/vgranata))
- documentation: rework and improve readme [\#2785](https://github.com/rero/rero-ils/pull/2785) ([PascalRepond](https://github.com/PascalRepond))
- UI: fix the profile menu name [\#2776](https://github.com/rero/rero-ils/pull/2776) ([jma](https://github.com/jma))
- circulation: fix extend end date [\#2771](https://github.com/rero/rero-ils/pull/2771) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([jma](https://github.com/jma))
- dependencies: update the dependencies lock file [\#2770](https://github.com/rero/rero-ils/pull/2770) ([rerowep](https://github.com/rerowep))
- circulation: fix checkout end date [\#2760](https://github.com/rero/rero-ils/pull/2760) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([jma](https://github.com/jma))
- dojson: fix BN [\#2754](https://github.com/rero/rero-ils/pull/2754) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] [[f: activity-logs](https://github.com/rero/rero-ils/labels/f:%20activity-logs)] ([rerowep](https://github.com/rerowep))
- circulation: create patron fees on extend [\#2745](https://github.com/rero/rero-ils/pull/2745) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([jma](https://github.com/jma))
- documentation: improve changelog generation [\#2738](https://github.com/rero/rero-ils/pull/2738) ([PascalRepond](https://github.com/PascalRepond))
- dependencies: update python packages [\#2736](https://github.com/rero/rero-ils/pull/2736) ([jma](https://github.com/jma))
- contributions: better update\_contributions [\#2728](https://github.com/rero/rero-ils/pull/2728) ([rerowep](https://github.com/rerowep))
- monitoring: better time stamps [\#2725](https://github.com/rero/rero-ils/pull/2725) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([rerowep](https://github.com/rerowep))
- holding: better delete\_standard\_holdings\_having\_no\_items [\#2724](https://github.com/rero/rero-ils/pull/2724) ([rerowep](https://github.com/rerowep))
- documentation: update PR labeler to new Github label list [\#2719](https://github.com/rero/rero-ils/pull/2719) ([PascalRepond](https://github.com/PascalRepond))
- circulation: fix extension duration calculation. [\#2686](https://github.com/rero/rero-ils/pull/2686) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([zannkukai](https://github.com/zannkukai))
- interface: keep the viewcode in the urls [\#2681](https://github.com/rero/rero-ils/pull/2681) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)] ([Garfield-fr](https://github.com/Garfield-fr))
- statistics: add tests, query and csv download button for librarian statistics [\#2661](https://github.com/rero/rero-ils/pull/2661) [[f: statistics](https://github.com/rero/rero-ils/labels/f:%20statistics)] ([vgranata](https://github.com/vgranata))
- acquisition: complete fixtures for some resources [\#2802](https://github.com/rero/rero-ils/pull/2802) ([BadrAly](https://github.com/BadrAly))
## [v1.9.0](https://github.com/rero/rero-ils/tree/v1.9.0) (2022-02-24)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.8.0...v1.9.0)
**Implemented enhancements:**
- Scanning a patron barcode in the circulation interface gives the following error: "Patron or item not found" [\#2677](https://github.com/rero/rero-ils/issues/2677) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- Document editor: field Type : add a new main type with subtypes [\#2666](https://github.com/rero/rero-ils/issues/2666) [[f: editor](https://github.com/rero/rero-ils/labels/f:%20editor)]
- Allow to enable/disable notification creation by `config` settings [\#2665](https://github.com/rero/rero-ils/issues/2665) [[f: notifications](https://github.com/rero/rero-ils/labels/f:%20notifications)]
- Convert steps dates in iso format for patron overdue preview [\#2629](https://github.com/rero/rero-ils/issues/2629)
- Inventory : Add a checkout and due date to the export [\#2611](https://github.com/rero/rero-ils/issues/2611) [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)]
- Library holidays: add an open option for a period [\#2577](https://github.com/rero/rero-ils/issues/2577) [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)]
- Improve the Holdings detail view \(Issue's section\) [\#2554](https://github.com/rero/rero-ils/issues/2554) [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: serials](https://github.com/rero/rero-ils/labels/f:%20serials)]
- RERO+ logo on login page [\#2544](https://github.com/rero/rero-ils/issues/2544)
- Add the edition statements in the search result \(document brief views\) [\#2429](https://github.com/rero/rero-ils/issues/2429) [[f: search](https://github.com/rero/rero-ils/labels/f:%20search)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- Creation date mentioned in patron account [\#2377](https://github.com/rero/rero-ils/issues/2377) [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)]
- Inventory list: add a facet for the temporary circulation category and temporary location [\#2364](https://github.com/rero/rero-ils/issues/2364) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)]
- Document : Display subtitle in brief view \(public and professional\) [\#2335](https://github.com/rero/rero-ils/issues/2335) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- `responsibilityStatement` should be a quick access field [\#2324](https://github.com/rero/rero-ils/issues/2324) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)]
**Fixed bugs:**
- Calculation of fees based on the library of the renewal or checkin, instead of the library of the checkout [\#2683](https://github.com/rero/rero-ils/issues/2683) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- `request` notification not sent if library settings is incomplete [\#2656](https://github.com/rero/rero-ils/issues/2656) [[f: notifications](https://github.com/rero/rero-ils/labels/f:%20notifications)]
- Problem with the first search of a document on the pro interface [\#2652](https://github.com/rero/rero-ils/issues/2652) [[f: search](https://github.com/rero/rero-ils/labels/f:%20search)] [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)]
- Incremental overdue fees should always be calculated according to the checkout library's opening days [\#2640](https://github.com/rero/rero-ils/issues/2640) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- Document editor : missing value "bul-latn"and "bul-cyrl" in language drop down menu [\#2628](https://github.com/rero/rero-ils/issues/2628) [[f: editor](https://github.com/rero/rero-ils/labels/f:%20editor)]
- Error when deleting a fine [\#2602](https://github.com/rero/rero-ils/issues/2602) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
- Search gives no result after applying a sort [\#2562](https://github.com/rero/rero-ils/issues/2562) [[f: search](https://github.com/rero/rero-ils/labels/f:%20search)]
- Search parameter `bestmatch` should not be required [\#2527](https://github.com/rero/rero-ils/issues/2527) [[f: search](https://github.com/rero/rero-ils/labels/f:%20search)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)]
- Availability of serials \(at the document level\) should be "See collections and items" if a serial holding is attached [\#2502](https://github.com/rero/rero-ils/issues/2502) [[f: professional ui](https://github.com/rero/rero-ils/labels/f:%20professional%20ui)] [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)] [[f: serials](https://github.com/rero/rero-ils/labels/f:%20serials)]
- Circ policies: overdue fees not displayed if the reminders are not configured [\#2325](https://github.com/rero/rero-ils/issues/2325) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)]
**Merged pull requests:**
- contribution: fix update-contributions [\#2723](https://github.com/rero/rero-ils/pull/2723) ([rerowep](https://github.com/rerowep))
- issues: fix 'received\_date' required conditions. [\#2721](https://github.com/rero/rero-ils/pull/2721) ([zannkukai](https://github.com/zannkukai))
- item: add a organisation filter [\#2718](https://github.com/rero/rero-ils/pull/2718) ([Garfield-fr](https://github.com/Garfield-fr))
- dependencies: fix [\#2711](https://github.com/rero/rero-ils/pull/2711) ([rerowep](https://github.com/rerowep))
- modules: add logging to create [\#2709](https://github.com/rero/rero-ils/pull/2709) ([rerowep](https://github.com/rerowep))
- holding: fix delete all items for issue [\#2706](https://github.com/rero/rero-ils/pull/2706) ([rerowep](https://github.com/rerowep))
- menu: fix bad caret alignment in mobile menu [\#2702](https://github.com/rero/rero-ils/pull/2702) [[f: public ui](https://github.com/rero/rero-ils/labels/f:%20public%20ui)] ([lauren-d](https://github.com/lauren-d))
- contribution: online update [\#2699](https://github.com/rero/rero-ils/pull/2699) ([rerowep](https://github.com/rerowep))
- document: fix invenio\_celery.tasks endpoints. [\#2696](https://github.com/rero/rero-ils/pull/2696) ([rerowep](https://github.com/rerowep))
- notification: disable notifications creation by config [\#2690](https://github.com/rero/rero-ils/pull/2690) ([zannkukai](https://github.com/zannkukai))
- patron transaction event: fix decimal amount [\#2682](https://github.com/rero/rero-ils/pull/2682) ([zannkukai](https://github.com/zannkukai))
- circulation: compute fees on checkout location [\#2678](https://github.com/rero/rero-ils/pull/2678) ([zannkukai](https://github.com/zannkukai))
- vendor: allow more flexibility on phone number. [\#2671](https://github.com/rero/rero-ils/pull/2671) ([zannkukai](https://github.com/zannkukai))
- general: fix RERO logo for sign-in sign-up page. [\#2669](https://github.com/rero/rero-ils/pull/2669) ([zannkukai](https://github.com/zannkukai))
- document: add `teaching material` document type [\#2668](https://github.com/rero/rero-ils/pull/2668) ([zannkukai](https://github.com/zannkukai))
- holdings: serial issue isn't new acquisition [\#2667](https://github.com/rero/rero-ils/pull/2667) ([zannkukai](https://github.com/zannkukai))
- document: fix `educationalSheet` translation [\#2664](https://github.com/rero/rero-ils/pull/2664) ([zannkukai](https://github.com/zannkukai))
- notifications: refactoring email getter function [\#2657](https://github.com/rero/rero-ils/pull/2657) ([zannkukai](https://github.com/zannkukai))
- dependencies: update the dependencies lock file [\#2655](https://github.com/rero/rero-ils/pull/2655) ([jma](https://github.com/jma))
- items: dump `request date` for any loan request [\#2646](https://github.com/rero/rero-ils/pull/2646) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] ([zannkukai](https://github.com/zannkukai))
- patron\_types: add a limit for unpaid subscription [\#2644](https://github.com/rero/rero-ils/pull/2644) [[f: circulation](https://github.com/rero/rero-ils/labels/f:%20circulation)] [[f: search](https://github.com/rero/rero-ils/labels/f:%20search)] [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] ([zannkukai](https://github.com/zannkukai))
- patrons: use ISO format for dates into API [\#2642](https://github.com/rero/rero-ils/pull/2642) [[f: user management](https://github.com/rero/rero-ils/labels/f:%20user%20management)] ([zannkukai](https://github.com/zannkukai))
- document: set `responsibilities` as essential field [\#2641](https://github.com/rero/rero-ils/pull/2641) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] ([zannkukai](https://github.com/zannkukai))
- document: add Bulgarian script languages [\#2638](https://github.com/rero/rero-ils/pull/2638) [[f: data](https://github.com/rero/rero-ils/labels/f:%20data)] [[f: data migration](https://github.com/rero/rero-ils/labels/f:%20data%20migration)] ([zannkukai](https://github.com/zannkukai))
- item: fix item availability API. [\#2634](https://github.com/rero/rero-ils/pull/2634) ([zannkukai](https://github.com/zannkukai))
- search: add facets for inventory list [\#2612](https://github.com/rero/rero-ils/pull/2612) ([lauren-d](https://github.com/lauren-d))
## [v1.8.0](https://github.com/rero/rero-ils/tree/v1.8.0) (2022-01-20)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.7.0...v1.8.0)
**Implemented enhancements:**
- User account \(public\): filter by institution [\#2615](https://github.com/rero/rero-ils/issues/2615)
- Access to circulation complex from patron detailed view [\#2533](https://github.com/rero/rero-ils/issues/2533)
- Allow the librarian to see other organisations items and holdings [\#1945](https://github.com/rero/rero-ils/issues/1945)
**Fixed bugs:**
- circulation: unable to do a checkout in prof. interface [\#2626](https://github.com/rero/rero-ils/issues/2626)
- Account number: the systems says it is already taken, but it is not [\#2618](https://github.com/rero/rero-ils/issues/2618)
- circulation: problem to manage checkin operations when item/patron barcode are identical [\#2597](https://github.com/rero/rero-ils/issues/2597)
- It should not be possible to remove a temporary location used in items [\#2578](https://github.com/rero/rero-ils/issues/2578)
- Summary not displayed after clicking on 'show more' [\#2551](https://github.com/rero/rero-ils/issues/2551)
- Dates are not displayed correctly \(delay of 1 day\) in the fee tab of the patron account [\#2550](https://github.com/rero/rero-ils/issues/2550)
- "User editor" should be replaced by "Personal data" and translated [\#2538](https://github.com/rero/rero-ils/issues/2538)
- Impossible de create a patron type [\#2479](https://github.com/rero/rero-ils/issues/2479)
- Language code translation problem in the "Language of representative expression" [\#2416](https://github.com/rero/rero-ils/issues/2416)
- Often the public and professional interface changes the language [\#2277](https://github.com/rero/rero-ils/issues/2277)
- Removing a pick-up location creates bugs on the loans [\#2162](https://github.com/rero/rero-ils/issues/2162)
**Merged pull requests:**
- notification: fix `reply-to` recipient [\#2645](https://github.com/rero/rero-ils/pull/2645) ([zannkukai](https://github.com/zannkukai))
- deployment: fix flask-wiki [\#2643](https://github.com/rero/rero-ils/pull/2643) ([rerowep](https://github.com/rerowep))
- statistics: implement basic statistics for librarians [\#2632](https://github.com/rero/rero-ils/pull/2632) ([vgranata](https://github.com/vgranata))
- notifications: fix creation [\#2624](https://github.com/rero/rero-ils/pull/2624) ([rerowep](https://github.com/rerowep))
- modules: fix get\_all\_pids [\#2614](https://github.com/rero/rero-ils/pull/2614) ([rerowep](https://github.com/rerowep))
- Merge `US\_acquisition` on `staging` [\#2613](https://github.com/rero/rero-ils/pull/2613) ([zannkukai](https://github.com/zannkukai))
- notification: fix notification fee amount calculation [\#2600](https://github.com/rero/rero-ils/pull/2600) ([zannkukai](https://github.com/zannkukai))
- dependencies: update the dependencies lock file [\#2596](https://github.com/rero/rero-ils/pull/2596) ([rerowep](https://github.com/rerowep))
- circulation: fix overdue fees timestamp calculation [\#2593](https://github.com/rero/rero-ils/pull/2593) ([zannkukai](https://github.com/zannkukai))
- loans: dumping related circulation policy [\#2589](https://github.com/rero/rero-ils/pull/2589) ([zannkukai](https://github.com/zannkukai))
- documents: fix translation on original language field [\#2588](https://github.com/rero/rero-ils/pull/2588) ([Garfield-fr](https://github.com/Garfield-fr))
- locations: fix temporary deletion [\#2586](https://github.com/rero/rero-ils/pull/2586) ([rerowep](https://github.com/rerowep))
- jsonschema: introduce exclusiveMinimum for fields [\#2580](https://github.com/rero/rero-ils/pull/2580) ([BadrAly](https://github.com/BadrAly))
- items: delete checked-in provisional items [\#2572](https://github.com/rero/rero-ils/pull/2572) ([BadrAly](https://github.com/BadrAly))
- add organisation name on the title tag [\#2571](https://github.com/rero/rero-ils/pull/2571) ([Garfield-fr](https://github.com/Garfield-fr))
- professional: fix patron type creation [\#2566](https://github.com/rero/rero-ils/pull/2566) ([jma](https://github.com/jma))
- documents: replace identifiedBy subjects with $ref [\#2558](https://github.com/rero/rero-ils/pull/2558) ([rerowep](https://github.com/rerowep))
- holdings/items: remove query filter and add a sort on the holdings [\#2528](https://github.com/rero/rero-ils/pull/2528) ([Garfield-fr](https://github.com/Garfield-fr))
## [v1.7.0](https://github.com/rero/rero-ils/tree/v1.7.0) (2021-12-13)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.6.1...v1.7.0)
**Implemented enhancements:**
- User account: display the loans of other institutions [\#2545](https://github.com/rero/rero-ils/issues/2545)
- Fields `provisionActivity.startDate` and `provisionActivity.startDate` should be indexed [\#2517](https://github.com/rero/rero-ils/issues/2517)
- Add link to the item in the patron history \(professional interface\) [\#2499](https://github.com/rero/rero-ils/issues/2499)
- Display a warning when canceling in the editor [\#2413](https://github.com/rero/rero-ils/issues/2413)
**Fixed bugs:**
- Item circulation history does not display most of the transactions [\#2531](https://github.com/rero/rero-ils/issues/2531)
- Operation history for items, holdings, documents cannot be opened and displayed [\#2530](https://github.com/rero/rero-ils/issues/2530)
- Impossible to save a document with field `seriesStatement` [\#2529](https://github.com/rero/rero-ils/issues/2529)
- Some barcode searches giving too many results [\#2526](https://github.com/rero/rero-ils/issues/2526)
- Typo error in document JSON schema, `adminMetadata`: "Core leve" [\#2519](https://github.com/rero/rero-ils/issues/2519)
- The SIP2 connexion for Cantook fails most of the time [\#2462](https://github.com/rero/rero-ils/issues/2462)
- Checkout possible only after cancelling the request of the patron [\#2367](https://github.com/rero/rero-ils/issues/2367)
- Server error if the checkout is made from a library that does not have any pick-up location [\#2318](https://github.com/rero/rero-ils/issues/2318)
- Person and corporate body search should be restricted on the organisation scope [\#2176](https://github.com/rero/rero-ils/issues/2176)
- Subtype facets are buggy on the "import from web" interface [\#2065](https://github.com/rero/rero-ils/issues/2065)
- Parts of public patron account are not translated [\#1819](https://github.com/rero/rero-ils/issues/1819)
**Closed issues:**
- Loan expiry notices sent only once, even in case of renewals [\#2470](https://github.com/rero/rero-ils/issues/2470)
- BnF: only the EAN is imported, ISBN is ignored. [\#1825](https://github.com/rero/rero-ils/issues/1825)
**Merged pull requests:**
- translations: translate v1.7.0 [\#2590](https://github.com/rero/rero-ils/pull/2590) ([vgranata](https://github.com/vgranata))
- notifications: fix multiple notification creation [\#2583](https://github.com/rero/rero-ils/pull/2583) ([zannkukai](https://github.com/zannkukai))
- PatronTransaction: fix event creation [\#2582](https://github.com/rero/rero-ils/pull/2582) ([zannkukai](https://github.com/zannkukai))
- dependencies: update the dependencies lock file [\#2570](https://github.com/rero/rero-ils/pull/2570) ([rerowep](https://github.com/rerowep))
- notifications: fix email\_notification\_type [\#2568](https://github.com/rero/rero-ils/pull/2568) ([rerowep](https://github.com/rerowep))
- import: fix links for contributors with DNB identifiers [\#2564](https://github.com/rero/rero-ils/pull/2564) ([benerken](https://github.com/benerken))
- dependencies: update the dependencies lock file [\#2561](https://github.com/rero/rero-ils/pull/2561) ([jma](https://github.com/jma))
- documents: fix reference exist test [\#2555](https://github.com/rero/rero-ils/pull/2555) ([rerowep](https://github.com/rerowep))
- notifications: fix overdue notification creation [\#2552](https://github.com/rero/rero-ils/pull/2552) ([zannkukai](https://github.com/zannkukai))
- ui: add a location level in facets [\#2547](https://github.com/rero/rero-ils/pull/2547) ([benerken](https://github.com/benerken))
- items: find item creation problem [\#2540](https://github.com/rero/rero-ils/pull/2540) ([rerowep](https://github.com/rerowep))
- operation logs: fix query if the user is both patron and librarian role [\#2536](https://github.com/rero/rero-ils/pull/2536) ([Garfield-fr](https://github.com/Garfield-fr))
- documents: delete default value on identifiedby field [\#2535](https://github.com/rero/rero-ils/pull/2535) ([Garfield-fr](https://github.com/Garfield-fr))
- documents: fixes too many results [\#2534](https://github.com/rero/rero-ils/pull/2534) ([jma](https://github.com/jma))
- notifications: fix request notification without recipient [\#2525](https://github.com/rero/rero-ils/pull/2525) ([rerowep](https://github.com/rerowep))
- ebook: fix import [\#2524](https://github.com/rero/rero-ils/pull/2524) ([rerowep](https://github.com/rerowep))
- documents: fix core level [\#2520](https://github.com/rero/rero-ils/pull/2520) ([rerowep](https://github.com/rerowep))
- documents: find and replace identifiedBy [\#2518](https://github.com/rero/rero-ils/pull/2518) ([rerowep](https://github.com/rerowep))
- notifications: fix reminders notification template [\#2508](https://github.com/rero/rero-ils/pull/2508) ([zannkukai](https://github.com/zannkukai))
- documents: validate JSON references [\#2506](https://github.com/rero/rero-ils/pull/2506) ([rerowep](https://github.com/rerowep))
- monitoring: improve diff from ES to DB calculation [\#2490](https://github.com/rero/rero-ils/pull/2490) ([rerowep](https://github.com/rerowep))
- circulation: add automatic request expiration [\#2485](https://github.com/rero/rero-ils/pull/2485) ([zannkukai](https://github.com/zannkukai))
- circulation: support non-circulating libraries [\#2431](https://github.com/rero/rero-ils/pull/2431) ([BadrAly](https://github.com/BadrAly))
- import: add new sources to import from the web [\#2394](https://github.com/rero/rero-ils/pull/2394) ([benerken](https://github.com/benerken))
## [v1.6.1](https://github.com/rero/rero-ils/tree/v1.6.1) (2021-11-11)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.6.0...v1.6.1)
**Merged pull requests:**
- acquisition: calculate indexed fields [\#2512](https://github.com/rero/rero-ils/pull/2512) ([BadrAly](https://github.com/BadrAly))
- setup: fix setup script [\#2510](https://github.com/rero/rero-ils/pull/2510) ([rerowep](https://github.com/rerowep))
- setup: fix setup script [\#2509](https://github.com/rero/rero-ils/pull/2509) ([rerowep](https://github.com/rerowep))
- dependencies: fix wtform [\#2507](https://github.com/rero/rero-ils/pull/2507) ([jma](https://github.com/jma))
- indexer: use different queues for indexing [\#2492](https://github.com/rero/rero-ils/pull/2492) ([rerowep](https://github.com/rerowep))
## [v1.6.0](https://github.com/rero/rero-ils/tree/v1.6.0) (2021-10-28)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.5.1...v1.6.0)
**Implemented enhancements:**
- Make field "second\_call\_number" visible in requests interface [\#2398](https://github.com/rero/rero-ils/issues/2398)
- Anonymise loans with some delay after they are closed [\#2068](https://github.com/rero/rero-ils/issues/2068)
**Fixed bugs:**
- It should not be possible to link an order line to a harvested document [\#2439](https://github.com/rero/rero-ils/issues/2439)
- 2 translations disappeared after `v1.5.0` [\#2438](https://github.com/rero/rero-ils/issues/2438)
- Overdue notifications: inconsistency between reminder numbers [\#2390](https://github.com/rero/rero-ils/issues/2390)
- Fee counter not correct in the patron account \(public interface\) [\#2319](https://github.com/rero/rero-ils/issues/2319)
- Manage deleted patron during the loan anonymisation [\#2251](https://github.com/rero/rero-ils/issues/2251)
- Patron profile does not always contains the opened ILL requests [\#1902](https://github.com/rero/rero-ils/issues/1902)
- The transaction history should base on the operation logs and not on the loans [\#1227](https://github.com/rero/rero-ils/issues/1227)
- Search diacritics issues: économie vs economie [\#2396](https://github.com/rero/rero-ils/issues/2396)
- Creating an item template from an existing item creates errors [\#2385](https://github.com/rero/rero-ils/issues/2385)
- Availability sent to the owning library instead of the pickup [\#2373](https://github.com/rero/rero-ils/issues/2373)
- Document: the temporary location URL \(route\) is wrong [\#2337](https://github.com/rero/rero-ils/issues/2337)
- Due date not computed correcty \(also after renewal\) [\#2198](https://github.com/rero/rero-ils/issues/2198)
- notifications: fix fixtures notification [\#2477](https://github.com/rero/rero-ils/pull/2477) ([BadrAly](https://github.com/BadrAly))
- holdings: fix serial item deletion in ES [\#2453](https://github.com/rero/rero-ils/pull/2453) ([rerowep](https://github.com/rerowep))
**Closed issues:**
- Notification should be canceled if item is deleted [\#2410](https://github.com/rero/rero-ils/issues/2410)
- Document model : add "note" in the Languages field [\#1867](https://github.com/rero/rero-ils/issues/1867)
**Merged pull requests:**
- release: v1.6.0 [\#2487](https://github.com/rero/rero-ils/pull/2487) ([jma](https://github.com/jma))
- loans: fix loan\_anonymizer [\#2433](https://github.com/rero/rero-ils/pull/2433) ([rerowep](https://github.com/rerowep))
- documents: improve work access point field [\#2478](https://github.com/rero/rero-ils/pull/2478) ([Garfield-fr](https://github.com/Garfield-fr))
- security: update dependencies [\#2475](https://github.com/rero/rero-ils/pull/2475) ([rerowep](https://github.com/rerowep))
- cli: reindex into a second index [\#2468](https://github.com/rero/rero-ils/pull/2468) ([jma](https://github.com/jma))
- documents: translate issuance subtype [\#2467](https://github.com/rero/rero-ils/pull/2467) ([Garfield-fr](https://github.com/Garfield-fr))
- staging [\#2466](https://github.com/rero/rero-ils/pull/2466) ([iGormilhit](https://github.com/iGormilhit))
- translations: translate v1.6.0 [\#2461](https://github.com/rero/rero-ils/pull/2461) ([iGormilhit](https://github.com/iGormilhit))
- circulation: update invenio-circulation to v1.0.0a33 [\#2447](https://github.com/rero/rero-ils/pull/2447) ([BadrAly](https://github.com/BadrAly))
- templates: suppress links from the data section [\#2444](https://github.com/rero/rero-ils/pull/2444) ([BadrAly](https://github.com/BadrAly))
- items: add second call\_number on dump [\#2442](https://github.com/rero/rero-ils/pull/2442) ([zannkukai](https://github.com/zannkukai))
- documents: add note for language [\#2441](https://github.com/rero/rero-ils/pull/2441) ([rerowep](https://github.com/rerowep))
- circulation: fix anonymization behavior [\#2440](https://github.com/rero/rero-ils/pull/2440) ([zannkukai](https://github.com/zannkukai))
- users: case insensitive email validation [\#2437](https://github.com/rero/rero-ils/pull/2437) ([rerowep](https://github.com/rerowep))
- documents: add identifiedBy subfield on some fields [\#2428](https://github.com/rero/rero-ils/pull/2428) ([Garfield-fr](https://github.com/Garfield-fr))
- documents: index subjects as keyword [\#2402](https://github.com/rero/rero-ils/pull/2402) ([rerowep](https://github.com/rerowep))
- notifications: generalize notification resource [\#2393](https://github.com/rero/rero-ils/pull/2393) ([zannkukai](https://github.com/zannkukai))
- data: implement stop words [\#2387](https://github.com/rero/rero-ils/pull/2387) ([Garfield-fr](https://github.com/Garfield-fr))
## [v1.5.1](https://github.com/rero/rero-ils/tree/v1.5.1) (2021-10-06)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.5.0...v1.5.1)
**Implemented enhancements:**
- Make the field "gender" visible on the patron view [\#2399](https://github.com/rero/rero-ils/issues/2399)
**Merged pull requests:**
- documents: fix libraries aggregations [\#2434](https://github.com/rero/rero-ils/pull/2434) ([jma](https://github.com/jma))
- dependencies: fix jsonschema [\#2432](https://github.com/rero/rero-ils/pull/2432) ([rerowep](https://github.com/rerowep))
- release: v1.5.1 [\#2445](https://github.com/rero/rero-ils/pull/2445) ([iGormilhit](https://github.com/iGormilhit))
- theme: fix wrong URL on production front pages [\#2443](https://github.com/rero/rero-ils/pull/2443) ([iGormilhit](https://github.com/iGormilhit))
- circulation: fix loan end\_date [\#2435](https://github.com/rero/rero-ils/pull/2435) ([zannkukai](https://github.com/zannkukai))
## [v1.5.0](https://github.com/rero/rero-ils/tree/v1.5.0) (2021-09-30)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.11...v1.5.0)
**Implemented enhancements:**
- Make the document typehead of the document editor usable [\#2249](https://github.com/rero/rero-ils/issues/2249)
- Adapt the field list in quick access in the document editor [\#1921](https://github.com/rero/rero-ils/issues/1921)
- An autocomplete enables to create links between documents [\#1920](https://github.com/rero/rero-ils/issues/1920)
- Delete a holdings with items should be possible [\#1720](https://github.com/rero/rero-ils/issues/1720)
- documents: optimize serialization [\#2309](https://github.com/rero/rero-ils/pull/2309) ([Garfield-fr](https://github.com/Garfield-fr))
- local fields: improve validation [\#2268](https://github.com/rero/rero-ils/pull/2268) ([Garfield-fr](https://github.com/Garfield-fr))
**Fixed bugs:**
- It should not be possible to delete a document that is linked to another document [\#2414](https://github.com/rero/rero-ils/issues/2414)
- Some items have been loaded with the same barcode [\#2272](https://github.com/rero/rero-ils/issues/2272)
- Check-in form loads all previous loans at each checkin [\#2259](https://github.com/rero/rero-ils/issues/2259)
- Sometimes the input field is not cleared in the 2 circulation forms. [\#2244](https://github.com/rero/rero-ils/issues/2244)
- Issues become "late" one day too early [\#2224](https://github.com/rero/rero-ils/issues/2224)
- Corporate bodies with subdivision are displayed with quotes and square brackets [\#2213](https://github.com/rero/rero-ils/issues/2213)
- Request list: the wrong pick-up name is displayed [\#2207](https://github.com/rero/rero-ils/issues/2207)
- Remove an item with linked fees should open a warning [\#2102](https://github.com/rero/rero-ils/issues/2102)
- Duplicate item, or item list different in public and professional interface [\#2095](https://github.com/rero/rero-ils/issues/2095)
- When editing a resource, default values are automatically added to fields \(that were not present before edition\) [\#2080](https://github.com/rero/rero-ils/issues/2080)
- Two users can have the same e-mail if the case is different. [\#2048](https://github.com/rero/rero-ils/issues/2048)
- Two API requests for on search query on the global search [\#1970](https://github.com/rero/rero-ils/issues/1970)
- Field `modeOfIssuance.subtype` sometimes not imported [\#1928](https://github.com/rero/rero-ils/issues/1928)
- Zabix should capture when the schedular does not execute the tasks [\#1339](https://github.com/rero/rero-ils/issues/1339)
- operation logs: restore configuration [\#2421](https://github.com/rero/rero-ils/pull/2421) ([Garfield-fr](https://github.com/Garfield-fr))
- items: disable the delete action if there is a fee [\#2271](https://github.com/rero/rero-ils/pull/2271) ([Garfield-fr](https://github.com/Garfield-fr))
- selfcheck: fix patron informations [\#2248](https://github.com/rero/rero-ils/pull/2248) ([jma](https://github.com/jma))
**Closed issues:**
- Generate square brackets in genre\_form field [\#2237](https://github.com/rero/rero-ils/issues/2237)
- Collection should have metadata table in DB [\#2193](https://github.com/rero/rero-ils/issues/2193)
- Remove validation on field `copyrightDate` [\#2214](https://github.com/rero/rero-ils/issues/2214)
- Wrong default value of `subject.source` and `genreForm.source` [\#2212](https://github.com/rero/rero-ils/issues/2212)
- Item types CLI does not work as expected [\#1992](https://github.com/rero/rero-ils/issues/1992)
- Add a request on an item should not update the operation logs [\#1779](https://github.com/rero/rero-ils/issues/1779)
**Merged pull requests:**
- release: v1.5.0 [\#2425](https://github.com/rero/rero-ils/pull/2425) ([iGormilhit](https://github.com/iGormilhit))
- translations: complete v1.5.0 translations [\#2424](https://github.com/rero/rero-ils/pull/2424) ([iGormilhit](https://github.com/iGormilhit))
- dev [\#2420](https://github.com/rero/rero-ils/pull/2420) ([iGormilhit](https://github.com/iGormilhit))
- notification: fix loan notification candidates [\#2417](https://github.com/rero/rero-ils/pull/2417) ([zannkukai](https://github.com/zannkukai))
- documentation: add a minimal security policy [\#2415](https://github.com/rero/rero-ils/pull/2415) ([iGormilhit](https://github.com/iGormilhit))
- documentation: extend labeler rules [\#2409](https://github.com/rero/rero-ils/pull/2409) ([iGormilhit](https://github.com/iGormilhit))
- translations: translate v1.5.0 [\#2404](https://github.com/rero/rero-ils/pull/2404) ([iGormilhit](https://github.com/iGormilhit))
- operation logs: untrack some changes. [\#2395](https://github.com/rero/rero-ils/pull/2395) ([zannkukai](https://github.com/zannkukai))
- footer: fix missing version [\#2392](https://github.com/rero/rero-ils/pull/2392) ([Garfield-fr](https://github.com/Garfield-fr))
- documents: prevent referenced document deletion [\#2389](https://github.com/rero/rero-ils/pull/2389) ([rerowep](https://github.com/rerowep))
- templates: prevent resolving $ref from data field [\#2386](https://github.com/rero/rero-ils/pull/2386) ([zannkukai](https://github.com/zannkukai))
- patrons: improve patron dumping [\#2384](https://github.com/rero/rero-ils/pull/2384) ([zannkukai](https://github.com/zannkukai))
- documents: create documents with item CLI [\#2371](https://github.com/rero/rero-ils/pull/2371) ([rerowep](https://github.com/rerowep))
- editor: remove default values on optional fields [\#2316](https://github.com/rero/rero-ils/pull/2316) ([Garfield-fr](https://github.com/Garfield-fr))
- selfcheck: force the version [\#2250](https://github.com/rero/rero-ils/pull/2250) ([jma](https://github.com/jma))
- contributions: improve display on detailed view [\#2246](https://github.com/rero/rero-ils/pull/2246) ([Garfield-fr](https://github.com/Garfield-fr))
- theme: update the demo website frontpage [\#2245](https://github.com/rero/rero-ils/pull/2245) ([iGormilhit](https://github.com/iGormilhit))
- documents: display all fields on the detail view [\#2241](https://github.com/rero/rero-ils/pull/2241) ([Garfield-fr](https://github.com/Garfield-fr))
- document: no default value for `subject.source` [\#2233](https://github.com/rero/rero-ils/pull/2233) ([zannkukai](https://github.com/zannkukai))
- document: fix corporate bodies subdivision serialization [\#2231](https://github.com/rero/rero-ils/pull/2231) ([zannkukai](https://github.com/zannkukai))
- document: remove pattern on `copyrightDate` field [\#2230](https://github.com/rero/rero-ils/pull/2230) ([zannkukai](https://github.com/zannkukai))
- holdings: allow deletion of serials holdings [\#2219](https://github.com/rero/rero-ils/pull/2219) ([rerowep](https://github.com/rerowep))
- items: fix loans circulation dump [\#2210](https://github.com/rero/rero-ils/pull/2210) ([zannkukai](https://github.com/zannkukai))
- collections: create a specific DB table [\#2208](https://github.com/rero/rero-ils/pull/2208) ([zannkukai](https://github.com/zannkukai))
- editor: remove imported fields on quick list [\#2169](https://github.com/rero/rero-ils/pull/2169) ([Garfield-fr](https://github.com/Garfield-fr))
- design: improve responsive interface [\#2132](https://github.com/rero/rero-ils/pull/2132) ([zannkukai](https://github.com/zannkukai))
- ILL requests: allow free text into year field [\#2116](https://github.com/rero/rero-ils/pull/2116) ([zannkukai](https://github.com/zannkukai))
## [v1.4.11](https://github.com/rero/rero-ils/tree/v1.4.11) (2021-09-14)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.10...v1.4.11)
**Merged pull requests:**
- loans: fix requested items dump [\#2382](https://github.com/rero/rero-ils/pull/2382) ([zannkukai](https://github.com/zannkukai))
- acquisition: create acquisition resources dumpers [\#2369](https://github.com/rero/rero-ils/pull/2369) ([zannkukai](https://github.com/zannkukai))
- release: v1.4.11 [\#2381](https://github.com/rero/rero-ils/pull/2381) ([iGormilhit](https://github.com/iGormilhit))
- theme: change the link for ILL prices [\#2380](https://github.com/rero/rero-ils/pull/2380) ([iGormilhit](https://github.com/iGormilhit))
- professional: fix angular assets [\#2379](https://github.com/rero/rero-ils/pull/2379) ([jma](https://github.com/jma))
## [v1.4.10](https://github.com/rero/rero-ils/tree/v1.4.10) (2021-09-09)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.9...v1.4.10)
**Implemented enhancements:**
- Add indexes for retrieval when linkink document to another document or authority [\#2352](https://github.com/rero/rero-ils/issues/2352)
- Disable "add request" button after first click [\#2317](https://github.com/rero/rero-ils/issues/2317)
- Edition: performance [\#1747](https://github.com/rero/rero-ils/issues/1747)
**Fixed bugs:**
- 2nd, 3rd… overdue notification \(reminders\) should be identified in the body message [\#2348](https://github.com/rero/rero-ils/issues/2348)
- Request list: all items with a temporary circulation category are hidden [\#2296](https://github.com/rero/rero-ils/issues/2296)
- Late issues list should take into account the locations linked to my login [\#2284](https://github.com/rero/rero-ils/issues/2284)
**Closed issues:**
- "Press space for all" only display the 20 first fields in the editor [\#1908](https://github.com/rero/rero-ils/issues/1908)
**Merged pull requests:**
- release: v1.4.10 [\#2378](https://github.com/rero/rero-ils/pull/2378) ([iGormilhit](https://github.com/iGormilhit))
- translations: translate v1.5.0 [\#2374](https://github.com/rero/rero-ils/pull/2374) ([iGormilhit](https://github.com/iGormilhit))
- security: update dependencies [\#2344](https://github.com/rero/rero-ils/pull/2344) ([rerowep](https://github.com/rerowep))
- items: fix requested loans by library list [\#2307](https://github.com/rero/rero-ils/pull/2307) ([zannkukai](https://github.com/zannkukai))
## [v1.4.9](https://github.com/rero/rero-ils/tree/v1.4.9) (2021-09-04)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.8...v1.4.9)
**Fixed bugs:**
- Some due soon notifications are sent too early [\#2336](https://github.com/rero/rero-ils/issues/2336)
- Reminders notifications are not generated correctly [\#2303](https://github.com/rero/rero-ils/issues/2303)
- Notifications sent to the library \(for printing\) instead of the patron [\#2279](https://github.com/rero/rero-ils/issues/2279)
**Merged pull requests:**
- library: update resource for acquisition settings [\#2361](https://github.com/rero/rero-ils/pull/2361) ([zannkukai](https://github.com/zannkukai))
- notifications: do not send email in case of error [\#2342](https://github.com/rero/rero-ils/pull/2342) ([jma](https://github.com/jma))
- locations: improve reason not to delete [\#2366](https://github.com/rero/rero-ils/pull/2366) ([rerowep](https://github.com/rerowep))
- release: v1.4.9 [\#2365](https://github.com/rero/rero-ils/pull/2365) ([iGormilhit](https://github.com/iGormilhit))
- locations: fix delete locations used in loans [\#2362](https://github.com/rero/rero-ils/pull/2362) ([rerowep](https://github.com/rerowep))
- notifications: process due soon, overdue almost without delay [\#2360](https://github.com/rero/rero-ils/pull/2360) ([jma](https://github.com/jma))
- selfcheck: fix checkout on item with pick-up status [\#2359](https://github.com/rero/rero-ils/pull/2359) ([lauren-d](https://github.com/lauren-d))
- notifications: add due soon date [\#2357](https://github.com/rero/rero-ils/pull/2357) ([jma](https://github.com/jma))
- locations: fix delete locations used in loans [\#2355](https://github.com/rero/rero-ils/pull/2355) ([rerowep](https://github.com/rerowep))
- selfcheck: fix attibute error [\#2351](https://github.com/rero/rero-ils/pull/2351) ([lauren-d](https://github.com/lauren-d))
- patrons: ignore created loans at patrons deletion [\#2350](https://github.com/rero/rero-ils/pull/2350) ([BadrAly](https://github.com/BadrAly))
- notifications: fix overdue without library open days [\#2349](https://github.com/rero/rero-ils/pull/2349) ([jma](https://github.com/jma))
- loans: handle loans without patrons [\#2347](https://github.com/rero/rero-ils/pull/2347) ([rerowep](https://github.com/rerowep))
- notifications: support pickup location deletion [\#2346](https://github.com/rero/rero-ils/pull/2346) ([rerowep](https://github.com/rerowep))
- notifications: add cancel notification [\#2345](https://github.com/rero/rero-ils/pull/2345) ([jma](https://github.com/jma))
- monitoring: time stamp without expiration [\#2343](https://github.com/rero/rero-ils/pull/2343) ([rerowep](https://github.com/rerowep))
## [v1.4.8](https://github.com/rero/rero-ils/tree/v1.4.8) (2021-08-26)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.7...v1.4.8)
**Implemented enhancements:**
- Request expiration date should be displayed on requests list for items to pick up [\#2266](https://github.com/rero/rero-ils/issues/2266)
- Readability of grouped notifications to be improved. [\#2247](https://github.com/rero/rero-ils/issues/2247)
**Fixed bugs:**
- Impossible to save a duplicated document that does not contain all default values [\#2308](https://github.com/rero/rero-ils/issues/2308)
- Availability notification: wrong recipient or notification not sent at all [\#2300](https://github.com/rero/rero-ils/issues/2300)
- The link to the patron account should redirect to a login page if the user is not authentified [\#2282](https://github.com/rero/rero-ils/issues/2282)
- Error 500 on the document JSON schema when opening an empty document editor [\#2150](https://github.com/rero/rero-ils/issues/2150)
- public interface : too many clicks to get all items of a holding [\#2326](https://github.com/rero/rero-ils/issues/2326)
**Merged pull requests:**
- release: v1.4.8 [\#2338](https://github.com/rero/rero-ils/pull/2338) ([iGormilhit](https://github.com/iGormilhit))
- notifications: use the library name for pickup\_name [\#2333](https://github.com/rero/rero-ils/pull/2333) ([jma](https://github.com/jma))
- loans: fix serializer for deleted item or doc [\#2332](https://github.com/rero/rero-ils/pull/2332) ([jma](https://github.com/jma))
- theme: fix another typos on the VS frontpage [\#2330](https://github.com/rero/rero-ils/pull/2330) ([iGormilhit](https://github.com/iGormilhit))
- selfcheck: improve circulation error messages [\#2329](https://github.com/rero/rero-ils/pull/2329) ([lauren-d](https://github.com/lauren-d))
- notifications: log the error [\#2328](https://github.com/rero/rero-ils/pull/2328) ([jma](https://github.com/jma))
- sru: fix search [\#2321](https://github.com/rero/rero-ils/pull/2321) ([rerowep](https://github.com/rerowep))
- notifications: fix notification problems [\#2312](https://github.com/rero/rero-ils/pull/2312) ([zannkukai](https://github.com/zannkukai))
- notification: fix patron profile URL [\#2302](https://github.com/rero/rero-ils/pull/2302) ([zannkukai](https://github.com/zannkukai))
## [v1.4.7](https://github.com/rero/rero-ils/tree/v1.4.7) (2021-08-24)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.6...v1.4.7)
**Fixed bugs:**
- Availability notification: wrong pick-up location name [\#2295](https://github.com/rero/rero-ils/issues/2295)
- Temporary circulation category : circulation info not displayed [\#2273](https://github.com/rero/rero-ils/issues/2273)
- A template created from an existing record can't be used [\#2269](https://github.com/rero/rero-ils/issues/2269)
- Wrong pick-up location name in the booking notification [\#2262](https://github.com/rero/rero-ils/issues/2262)
- Some added local fields not displayed in the professional interface [\#2257](https://github.com/rero/rero-ils/issues/2257)
- The cancel button of the delete dialog on a detail view returns to an empty document [\#2253](https://github.com/rero/rero-ils/issues/2253)
- The request date is modified when an action is done on the loan [\#2235](https://github.com/rero/rero-ils/issues/2235)
- Requests for patrons by librarians are impossible with librarian accounts of a specific library [\#2234](https://github.com/rero/rero-ils/issues/2234)
- Apparently connected to someone else session [\#2168](https://github.com/rero/rero-ils/issues/2168)
**Closed issues:**
- Wrong default value of `genreForm.source` [\#2310](https://github.com/rero/rero-ils/issues/2310)
**Merged pull requests:**
- documents: fix duplicate documents [\#2305](https://github.com/rero/rero-ils/pull/2305) ([rerowep](https://github.com/rerowep))
- documents: Fix subdivisions separator [\#2298](https://github.com/rero/rero-ils/pull/2298) ([rerowep](https://github.com/rerowep))
- translations: translate v1.4.7 [\#2293](https://github.com/rero/rero-ils/pull/2293) ([jma](https://github.com/jma))
- notifications: fix pickup name for booking [\#2290](https://github.com/rero/rero-ils/pull/2290) ([jma](https://github.com/jma))
- sip2: improve selfcheck checkout [\#2274](https://github.com/rero/rero-ils/pull/2274) ([lauren-d](https://github.com/lauren-d))
- template: remove pid from template record [\#2270](https://github.com/rero/rero-ils/pull/2270) ([BadrAly](https://github.com/BadrAly))
- security: update dependencies [\#2261](https://github.com/rero/rero-ils/pull/2261) ([sebdeleze](https://github.com/sebdeleze))
- issues: fix late issue generation. [\#2238](https://github.com/rero/rero-ils/pull/2238) ([zannkukai](https://github.com/zannkukai))
- theme: fix typos on the VS frontpage \(de\) [\#2320](https://github.com/rero/rero-ils/pull/2320) ([iGormilhit](https://github.com/iGormilhit))
- circulation: fix request with different locations [\#2260](https://github.com/rero/rero-ils/pull/2260) ([jma](https://github.com/jma))
## [v1.4.6](https://github.com/rero/rero-ils/tree/v1.4.6) (2021-07-22)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.5...v1.4.6)
**Fixed bugs:**
- Unable to check-in items [\#2185](https://github.com/rero/rero-ils/issues/2185)
- Request list: items that have a temporary circulation category "not available" are still displayed for validation [\#2225](https://github.com/rero/rero-ils/issues/2225)
- The library facet of the organisation view of the public interface is empty [\#2215](https://github.com/rero/rero-ils/issues/2215)
- Request is sent to the wrong e-mail and even if the document is on loan [\#2152](https://github.com/rero/rero-ils/issues/2152)
**Closed issues:**
- Booking notification: patron name is not correct [\#2197](https://github.com/rero/rero-ils/issues/2197)
- Request notifications sent for items that are not available [\#2191](https://github.com/rero/rero-ils/issues/2191)
- Some e-mails / notifications for the patron sent to the library don't have the addressee block [\#2188](https://github.com/rero/rero-ils/issues/2188)
**Merged pull requests:**
- release: v1.4.6 [\#2232](https://github.com/rero/rero-ils/pull/2232) ([iGormilhit](https://github.com/iGormilhit))
- homepage: add warning about request on bulle page [\#2229](https://github.com/rero/rero-ils/pull/2229) ([iGormilhit](https://github.com/iGormilhit))
- translations: translate v1.5.0 [\#2228](https://github.com/rero/rero-ils/pull/2228) ([iGormilhit](https://github.com/iGormilhit))
- Translations update from Weblate [\#2227](https://github.com/rero/rero-ils/pull/2227) ([weblate](https://github.com/weblate))
- requests: hide non available items from the list [\#2226](https://github.com/rero/rero-ils/pull/2226) ([Garfield-fr](https://github.com/Garfield-fr))
- notifications: fix request with temporary item type [\#2223](https://github.com/rero/rero-ils/pull/2223) ([jma](https://github.com/jma))
- notifications: add request patron information [\#2222](https://github.com/rero/rero-ils/pull/2222) ([jma](https://github.com/jma))
- notifications: fix patron address block missing [\#2221](https://github.com/rero/rero-ils/pull/2221) ([jma](https://github.com/jma))
- notifications: fix patron with additional email [\#2220](https://github.com/rero/rero-ils/pull/2220) ([jma](https://github.com/jma))
- public ui: fix missing library facet on org view [\#2217](https://github.com/rero/rero-ils/pull/2217) ([jma](https://github.com/jma))
- users: verify that user exists when logging in [\#2216](https://github.com/rero/rero-ils/pull/2216) ([rerowep](https://github.com/rerowep))
- tasks: add the holdings deletion task [\#2141](https://github.com/rero/rero-ils/pull/2141) ([BadrAly](https://github.com/BadrAly))
- operation\_log: replace pid by value for operation\_log indexing [\#2138](https://github.com/rero/rero-ils/pull/2138) ([BadrAly](https://github.com/BadrAly))
## [v1.4.5](https://github.com/rero/rero-ils/tree/v1.4.5) (2021-07-20)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.4...v1.4.5)
**Implemented enhancements:**
- Item are displayed on the fly on document detailed view [\#2134](https://github.com/rero/rero-ils/issues/2134)
- Holdings are collapsed by default in the public and professional document detailed view [\#2133](https://github.com/rero/rero-ils/issues/2133)
**Fixed bugs:**
- Document editor: Form validation error when adding the usageAndAccessPolicy field [\#2202](https://github.com/rero/rero-ils/issues/2202)
- Unable to compile `public-holdings-items` UI project [\#2172](https://github.com/rero/rero-ils/issues/2172)
**Merged pull requests:**
- documents: add default value on hidden type field [\#2206](https://github.com/rero/rero-ils/pull/2206) ([Garfield-fr](https://github.com/Garfield-fr))
- items: make the aggregations optional [\#2205](https://github.com/rero/rero-ils/pull/2205) ([jma](https://github.com/jma))
- users: verify that user exists when logging in [\#2204](https://github.com/rero/rero-ils/pull/2204) ([rerowep](https://github.com/rerowep))
- sru: add one more level [\#2203](https://github.com/rero/rero-ils/pull/2203) ([rerowep](https://github.com/rerowep))
- indexer: add from and until date [\#2199](https://github.com/rero/rero-ils/pull/2199) ([rerowep](https://github.com/rerowep))
## [v1.4.4](https://github.com/rero/rero-ils/tree/v1.4.4) (2021-07-19)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.3...v1.4.4)
**Implemented enhancements:**
- Entered data can be easily lost in the modal window of the user editor [\#2098](https://github.com/rero/rero-ils/issues/2098)
**Fixed bugs:**
- It is not possible to search documents by their second call number. [\#2106](https://github.com/rero/rero-ils/issues/2106)
- Checkout on item of type "issue" creates server error and the item is not reindexed [\#2187](https://github.com/rero/rero-ils/issues/2187)
- document `adminMetadata` is required but hidden by default [\#2180](https://github.com/rero/rero-ils/issues/2180)
**Closed issues:**
- import BNF : suject fields are not imported in right field [\#2175](https://github.com/rero/rero-ils/issues/2175)
- `classification` of type `classification\_musicale\_instruments` misses the required fields [\#2136](https://github.com/rero/rero-ils/issues/2136)
- The availability of a serial item should not be "on shelf" when it's not yet received [\#2063](https://github.com/rero/rero-ils/issues/2063)
- Interlibrary loan request should be editable by a librarian of another library [\#1871](https://github.com/rero/rero-ils/issues/1871)
- ILL request: `year` should be a free text field [\#1632](https://github.com/rero/rero-ils/issues/1632)
**Merged pull requests:**
- theme: fix links on the frontpages [\#2196](https://github.com/rero/rero-ils/pull/2196) ([iGormilhit](https://github.com/iGormilhit))
- documents: add autocomplete for document link [\#2194](https://github.com/rero/rero-ils/pull/2194) ([zannkukai](https://github.com/zannkukai))
- sip2: fix date format [\#2192](https://github.com/rero/rero-ils/pull/2192) ([lauren-d](https://github.com/lauren-d))
- circulation: fix item serial checkout [\#2190](https://github.com/rero/rero-ils/pull/2190) ([jma](https://github.com/jma))
- search: add an option to limit the `i18n\_aggs` [\#2186](https://github.com/rero/rero-ils/pull/2186) ([jma](https://github.com/jma))
- monitoring: improve operation logs monitoring [\#2184](https://github.com/rero/rero-ils/pull/2184) ([rerowep](https://github.com/rerowep))
- ill requests: fix edit permission. [\#2183](https://github.com/rero/rero-ils/pull/2183) ([zannkukai](https://github.com/zannkukai))
- item: fix issue availability [\#2182](https://github.com/rero/rero-ils/pull/2182) ([zannkukai](https://github.com/zannkukai))
- document: display `adminMetadata` by default [\#2181](https://github.com/rero/rero-ils/pull/2181) ([zannkukai](https://github.com/zannkukai))
- document: add item `second\_call\_number` into ES [\#2179](https://github.com/rero/rero-ils/pull/2179) ([zannkukai](https://github.com/zannkukai))
- import: fix `subject\_imported` field [\#2178](https://github.com/rero/rero-ils/pull/2178) ([zannkukai](https://github.com/zannkukai))
- operation logs: improve `dump\_operation\_logs` CLI [\#2154](https://github.com/rero/rero-ils/pull/2154) ([rerowep](https://github.com/rerowep))
- document: fix `classification\_musicale\_instruments` [\#2146](https://github.com/rero/rero-ils/pull/2146) ([zannkukai](https://github.com/zannkukai))
## [v1.4.3](https://github.com/rero/rero-ils/tree/v1.4.3) (2021-07-15)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.2...v1.4.3)
**Merged pull requests:**
- users: improve user login error [\#2167](https://github.com/rero/rero-ils/pull/2167) ([rerowep](https://github.com/rerowep))
- notifications: fix request and recall [\#2164](https://github.com/rero/rero-ils/pull/2164) ([jma](https://github.com/jma))
- dependencies: update invenio-sip2 [\#2148](https://github.com/rero/rero-ils/pull/2148) ([lauren-d](https://github.com/lauren-d))
## [v1.4.2](https://github.com/rero/rero-ils/tree/v1.4.2) (2021-07-14)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.1...v1.4.2)
**Fixed bugs:**
- Field `bookFormat` not correctly displayed in the editor [\#2088](https://github.com/rero/rero-ils/issues/2088)
- It should not be possible to delete an item type with linked items [\#2159](https://github.com/rero/rero-ils/issues/2159)
- URL in e-mail sent to patrons with the wrong instance's URL [\#2151](https://github.com/rero/rero-ils/issues/2151)
- "To pick up until" in the notifications does not work [\#2140](https://github.com/rero/rero-ils/issues/2140)
- Notifications sent without object in the e-mail [\#2139](https://github.com/rero/rero-ils/issues/2139)
**Closed issues:**
- "Your Libray" instead of "Your library" [\#2149](https://github.com/rero/rero-ils/issues/2149)
**Merged pull requests:**
- patrons: display user PID in error message [\#2153](https://github.com/rero/rero-ils/pull/2153) ([rerowep](https://github.com/rerowep))
- release: v1.4.2 [\#2171](https://github.com/rero/rero-ils/pull/2171) ([iGormilhit](https://github.com/iGormilhit))
- cli: fix create\_or\_update when pid is reserved [\#2163](https://github.com/rero/rero-ils/pull/2163) ([BadrAly](https://github.com/BadrAly))
- item types: deny deletion with temporary item type [\#2161](https://github.com/rero/rero-ils/pull/2161) ([Garfield-fr](https://github.com/Garfield-fr))
- notification: fix availability date [\#2158](https://github.com/rero/rero-ils/pull/2158) ([zannkukai](https://github.com/zannkukai))
- circulation: improve request to validate list [\#2157](https://github.com/rero/rero-ils/pull/2157) ([Garfield-fr](https://github.com/Garfield-fr))
- notifications: fix email subject [\#2156](https://github.com/rero/rero-ils/pull/2156) ([zannkukai](https://github.com/zannkukai))
- translation: fix "Your Libray" [\#2155](https://github.com/rero/rero-ils/pull/2155) ([zannkukai](https://github.com/zannkukai))
## [v1.4.1](https://github.com/rero/rero-ils/tree/v1.4.1) (2021-07-09)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.4.0...v1.4.1)
## [v1.4.0](https://github.com/rero/rero-ils/tree/v1.4.0) (2021-07-07)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.3.1...v1.4.0)
**Implemented enhancements:**
- ILL requests appear in the patron account even if they are closed or refused [\#2076](https://github.com/rero/rero-ils/issues/2076)
- Help: add a link to home page \(or ideally a table of content\) [\#1578](https://github.com/rero/rero-ils/issues/1578)
- Field `item.temporary\_location` is displayed in the public and professional interfaces [\#2038](https://github.com/rero/rero-ils/issues/2038)
- Display the queue position/number of requests \(prof. view/requests screen\) [\#2034](https://github.com/rero/rero-ils/issues/2034)
- ISBN are indexed in "keyword" mode but should be tokenised [\#2017](https://github.com/rero/rero-ils/issues/2017)
- documents: improve display of uniform resource locator [\#2071](https://github.com/rero/rero-ils/pull/2071) ([Garfield-fr](https://github.com/Garfield-fr))
**Fixed bugs:**
- Only one default circulation policy by organisation should be possible [\#2079](https://github.com/rero/rero-ils/issues/2079)
- The document field `relatedTo` is repeated three times in the list of field to be added, in the editor [\#2061](https://github.com/rero/rero-ils/issues/2061)
- Sub-field "Assigning agency" has the wrong title [\#2053](https://github.com/rero/rero-ils/issues/2053)
- Github actions test stops with an error related to test\_document\_boosting [\#1603](https://github.com/rero/rero-ils/issues/1603)
- Default filter by logged in organisation in document search does not work anymore [\#2130](https://github.com/rero/rero-ils/issues/2130)
- v1.4.0 RC bug list [\#2118](https://github.com/rero/rero-ils/issues/2118)
- No circulation transaction is anonymized [\#2055](https://github.com/rero/rero-ils/issues/2055)
- Issues on v1.3.0rc [\#2035](https://github.com/rero/rero-ils/issues/2035)
- The limit by overdue items is activated while the loans are not yet overdue [\#2014](https://github.com/rero/rero-ils/issues/2014)
- Circulation error for item migrated from Virtua [\#1983](https://github.com/rero/rero-ils/issues/1983)
- Item does not get the correct status after migrating Virtua loans [\#1974](https://github.com/rero/rero-ils/issues/1974)
- Missing activity data in the user DB [\#1961](https://github.com/rero/rero-ils/issues/1961)
- Problems on ilspilot, v1.2.0 [\#1959](https://github.com/rero/rero-ils/issues/1959)
- The "City" facet of the patron search relies on the wrong field [\#1949](https://github.com/rero/rero-ils/issues/1949)
- An item linked to a exhibition / course / collection is not displayed in the document detailed view [\#1942](https://github.com/rero/rero-ils/issues/1942)
- Adapt template fixtures to complete JSON schema [\#1905](https://github.com/rero/rero-ils/issues/1905)
- Unable to create circulation policies with different loan period for 2 different libraries [\#1859](https://github.com/rero/rero-ils/issues/1859)
- Interface does not display the right language [\#1391](https://github.com/rero/rero-ils/issues/1391)
- monitoring: fix ES duplicate display [\#2081](https://github.com/rero/rero-ils/pull/2081) ([rerowep](https://github.com/rerowep))
- public search: fix loading assets [\#2066](https://github.com/rero/rero-ils/pull/2066) ([Garfield-fr](https://github.com/Garfield-fr))
- circulation: fix `can\_extend` check method [\#2040](https://github.com/rero/rero-ils/pull/2040) ([zannkukai](https://github.com/zannkukai))
**Closed issues:**
- Prevent browser's suggestions when adding a new editor field [\#2037](https://github.com/rero/rero-ils/issues/2037)
- Only the first local field of each is imported from Virtua [\#1995](https://github.com/rero/rero-ils/issues/1995)
- Document encoding level should be required [\#1919](https://github.com/rero/rero-ils/issues/1919)
**Merged pull requests:**
- documents: adds missing item in book format [\#2115](https://github.com/rero/rero-ils/pull/2115) ([rerowep](https://github.com/rerowep))
- Implement stats for pricing [\#2112](https://github.com/rero/rero-ils/pull/2112) ([jma](https://github.com/jma))
- notifications: fix German availability template [\#2083](https://github.com/rero/rero-ils/pull/2083) ([rerowep](https://github.com/rerowep))
- circulation: allow only one default policy [\#2082](https://github.com/rero/rero-ils/pull/2082) ([zannkukai](https://github.com/zannkukai))
- tests: fix library `is\_open` unit test [\#2074](https://github.com/rero/rero-ils/pull/2074) ([zannkukai](https://github.com/zannkukai))
- cli: delete unused function [\#1976](https://github.com/rero/rero-ils/pull/1976) ([rerowep](https://github.com/rerowep))
- release: v1.4.1 [\#2137](https://github.com/rero/rero-ils/pull/2137) ([iGormilhit](https://github.com/iGormilhit))
- homepage: adaptation of the wallis homepage [\#2131](https://github.com/rero/rero-ils/pull/2131) ([Garfield-fr](https://github.com/Garfield-fr))
- users: fix CLI for user creation [\#2129](https://github.com/rero/rero-ils/pull/2129) ([rerowep](https://github.com/rerowep))
- release: v1.4.0 [\#2128](https://github.com/rero/rero-ils/pull/2128) ([iGormilhit](https://github.com/iGormilhit))
- translations: complete the v1.4.0 translations [\#2127](https://github.com/rero/rero-ils/pull/2127) ([iGormilhit](https://github.com/iGormilhit))
- operation logs: translate trigger actions [\#2125](https://github.com/rero/rero-ils/pull/2125) ([Garfield-fr](https://github.com/Garfield-fr))
- users: allow to save an user without email [\#2124](https://github.com/rero/rero-ils/pull/2124) ([zannkukai](https://github.com/zannkukai))
- documents: set `adminMetadata` as required field. [\#2120](https://github.com/rero/rero-ils/pull/2120) ([zannkukai](https://github.com/zannkukai))
- theme: fix missing ILL request menu [\#2119](https://github.com/rero/rero-ils/pull/2119) ([iGormilhit](https://github.com/iGormilhit))
- documents: improve BNF import [\#2117](https://github.com/rero/rero-ils/pull/2117) ([rerowep](https://github.com/rerowep))
- circulation: fix method for "is loan overdue" check [\#2114](https://github.com/rero/rero-ils/pull/2114) ([zannkukai](https://github.com/zannkukai))
- tests: fix unit test about loan overdue [\#2111](https://github.com/rero/rero-ils/pull/2111) ([zannkukai](https://github.com/zannkukai))
- items: add temporary location name by serializer [\#2105](https://github.com/rero/rero-ils/pull/2105) ([Garfield-fr](https://github.com/Garfield-fr))
- templates: remove `data` field from ES mapping [\#2100](https://github.com/rero/rero-ils/pull/2100) ([zannkukai](https://github.com/zannkukai))
- documentation: fix gh-actions labeler [\#2097](https://github.com/rero/rero-ils/pull/2097) ([iGormilhit](https://github.com/iGormilhit))
- documents: remove a trailing dot in a title key [\#2093](https://github.com/rero/rero-ils/pull/2093) ([iGormilhit](https://github.com/iGormilhit))
- security: update dependencies [\#2091](https://github.com/rero/rero-ils/pull/2091) ([rerowep](https://github.com/rerowep))
- dojson: correct bookFormat transformation [\#2090](https://github.com/rero/rero-ils/pull/2090) ([rerowep](https://github.com/rerowep))
- patrons: allow to update user and patron records [\#2086](https://github.com/rero/rero-ils/pull/2086) ([BadrAly](https://github.com/BadrAly))
- document: fix multiple relatedTo [\#2085](https://github.com/rero/rero-ils/pull/2085) ([rerowep](https://github.com/rerowep))
- documents: reinforce availability robustness [\#2084](https://github.com/rero/rero-ils/pull/2084) ([rerowep](https://github.com/rerowep))
- fixtures: allow only one circulation policy [\#2078](https://github.com/rero/rero-ils/pull/2078) ([Garfield-fr](https://github.com/Garfield-fr))
- patrons: add email field on authenticate service [\#2077](https://github.com/rero/rero-ils/pull/2077) ([Garfield-fr](https://github.com/Garfield-fr))
- circulation: add rank position information [\#2073](https://github.com/rero/rero-ils/pull/2073) ([zannkukai](https://github.com/zannkukai))
- homepage: implement organisation view [\#2070](https://github.com/rero/rero-ils/pull/2070) ([Garfield-fr](https://github.com/Garfield-fr))
- sip2: improve command line utilities [\#2069](https://github.com/rero/rero-ils/pull/2069) ([lauren-d](https://github.com/lauren-d))
- documentation: extend the gh-action labeler rules [\#2064](https://github.com/rero/rero-ils/pull/2064) ([iGormilhit](https://github.com/iGormilhit))
- search: add isbn text search [\#2057](https://github.com/rero/rero-ils/pull/2057) ([rerowep](https://github.com/rerowep))
- sru: fix xml format and type [\#2054](https://github.com/rero/rero-ils/pull/2054) ([rerowep](https://github.com/rerowep))
- stats: compute stats for pricing [\#2052](https://github.com/rero/rero-ils/pull/2052) ([jma](https://github.com/jma))
- global: use JsonWriter [\#2047](https://github.com/rero/rero-ils/pull/2047) ([rerowep](https://github.com/rerowep))
- core: fix the wrong way to update a record [\#2046](https://github.com/rero/rero-ils/pull/2046) ([jma](https://github.com/jma))
- patrons: tests multiple librarian roles [\#2030](https://github.com/rero/rero-ils/pull/2030) ([rerowep](https://github.com/rerowep))
- items: fix status according to migrated loans [\#2016](https://github.com/rero/rero-ils/pull/2016) ([BadrAly](https://github.com/BadrAly))
## [v1.3.1](https://github.com/rero/rero-ils/tree/v1.3.1) (2021-06-17)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.3.0...v1.3.1)
## [v1.3.0](https://github.com/rero/rero-ils/tree/v1.3.0) (2021-06-16)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.2.0...v1.3.0)
**Implemented enhancements:**
- Late issues: possibility to access directly the holdings [\#1808](https://github.com/rero/rero-ils/issues/1808)
- Add the target library in the checkin note "the item is in transit" [\#1798](https://github.com/rero/rero-ils/issues/1798)
- Allow to add an identifier to an author in a document [\#1793](https://github.com/rero/rero-ils/issues/1793)
- The request date should be displayed in the patron account of the professional interface [\#1778](https://github.com/rero/rero-ils/issues/1778)
- Autocomplete doesn't work if your search contains diactrictics [\#1042](https://github.com/rero/rero-ils/issues/1042)
- `ils.rero.ch` is renamed into `bib.rero.ch` [\#1896](https://github.com/rero/rero-ils/issues/1896)
- Toggle in each brief view to enable the standard query instead of the simple query [\#1824](https://github.com/rero/rero-ils/issues/1824)
- In a holdings, only active predictions should generate expected and late issues. [\#1807](https://github.com/rero/rero-ils/issues/1807)
- Find a better operation log implementation [\#1725](https://github.com/rero/rero-ils/issues/1725)
- Improve CSV export perfomance \(inventory list\) [\#1456](https://github.com/rero/rero-ils/issues/1456)
- Make the field `title.type` required for value "bf:Title" [\#1361](https://github.com/rero/rero-ils/issues/1361)
- circulation: enhance notifications in order to group emails sent to patrons [\#1236](https://github.com/rero/rero-ils/issues/1236)
- notifications: group notifications for each patron [\#1845](https://github.com/rero/rero-ils/pull/1845) ([rerowep](https://github.com/rerowep))
- items: improve response time for csv export [\#1842](https://github.com/rero/rero-ils/pull/1842) ([lauren-d](https://github.com/lauren-d))
**Fixed bugs:**
- No more warning on checkout page for a blocked patron [\#1964](https://github.com/rero/rero-ils/issues/1964)
- Impossible to save a document when created with a template [\#1926](https://github.com/rero/rero-ils/issues/1926)
- Template does not store the values of field `contentMediaCarrier` [\#1907](https://github.com/rero/rero-ils/issues/1907)
- Logged user without the patron role should not be able to edit the ILL request form [\#1895](https://github.com/rero/rero-ils/issues/1895)
- Identifier's qualifier, status and note should be displayed in professional interface [\#1846](https://github.com/rero/rero-ils/issues/1846)
- "Role" is not translated in the patron brief view. [\#1821](https://github.com/rero/rero-ils/issues/1821)
- Two confirmation messages when deleting the last item of a document [\#1817](https://github.com/rero/rero-ils/issues/1817)
- Toast message "dispute saved" is not completely translated [\#1814](https://github.com/rero/rero-ils/issues/1814)
- "Catalog" in the main menu is not translated [\#1812](https://github.com/rero/rero-ils/issues/1812)
- ILL requests: scope is always set to 'copy' [\#1671](https://github.com/rero/rero-ils/issues/1671)
- Translate the organisation detailed view of the professional interface [\#2036](https://github.com/rero/rero-ils/issues/2036)
- When editing an item of a document with lots of holdings and items, ES takes to much time [\#1943](https://github.com/rero/rero-ils/issues/1943)
- Toast message of circulation interface are not translated [\#1820](https://github.com/rero/rero-ils/issues/1820)
- Can't index an item template when field `item.type` exists [\#1776](https://github.com/rero/rero-ils/issues/1776)
- Notifications and fees don't respect the circulation policy settings [\#1741](https://github.com/rero/rero-ils/issues/1741)
- Missing Online access for bibliographic records with "Uniform Resource Locator" [\#1722](https://github.com/rero/rero-ils/issues/1722)
- Some expected issues don't get the "late" status [\#1674](https://github.com/rero/rero-ils/issues/1674)
- Receive an issue: confusion between the status date and the date of receipt [\#1654](https://github.com/rero/rero-ils/issues/1654)
- template: allow to user `type` field into templates [\#1913](https://github.com/rero/rero-ils/pull/1913) ([zannkukai](https://github.com/zannkukai))
- patrons: correct city facet mapping [\#1990](https://github.com/rero/rero-ils/pull/1990) ([zannkukai](https://github.com/zannkukai))
- collections: fix item brief view. [\#1978](https://github.com/rero/rero-ils/pull/1978) ([zannkukai](https://github.com/zannkukai))
- resources: improve organisation ref link validation [\#1973](https://github.com/rero/rero-ils/pull/1973) ([BadrAly](https://github.com/BadrAly))
- circulation: fix fees calculation [\#1955](https://github.com/rero/rero-ils/pull/1955) ([zannkukai](https://github.com/zannkukai))
- serials: fix issue.status\_date field update [\#1911](https://github.com/rero/rero-ils/pull/1911) ([zannkukai](https://github.com/zannkukai))
- circulation: restrict ILL request form to patron [\#1910](https://github.com/rero/rero-ils/pull/1910) ([zannkukai](https://github.com/zannkukai))
**Closed issues:**
- `encodingLevel` should be required in the document [\#1909](https://github.com/rero/rero-ils/issues/1909)
- ebooks: subjects are not unique [\#1731](https://github.com/rero/rero-ils/issues/1731)
- Label of the request list on item detailed view should be improved [\#1599](https://github.com/rero/rero-ils/issues/1599)
- Item with barcode 1002157781 is imported in the wrong location [\#2019](https://github.com/rero/rero-ils/issues/2019)
- The `price` is not correctly imported for items. [\#2007](https://github.com/rero/rero-ils/issues/2007)
- All fields from the bibliographic record to be imported in the item are missing [\#1997](https://github.com/rero/rero-ils/issues/1997)
- Intern note on document \(field 019\) is not correctly imported when MARC field is repeated [\#1996](https://github.com/rero/rero-ils/issues/1996)
- Country for users seems to be always set on Switzerland [\#1994](https://github.com/rero/rero-ils/issues/1994)
- User with a short last or first name are wrongly imported [\#1993](https://github.com/rero/rero-ils/issues/1993)
- 2 holdings created in RERO ILS instead of 1 present in Virtua [\#1989](https://github.com/rero/rero-ils/issues/1989)
- Some document records not imported from Virtua [\#1988](https://github.com/rero/rero-ils/issues/1988)
- The MARC field 555 is not considered in the import from Virtua [\#1987](https://github.com/rero/rero-ils/issues/1987)
- Local field for holdings \(incl. prediction\) not well formated [\#1985](https://github.com/rero/rero-ils/issues/1985)
- Items from 6 libraries affiliated to wrong libraries [\#1979](https://github.com/rero/rero-ils/issues/1979)
- The system doesn't use the today's date to compute overdue fees [\#1954](https://github.com/rero/rero-ils/issues/1954)
- The import of document field `issuance` is sometimes wrong [\#1951](https://github.com/rero/rero-ils/issues/1951)
- Wrong mapping for user secondary address and phone [\#1950](https://github.com/rero/rero-ils/issues/1950)
- `otherPhysicalFormat` should have as title "Also issued as" [\#1929](https://github.com/rero/rero-ils/issues/1929)
- Keep the ID of RERO authorities when IdRef or RERO-RAMEAU does not exist [\#1886](https://github.com/rero/rero-ils/issues/1886)
- Fields with links to authorities are adapted to be able to store identifiers [\#1885](https://github.com/rero/rero-ils/issues/1885)
- Harvested e-books should be marked as available [\#1872](https://github.com/rero/rero-ils/issues/1872)
- Title of the host document not indexed in the child document [\#1788](https://github.com/rero/rero-ils/issues/1788)
- Edit document fields `titlesProper`, `translatedFrom`, `abstracts` \(are newly implemented\) [\#1620](https://github.com/rero/rero-ils/issues/1620)
- Provision activity has no country for articles [\#1617](https://github.com/rero/rero-ils/issues/1617)
**Merged pull requests:**
- acquisitions: adds an account serializer [\#2028](https://github.com/rero/rero-ils/pull/2028) ([zannkukai](https://github.com/zannkukai))
- search: increase API limit [\#2010](https://github.com/rero/rero-ils/pull/2010) ([rerowep](https://github.com/rerowep))
- tests: fix external tests [\#1998](https://github.com/rero/rero-ils/pull/1998) ([rerowep](https://github.com/rerowep))
- translations: fix minor issues [\#1986](https://github.com/rero/rero-ils/pull/1986) ([rerowep](https://github.com/rerowep))
- Implements SRU [\#1962](https://github.com/rero/rero-ils/pull/1962) ([rerowep](https://github.com/rerowep))
- permissions: improve generation records permissions [\#1956](https://github.com/rero/rero-ils/pull/1956) ([lauren-d](https://github.com/lauren-d))
- acquisitions: create new extension [\#1948](https://github.com/rero/rero-ils/pull/1948) ([lauren-d](https://github.com/lauren-d))
- utils: add JSON writer [\#1941](https://github.com/rero/rero-ils/pull/1941) ([rerowep](https://github.com/rerowep))
- cli: fix wait\_empty\_tasks [\#1938](https://github.com/rero/rero-ils/pull/1938) ([rerowep](https://github.com/rerowep))
- merging 1.3.0 to dev [\#1903](https://github.com/rero/rero-ils/pull/1903) ([zannkukai](https://github.com/zannkukai))
- release v1.3.1 [\#2045](https://github.com/rero/rero-ils/pull/2045) ([iGormilhit](https://github.com/iGormilhit))
- release: v1.3.0 [\#2041](https://github.com/rero/rero-ils/pull/2041) ([iGormilhit](https://github.com/iGormilhit))
- sip2: implements selfcheck renewal [\#2039](https://github.com/rero/rero-ils/pull/2039) ([lauren-d](https://github.com/lauren-d))
- orders: remove the total amount from the DB [\#2032](https://github.com/rero/rero-ils/pull/2032) ([jma](https://github.com/jma))
- documents: complete the data conversion [\#2031](https://github.com/rero/rero-ils/pull/2031) ([reropag](https://github.com/reropag))
- sip2: use item barcode instead item pid [\#2029](https://github.com/rero/rero-ils/pull/2029) ([lauren-d](https://github.com/lauren-d))
- document: make document `mainTitle` unique [\#2024](https://github.com/rero/rero-ils/pull/2024) ([zannkukai](https://github.com/zannkukai))
- translations: translate v1.3.0 [\#2023](https://github.com/rero/rero-ils/pull/2023) ([iGormilhit](https://github.com/iGormilhit))
- authentication: implement OAuth server [\#2022](https://github.com/rero/rero-ils/pull/2022) ([sebdeleze](https://github.com/sebdeleze))
- Implement history loan logs [\#2018](https://github.com/rero/rero-ils/pull/2018) ([jma](https://github.com/jma))
- circulation: masked item are not available [\#2015](https://github.com/rero/rero-ils/pull/2015) ([zannkukai](https://github.com/zannkukai))
- holdings: add item counts [\#2012](https://github.com/rero/rero-ils/pull/2012) ([jma](https://github.com/jma))
- patrons: allow external service to authenticate users [\#2006](https://github.com/rero/rero-ils/pull/2006) ([Garfield-fr](https://github.com/Garfield-fr))
- tests: script to test a lot of update [\#2003](https://github.com/rero/rero-ils/pull/2003) ([sebdeleze](https://github.com/sebdeleze))
- items: add new temporary\_location field [\#2002](https://github.com/rero/rero-ils/pull/2002) ([BadrAly](https://github.com/BadrAly))
- user profiles: translate username description [\#2001](https://github.com/rero/rero-ils/pull/2001) ([iGormilhit](https://github.com/iGormilhit))
- resources: speed up the indexing [\#1999](https://github.com/rero/rero-ils/pull/1999) ([jma](https://github.com/jma))
- documents: fix `encodingLevel` admin metadata [\#1991](https://github.com/rero/rero-ils/pull/1991) ([zannkukai](https://github.com/zannkukai))
- patron type: add `code` field [\#1980](https://github.com/rero/rero-ils/pull/1980) ([sebdeleze](https://github.com/sebdeleze))
- data: set local\_fields field minLength to 1 char [\#1972](https://github.com/rero/rero-ils/pull/1972) ([BadrAly](https://github.com/BadrAly))
- documentation: extend the gh-actions labeler rules [\#1969](https://github.com/rero/rero-ils/pull/1969) ([iGormilhit](https://github.com/iGormilhit))
- wiki: improve flask-wiki integration [\#1968](https://github.com/rero/rero-ils/pull/1968) ([iGormilhit](https://github.com/iGormilhit))
- translations: fix minor issues [\#1963](https://github.com/rero/rero-ils/pull/1963) ([rerowep](https://github.com/rerowep))
- fixtures: adapt templates to the complete document schema [\#1960](https://github.com/rero/rero-ils/pull/1960) ([rerowep](https://github.com/rerowep))
- api: fix delete in api and dojson issuance [\#1940](https://github.com/rero/rero-ils/pull/1940) ([rerowep](https://github.com/rerowep))
- Remove legacy documents fields [\#1935](https://github.com/rero/rero-ils/pull/1935) ([rerowep](https://github.com/rerowep))
- update gh labeler [\#1934](https://github.com/rero/rero-ils/pull/1934) ([iGormilhit](https://github.com/iGormilhit))
- documents: fix elasticsearch mapping [\#1933](https://github.com/rero/rero-ils/pull/1933) ([lauren-d](https://github.com/lauren-d))
- documents: update the publication statement text [\#1931](https://github.com/rero/rero-ils/pull/1931) ([rerowep](https://github.com/rerowep))
- tests: remove manifest fix [\#1930](https://github.com/rero/rero-ils/pull/1930) ([rerowep](https://github.com/rerowep))
- tests: copy manifest.json to fix tests [\#1927](https://github.com/rero/rero-ils/pull/1927) ([rerowep](https://github.com/rerowep))
- search: add missing mappings [\#1925](https://github.com/rero/rero-ils/pull/1925) ([rerowep](https://github.com/rerowep))
- tests: constrain the Flask version to fix tests [\#1923](https://github.com/rero/rero-ils/pull/1923) ([iGormilhit](https://github.com/iGormilhit))
- documents: store source of authority identifiers [\#1917](https://github.com/rero/rero-ils/pull/1917) ([rerowep](https://github.com/rerowep))
- notifications: adds library notifications [\#1914](https://github.com/rero/rero-ils/pull/1914) ([Garfield-fr](https://github.com/Garfield-fr))
- resources: improve indexing performance & ES mapping [\#1912](https://github.com/rero/rero-ils/pull/1912) ([zannkukai](https://github.com/zannkukai))
- gh actions: add the labeler workflow [\#1904](https://github.com/rero/rero-ils/pull/1904) ([iGormilhit](https://github.com/iGormilhit))
- Translations update from Weblate [\#1897](https://github.com/rero/rero-ils/pull/1897) ([weblate](https://github.com/weblate))
- readme: add translation info and update copyright [\#1891](https://github.com/rero/rero-ils/pull/1891) ([mmo](https://github.com/mmo))
- cli: fix several things [\#1881](https://github.com/rero/rero-ils/pull/1881) ([rerowep](https://github.com/rerowep))
- documents: improve online access information [\#1844](https://github.com/rero/rero-ils/pull/1844) ([Garfield-fr](https://github.com/Garfield-fr))
- search: improve control of the simple parameter [\#1843](https://github.com/rero/rero-ils/pull/1843) ([Garfield-fr](https://github.com/Garfield-fr))
- metadata: import, export, create csv data files [\#1710](https://github.com/rero/rero-ils/pull/1710) ([rerowep](https://github.com/rerowep))
## [v1.2.0](https://github.com/rero/rero-ils/tree/v1.2.0) (2021-05-06)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.1.0...v1.2.0)
**Implemented enhancements:**
- Singular/plural should be taken into consideration for some nouns [\#1805](https://github.com/rero/rero-ils/issues/1805)
- Serial issue: add "expected" in the item status [\#1796](https://github.com/rero/rero-ils/issues/1796)
- The acquisition accounts should be alphabetically sorted [\#1781](https://github.com/rero/rero-ils/issues/1781)
- Confirmation before submitting an ILL request [\#1771](https://github.com/rero/rero-ils/issues/1771)
- Check for duplicated identifier \(ISBN/ISSN\) in the document editor [\#1664](https://github.com/rero/rero-ils/issues/1664)
- Collection title and description should be indexed in the document index [\#1583](https://github.com/rero/rero-ils/issues/1583)
- A librarian shouldn't be able to resolve fees of item not belonging to the login location [\#1533](https://github.com/rero/rero-ils/issues/1533)
- A user has an account in multiple organisations. [\#1460](https://github.com/rero/rero-ils/issues/1460)
- documents: improve search result boosting [\#1863](https://github.com/rero/rero-ils/pull/1863) ([rerowep](https://github.com/rerowep))
- users: validate records through a CLI [\#1878](https://github.com/rero/rero-ils/pull/1878) ([rerowep](https://github.com/rerowep))
**Fixed bugs:**
- It is impossible to create a circulation policy with overdue fees [\#1848](https://github.com/rero/rero-ils/issues/1848)
- User with patron and librarian roles can't view request info in item detail view [\#1839](https://github.com/rero/rero-ils/issues/1839)
- Delete a vendor is possible even if holdings are linked to it [\#1822](https://github.com/rero/rero-ils/issues/1822)
- The identifier qualification / qualifier is not imported from MARC [\#1799](https://github.com/rero/rero-ils/issues/1799)
- Fees: transaction history not sorted by date/time [\#1766](https://github.com/rero/rero-ils/issues/1766)
- Local fields shouldn't be displayed in the 'import from the web' document view [\#1564](https://github.com/rero/rero-ils/issues/1564)
- Bug list for the v1.2.0 RC [\#1873](https://github.com/rero/rero-ils/issues/1873)
- Position in the request waiting queue is not displayed anymore to the patron [\#1851](https://github.com/rero/rero-ils/issues/1851)
- "My Account" menu doesn't appear for user with role librarian [\#1837](https://github.com/rero/rero-ils/issues/1837)
- Keep history settings enabled but not taken into account [\#1804](https://github.com/rero/rero-ils/issues/1804)
- Some Virtua vendors are missing in RERO ILS [\#1791](https://github.com/rero/rero-ils/issues/1791)
- Sort by due date not applied by default in the circulation interface [\#1703](https://github.com/rero/rero-ils/issues/1703)
- In the pro and public patron account, loans are marked as overdue too late. [\#1389](https://github.com/rero/rero-ils/issues/1389)
- add icon\_docmaintype\_children.svg [\#1831](https://github.com/rero/rero-ils/pull/1831) ([rerowep](https://github.com/rerowep))
- fix Exception [\#1826](https://github.com/rero/rero-ils/pull/1826) ([rerowep](https://github.com/rerowep))
- tests: fix `test\_documents\_import\_bnf\_ean` for pycodestyle [\#1809](https://github.com/rero/rero-ils/pull/1809) ([lauren-d](https://github.com/lauren-d))
- contributions: restore missing Jinja templates [\#1874](https://github.com/rero/rero-ils/pull/1874) ([jma](https://github.com/jma))
- documents: fix json schema for identifier [\#1862](https://github.com/rero/rero-ils/pull/1862) ([rerowep](https://github.com/rerowep))
- fees: fix creation of not overdue fee [\#1861](https://github.com/rero/rero-ils/pull/1861) ([zannkukai](https://github.com/zannkukai))
- search: fix circulation search factory [\#1840](https://github.com/rero/rero-ils/pull/1840) ([lauren-d](https://github.com/lauren-d))
**Closed issues:**
- Rename in the item field "Enumeration and chronology" into "Unit" [\#1830](https://github.com/rero/rero-ils/issues/1830)
- Description of field `checkout\_duration` is not correct in the circulation policy editor [\#1813](https://github.com/rero/rero-ils/issues/1813)
- The patron `local\_code` should be repetitive [\#1806](https://github.com/rero/rero-ils/issues/1806)
- Document model : add usageAndAccessPolicy [\#1757](https://github.com/rero/rero-ils/issues/1757)
- In the brief view, the word "Organisation" is changed in the tab and in the facet. [\#1728](https://github.com/rero/rero-ils/issues/1728)
- "Collection" is renamed into "exhibition/course" [\#1672](https://github.com/rero/rero-ils/issues/1672)
- The availability of a holdings of type "serial" with no items should not be "no items received" [\#1586](https://github.com/rero/rero-ils/issues/1586)
- Collection identifier should be optional [\#1584](https://github.com/rero/rero-ils/issues/1584)
- Prevent the enter key to submit the form in some fields that may be filled though a scanning device [\#1421](https://github.com/rero/rero-ils/issues/1421)
**Merged pull requests:**
- Us 2034 multiple patron [\#1858](https://github.com/rero/rero-ils/pull/1858) ([jma](https://github.com/jma))
- documents: improve editor [\#1832](https://github.com/rero/rero-ils/pull/1832) ([Garfield-fr](https://github.com/Garfield-fr))
- security: update dependencies [\#1823](https://github.com/rero/rero-ils/pull/1823) ([jma](https://github.com/jma))
- collections: rename into "Exhibition/course" [\#1815](https://github.com/rero/rero-ils/pull/1815) ([Garfield-fr](https://github.com/Garfield-fr))
- US2014 SIP2 implementation at RERO [\#1810](https://github.com/rero/rero-ils/pull/1810) ([lauren-d](https://github.com/lauren-d))
- circulation category: negative availability [\#1803](https://github.com/rero/rero-ils/pull/1803) ([zannkukai](https://github.com/zannkukai))
- records: fix bug when reading the input file of pids [\#1785](https://github.com/rero/rero-ils/pull/1785) ([BadrAly](https://github.com/BadrAly))
- transaction: add library for patron transactions [\#1773](https://github.com/rero/rero-ils/pull/1773) ([jma](https://github.com/jma))
- editor: prevent the enter key to submit the form [\#1772](https://github.com/rero/rero-ils/pull/1772) ([jma](https://github.com/jma))
- test: fix `test\_item\_loans\_elements` unit test. [\#1768](https://github.com/rero/rero-ils/pull/1768) ([zannkukai](https://github.com/zannkukai))
- Document: index collection title and description. [\#1764](https://github.com/rero/rero-ils/pull/1764) ([zannkukai](https://github.com/zannkukai))
- tests: mocked BNF tests [\#1700](https://github.com/rero/rero-ils/pull/1700) ([rerowep](https://github.com/rerowep))
- documents: complete the JSON schema [\#1693](https://github.com/rero/rero-ils/pull/1693) ([rerowep](https://github.com/rerowep))
- release: v1.2.0 [\#1892](https://github.com/rero/rero-ils/pull/1892) ([iGormilhit](https://github.com/iGormilhit))
- translations: translate further v1.2.0 [\#1890](https://github.com/rero/rero-ils/pull/1890) ([iGormilhit](https://github.com/iGormilhit))
- selfcheck: fix checkin/checkout action [\#1889](https://github.com/rero/rero-ils/pull/1889) ([lauren-d](https://github.com/lauren-d))
- users: set local\_code field minLength to 1 [\#1880](https://github.com/rero/rero-ils/pull/1880) ([BadrAly](https://github.com/BadrAly))
- translations: translate v1.2.0 [\#1870](https://github.com/rero/rero-ils/pull/1870) ([iGormilhit](https://github.com/iGormilhit))
- Translations update from Weblate [\#1849](https://github.com/rero/rero-ils/pull/1849) ([weblate](https://github.com/weblate))
- data: allow to update existing records [\#1841](https://github.com/rero/rero-ils/pull/1841) ([BadrAly](https://github.com/BadrAly))
- translations: fix the extraction process [\#1836](https://github.com/rero/rero-ils/pull/1836) ([iGormilhit](https://github.com/iGormilhit))
- documents: complete the data conversion [\#1835](https://github.com/rero/rero-ils/pull/1835) ([reropag](https://github.com/reropag))
- tests: restore pycodestyle check [\#1784](https://github.com/rero/rero-ils/pull/1784) ([rerowep](https://github.com/rerowep))
## [v1.1.0](https://github.com/rero/rero-ils/tree/v1.1.0) (2021-03-29)
[Full Changelog](https://github.com/rero/rero-ils/compare/v1.0.1...v1.1.0)
**Implemented enhancements:**
- The expected issues are difficult to read, the grey is to light. [\#1717](https://github.com/rero/rero-ils/issues/1717)
- Patron barcodes should be imported into the username field [\#1670](https://github.com/rero/rero-ils/issues/1670)
- Sort option for items within a holdings [\#1625](https://github.com/rero/rero-ils/issues/1625)
- Fields name and birth date should not be editable by a user/patron [\#1318](https://github.com/rero/rero-ils/issues/1318)
- libraries: closed date API [\#1730](https://github.com/rero/rero-ils/pull/1730) ([zannkukai](https://github.com/zannkukai))
**Fixed bugs:**
- E-books are not searchable in the organisation views of ilspilot [\#1780](https://github.com/rero/rero-ils/issues/1780)
- Migrated bibs should have the correct URL format [\#1737](https://github.com/rero/rero-ils/issues/1737)
- Loan end date is false [\#1735](https://github.com/rero/rero-ils/issues/1735)
- Search spinner in progress even after search is complete [\#1689](https://github.com/rero/rero-ils/issues/1689)
- The affiliation library disappears in some cases in the patron editor [\#1634](https://github.com/rero/rero-ils/issues/1634)
- Checkout at fixed date doesn't allow to choose the current date [\#1574](https://github.com/rero/rero-ils/issues/1574)
- No feedback is given to the user if the email is not confirmed [\#1490](https://github.com/rero/rero-ils/issues/1490)
- Wrong display of some fields on the circulation interface [\#1447](https://github.com/rero/rero-ils/issues/1447)
- Document main title is not displayed with all subtitles [\#1745](https://github.com/rero/rero-ils/issues/1745)
- Fixed date: closed date with repetition not taken into account [\#1734](https://github.com/rero/rero-ils/issues/1734)
- Request - item detail view: request section should be always displayed [\#1715](https://github.com/rero/rero-ils/issues/1715)
- ILL request detail view: error message if the librarian has also the role patron. [\#1709](https://github.com/rero/rero-ils/issues/1709)
- ILL request form: patron wrongly displayed [\#1708](https://github.com/rero/rero-ils/issues/1708)
- Add a second filter to the organisation facet filter has no effect [\#1684](https://github.com/rero/rero-ils/issues/1684)
- In the professional patron account, the counter of the "Pending" tab is not updated after a checkout [\#1579](https://github.com/rero/rero-ils/issues/1579)
- Impossible to save a circulation policy if only one toggle is enabled [\#1573](https://github.com/rero/rero-ils/issues/1573)
- Creating a patron with a username and an email corresponding to two different invenio user cause unpredictable errors [\#1467](https://github.com/rero/rero-ils/issues/1467)
**Closed issues:**
- Document model : add the type bf:Lccn to identifiers [\#1756](https://github.com/rero/rero-ils/issues/1756)
- Remove codes with a colon from the document JSON schema [\#1619](https://github.com/rero/rero-ils/issues/1619)
- Place should be required in document field "Provision activity" [\#1739](https://github.com/rero/rero-ils/issues/1739)
- Improve response time for circulation operations [\#1600](https://github.com/rero/rero-ils/issues/1600)
- circulation: block checkout/renew/request when patron expiration date is reached [\#1495](https://github.com/rero/rero-ils/issues/1495)
- Send notification "availability" some time after the item is checked in [\#913](https://github.com/rero/rero-ils/issues/913)
**Merged pull requests:**
- menu: display "my account" only for a patron [\#1792](https://github.com/rero/rero-ils/pull/1792) ([Garfield-fr](https://github.com/Garfield-fr))
- release: v1.1.0 [\#1787](https://github.com/rero/rero-ils/pull/1787) ([jma](https://github.com/jma))
- document: add 'bf:Lccn' as identifier type [\#1767](https://github.com/rero/rero-ils/pull/1767) ([zannkukai](https://github.com/zannkukai))
- document: place field required for provision activity [\#1762](https://github.com/rero/rero-ils/pull/1762) ([zannkukai](https://github.com/zannkukai))
- library: correct exception dates behavior. [\#1761](https://github.com/rero/rero-ils/pull/1761) ([zannkukai](https://github.com/zannkukai))
- test: fix break test. [\#1755](https://github.com/rero/rero-ils/pull/1755) ([zannkukai](https://github.com/zannkukai))