repoze.what releases¶
This document describes the releases of repoze.what.
repoze.what 1.0.9 (2010-03-04)¶
- Pin
repoze.whoto versions <= 1.99 (2.0a1 is incompatible). - Made tests compatible with released
repoze.who1.0.x.
repoze.what 1.0.8 (2009-03-14)¶
- Fixed problem with routing_args compliance in
repoze.what.predicates.Predicate.parse_variables(); a wrong structure of that variable was assumed. - Fixed small internal problem with the credentials dictionary.
repoze.what 1.0.7 (2009-03-13)¶
- Added the
is_anonymouspredicate.
repoze.what 1.0.6 (2009-03-05)¶
The deprecated
repoze.what.authorize.check_authorization()didn’t evaluate predicates correctly if predicates werebooleanized. Thanks to Michael Brickenstein!Attention
Don’t panic! This can hardly affect somebody on the earth: If you’re using
repoze.what.authorize.check_authorization()directly, then you’re not using Pylons, and if you’re not using Pylons, then you’re not usingrepoze.what-pylons.However, this does affect you if you’re not on the earth, use
repoze.what.authorize.check_authorization()and “booleanize predicates” in your non-Pylons-based framework ;-)
repoze.what 1.0.5 (2009-03-02)¶
- To ease testing, now
repoze.what.middleware.setup_auth()usesrepoze.who.plugins.testutil.make_middleware()instead of callingrepoze.who.middleware.PluggableAuthenticationMiddlewaredirectly. - Now non-ASCII messages can be logged without problems in Python < 2.6. Thanks to Christoph Zwerschke (TG Issue #2250).
- Minor updates in the documentation.
repoze.what 1.0.4 (2009-02-06)¶
- Now request-sensitive predicate checkers are easier to write because of the
introduction of the
repoze.what.predicates.Predicate.parse_variables()method, which is aware of the wsgiorg.routing_args specification. - Now
repoze.what.predicates.Predicate.unmet()receives an optional argument to override the error message. This feature is backported from v2. - Backported
repoze.what.predicates.Predicate.is_met()fromrepoze.whatv2. - Improved the predicates section in the manual.
- For forward compatibility with
repoze.whatv2, therepoze.what.authorizemodule is deprecated. If you want to userepoze.whatv2, you should start usingrepoze.what.predicates.Predicate.check_authorization()andrepoze.what.predicates.NotAuthorizedErrorinstead ofrepoze.what.authorize.check_authorization()andrepoze.what.authorize.NotAuthorizedError, respectively.
repoze.what 1.0.3 (2009-01-28)¶
This is a bug fix release, there is no new feature implemented.
- For forward compatibility with v2, the latest version of the Ini, SQL and
XML group adapters rely on the
repoze.what.useridkey in therepoze.whatcredentialsdictionary. However,repoze.whatwas passing therepoze.whoidentityto them instead of itscredentialsdict.
repoze.what 1.0.2 (2009-01-23)¶
For forward compatibility with repoze.what v2.0, predicates should define the evaluate method which deprecates
_eval_with_environ
as of this release.
This indirectly fixes a thread-safety bug found by Alberto Valverde on
Any-based predicates when used along
with All-based ones. Thank you very much
once again, Alberto!
repoze.what 1.0.1 (2009-01-21)¶
This release fixes an important bug which may affect production Web
sites depending on how you use the All predicate or any of its
derivatives (has_all_permissions and in_all_groups). TurboGears 2
applications are all affected, at least by default.
The likelihood that this will affect your application is very high, so upgrading is highly recommended if it’s on production.
Some
repoze.whatpredicateswere not thread-safe when they were instantiated in a module and then shared among threads (as used in TurboGears 2). This was found by and solved with the help of Alberto Valverde (¡Gracias, Alberto!).We fixed this by making
repoze.what.predicates.Predicate.eval_with_predicate()raise an exception if the predicate is not met, instead of returning a boolean and setting theerrorinstance attribute of the predicate to the predicate failure message.So if you are using that method directly, instead of using
repoze.what.authorize.check_authorization(), this is a backwards incompatible change for you and thus you should update your code. If you check predicates like this (which is discouraged; seerepoze.what.authorize.check_authorization()):from repoze.what.predicates import is_user, in_group, All p = All(is_user('someone'), in_group('some-group')) environ = gimme_the_environ() if p.eval_with_environ(environ): print('Authorization is denied: %s' % p.error) else: print('Authorization is granted')
Then you should update your code like this:
# This way of checking predicates is DISCOURAGED. Use # repoze.what.authorize.check_authorization() instead. from repoze.what.predicates import is_user, in_group, All, PredicateError p = All(is_user('someone'), in_group('some-group')) environ = gimme_the_environ() try: p.eval_with_environ(environ) print('Authorization is granted') except PredicateError, error: print('Authorization is denied: %s' % error)
Note
Because of this, TurboGears 2 users who want to use this release, should try the latest revision in the TG2 Subversion repository or wait for TurboGears-2.0b4. But again, there’s no hurry if your application is not in production.
For forward compatibility with
repoze.whatv2, the user id used in the built-in predicates is that found inenviron['repoze.what.credentials']['repoze.what.userid']and the adapters loaded are now available atenviron['repoze.what.adapters']. This is not a backwards incompatible change.
repoze.what 1.0 (2009-01-19)¶
This is the first stable release of repoze.what and it was announced
on the Repoze blog.
- Fixed a problem with unicode support in
repoze.what.authorize.check_authorization(), reported by Chen Houwu on TurboGears mailing list. - Added the current user’s groups and permissions to the newly-created
environ['repoze.what.credentials']dictionary for forward compatibility withrepoze.whatv2. Such values are still defined in therepoze.whoidentitydictionary, but its use is highly discouraged as of this release. Seerepoze.what.middleware. - Applied work-around to fix Python v2.4 and v2.5 support.
repoze.what 1.0rc2 (2008-12-20)¶
Fixed the constructor of the
Notpredicate, which didn’t call its parent and therefore it was not possible to specify a custom message.From now on, predicates that are not met will have only one error message, even in compound predicates. It didn’t make sense to have a list of errors and thus this behavior has been changed in this release. This will affect you if you deal with
repoze.what.authorize.check_authorization()directly and handled the errors ofrepoze.what.authorize.NotAuthorizedErroras in:try: check_authorization(predicate, environ) except NotAuthorizedError, exc: for error in exc.errors: print error
The code above may be updated this way:
try: check_authorization(predicate, environ) except NotAuthorizedError, exc: print exc
Note
This doesn’t affect TurboGears 2 users because TG itself deals with this function and it’s already updated to work with
repoze.what1.0rc2. Keep in mind that for this release to work on TurboGears 2, you need TurboGears 2 Beta 1 (not yet released as of this writing) or the latest revision in the repository.For forward compatibility, it’s no longer mandatory to use the groups/permissions-based authorization pattern in order to use
repoze.what. This package should support several authorization patterns and they must all be optional, such as the upcoming support for roles-based authorization inrepoze.what1.5. As a result, now you can skip the definition of group and permission adapters and userepoze.what.middleware.setup_auth()as a simple proxy forrepoze.who.middleware.PluggableAuthenticationMiddleware:app_with_auth = setup_auth( app, identifiers=identifiers, challengers=challengers, mdproviders=mdproviders, classifier=classifier, challenge_decider=challenge_decider )
repoze.what 1.0rc1 (2008-12-10)¶
- Added support for read-only adapters in the
testutilwith theReadOnlyGroupsAdapterTesterandReadOnlyPermissionsAdapterTestertest cases. - Fixed Python 3 deprecation warnings.
repoze.what.plugins.ini – Ini adapters available (2008-12-09)¶
José Dinuncio has made a great work writing group and permission adapters for Ini files! So, thanks to him, now it’s not only possible to store your groups and permissions in databases, but also in files!
repoze.what 1.0b2 (2008-12-04)¶
- Added support for read-only sources. See
repoze.what.adapters.BaseSourceAdapter.
Backwards-incompatible changes¶
The signature of
repoze.what.middleware.setup_auth()has changed: Now it simply receives the WSGI application, the group adapters and the permissions adapters – additional keyword arguments will be sent torepoze.who.middleware.PluggableAuthenticationMiddleware. Also, it no longer defines a default identifier or challenger.Note
It’s very unlikely that this affects your application, as that function is normally used by
repoze.what.plugins.quickstart.setup_sql_auth().
repoze.what 1.0b1 (2008-11-26)¶
This is the first release of this package as part of the Repoze project. It
started as the repoze.who extension for TurboGears 2 applications
(tg.ext.repoze.who, doing authenticatication and authorization) by
Chris McDonough, Florent Aide and Christopher Perkins, then Gustavo Narea took
over the project to make it deal with authorization only and add support to
store groups and permissions in other types of sources (among other things)
under the tgext.authorization namespace, but finally it was turned into
a Repoze project in order to make it available in arbitrary WSGI applications.
Removed dependencies on TurboGears and Pylons.
Introduced a framework-independent function (
repoze.what.authorize.check_authorization()) to check authorization based on a predicate and the WSGI environment, along with therepoze.what.authorize.NotAuthorizedErrorexception.Now
repoze.whatis 100% documented.Moved the predicates from
repoze.what.authorizetorepoze.what.predicates. Nevertheless, they are imported in the former to avoid breaking TurboGears 2 applications created whentg.ext.repoze.whoortgext.authorizationexisted.Added the
Notpredicate.Now you can override the error message of the built-in predicates or set your own message at instantiation time by passing the
msgkeywork argument to the predicate. Example:from repoze.what.predicates import is_user my_predicate = is_user('carla', msg="Only Carla may come here")
As a result, if your custom predicate defines the constructor method (
__init__), then you’re highly encouraged to call its parent with themsgkeyword argument. Example:from repoze.what.predicates import Predicate class MyCoolPredicate(Predicate): def __init__(self, **kwargs): super(MyCoolPredicate, self).__init__(**kwargs)
Moved the SQL plugin (
repoze.what.plugins.sql) into a separate package. Also movedrepoze.what.plugins.quickstartinto that package because it’s specific to the SQL plugin.Log messages are no longer sent to standard output if the
WHO_LOGenvironment variable is defined, but withAUTH_LOG.Now
repoze.whatuses logging internally to ease debugging.
Backwards-incompatible changes¶
If you have custom predicates, you should update the
eval_with_objectmethod, which has been renamed to_eval_with_environand only receives one argument (the WSGI environment). This is, if your method’s signature looks like this:eval_with_object(obj, errors)
Now it should look like this:
_eval_with_environ(environ)
Note that
errorsare no longer passed.On the other hand, the
error_messageattribute of predicates has been renamed tomessagebecause they are not only used to display errors (seerepoze.what.predicates).The
repoze.what.authorize.require()decorator has been removed because it’s specific to TurboGears. TurboGears 2 applications will find it attg.require().
Because this is the first beta release, there should not be more backwards incompatible changes in the coming 1.X releases.