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