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