siteuser.pl now flashes all success messages from the messages table
[bse.git] / Changes.txt
CommitLineData
1be64ebd
TC
1BSE 0.21 - unreleased
2========
3
bf7dd331
TC
4 - verbose output of generate.pl is now based on the template
5 admin/generate.tmpl
1be64ebd 6
bf7dd331 7 - add the referer tag to all dynamic pages
1be64ebd 8
b23cb063
TC
9 - added [undeletable articles] to bse.cfg as a supplement to
10 @NO_DELETE. @NO_DELETE is now deprecated and may be removed in a
11 future release of BSE.
12 https://rt4.develop-help.com/Ticket/Display.html?id=1209
1be64ebd 13
595e72db
TC
14 - iterator inlines can now be filtered (Adrian Oldham)
15
16 - added some more extension to content type mappings for video
17 formats (Adrian Oldham)
18
8ddd08f7
TC
19 - the shopadmin order list targets are now much more efficient - they
20 no longer load the entire order table, are paginated, and let the
21 data do the selection of matching records.
22
23 NOTE: this removes some backward compatibility - iterator filters
24 no longer work and a new tag, all_order_count can be used to fetch
25 order counts. Extra search parameters have been provided to filter
26 the results.
27
28 - added a new adminurl2 tag where the second parameter is a target.
29
bf7dd331
TC
30Bug fixes:
31
32 - thumb.pl would return content types with doubled image/ prefixes,
33 eg. image/image/jpeg
e728024c 34
c710d90c
TC
35 - update BSE::AdminUsers, BSE::ChangePW, BSE::UI::AdminReport to use
36 more modern admin tags
0611c441 37 https://rt4.develop-help.com/Ticket/Display.html?id=1234 (partial)
c710d90c 38 (Adrian Oldham for BSE::ChangePW, BSE::UI::AdminReport)
0611c441 39
5b2aab45
TC
40 - with [site].secureadmin enabled, refreshes to the secure admin url
41 could cause a 500 error.
42
8fb3d3d4
TC
43 - check nomatch fields even for blank fields. Otherwise a field with
44 a LF or CR would not be caught by the dh_one_line validation rule.
45
a8a25cfd
TC
46 - saving a tag from the tag manager without changing the name or
47 deleting a tag that doesn't exist would result in a 500 error.
48 https://rt4.develop-help.com/Ticket/Display.html?id=1287
49
6e56cf75
TC
50 - setting an unfilled order's stage to "shipped" now sets whoFilled
51 and whenFilled for the order.
52 https://rt4.develop-help.com/Ticket/Display.html?id=1286
53
d9b0f5e1
TC
54 - an empty title (but no missing) when saving a user or group file no
55 longer defaults that to the file display name.
56 https://rt4.develop-help.com/Ticket/Display.html?id=1303
57
58 - validation errors are now correctly displayed for adding a user or
59 group file
60 https://rt4.develop-help.com/Ticket/Display.html?id=1302
61
62 - supplying an empty content type when saving a user or group file
63 now resets the content type to that derived from the file's display
64 name.
65 https://rt4.develop-help.com/Ticket/Display.html?id=1304
66
8ddd08f7
TC
67Templates:
68
69 - admin/order_list*.tmpl - see the order list re-work above.
70
71Internals:
72
73 - added a getCount() method to retrieve a count of matching records.
74
2897cd79 75BSE 0.20 - 22 Dec 2011
6abd8ce8
TC
76========
77
b27af108
TC
78Please read any NOTES below carefully.
79
6abd8ce8
TC
80 - store a truncated card number for credit card payments (both online
81 and email). Reinstate storage of the card holder name in ccName.
82 ccNumberHash is no longer populated.
83
84 - ifNeedDelivery (checkoutnew_base.tmpl) wasn't being reset on order
85 submission.
86
b27af108
TC
87 - the site_users table has been refactored into the bse_siteusers
88 table, removing the bill* fields and adding deliv* fields. Other
89 obsolete fields have also been removed.
90
91 NOTE: To preserve your registered users on upgrade, run the
92 provided schema/site_users_to_members.sql SQL through the mysql
93 tool. This will create entries in bse_siteusers corresponding to
94 those in your original site_users table. You MUST start with an
95 empty bse_siteusers table or the script will throw an error.
96
97 NOTE: Any configuration such as report definitions, query group
98 definitions should now refer to bse_siteusers instead of
99 site_users.
100
101 - Data::UUID 1.148 is now required
102
be262d15
TC
103 - remove target entry for the shop confirm action, which was
104 otherwise removed years ago. RT #1280.
105
fb10b11e
TC
106 - logon now starts a new session, preserving the cart. As a
107 side-effect this logs out the admin user, though this may
108 change. RT #1279.
109
110 - passing a new session id between the SSL and non-SSL versions of
111 the site is now validated. RT #1279.
112
f13d1b43
TC
113 NOTE: This requires that [site].secret be set to a value specific
114 to your site. Running:
115
116 openssl rand -base64 32
117
118 generates a suitable value.
119
fb10b11e
TC
120 - delete the session data for a site users session when they logoff.
121 As a side effect this will log out the admin user.
122
cd1c5bfa
TC
123 - allow dynamic content pages to display flashed messages with the
124 message tag. Note that not all actions flash a message.
125
6abd8ce8
TC
126Template updates:
127
b27af108
TC
128 - checkoutpay_base.tmpl - the name of the cardHolder payment field is
129 now ccName.
130
131 - admin/order_detail.tmpl - order ccPAN can be used to display the
132 truncated card number.
133
134 - user/options_billing_base.tmpl and its generated template have been
135 renamed with s/billing/delivery/ since it now contains delivery
136 details. The link to it from user/options(_base).tmpl has also
137 been updated.
138
139 - user/options_base.tmpl, user/register_base.tmpl,
140 admin/users/(add,edit,view).tmpl have been updated to match the new
141 site users schema.
142
fb10b11e
TC
143 - user/logon_base.tmpl, user/register_base.tmpl - updated the
144 "nothing is more permanent that a temporary solution" link text for
145 logon, register and recover password.
146
cd1c5bfa
TC
147 - shopitem.tmpl - display the flashed message, if any.
148
62e56298
TC
149 - removed the unused checkoutcard and checkoutconfirm templates
150
b27af108 151Internals:
6abd8ce8 152
b27af108
TC
153 - Squirrel::Table->make now looks for default_I<colname> when looking
154 for default values for a column.