forked from evergreen-library-system/Evergreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10199 lines (7442 loc) · 426 KB
/
ChangeLog
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
commit e35f6692fe6ee5c8743f63b972ae3ee4dd7f8eef
Author: Galen Charlton <[email protected]>
Date: Tue Nov 15 18:43:52 2022 -0500
more updates to the server upgrade
Signed-off-by: Galen Charlton <[email protected]>
2 2 docs/modules/installation/pages/server_upgrade.adoc
commit 474314fb80b8fe131b1297a65f77d97132444c5c
Author: Galen Charlton <[email protected]>
Date: Tue Nov 15 18:42:57 2022 -0500
update upgrade instructions for 3.10.0
Signed-off-by: Galen Charlton <[email protected]>
14 14 docs/modules/installation/pages/server_upgrade.adoc
commit e92df1ba43275f9a3a82ecdd83e66a67fd3c80d5
Author: Galen Charlton <[email protected]>
Date: Tue Nov 15 18:41:58 2022 -0500
update release notes for 3.10.0
Signed-off-by: Galen Charlton <[email protected]>
66 5 docs/RELEASE_NOTES_3_10.adoc
commit ad7743285cbbe4e7adabb994482c3a8d95737cdf
Author: Galen Charlton <[email protected]>
Date: Tue Nov 15 18:35:51 2022 -0500
update schema update script
- tag for 3.10.0
- add back reingest at the end
Signed-off-by: Galen Charlton <[email protected]>
14 3 Open-ILS/src/sql/Pg/version-upgrade/{3.9.1-3.10-rc-upgrade-db.sql => 3.9.1-3.10.0-upgrade-db.sql}
rename Open-ILS/src/sql/Pg/version-upgrade/{3.9.1-3.10-rc-upgrade-db.sql => 3.9.1-3.10.0-upgrade-db.sql} (99%)
commit a7db4e3b552563fe8300a351eb922f2f835b0e7e
Author: Jane Sandberg <[email protected]>
Date: Thu Nov 10 22:19:36 2022 -0600
Server upgrade docs for 3.10-rc
Signed-off-by: Jane Sandberg <[email protected]>
16 16 docs/modules/installation/pages/server_upgrade.adoc
commit d7046b56314a138264cae5ed5e9c6d3aff2faccb
Author: Michele Morgan <[email protected]>
Date: Tue Nov 1 12:45:36 2022 -0400
bumping Perl version string for 3.10
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/perlmods/lib/OpenILS.pm
commit 4492152830f350352e550d846fcb8855fde42a19
Author: Jane Sandberg <[email protected]>
Date: Thu Nov 10 22:07:06 2022 -0600
Translation updates - newpot
Signed-off-by: Jane Sandberg <[email protected]>
8 8 build/i18n/po/acq.js/acq.js.pot
307 209 build/i18n/po/bootstrap-opac/bootstrap-opac.pot
3919 3764 build/i18n/po/db.seed/db.seed.pot
3377 3235 build/i18n/po/fm_IDL.dtd/fm_IDL.dtd.pot
78 70 build/i18n/po/tpac/tpac.pot
281 230 build/i18n/po/webstaff/webstaff.pot
commit 89129dffa62e2b517af5f3d567224a1a1656e03d
Author: Michele Morgan <[email protected]>
Date: Thu Nov 3 09:04:47 2022 -0400
Edited Release Notes
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
44 141 docs/RELEASE_NOTES_3_10.adoc
commit 8f32a502dbfe152e73d7bff3daf61e8bd9205902
Author: Michele Morgan <[email protected]>
Date: Tue Nov 1 11:55:57 2022 -0400
3.10 Release Notes
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
610 0 docs/RELEASE_NOTES_3_10.adoc
0 15 docs/RELEASE_NOTES_NEXT/Acquisitions/Angular_Acquisitions.adoc
0 10 docs/RELEASE_NOTES_NEXT/Acquisitions/desadv.adoc
0 5 docs/RELEASE_NOTES_NEXT/Acquisitions/new_po_column.adoc
0 15 docs/RELEASE_NOTES_NEXT/Acquisitions/new_rollover_permission.adoc
0 9 docs/RELEASE_NOTES_NEXT/Acquisitions/unarchive_course.adoc
0 175 docs/RELEASE_NOTES_NEXT/Administration/OpenAthens_SignOn.adoc
0 5 docs/RELEASE_NOTES_NEXT/Administration/bing_maps.adoc
0 5 docs/RELEASE_NOTES_NEXT/Administration/carousel_timestamp.adoc
0 3 docs/RELEASE_NOTES_NEXT/Administration/hours_of_operation_note_field.adoc
0 8 docs/RELEASE_NOTES_NEXT/Administration/html_email.adoc
0 13 docs/RELEASE_NOTES_NEXT/Administration/marc_stream_importer_match_quality_ratio.adoc
0 8 docs/RELEASE_NOTES_NEXT/Administration/renewal_on_max_fines.adoc
0 10 docs/RELEASE_NOTES_NEXT/Administration/turn_off_traditional_staff_catalog.adoc
0 21 docs/RELEASE_NOTES_NEXT/Architecture/eslint.adoc
0 5 docs/RELEASE_NOTES_NEXT/Architecture/os_requirements.adoc
0 5 docs/RELEASE_NOTES_NEXT/Cataloging/Record_Note_Merges.adoc
0 13 docs/RELEASE_NOTES_NEXT/Circulation/angular-circulation.adoc
0 5 docs/RELEASE_NOTES_NEXT/Circulation/negative-balances-ng.adoc
0 24 docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc
0 30 docs/RELEASE_NOTES_NEXT/Circulation/renewals-extend-due-date.adoc
0 5 docs/RELEASE_NOTES_NEXT/Circulation/staff-multi-hold-override-all-option.adoc
0 8 docs/RELEASE_NOTES_NEXT/Circulation/transit-slip-address.adoc
0 8 docs/RELEASE_NOTES_NEXT/Circulation/unarchive_course.adoc
0 10 docs/RELEASE_NOTES_NEXT/OPAC/marcxml_fields_punctuation.adoc
1 1 docs/antora.yml
create mode 100644 docs/RELEASE_NOTES_3_10.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/Angular_Acquisitions.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/desadv.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/new_po_column.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/new_rollover_permission.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/unarchive_course.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/OpenAthens_SignOn.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/bing_maps.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/carousel_timestamp.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/hours_of_operation_note_field.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/html_email.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/marc_stream_importer_match_quality_ratio.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/renewal_on_max_fines.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Administration/turn_off_traditional_staff_catalog.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Architecture/eslint.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Architecture/os_requirements.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Cataloging/Record_Note_Merges.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/angular-circulation.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/negative-balances-ng.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/renewals-extend-due-date.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/staff-multi-hold-override-all-option.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/transit-slip-address.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/unarchive_course.adoc
delete mode 100644 docs/RELEASE_NOTES_NEXT/OPAC/marcxml_fields_punctuation.adoc
commit 4951ea5150c05c06f37c41f127b9c0ca29e9a3f8
Author: Galen Charlton <[email protected]>
Date: Fri Nov 4 13:39:15 2022 -0400
LP#1864507: (follow-up) another fix to the schema update
Fixing a syntax error to the reingest step this time.
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/upgrade/1344.function.trim_trailing_punct-improvement.sql
commit 0888ee4415ad6de4cada99c7d5ddf974b2bc4ec7
Author: Jessica Woolford <[email protected]>
Date: Thu Sep 29 13:27:20 2022 -0400
LP1755876: Add progress bar when renewing items
Signed-off-by: Jessica Woolford <[email protected]>
Signed-off-by: Susan Morrison <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
3 0 Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js
commit f42fd33c1543b0d7c65dc15e92ac70a9b9609d31
Author: Steven Callender <[email protected]>
Date: Thu Sep 8 12:47:38 2022 -0400
LP#1989133: Bootstrap physical description display error.
Signed-off-by: Steven Callender <[email protected]>
Signed-off-by: Garry Collum <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/templates-bootstrap/opac/parts/record/summary.tt2
commit 24ccfbf7ca499154ba9798cda6280eef9c426af4
Author: Jane Sandberg <[email protected]>
Date: Fri Nov 4 06:52:26 2022 -0700
LP1995032 follow-up: syntax correction
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/eg2/src/app/staff/circ/patron/alerts.component.html
1 1 Open-ILS/src/eg2/src/app/staff/share/circ/bad-barcode-dialog.component.html
commit da4979dd5a786dbdf6b9ee8729a72fd21b6a506d
Author: Terran McCanna <[email protected]>
Date: Fri Oct 28 18:19:58 2022 -0400
LP1895675 Bootstrap OPAC: Add notification method testing to My Account
This adds the work done in the TPAC for LP1777677 to the Bootstrap OPAC.
A test email button is added to My Account > Preferences, and a test
text message button is added to My Account > Preferences > Notification
Preferences.
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Christine Burns <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
19 2 Open-ILS/src/templates-bootstrap/opac/myopac/prefs.tt2
15 11 Open-ILS/src/templates-bootstrap/opac/myopac/prefs_notify.tt2
18 0 Open-ILS/src/templates-bootstrap/opac/myopac/test_notification.tt2
5 0 Open-ILS/src/templates-bootstrap/opac/parts/header.tt2
2 0 Open-ILS/src/templates-bootstrap/opac/parts/js.tt2
2 2 Open-ILS/src/templates-bootstrap/opac/parts/sms_carrier_selector.tt2
create mode 100644 Open-ILS/src/templates-bootstrap/opac/myopac/test_notification.tt2
commit 0a09e13670f11ddfae6e2b7e2e7fcbf01345c4f5
Author: Jane Sandberg <[email protected]>
Date: Mon Oct 3 18:22:48 2022 -0700
LP1972928: Show course user role dropdown choices without typing
To test:
1. Go to Admin > Local Admin > Course List
2. Choose a course
3. Go to the Course users tab
4. Activate the Role dropdown.
5. Note that no options appear.
6. Apply the patch
7. Repeat steps 1-5
8. Note that the role options appear when you activate the dropdown now
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Jennifer Pringle <[email protected]>
Signed-off-by: Stephanie Leary <[email protected]>
1 0 Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-users.component.html
commit 2e1ae9e2e72373af1b917709b12731461ce965eb
Author: Jane Sandberg <[email protected]>
Date: Thu Nov 3 20:00:11 2022 -0700
lp1856097 stamp and small fixes to upgrade script
Don't apply the upgrade if it would overwrite existing customizations
to the description, also add a missing semicolon.
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
5 3 Open-ILS/src/sql/Pg/upgrade/{XXXX.data.default_classification-description-update.sql => 1353.data.default_classification-description-update.sql}
rename Open-ILS/src/sql/Pg/upgrade/{XXXX.data.default_classification-description-update.sql => 1353.data.default_classification-description-update.sql} (51%)
commit 9aa6ea3e9bcaaf20ddf9520179601a0381afc11f
Author: Kyle Huckins <[email protected]>
Date: Wed Dec 11 23:17:22 2019 +0000
lp1856097 Tide Default Classification Scheme Description
- With the updates in lp1839341, the description in the YAOUS for
Default Classification Scheme is incorrect. It prompts for a number:
1, 2, or 3. The Angular Settings Editor now displays a verbose
dropdown. The description has been updated accordingly.
Signed-off-by: Kyle Huckins <[email protected]>
Changes to be committed:
modified: Open-ILS/src/sql/Pg/950.data.seed-values.sql
new file: Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql
Signed-off-by: Susan Morrison <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/sql/Pg/950.data.seed-values.sql
10 0 Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql
create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.default_classification-description-update.sql
commit ef0d69f04e14e231d9d854cdb2076f118f417d62
Author: Stephanie Leary <[email protected]>
Date: Fri Oct 28 09:32:43 2022 -0500
LP1995032 Add empty alt text to decorative icons
Adds alt="" to alert dialog icons in patron circulation screens.
Signed-off-by: Stephanie Leary <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
1 1 Open-ILS/src/eg2/src/app/staff/circ/patron/alerts.component.html
1 1 Open-ILS/src/eg2/src/app/staff/share/circ/bad-barcode-dialog.component.html
commit 965eed0754eee7ef213d635e8217b9f981d1e3a9
Author: Jane Sandberg <[email protected]>
Date: Thu Sep 17 14:13:54 2020 -0700
LP1824709: Allow comboboxes inputs to have IDs
This adds a new input, domId, for the combobox component.
A good way to test:
1) Download the Wave accessibility checker.
2) Go to one of the following screens:
- Admin > Local > Course Reserves > Choose a course > Associate
item from catalog
- Admin > Local > Course Reserves > Choose a course > Associate
brief record
- MARC Batch Import
- MARC Batch Import/Export > Inspect Queue
- Staff Catalog Add to bucket
- Staff catalog conjoined items
- Hold cancel dialog
3) Right click and select "WAVE this page"
4) On the Details tab of WAVE, notice that there are several "Missing
form label" errors.
5) Apply this patch.
6) Run WAVE again; notice that the number of missing form label errors
has decreased.
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Garry Collum <[email protected]>
1 1 Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.html
13 11 Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-associate-material.component.html
9 9 Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.html
2 1 Open-ILS/src/eg2/src/app/staff/cat/vandelay/queue-list.component.html
2 1 Open-ILS/src/eg2/src/app/staff/share/buckets/bucket-dialog.component.html
1 1 Open-ILS/src/eg2/src/app/staff/share/holdings/conjoined-items-dialog.component.html
3 3 Open-ILS/src/eg2/src/app/staff/share/holds/cancel-dialog.component.html
7 4 Open-ILS/src/eg2/src/app/staff/share/marc-edit/simplified-editor/simplified-editor.component.html
commit 2e3eeec000f0df137523dc55097b423e8f4baf6a
Author: Stephanie Leary <[email protected]>
Date: Fri Oct 21 16:15:57 2022 -0500
LP1993859 Keyboard tabbing for results pagination
In the staff catalog search results pagination component, adds
tabindex="0" to link tags without href attributes to enable keyboard
navigation.
Signed-off-by: Stephanie Leary <[email protected]>
Signed-off-by: Christine Burns <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
5 5 Open-ILS/src/eg2/src/app/staff/catalog/result/pagination.component.html
commit 0833b874b7550929fee3da534ecca62a66edc8a7
Author: Stephanie Leary <[email protected]>
Date: Tue Oct 25 11:29:53 2022 -0500
LP1994159 Higher contrast H2s
The Evergreen logo color used for H2s, including the card headers on the
staff splash page, doesn't pass color contrast checks. I've also removed
the underlines, as those should be used only for links.
Signed-off-by: Stephanie Leary <[email protected]>
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
1 5 Open-ILS/src/eg2/src/styles.css
commit c5bf763967e1336c310ffe7f7916b05ecbe14bed
Author: Jason Stephenson <[email protected]>
Date: Thu Nov 3 10:50:10 2022 -0400
Add another entry for Jason Stephenson to mailmap
Signed-off-by: Jason Stephenson <[email protected]>
2 0 .mailmap
commit 21b6d1cbad6a1d76635d4d0803f682506a5d9968
Author: Galen Charlton <[email protected]>
Date: Wed Nov 2 19:13:02 2022 -0400
LP#1864507: (follow-up) fix another error in the 1344 schema update
The normalizer is already present, so trying to add it again
breaks the update.
Signed-off-by: Galen Charlton <[email protected]>
0 7 Open-ILS/src/sql/Pg/upgrade/1344.function.trim_trailing_punct-improvement.sql
commit c3c384607be7a725cff59f6d076cdef85f8a3700
Author: Galen Charlton <[email protected]>
Date: Tue Nov 1 21:55:02 2022 -0400
forward-port 3.9.0-3.9.1 update
Signed-off-by: Galen Charlton <[email protected]>
519 0 Open-ILS/src/sql/Pg/version-upgrade/3.9.0-3.9.1-upgrade-db.sql
create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/3.9.0-3.9.1-upgrade-db.sql
commit 7557f656e71171022f7fd773fcc6c6c7a5833591
Author: Galen Charlton <[email protected]>
Date: Tue Nov 1 21:53:46 2022 -0400
fix version stamp in 1341 update
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/upgrade/1341.schema.dym_delayed_reify.sql
commit baa6ad1b6b1bfc0bf7399df869bea3fa9d0f81b2
Author: Michele Morgan <[email protected]>
Date: Mon Oct 31 13:20:24 2022 -0400
LP1954681 - Add Release Notes
Signed-off-by: Michele Morgan <[email protected]>
5 0 docs/RELEASE_NOTES_NEXT/Circulation/staff-multi-hold-override-all-option.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/staff-multi-hold-override-all-option.adoc
commit d7df058229d063a0d5cea56ab19211d0cb1f4659
Author: Dan Briem <[email protected]>
Date: Fri Feb 18 17:25:26 2022 -0500
LP#1954681 Individual overrides when placing multiple holds
This adds an override all button above the override column if
there are multiple overridable holds (Angular Staff Catalog).
To test:
1. Ensure staff has permission to CREATE_DUPLICATE_HOLDS
and HOLD_ITEM_CHECKED_OUT.override
2. Set org setting for Maximum number of duplicate holds allowed
to a value greater than 1
3. Check out an item to a patron
4. Try to place a hold on that item with Number of copies set
to a value greater than 1
5. Test that the Override All button appears and works
Signed-off-by: Dan Briem <[email protected]>
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
12 0 Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.html
22 12 Open-ILS/src/eg2/src/app/staff/catalog/hold/hold.component.ts
commit a9868050d41c453952ceed3e8500a4e3c9610593
Author: Jane Sandberg <[email protected]>
Date: Fri Oct 28 21:25:34 2022 -0700
LP1829418 release notes
Signed-off-by: Jane Sandberg <[email protected]>
24 0 docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc
commit 3fe27455f1d35e3ac095101c86f82f01b324c9b1
Author: Terran McCanna <[email protected]>
Date: Fri Sep 30 15:28:48 2022 -0400
LP1829418 OPAC-Visible Stat Cats Not Visible
This adds patron and item statistical categories to the Bootstrap OPAC.
OPAC-visible patron stat cats will appear in My Account > Preferences >
Personal Information as new rows below the Account Expiration Date.
OPAC-visible item stat cats will appear below Copy Notes in the copy table
on the record details page.
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Elaine Hardy <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
3 2 Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm
6 0 Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Record.pm
10 3 Open-ILS/src/templates-bootstrap/opac/myopac/prefs.tt2
7 0 Open-ILS/src/templates-bootstrap/opac/parts/record/copy_table.tt2
commit eccc0bae289c215c18af40047b4159bdf595cdfa
Author: Michele Morgan <[email protected]>
Date: Fri Oct 28 16:02:03 2022 -0400
LP1859701 - Stamping upgrade script
Signed-off-by: Michele Morgan <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
1 1 Open-ILS/src/sql/Pg/upgrade/{XXXX.data.angular-cash-reports.sql => 1352.data.angular-cash-reports.sql}
rename Open-ILS/src/sql/Pg/upgrade/{XXXX.data.angular-cash-reports.sql => 1352.data.angular-cash-reports.sql} (89%)
commit 9770187b8e8f78c98dba634adda80ead408aa977
Author: Jane Sandberg <[email protected]>
Date: Mon Oct 3 06:42:43 2022 -0700
LP1859701: remove unused imports
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
1 2 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
commit 5a2f427e02f357b51e61780a2f1668b87b35b116
Author: Jason Etheridge <[email protected]>
Date: Mon Aug 29 07:38:42 2022 -0400
LP1859701 follow-up fixes for Cash Report
* restore totals to area outside of grid
* add Debit Card Payments
* relabel Credit Payment to Patron Credit Payment in outside-grid area
* relabel User Payments to Staff User Payments in outside-grid area
* relabel "patron" columns in Staff User Payments grid to "staff"
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
13 7 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
7 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
commit cd312909a9806728d3c9c42701385b2eb8c93a38
Author: Bill Erickson <[email protected]>
Date: Wed Jul 6 12:26:46 2022 -0400
LP1859701 Cash reports inline patron info
Display patron info in the User Payments grid inline with the grid
instead of requiring an additional click to open a separate dialog.
Make patron barcode a link so the patron can be opened in a new tab.
Adds grid prefs workstation settings.
Signed-off-by: Bill Erickson <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
12 17 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
8 15 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
1 3 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts
0 13 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.html
0 29 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.ts
16 0 Open-ILS/src/sql/Pg/950.data.seed-values.sql
22 0 Open-ILS/src/sql/Pg/upgrade/XXXX.data.angular-cash-reports.sql
delete mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.html
delete mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.ts
create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.angular-cash-reports.sql
commit 08ba2092da69fd7870cf751ad4bf4f87426b0ef7
Author: Bill Erickson <[email protected]>
Date: Thu Jun 30 16:57:52 2022 -0400
LP1859701 Cash Reports Tidying
* Avoid manual currency data formatting when it can happen in the template.
* Replace ngbTab with ngbNav. ngbTab is deprecated.
* Tweak date filter form layout to fix some obscured fields.
* Remove no longer needed view child static specifiers
* Use 2-space "tabs" in HTML consistent w/ other angular components.
* Remove unused code / css styles
* ng lint
Signed-off-by: Bill Erickson <[email protected]>
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
105 99 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
20 56 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
4 3 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts
2 1 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts
1 1 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.ts
commit 060657b9d2302651da082ce1de0fe74a92a97731
Author: Jason Etheridge <[email protected]>
Date: Tue Apr 5 14:49:13 2022 -0400
LP1859701 fix routing from admin page
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
2 1 Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts
commit 986c197adf75dbea52dca877d48a0995f74afdb4
Author: Jason Etheridge <[email protected]>
Date: Wed Apr 6 11:18:04 2022 -0400
LP1859701 release note
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
2 0 docs/RELEASE_NOTES_NEXT/miscellaneous.adoc
commit f5e8ef7a4ba364d4328732b70c52e2e18fc76dfb
Author: Jason Etheridge <[email protected]>
Date: Tue Apr 5 18:53:08 2022 -0400
LP1859701 replace "totals" row in each grid with a totals section above each grid
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
28 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
19 3 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
commit d2ac2c21d51c9b5d2144456962448c2284baa51a
Author: Zavier Banks <[email protected]>
Date: Thu Jan 9 18:45:26 2020 +0000
LP1859701 Cash Reports
Migrating the DOJO UI for Cash Reports into
Angular. The disabling of the different orgs
is dependent on bug #1863168.
Signed-off-by: Zavier Banks <[email protected]>
Signed-off-by: Jason Etheridge <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
2 2 Open-ILS/src/eg2/src/app/staff/admin/local/admin-local-splash.component.html
81 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
178 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
25 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts
15 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts
13 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.html
29 0 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.ts
6 1 Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.html
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.component.ts
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/cash-reports.module.ts
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/routing.module.ts
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.html
create mode 100644 Open-ILS/src/eg2/src/app/staff/admin/local/cash-reports/user-dialog.component.ts
commit 25409de175a566c5afd7d901ea5ff9aafdcd0fee
Author: Jane Sandberg <[email protected]>
Date: Thu Oct 27 21:53:54 2022 -0700
LP1983991 release notes
Signed-off-by: Jane Sandberg <[email protected]>
8 0 docs/RELEASE_NOTES_NEXT/Circulation/transit-slip-address.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Circulation/transit-slip-address.adoc
commit c4848427256ecd9b4167fcd897dc934d0059c375
Author: Llewellyn Marshall <[email protected]>
Date: Tue Oct 25 10:11:14 2022 -0400
LP1983991 handle when IN list empty
Signed-off-by: Jane Sandberg <[email protected]>
1 0 Open-ILS/web/js/ui/default/staff/circ/services/circ.js
commit 7c00ef8c0d674ffa29971133b4d44ddc65ead456
Author: Llewellyn Marshall <[email protected]>
Date: Mon Aug 8 14:39:50 2022 -0400
LP1983991 Allow display of source address and source location on transit slips
Added source address and source location information to transit slip & hold transit slip print template documentation.
Signed-off-by: Llewellyn Marshall <[email protected]>
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
7 0 Open-ILS/src/templates/staff/share/print_templates/t_hold_transit_slip.tt2
7 0 Open-ILS/src/templates/staff/share/print_templates/t_transit_slip.tt2
2 0 Open-ILS/web/js/ui/default/staff/admin/workstation/app.js
52 6 Open-ILS/web/js/ui/default/staff/circ/services/circ.js
commit 551e766ad8f638f481c7ea932459c9c8f9ba2874
Author: Jane Sandberg <[email protected]>
Date: Thu Oct 27 19:39:19 2022 -0700
LP1966342 follow-up: prefer === over ==
Signed-off-by: Jane Sandberg <[email protected]>
2 2 Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html
commit 04be580897d84c421e53eff41dfa2cc6191d249d
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:58:12 2022 -0400
LP#1966342: (follow-up) adjust for color contrast
The default Bootstrap text-light color on a bg-info background
fails the WCAG color contrast ratio; letting the text default
to black meets level AA.
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html
commit 4cd5a94c3638e0b9e73028522d3795762a8c0556
Author: Terran McCanna <[email protected]>
Date: Mon Apr 4 17:02:13 2022 -0400
LP1966342 Highlight Zero Holdings in Staff Catalog
This highlights the holdings on the staff catalog search results page
when there are zero holdings as such:
bg-warning (yellow) when there are no copies
and the record is NOT transcendant, and bg-info (blue) when there are
no copies, but it is transcendant.
Signed-off-by: Terran McCanna <[email protected]>
Signed-off-by: Jane Sandberg <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
5 1 Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html
commit 7c86cb9248d0f238713d96ad3d56b06836074fb5
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:46:43 2022 -0400
LP#1977761: (follow-up) enforce use of the permission at API level
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Financials.pm
commit e9ecea99041a194673c820610615f68293bc7243
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:45:21 2022 -0400
LP#1977761: add release note
Signed-off-by: Galen Charlton <[email protected]>
15 0 docs/RELEASE_NOTES_NEXT/Acquisitions/new_rollover_permission.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Acquisitions/new_rollover_permission.adoc
commit 09e91a572f13e8d705fc675223a12428c3efe09e
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:41:27 2022 -0400
LP#1977761: stamp DB update
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
2 0 Open-ILS/src/sql/Pg/upgrade/{XXXX.data.acqrolloverperm.sql => 1351.data.acqrolloverperm.sql}
rename Open-ILS/src/sql/Pg/upgrade/{XXXX.data.acqrolloverperm.sql => 1351.data.acqrolloverperm.sql} (94%)
commit fea3de847f3f13e1772aa8e71e3324c2c1686b56
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:39:32 2022 -0400
LP1977761: (follow-up) adjust seed data
Give ADMIN_FUND_ROLLOVER to Acquisitions Adminsitrators in the
seed data for new databases.
Signed-off-by: Galen Charlton <[email protected]>
1 0 Open-ILS/src/sql/Pg/950.data.seed-values.sql
commit 91839954219504367ca5302633807b6b016035ec
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:37:13 2022 -0400
LP1977761: (follow-up) adjust DB update
Assign the new permission to permission groups that include
ADMIN_FUND; that way, users who were able to rollover funds
are less likely to lose the ability to do so unexpectedly.
Signed-off-by: Galen Charlton <[email protected]>
27 3 Open-ILS/src/sql/Pg/upgrade/XXXX.data.acqrolloverperm.sql
commit 7ec9ded2422c939db8b4d34e5b7bc4c02c22096d
Author: Tiffany Little <[email protected]>
Date: Mon Jun 6 14:05:15 2022 -0400
LP1977761: Create fund rollover perm
This patch adds a new permission to perform fund propagation and rollover.
Signed-off-by: Tiffany Little <[email protected]>
Signed-off-by: Lindsay Stratton <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/eg2/src/app/staff/admin/acq/funds/funds-manager.component.ts
3 1 Open-ILS/src/sql/Pg/950.data.seed-values.sql
15 0 Open-ILS/src/sql/Pg/upgrade/XXXX.data.acqrolloverperm.sql
create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.acqrolloverperm.sql
commit e5c273174dbc19e16275be3fefe6af9c1f39da2d
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:29:51 2022 -0400
LP#1978976: stamp schema update
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
1 1 Open-ILS/src/sql/Pg/upgrade/{xxxx.function.lp1978976.merge_record_notes.sql => 1350.function.lp1978976.merge_record_notes.sql}
rename Open-ILS/src/sql/Pg/upgrade/{xxxx.function.lp1978976.merge_record_notes.sql => 1350.function.lp1978976.merge_record_notes.sql} (99%)
commit 9fd5b03258d497ecffd6a828e566b1b63ec95040
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:28:02 2022 -0400
LP#1978976: (follow-up) tweak formatting of releaste note
Signed-off-by: Galen Charlton <[email protected]>
3 1 docs/RELEASE_NOTES_NEXT/Cataloging/Record_Note_Merges.adoc
commit 0f3c7160394bb284b79e335a16bc161d5f2f5b73
Author: Rogan Hamby <[email protected]>
Date: Fri Jun 17 11:10:46 2022 -0400
LP#1978976: add release note
Signed-off-by: Garry Collum <[email protected]>
Signed-off-by: Rogan Hamby <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
3 0 docs/RELEASE_NOTES_NEXT/Cataloging/Record_Note_Merges.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Cataloging/Record_Note_Merges.adoc
commit 08945f2fd57d9f61fb794c04a72656d91ee7a307
Author: Rogan Hamby <[email protected]>
Date: Fri Jun 17 10:55:35 2022 -0400
lp1978976 merge record notes during bib merge
Signed-off-by: Garry Collum <[email protected]>
Signed-off-by: Rogan Hamby <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
10 0 Open-ILS/src/sql/Pg/999.functions.global.sql
293 0 Open-ILS/src/sql/Pg/upgrade/xxxx.function.lp1978976.merge_record_notes.sql
create mode 100644 Open-ILS/src/sql/Pg/upgrade/xxxx.function.lp1978976.merge_record_notes.sql
commit 244f0c732b9358e8c272364047e03f1b92406d06
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:19:22 2022 -0400
LP#1982031: add release note
Signed-off-by: Galen Charlton <[email protected]>
2 0 docs/RELEASE_NOTES_NEXT/miscellaneous.adoc
commit 10a967a6175bf1785b9f21afde76d89085bfcb01
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:17:50 2022 -0400
LP#1982031: stamp DB update
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
2 0 Open-ILS/src/sql/Pg/upgrade/{XXXX.data.org-setting-enc-desc.sql => 1349.data.org-setting-enc-desc.sql}
rename Open-ILS/src/sql/Pg/upgrade/{XXXX.data.org-setting-enc-desc.sql => 1349.data.org-setting-enc-desc.sql} (90%)
commit 47d7294f6582dddfaa2048b770cd53908a8b08c5
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:15:13 2022 -0400
LP#1982031: (follow-up) corrections to DB update
- fix syntax error
- update the label and description only on exact match
with the legacy value; this prevents overwritting any
local tweaking of the library setting
Signed-off-by: Galen Charlton <[email protected]>
6 4 Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql
commit 6d8e2487fc7a7336c0b7f61878b6cea873991bfa
Author: Tiffany Little <[email protected]>
Date: Thu Jul 21 11:24:58 2022 -0400
LP1982031 Reword Acq FYE library setting
Signed-off-by: Tiffany Little <[email protected]>
Signed-off-by: Gina Monti <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
2 2 Open-ILS/src/sql/Pg/950.data.seed-values.sql
8 0 Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql
create mode 100644 Open-ILS/src/sql/Pg/upgrade/XXXX.data.org-setting-enc-desc.sql
commit 5214b80d697d7902d11af606e8862d10c7f5c26c
Author: Jason Stephenson <[email protected]>
Date: Wed Sep 22 13:48:51 2021 -0400
Lp 1943168: Add Release Note
Add a release note for the match quality ratio options to
marc_stream_importer.pl.
Signed-off-by: Jason Stephenson <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
13 0 docs/RELEASE_NOTES_NEXT/Administration/marc_stream_importer_match_quality_ratio.adoc
create mode 100644 docs/RELEASE_NOTES_NEXT/Administration/marc_stream_importer_match_quality_ratio.adoc
commit 8746c2ec573069a0be20ef142b0a52266597202f
Author: Jason Stephenson <[email protected]>
Date: Thu Sep 9 13:20:29 2021 -0400
Lp 1943168: Add Marc Stream Importer Match Quality Ratio Options
Add options to specify the match quality ratio when running
marc_stream_importer.pl. There are separate options for bibs and
authorities:
--bib-match-quality-ratio=f
--auth-match-quality-ratio=f
They take floating point arguments and correspond to the similar
option in the Vandelay import screen.
Signed-off-by: Jason Stephenson <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
8 0 Open-ILS/src/support-scripts/marc_stream_importer.pl.in
commit 5451f9058dfa75890da77d24002cceef9f0a9963
Author: Galen Charlton <[email protected]>
Date: Thu Oct 27 21:08:29 2022 -0400
LP#1891369: stamp DB update
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/src/sql/Pg/002.schema.config.sql
1 1 Open-ILS/src/sql/Pg/upgrade/{XXXX.data.renewals-use-full-time.sql => 1348.data.renewals-use-full-time.sql}
rename Open-ILS/src/sql/Pg/upgrade/{XXXX.data.renewals-use-full-time.sql => 1348.data.renewals-use-full-time.sql} (72%)
commit 858ac03fea6466f47ab666b64a6bfb32775dfa3b
Author: Bill Erickson <[email protected]>
Date: Thu Mar 17 10:50:06 2022 -0400
LP1891369 Renewal extension never shortens previous due date
Ensure the calculated due date of a renewal never occurs before the due
date of the previous circulation.
Signed-off-by: Bill Erickson <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
31 10 Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
commit 7d822def68be45e9dba9e93778d98aaa90d74aed
Author: Bill Erickson <[email protected]>
Date: Fri Jun 25 15:45:39 2021 -0400
LP1891369 Renewal exentions ignores overdues
Exit renewal extension logic early when the renewed circulation was
overdue. I.e., there's no time to offer on the subsequent circulation.
Signed-off-by: Bill Erickson <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
4 2 Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
commit dc3b933a4aea8b009ef7fa5d9e5db0c03826186f
Author: Bill Erickson <[email protected]>
Date: Fri Jun 25 13:03:10 2021 -0400
LP1891369 Renewal exentions uses min interval
Specify the minimum renewal extension interval as an interval instead of
a percentage of the total duration.
Signed-off-by: Bill Erickson <[email protected]>
Signed-off-by: Michele Morgan <[email protected]>
Signed-off-by: Galen Charlton <[email protected]>
1 1 Open-ILS/examples/fm_IDL.xml
4 6 Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
2 2 Open-ILS/src/sql/Pg/100.circ_matrix.sql
1 1 Open-ILS/src/sql/Pg/upgrade/XXXX.data.renewals-use-full-time.sql
9 6 docs/RELEASE_NOTES_NEXT/Circulation/renewals-extend-due-date.adoc