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