]> git.evergreen-ils.org Git - Evergreen.git/blob - ChangeLog
Bumping version numbers and adding Changelog
[Evergreen.git] / ChangeLog
1 commit 0d8b7fa39d74cd960508908cc29533765f014a59
2 Author: Galen Charlton <gmc@esilibrary.com>
3 Date:   Wed Sep 21 20:31:56 2016 -0400
4
5     bump up upgrade instructions for 2.10.7
6     
7     Signed-off-by: Galen Charlton <gmc@esilibrary.com>
8
9 19      18      docs/installation/server_upgrade.txt
10
11 commit 0fd473e1e2b31485ba0f961425e7745026f06bb9
12 Author: Galen Charlton <gmc@esilibrary.com>
13 Date:   Wed Sep 21 20:27:42 2016 -0400
14
15     small typo fix in 2.10 release notes
16     
17     Signed-off-by: Galen Charlton <gmc@esilibrary.com>
18
19 1       1       docs/RELEASE_NOTES_2_10.adoc
20
21 commit 0c76f465db0619098de8948a537a1aa680f54285
22 Author: Jason Stephenson <jason@sigio.com>
23 Date:   Wed Sep 21 15:58:33 2016 -0400
24
25     Forward port 2.9.7 to 2.9.8 db upgrade script.
26     
27     Signed-off-by: Jason Stephenson <jason@sigio.com>
28
29 5       0       Open-ILS/src/sql/Pg/version-upgrade/2.9.7-2.9.8-upgrade-db.sql
30  create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/2.9.7-2.9.8-upgrade-db.sql
31
32 commit f35c3a92c40c3a7f3ee11c9edb399aac47225d9d
33 Author: Galen Charlton <gmc@esilibrary.com>
34 Date:   Wed Sep 21 15:13:56 2016 -0400
35
36     schema update script: 2.10.6 -> 2.10.7
37     
38     Signed-off-by: Galen Charlton <gmc@esilibrary.com>
39
40 5       0       Open-ILS/src/sql/Pg/version-upgrade/2.10.6-2.10.7-upgrade-db.sql
41  create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/2.10.6-2.10.7-upgrade-db.sql
42
43 commit 2eabe855668bb159e3012bbde9e7861ea30521d8
44 Author: Kathy Lussier <klussier@masslnc.org>
45 Date:   Wed Sep 21 13:35:14 2016 -0400
46
47     Docs: Adding 2.10.7 point release notes
48     
49     Signed-off-by: Kathy Lussier <klussier@masslnc.org>
50
51 27      0       docs/RELEASE_NOTES_2_10.adoc
52
53 commit 1f6754727434bc722c4398d9ae385894659c88ed
54 Author: Kathy Lussier <klussier@masslnc.org>
55 Date:   Wed Sep 21 13:19:02 2016 -0400
56
57     Docs: Adding 2.9.8 point release notes
58     
59     Signed-off-by: Kathy Lussier <klussier@masslnc.org>
60
61 21      0       docs/RELEASE_NOTES_2_9.txt
62
63 commit 34015d516b9d826fa88476782fec028d91caf9ff
64 Author: Mike Rylander <mrylander@gmail.com>
65 Date:   Wed Sep 14 10:44:15 2016 -0400
66
67     LP#1623541: Booking will fail if its router isn't called "router"
68     
69     The circ code checks to see if the booking app is running, and if not, it
70     skips some booking-related logic. This is a useful performance enhancement
71     where booking is not in use. It does this by asking the OpenSRF router if
72     the "open-ils.booking" app has registered with it. Most of the time the
73     OpenSRF router will be called, unimaginatively, "router" but when it's not,
74     booking will not be considered by the circ module even if it's running.
75     
76     Instead of assuming "router" we should simply look up the router's name.
77     
78     Signed-off-by: Mike Rylander <mrylander@gmail.com>
79     Signed-off-by: Dan Wells <dbw2@calvin.edu>
80
81 7       1       Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm
82
83 commit de1b65801b42f701252a749b61ea9bd701942286
84 Author: Eva Cerninakova <cerninakova@jabok.cz>
85 Date:   Tue Sep 20 10:36:30 2016 -0700
86
87     Docs: improving documentation for catalog searching widgets
88     
89     Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
90
91 69      2       docs/opac/search_form.txt
92
93 commit 7ff929013d500a09a79283e19934cb9e74064a74
94 Author: Dan Scott <dscott@laurentian.ca>
95 Date:   Sun Sep 18 09:16:27 2016 -0400
96
97     LP#1624846 Add charset declaration to TPAC print output
98     
99     Non-ASCII characters were printed incorrectly in some browsers, such as
100     Firefox, that still default to ISO-8859-1 encodings in the absence of a
101     specifically declared encoding.
102     
103     Our output encoding will always be UTF-8, so declare it.
104     
105     Signed-off-by: Dan Scott <dscott@laurentian.ca>
106     Signed-off-by: Mike Rylander <mrylander@gmail.com>
107
108 1       0       Open-ILS/src/templates/opac/myopac/receipt_print.tt2
109 1       0       Open-ILS/src/templates/opac/record/print.tt2
110
111 commit 2bcbdfd88effc5d56fb1b6b774ad2d295b530ae7
112 Author: Dan Wells <dbw2@calvin.edu>
113 Date:   Tue Sep 13 13:40:43 2016 -0400
114
115     LP#1620803 Add missing workstation passthru to AuthProxy
116     
117     The AuthProxy.pm login function was not passing through a possible
118     'workstation' parameter to auth_internal's 'session.create' method.
119     Without this, all login's end up with a workstation set to the user's
120     home_ou, which can affect things including opt-in and transit
121     behaviors.
122     
123     While not needed for the initial 'user.validate', it seems cleaner
124     and simpler to just bring it over when constructing the initial
125     $args hash.
126     
127     Signed-off-by: Dan Wells <dbw2@calvin.edu>
128     Signed-off-by: Dan Scott <dscott@laurentian.ca>
129
130 1       0       Open-ILS/src/perlmods/lib/OpenILS/Application/AuthProxy.pm
131
132 commit 21b1cb9292a0d3c56e2a6f02d2d9f46b1d4cca1b
133 Author: Bill Erickson <berickxx@gmail.com>
134 Date:   Thu Jun 2 15:27:06 2016 -0400
135
136     LP#1413352 Brief record price sets lineitem price
137     
138     Propagate lineitem MARC 'price' attribute value to the lineitem
139     estimated_unit_price field.  This allows users to apply a lineitem
140     price directly from the ACQ Brief Record interface.
141     
142     Signed-off-by: Bill Erickson <berickxx@gmail.com>
143     Signed-off-by: Chris Sharp <csharp@georgialibraries.org>
144     Signed-off-by: Mike Rylander <mrylander@gmail.com>
145
146 35      0       Open-ILS/src/perlmods/lib/OpenILS/Application/Acq/Lineitem.pm
147
148 commit 9f095c82b18b71041810a0c7e6753d7a6db47e17
149 Author: Galen Charlton <gmc@esilibrary.com>
150 Date:   Thu Aug 25 20:47:47 2016 -0400
151
152     forward-port 2.10.5-2.10.6 schema update script
153     
154     Signed-off-by: Galen Charlton <gmc@esilibrary.com>
155
156 5       0       Open-ILS/src/sql/Pg/version-upgrade/2.10.5-2.10.6-upgrade-db.sql
157  create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/2.10.5-2.10.6-upgrade-db.sql