]> git.evergreen-ils.org Git - OpenSRF.git/blob - ChangeLog
update release notes for 2.5.0-rc
[OpenSRF.git] / ChangeLog
1 commit cf6a373f0c3f5e60dc72f4de44b11866d5b986af
2 Author: Galen Charlton <gmc@equinoxinitiative.org>
3 Date:   Tue Feb 21 17:26:20 2017 -0500
4
5     udpate version stamps for 2.5.0-beta
6     
7     Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
8
9 7       7       README
10 2       2       src/perl/lib/OpenSRF.pm
11 1       1       src/python/setup.py
12 1       1       version.m4
13
14 commit 5d552226c08385bda3ece8ac308329ba423af76b
15 Author: Galen Charlton <gmc@equinoxinitiative.org>
16 Date:   Tue Feb 21 17:25:00 2017 -0500
17
18     update release notes for 2.5-beta
19     
20     Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
21
22 13      2       doc/RELEASE_NOTES.txt
23
24 commit 3d1aae3f88a547fb76754085e062de3f139246ba
25 Author: Galen Charlton <gmc@equinoxinitiative.org>
26 Date:   Tue Feb 21 16:21:23 2017 -0500
27
28     LP#1666706: add --with-websockets-port configure option
29     
30     This patch adds the ability to specify the WebSockets
31     port as a configure option, avoiding the need to manually
32     edit a couple JavaScript files if one chooses to proxy
33     WS traffic.
34     
35     This patch also cleans up the set of JavaScript files that
36     are installed so that some test case files are not installed
37     by default.
38     
39     Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
40
41 2       0       .gitignore
42 7       1       README
43 8       0       configure.ac
44 1       2       src/Makefile.am
45 0       104     src/javascript/opensrf_ws.js
46 104     0       src/javascript/opensrf_ws.js.in
47 0       248     src/javascript/opensrf_ws_shared.js
48 248     0       src/javascript/opensrf_ws_shared.js.in
49  delete mode 100644 src/javascript/opensrf_ws.js
50  create mode 100644 src/javascript/opensrf_ws.js.in
51  delete mode 100644 src/javascript/opensrf_ws_shared.js
52  create mode 100644 src/javascript/opensrf_ws_shared.js.in
53
54 commit 21c1412b408943cc4425dce2e9cc9222faf4fa78
55 Author: Mike Rylander <mrylander@gmail.com>
56 Date:   Thu Aug 4 08:57:44 2016 -0400
57
58     LP#1616501: teach mod_perl handlers how to detect client disconnects
59     
60     This patch provides an API so that mod_perl handlers
61     that act as OpenSRF clients have a way to specify that
62     if the browser disconnects, to stop trying to receive
63     results from an XMPP request.
64     
65     To invoke it, mod_perl handlers can add the following:
66     
67     use OpenSRF;
68     ...
69     sub hander {
70     ...
71         my $r = shift;
72         OpenSRF->OSRF_APACHE_REQUEST_OBJ($r);
73     ...
74     
75     Signed-off-by: Mike Rylander <mrylander@gmail.com>
76     Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
77
78 17      0       src/perl/lib/OpenSRF.pm
79 25      1       src/perl/lib/OpenSRF/Transport/SlimJabber/XMPPReader.pm