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