Skip to content

Commit

Permalink
Merge pull request #116 from mjrider/release-prep96
Browse files Browse the repository at this point in the history
Release prep 9.6
  • Loading branch information
poef committed May 20, 2016
2 parents 8432409 + d900e6a commit 88ebd63
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
18 changes: 18 additions & 0 deletions docs/CHANGES
@@ -1,3 +1,21 @@
===================
Changes Ariadne 9.6
===================

Changes
- IMPORTANT: this release no longer supports old passwords stored as MD5 hashes. If you can no longer login, reset the password using an administrator account. This should only be an issue if you upgrade from a very old Ariadne release (<9).
- Added ar('loader')->stdin()/stdout()/stderr() functions that return the php IO streams
- The Ariadne loader now also handles PUT requests, use ar('loader')->stdin() to get the php://input stream
- Improved security code by using the new random_bytes()/random_int() functions, with a secure fallback for older PHP versions.

Bug fixes
- Fixed bug in mod_edit that broke grouping of related fields
- Fixed a number of warnings by better use of isset()
- Fixed the browse dialog: selection in the right pane and pagination now work again.
- Fixed incorrect content-length header in cache images that use session placeholders.
- Fixed a bug in the importer that in very specific circumstances could misapply grants to the wrong group.
- Fixed that ar_url can handle ar_tainted options and untaint them when applied to a url

===================
Changes Ariadne 9.5
===================
Expand Down
4 changes: 2 additions & 2 deletions lib/version.php
@@ -1,5 +1,5 @@
<?php
$ARversion = array();
$ARversion['version'] = '9.5';
$ARversion['date'] = strtotime('2016-03-22');
$ARversion['version'] = '9.6';
$ARversion['date'] = strtotime('2016-05-20');
$ARversion['year'] = strftime('%G', $ARversion['date']);
14 changes: 7 additions & 7 deletions www/install/upgrade/tasks.php
Expand Up @@ -177,17 +177,17 @@
"newversion" => "9.3-rc1"
));
case '9.3-rc1':
case '9.3':
array_push($todo, array(
"description" => "Bumping revision to 9.4",
"operation" => "all/dummy.php",
"newversion" => "9.4"
));
case '9.4':
array_push($todo, array(
"description" => "Update libraries for muze and vedor",
"operation" => "all/upgrade.muze.libs.php",
"newversion" => "9.5"
"newversion" => "9.6"
));
case '9.5':
array_push($todo, array(
"description" => "Bumping revision to 9.6",
"operation" => "all/dummy.php",
"newversion" => "9.6"
));

}

0 comments on commit 88ebd63

Please sign in to comment.