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