[rt #1209] allow @NO_DELETE in bse.cfg
[bse.git] / Changes.txt
CommitLineData
1be64ebd
TC
1BSE 0.21 - unreleased
2========
3
4Bug fixes:
5
6 - thumb.pl would return content types with doubled image/ prefixes,
7 eg. image/image/jpeg
8
9
2897cd79 10BSE 0.20 - 22 Dec 2011
6abd8ce8
TC
11========
12
b27af108
TC
13Please read any NOTES below carefully.
14
6abd8ce8
TC
15 - store a truncated card number for credit card payments (both online
16 and email). Reinstate storage of the card holder name in ccName.
17 ccNumberHash is no longer populated.
18
19 - ifNeedDelivery (checkoutnew_base.tmpl) wasn't being reset on order
20 submission.
21
b27af108
TC
22 - the site_users table has been refactored into the bse_siteusers
23 table, removing the bill* fields and adding deliv* fields. Other
24 obsolete fields have also been removed.
25
26 NOTE: To preserve your registered users on upgrade, run the
27 provided schema/site_users_to_members.sql SQL through the mysql
28 tool. This will create entries in bse_siteusers corresponding to
29 those in your original site_users table. You MUST start with an
30 empty bse_siteusers table or the script will throw an error.
31
32 NOTE: Any configuration such as report definitions, query group
33 definitions should now refer to bse_siteusers instead of
34 site_users.
35
36 - Data::UUID 1.148 is now required
37
be262d15
TC
38 - remove target entry for the shop confirm action, which was
39 otherwise removed years ago. RT #1280.
40
fb10b11e
TC
41 - logon now starts a new session, preserving the cart. As a
42 side-effect this logs out the admin user, though this may
43 change. RT #1279.
44
45 - passing a new session id between the SSL and non-SSL versions of
46 the site is now validated. RT #1279.
47
f13d1b43
TC
48 NOTE: This requires that [site].secret be set to a value specific
49 to your site. Running:
50
51 openssl rand -base64 32
52
53 generates a suitable value.
54
fb10b11e
TC
55 - delete the session data for a site users session when they logoff.
56 As a side effect this will log out the admin user.
57
cd1c5bfa
TC
58 - allow dynamic content pages to display flashed messages with the
59 message tag. Note that not all actions flash a message.
60
6abd8ce8
TC
61Template updates:
62
b27af108
TC
63 - checkoutpay_base.tmpl - the name of the cardHolder payment field is
64 now ccName.
65
66 - admin/order_detail.tmpl - order ccPAN can be used to display the
67 truncated card number.
68
69 - user/options_billing_base.tmpl and its generated template have been
70 renamed with s/billing/delivery/ since it now contains delivery
71 details. The link to it from user/options(_base).tmpl has also
72 been updated.
73
74 - user/options_base.tmpl, user/register_base.tmpl,
75 admin/users/(add,edit,view).tmpl have been updated to match the new
76 site users schema.
77
fb10b11e
TC
78 - user/logon_base.tmpl, user/register_base.tmpl - updated the
79 "nothing is more permanent that a temporary solution" link text for
80 logon, register and recover password.
81
cd1c5bfa
TC
82 - shopitem.tmpl - display the flashed message, if any.
83
62e56298
TC
84 - removed the unused checkoutcard and checkoutconfirm templates
85
b27af108 86Internals:
6abd8ce8 87
b27af108
TC
88 - Squirrel::Table->make now looks for default_I<colname> when looking
89 for default values for a column.