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