1.2.2
- Changes
- Do not show the version number on non-admin pages (bug://report/95)
- There's now a (hidden debug) option to use a custom .mo reader instead of the built-in Gettext extension for localization (bug://report/49)
- Bug Fixes
- A "Call-time pass-by-reference has been deprecated" on search.php
- Users could not be approved due to a improper email template paths
- After mass-updating a search result set, if the search criteria were changed the user would be stuck in a "no results" error (bug://report/93)
- If a user has set a language that does not exist anymore, then bug notifications would fail (bug://report/97)
- Users of UTF8 languages would experience problems after upgrading (if the $utf8 config directive as ON) because the installer wasn't running in UTF8
- In Authentication::_createBugdarUser there was a variable capitalization error (bug://report/106)
- Comments posted by guests could not be deleted (bug://report/120)
1.2.1
- Changes
- In installation and upgrade documentation, it is now advised that users delete install/global.php (bug://report/91)
- Bug Fixes
- In order for new results to show up on a rerun search query, the page would have to be refreshed twice (bug://report/90)
- The installer would not properly set the version number
1.2.0
Final
- Changes
- Email templates are now found in the locale/ directory so they can be translated (bug://report/81)
- Bug Fixes
- In userctrl_search.tpl, the floated elements need to be before unfloated ones otherwise Gecko engine offsets it by a line
- Closed a SQL injection vector in register.php
- Users could not vote against a bug due to too tight sanitization (bug://report/84)
- A "call to undefined function A()" would be thrown under some occasions when viewing a bug
- Column headers were not translated for multiple languages (bug://report/79)
- Multibyte language emails are now sent out correctly (bug://report/82)
Release Candidate 1
- New Features
- Allow sorting and display of the "assigned to" column on grid display
- Changes
- Force utf8 as the default installation collation for MySQL
- Bug Fixes
- Comments wouldn't be displayed in a right-to-left fashion if the language is RTL (bug://report/80)
- When submitting the lost password form, error checking was disregarded because we were checking for errors the old way
Beta 3
- New Features
- The installer will now check to ensure that all the proper MySQL permissions are enabled
- Changes
- When clicking the "[Run Search]" link in the "Saved Searches" section of the "Options" tab, force the search to rerun
- Bug Fixes
- If Gettext isn't installed, a function-not-found error would be thrown
- On PHP4 systems, a "call to member non-object" error would be thrown because the Authentication class does not have a PHP4 constructor
- In lost password reset emails, the subject would appear as "Array['trackertitle']" because the variable was not enclosed in curly braces
- On PHP4 systems, a bug in the BugAPI would prevent any data from being saved because PHP4 doesn't support call_user_func() of parent:: selectors
- Some email roles would not get notified under certain circumstances because the list of users to notify was reset
- Errors would occurr on installation due to a problem with not loading all the data at the right time
- A PHP warning could be generated due to passing an argument by reference (bug://report/78)
Beta 2
- New Features
- Users can now belong to a single primary usergroup and multiple secondary groups, greatly increasing permission flexibility (bug://report/70)
- Usergroups can be cloned to allow fast duplication of permissions
- Changes
- Removed the stylevars system in place of additional CSS classes for formatting of tables and alternate row colors
- Bug Fixes
- Emails wouldn't be sent out for new comments due to a bug with updating the notices array
- Searches wouldn't be rerun after 15 minutes because of a typo in the time calculation
- The installer would show an error if gettext wasn't installed because the emulator wasn't loaded early enough
- Close a large bug that would cause a PHP error to be thrown regarding string offsets during notification processing
- Email notifications would be essentially empty in all circumstances
- Defining the NO_VERSION_CHECK constant wouldn't work due to a typo in admin/index.php
- Automations wouldn't properly save custom field changes in the admin section
- Automations would have no effect on custom fields when running them from the edit screen
- A SQL error would occur when saving a new usergroup
- In the product-level permissions screens, not all the products would be listed
- A minor display issue would occur in a rare instance when showing an error message when trying to add a version without a product
- If any fields had invalid data in editreport.php no validation errors would be thrown
- The Logging system would add extra empty logs that would pollute the database; fixed this and then added queries in showhistory.php to clean it up
- PHP smart tags were used in the installer, which if not enabled on the server would produce strange output (bug://report/67)
- Even after calling UsergroupAPI::delete(), there would still be usergroup remnants in bugfieldpermission and permission tables
- The javascript cancel buttons wouldn't work due to a parse error
- When approving users, the approval email would never be sent and a method not found error would be shown
Beta 1
- New Features
- Added the ability to show all the users in a paginated list in the admin section (bug://report/55)
- Can export search results to an XML file (bug://report/41)
- Links in comments can be parsed if the option is checked (bug://report/2)
- Components can now be displayed on the bug grid (bug://report/43)
- Votes can now be displayed and sorted on the bug grid (bug://report/13)
- Users can save a search so they can rerun it at any time
- Versions can be marked "Obsolete" so new bugs cannot be filed against them
- Search results can be mass-updated to change bug fields
- Added a lost password reset system
- Extracted email text to the template system to make it easier to modify them
- Improved the admin security system by creating a session system that is much harder to bypass
- An Authentication API was created in order to allow custom applications or databases to be used when authenticating at either login or with cookies
- Changes
- When a user does not have any favorites in his list, show a message instead of an empty screen
- When there are no bugs to display on index.php, don't show an empty grid, but rather an error message
- Search system no longer stores the actual query of the search, but rather the paramters
- Cleaned and refactored up the MessageReporter class
- Optimizations
- Reduce a query on bug updates by not querying the automation system if it is not being used
- Move custom field data into the bug table to reduce the use of JOINs
- Remove a query on userctrl.php's save options called by build_assignedto() because the API already does this for us
- Setting system cleanup that improves speed by reducing queries and not using eval()
- Template are now cached in the database to greatly improve speed; this does not effect editing templates at all
- Bug Fixes
- Component and product changes wouldn't appear correcly on showhistory.php
- Cached usernames would be cleared by the UserAPI if the display name wasn't set in the values array
1.1.5
- Fixed a potential SQL error on search.php because no results were found (bug://report/62)
- Fixed a SQL error on admin/user.php when adding a new user from the admin section (bug://report/63)
- When adding a new user from the admin section, email options were not saved properly
- Added an option to only perform header redirects instead of intermediate-stage redirects (bug://report/65)
- Fixed a foreach() error after adding a new user in the admin section without email options [admin/user.php#102]
- Fixed a minor typo on the guest welcome banner (bug://report/66)
1.1.4
- Time zones with half-hours are not saved because the field only allows INTs (bug://report/38)
- Fixed a SQL error received upon deleting a resolution (bug://report/40)
- When searching and selecting multiple items for a field, only the first one is used in the search (bug://report/39)
- Need to cast the unserialized data to an array to remove an implode() warning [admin/field.php#235]
- When Bugsys->options['pagelinks'] is set to 0, it now actually does its advertised behavior of showing all pages (bug://report/45)
- Foreign langauge users cannot use the product/component editing system beacause localized strings are used to create the do actions instead of english variable ones (bug://report/42)
- Fixed a SQL error that would occur when editing a report with no emails linked to it (bug://report/46)
- Added the ability to delete attachments from the database (bug://report/47)
- Fixed a scrollpane bug related to new reply <textarea>s in IE (bug://report/48)
- In the "My Controls" tab, change the name of the email and password fields to prevent autocomplete from working on them
- Include the Gettext mimic functions into the installer so people without the PHP extension can install Bugdar (bug://report/51)
- Fixed a SQL error that would occur when editing or deleting comments (bug://report/52)
- Allow administrators to set the default time zone which guests view all times and dates in (bug://report/53)
- The "[Edit]" and "[Delete]" options for attachments were off by one line (bug://report/56)
- Fixed a spelling error in search.php when there is no search criteria
- Adding a quick search feature to the header bar (bug://report/57)
- Fixed an occurence in header.tpl where the stylevar align wasn't used, but a hard-coded one was
- Only allow JPG, JPEG, PNG, and GIF attachments to be displayed inline because all other types could lead to an XSS attack
- Added maxlength attributes to all <input type="text"/> fields so the database doesn't truncate (bug://report/58)
- Fixed display issues in Firefox for RTL languages in the bug report screen and attachment display (bug://report/59)
- Localized the version checking information strings in admin/index.php
- Localized the word "Home" in the admin/index.php <title>
- Fixed a bug in admin/user.php where email options would be changed for the admin making the changes to another user's account instead of that user
- Emails weren't being sent under certain conditions for new comments
1.1.3
- If a user leaves a comment and does not have bug change access, data loss occurs
- Fixed IE's redirection issue when using Message_Reporter->redirect() (bug://report/32)
- On the admin login page, prevent the number "15" from appearing as text and marked another string for translation that was missed
- Error messages are no longer hidden in IE6 (bug://report/30)
1.1.2
- Fixed a SQL injection security issue on login.php (bug://report/36)
- Fixed potential SQL injections via POST attack on search.php
- Fixed a SQL injection security issue on install/install.php
1.1.1
- Registration email functions do not work because they are not ISSO2/Mail compatible [register.php]
- Removed TABLE_PREFIX-related SQL errors in syndicate.php
- Use the correct language variable key for exporting the XML encoding in syndicate.php
- API-level errors are not caught in the registration process before insertion because of user_cumulative [register.php]
- Remove warnings on explain.php?do=products (bug://report/29)
- Removed SQL errors when deleting a product or version due to bad column names (bug://report/28) [admin/product.php]
- Added a way to view and approve "Pending" and "Awaiting" users
- Prevent a weird bug with notifications where multiple emails would be sent out to the wrong people
- Numerous improvements for RTL languages (bug://report/34)
1.1.0
Final
- When gettext is not installed, a "method call on unobject" error is thrown
- Renamed "automatic action" to "automation"
- If no user comment is entered but there's an automation comment, then the automation comment is no longer disregarded
- Get rid of a foreach() warning if there are no products [admin/product.php#317]
- If no custom fields were setup, an empty query error would be thrown [newreport.php#130]
- If no custom fields were present, adding an automation would fail [admin/automation.php#74]
- Remove a warning when saving a usergroup and there are no custom fields present [admin/usergroup.php#221]
- Update cached usernames when the display name changes
Release Candidate 1
- Fixed many problems with install/install.php
- Changed array casting instances to is_array() checks, which are better
- Made some of the email notifications better-worded
- Fix the correct stylevar for language codes
- Fixed another can_perform() product-based permissions check [search.php]
- More changes to syndicate.php to increase performance
- Add checks to newreport.php and search.php to see if there are products or versions, if there aren't, then throw a message about needing them to be setup
- Process custom field data on newreport.php
- Add regex matching check to process_custom_fields()
- Missed some string conversions to gettext
Beta 2
- Array casting to remove foreach() warnings [editreport.php#132]
- Update last post information after deleting a comment (bug://report/25)
- Improved Atom feed by using a <table> and properly specifying content type attribute information
- Changed the access key for "Save Report and Add Another" button to E
- Removed potential warnings when there are no products [includes/functions.php#417] (bug://report/26)
- Removed potential warnings if there is no page navigator [includes/class_pagination.php#243] (bug://report/26)
- Created a Language API
- Fix a "call to a non-object" error [editcomment.php#116]
- Switch to gettext language system instead of the XML-strings format
- Fixing warnings related to Printer->page_confirm() throughout the entire admin section
- After you delete a resolution, severity, priority, or status, set all bugs with the deleted field item back to the value set as default
- Fixed a bug where there could be two <select> menus in userctrl.php because we double-wrapped a <select> [userctrl.tpl]
- Cast to array to remove foreach() warnings [userctrl.php#160]
- Fixed a bug that would cause searching to result in a SQL error
- Added better checking of hidden bugs for the favorites list
- Better permissions checking in vote.php, viewattachment.php, attachment.php, showhistory.php, and favorite.php
- Fixed numerous permission checks in showreport.php
- Added a permission to allow viewing of one's hidden reported bugs ("canviewownhidden")
- Added an is_array() check to prevent foreach() warnings [admin/user.php#135]
Beta 1
- User help cache was not rebuilt for descriptions in custom fields (bug://report/7)
- Custom fields did not appear on newreport.php (bug://report/8)
- If the first SQL query fails (datastore fetch), show a link to the installer (bug://report/20)
- Removed potential divide by 0 warnings in showreport.php under PHP5
- No longer highlight the <headline> and <input> tags when viewing a bug report in edit mode (bug://report/21)
- Removed potential implode() warnings in showreport.php under PHP5
- When logging out, you will be redirected to the page you were previously viewing
- Rewrote the logging mechanism
- Usernames are now cached in the database for bug reports to remove the need for complex joins at runtime
- Added email notification system (bug://report/11)
- When searching, you can now select multiple values for <select> menus (bug://report/3)
- Add a notice for guests explaining that registration is a good idea (bug://report/19)
- Create a separate screen that lists a user's favourites (bug://report/12)
- Atom syndication of the bugs list (bug://report/18)
- Removed the useless "dependency" table
- Added the following APIs:
- Attachment
- Automatic action
- Bug
- Comment
- Custom field
- Priority
- Resolution
- Severity
- User
- Usergroup
- User help
- Added support for DST observation (bug://report/22)
- Bugs and comments can now be deleted (bug://report/16)
- Specific statuses can be hidden by the administrator and/or users individually (bug://report/9)
- Column sorting of bug lists (bug://report/14)
- Added a version checker in the admin section
- Removed the plus sign in "def1 + def2" for HTML CSS class attributes
1.0.1
- Fixed a SQL error in voting for those with a table prefix (bug://report/6)
- Users with register_globals ON can now install software
- Users with register_globals ON can now log in