Skip to content

Commit 88ebd63

Browse files
committed
Merge pull request #116 from mjrider/release-prep96
Release prep 9.6
2 parents 8432409 + d900e6a commit 88ebd63

File tree

3 files changed

+27
-9
lines changed

3 files changed

+27
-9
lines changed

docs/CHANGES

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
===================
2+
Changes Ariadne 9.6
3+
===================
4+
5+
Changes
6+
- 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).
7+
- Added ar('loader')->stdin()/stdout()/stderr() functions that return the php IO streams
8+
- The Ariadne loader now also handles PUT requests, use ar('loader')->stdin() to get the php://input stream
9+
- Improved security code by using the new random_bytes()/random_int() functions, with a secure fallback for older PHP versions.
10+
11+
Bug fixes
12+
- Fixed bug in mod_edit that broke grouping of related fields
13+
- Fixed a number of warnings by better use of isset()
14+
- Fixed the browse dialog: selection in the right pane and pagination now work again.
15+
- Fixed incorrect content-length header in cache images that use session placeholders.
16+
- Fixed a bug in the importer that in very specific circumstances could misapply grants to the wrong group.
17+
- Fixed that ar_url can handle ar_tainted options and untaint them when applied to a url
18+
119
===================
220
Changes Ariadne 9.5
321
===================

lib/version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22
$ARversion = array();
3-
$ARversion['version'] = '9.5';
4-
$ARversion['date'] = strtotime('2016-03-22');
3+
$ARversion['version'] = '9.6';
4+
$ARversion['date'] = strtotime('2016-05-20');
55
$ARversion['year'] = strftime('%G', $ARversion['date']);

www/install/upgrade/tasks.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -177,17 +177,17 @@
177177
"newversion" => "9.3-rc1"
178178
));
179179
case '9.3-rc1':
180-
case '9.3':
181-
array_push($todo, array(
182-
"description" => "Bumping revision to 9.4",
183-
"operation" => "all/dummy.php",
184-
"newversion" => "9.4"
185-
));
186180
case '9.4':
187181
array_push($todo, array(
188182
"description" => "Update libraries for muze and vedor",
189183
"operation" => "all/upgrade.muze.libs.php",
190-
"newversion" => "9.5"
184+
"newversion" => "9.6"
185+
));
186+
case '9.5':
187+
array_push($todo, array(
188+
"description" => "Bumping revision to 9.6",
189+
"operation" => "all/dummy.php",
190+
"newversion" => "9.6"
191191
));
192192

193193
}

0 commit comments

Comments
 (0)