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