Commit | Line | Data |
---|---|---|
6abd8ce8 TC |
1 | BSE 0.20 (unreleased) |
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 | ||
39 | - delete the session data for a site users session when they logoff. | |
40 | As a side effect this will log out the admin user. | |
41 | ||
6abd8ce8 TC |
42 | Template updates: |
43 | ||
b27af108 TC |
44 | - checkoutpay_base.tmpl - the name of the cardHolder payment field is |
45 | now ccName. | |
46 | ||
47 | - admin/order_detail.tmpl - order ccPAN can be used to display the | |
48 | truncated card number. | |
49 | ||
50 | - user/options_billing_base.tmpl and its generated template have been | |
51 | renamed with s/billing/delivery/ since it now contains delivery | |
52 | details. The link to it from user/options(_base).tmpl has also | |
53 | been updated. | |
54 | ||
55 | - user/options_base.tmpl, user/register_base.tmpl, | |
56 | admin/users/(add,edit,view).tmpl have been updated to match the new | |
57 | site users schema. | |
58 | ||
fb10b11e TC |
59 | - user/logon_base.tmpl, user/register_base.tmpl - updated the |
60 | "nothing is more permanent that a temporary solution" link text for | |
61 | logon, register and recover password. | |
62 | ||
b27af108 | 63 | Internals: |
6abd8ce8 | 64 | |
b27af108 TC |
65 | - Squirrel::Table->make now looks for default_I<colname> when looking |
66 | for default values for a column. |