Skip to content

Commit

Permalink
- updated changelog for immidiate release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.php.net/repository/pear/packages/LiveUser/trunk@218676 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Lukas Smith committed Aug 22, 2006
1 parent 5b995d1 commit 07c607e
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 22 deletions.
4 changes: 2 additions & 2 deletions package.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
require_once 'PEAR/PackageFileManager.php'; require_once 'PEAR/PackageFileManager.php';
require_once 'Console/Getopt.php'; require_once 'Console/Getopt.php';


$version = 'XXX'; $version = '1.16.12';


$notes = <<<EOT $notes = <<<EOT
- wrong use of pdo fetch method, when no result could be fetched it returns - wrong use of pdo fetch method, when no result could be fetched it returns
Expand Down Expand Up @@ -109,7 +109,7 @@
$package->addMaintainer('arnaud', 'lead', 'Arnaud Limbourg', 'arnaud@php.net'); $package->addMaintainer('arnaud', 'lead', 'Arnaud Limbourg', 'arnaud@php.net');
$package->addMaintainer('lsmith', 'lead', 'Lukas Kahwe Smith', 'smith@pooteeweet.org'); $package->addMaintainer('lsmith', 'lead', 'Lukas Kahwe Smith', 'smith@pooteeweet.org');
$package->addMaintainer('krausbn', 'developer', 'Bjoern Kraus', 'krausbn@php.net'); $package->addMaintainer('krausbn', 'developer', 'Bjoern Kraus', 'krausbn@php.net');
$package->addMaintainer('dufuz', 'lead', 'Helgi Þormar', 'dufuz@php.net'); $package->addMaintainer('dufuz', 'lead', 'Helgi Þormar', 'dufuz@php.net');
$package->addMaintainer('mahono', 'developer', 'Matthias Nothhaft', 'mahono@php.net'); $package->addMaintainer('mahono', 'developer', 'Matthias Nothhaft', 'mahono@php.net');


$package->addDependency('php', '4.2.0', 'ge', 'php', false); $package->addDependency('php', '4.2.0', 'ge', 'php', false);
Expand Down
84 changes: 64 additions & 20 deletions package.xml
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0"> <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0" packagerversion="1.4.9"> <package version="1.0" packagerversion="1.4.11">
<name>LiveUser</name> <name>LiveUser</name>
<summary>User authentication and permission management framework</summary> <summary>User authentication and permission management framework</summary>
<description>LiveUser is a set of classes for dealing with user authentication <description>LiveUser is a set of classes for dealing with user authentication
Expand Down Expand Up @@ -58,32 +58,45 @@
</maintainer> </maintainer>
<maintainer> <maintainer>
<user>dufuz</user> <user>dufuz</user>
<name>Helgi Þormar</name> <name>Helgi &amp;#222;ormar</name>
<email>dufuz@php.net</email> <email>dufuz@php.net</email>
<role>lead</role> <role>lead</role>
</maintainer> </maintainer>
<maintainer>
<user>mahono</user>
<name>Matthias Nothhaft</name>
<email>mahono@php.net</email>
<role>developer</role>
</maintainer>
</maintainers> </maintainers>
<release> <release>
<version>0.16.11</version> <version>1.16.12</version>
<date>2006-04-19</date> <date>2006-08-22</date>
<license>LGPL</license> <license>LGPL</license>
<state>beta</state> <state>beta</state>
<notes>- parse error typo fix in PEARAuth container (bug #6968) <notes>- wrong use of pdo fetch method, when no result could be fetched it returns
- minor improvements to the phpdoc comments in PEARAuth container false with no error. Swith to using fetchAll and check for an empty array
- use ugly fopen() hack in fileExists() - we cannot decrypt most of the encryption method used by the hash extension so
http://marc.theaimsgroup.com/?l=pear-dev&amp;m=114148949106207&amp;w=2 we default to returning the unmodified string
- changed API for readuserData(), auth_user_id parameter now contains the - the wrong variable was used to report the type of permission container when an
auth_user_id to use error occured
- login() now supports passing in an auth_user_id instead of the handle/password - push an error on the stack when the encryption method cannot be found
- made stack property public - make sequence columns primary key
- typo fix in PDO container readImplyingRights() method (bug #7195) - properly disconnect the pdo object
- expanded error handling in Log instance creation - make it possible to set the status message mapping
- handle if no proper credentials where passed to readUserData() (bug #7262) - register options for create (Bug #7704)
- replace isset() with array_key_exists() where applicable - use the hash extension if it is present for the password encryption
- disable __autoload() in class_exists() calls (bug #7304) - refactored decryptPW() and encryptPW() into static methods in the LiveUser class
- brought property names in line s/rights/right_ids *BC break* - force null instead of false for PDO fetch() calls that return empty sets
- MDB2_Schema 0.5 and MDB2 2.0.1 handles nulls in schema files properly so - fixed logging into example1
there is no need to disable MDB2_PORTABILITY_EMPTY_TO_NULL in the installer - debug =&gt; false in conf doesn&apos;t work (Bug #7564; thx to Matthias)
- added support for user defined handle fields
in DB, MDB, MDB2 and PDO containers you can set a list of fields in your auth
container storage config, default is &apos;handle&apos;, example:
&apos;handles&apos; =&gt; array(&apos;handle&apos;, &apos;auth_user_id&apos;, &apos;email&apos;)
these fields are now used to find the right user on login (Request #7781)
- fixed LiveUser::decryptPW(): added missing third parameter &apos;secret&apos;
- check if safe_mode is enabled in fileExists() to determine what algo to use (Bug #8296)
</notes> </notes>
<deps> <deps>
<dep type="php" rel="ge" version="4.2.0" optional="no"/> <dep type="php" rel="ge" version="4.2.0" optional="no"/>
Expand All @@ -97,6 +110,7 @@
<dep type="pkg" rel="has" optional="yes">XML_Tree</dep> <dep type="pkg" rel="has" optional="yes">XML_Tree</dep>
<dep type="pkg" rel="has" optional="yes">Crypt_RC4</dep> <dep type="pkg" rel="has" optional="yes">Crypt_RC4</dep>
<dep type="ext" rel="has" optional="yes">mcrypt</dep> <dep type="ext" rel="has" optional="yes">mcrypt</dep>
<dep type="ext" rel="has" optional="yes">hash</dep>
</deps> </deps>
<filelist> <filelist>
<dir name="/" baseinstalldir="/LiveUser"> <dir name="/" baseinstalldir="/LiveUser">
Expand Down Expand Up @@ -196,6 +210,36 @@
</filelist> </filelist>
</release> </release>
<changelog> <changelog>
<release>
<version>1.16.12</version>
<date>2006-08-22</date>
<license>LGPL</license>
<state>beta</state>
<notes>- wrong use of pdo fetch method, when no result could be fetched it returns
false with no error. Swith to using fetchAll and check for an empty array
- we cannot decrypt most of the encryption method used by the hash extension so
we default to returning the unmodified string
- the wrong variable was used to report the type of permission container when an
error occured
- push an error on the stack when the encryption method cannot be found
- make sequence columns primary key
- properly disconnect the pdo object
- make it possible to set the status message mapping
- register options for create (Bug #7704)
- use the hash extension if it is present for the password encryption
- refactored decryptPW() and encryptPW() into static methods in the LiveUser class
- force null instead of false for PDO fetch() calls that return empty sets
- fixed logging into example1
- debug =&gt; false in conf doesn&apos;t work (Bug #7564; thx to Matthias)
- added support for user defined handle fields
in DB, MDB, MDB2 and PDO containers you can set a list of fields in your auth
container storage config, default is &apos;handle&apos;, example:
&apos;handles&apos; =&gt; array(&apos;handle&apos;, &apos;auth_user_id&apos;, &apos;email&apos;)
these fields are now used to find the right user on login (Request #7781)
- fixed LiveUser::decryptPW(): added missing third parameter &apos;secret&apos;
- check if safe_mode is enabled in fileExists() to determine what algo to use (Bug #8296)
</notes>
</release>
<release> <release>
<version>0.16.11</version> <version>0.16.11</version>
<date>2006-04-19</date> <date>2006-04-19</date>
Expand Down

0 comments on commit 07c607e

Please sign in to comment.