Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: Python-announce-list@python.org Delivered-To: python-announce-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'url:pypi': 0.03; 'column': 0.07; 'report.': 0.07; 'subject:ANN': 0.07; 'tests.': 0.07; 'string': 0.09; "django's": 0.09; 'enabled,': 0.09; 'indexes': 0.09; 'prefix': 0.09; 'skip:# 30': 0.09; 'suffix': 0.09; 'url:github': 0.09; 'python': 0.11; 'bug': 0.12; "wouldn't": 0.14; '3.3,': 0.16; 'columns': 0.16; 'deletion': 0.16; 'justin': 0.16; 'orm,': 0.16; 'porting': 0.16; 'sqlalchemy': 0.16; 'subject:mapper': 0.16; 'subject:object': 0.16; 'suffixes': 0.16; 'to:addr:python-announce-list': 0.16; 'fix': 0.17; 'hey': 0.18; 'library': 0.18; 'everyone,': 0.19; 'properly': 0.19; 'tests': 0.22; 'fixed.': 0.24; 'instead.': 0.24; 'unicode': 0.24; 'skip:- 40': 0.29; 'message-id:@mail.gmail.com': 0.30; 'base,': 0.31; 'reduced': 0.31; 'interface': 0.32; 'skip:- 30': 0.32; 'text': 0.33; 'url:python': 0.33; 'at:': 0.34; 'received:google.com': 0.35; 'replies': 0.36; 'thanks': 0.36; 'similar': 0.36; 'url:org': 0.36; 'effort': 0.37; 'skip:- 20': 0.37; 'being': 0.38; 'skip:& 10': 0.38; 'thank': 0.38; 'writes': 0.38; 'issue': 0.38; 'recent': 0.39; 'delete': 0.39; 'to:addr:python.org': 0.39; 'release': 0.40; 'full': 0.61; 'six': 0.68; 'sports': 0.69; 'behavior': 0.77; 'and\xa0': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=G6RDid0L00Hto+NWi9nZEbe9cKkrB4RXtoqvKZ3mtoo=; b=mkQoudtsrSjRIgsKEkIqiMcdtJrIM/tfpuD3oXmm9d04uwo0hbga46/BDBh6QLl5NJ 9xhFA6cMSt+X0dQkoJSwrftP8Wh5MrGn7YCubDF9zUca7G4fjq8IpYZGju56n5Cd9NaI x64Lub0sr7LndYDwOfKAkonkNVRMxWtO2MHdp5zhV6iJyUIigM04lvmDXjoAH8zlmirP aZQ2qBsnOVGHeg1KrPq1cPAU3U1uJ91tVZM+8YG8cUC1tdVOfgp/BTqTh1HJ5VjcKJKI iHeMvxfccQPKrxOSMtBVObT/vTVrcuS/8Zf6U7LiaOqlLOlHwfcZ5w8hx5N9aHuEXe5g DkOw== MIME-Version: 1.0 X-Received: by 10.229.112.5 with SMTP id u5mr5444797qcp.3.1396505015534; Wed, 02 Apr 2014 23:03:35 -0700 (PDT) Date: Wed, 2 Apr 2014 23:03:35 -0700 Subject: ANN: rom 0.26.1 - Redis object mapper for Pthon From: Josiah Carlson To: Python-announce-list@python.org X-Mailman-Approved-At: Fri, 04 Apr 2014 09:24:13 +0200 Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 X-BeenThere: python-announce-list@python.org X-Mailman-Version: 2.1.15 Precedence: list Reply-To: python-list@python.org List-Id: Announcement-only list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Approved: python-announce-list@python.org Newsgroups: comp.lang.python.announce Message-ID: Lines: 54 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1396596254 news.xs4all.nl 2919 [2001:888:2000:d::a6]:57004 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python.announce:1252 Hey everyone, The "rom" package is a Redis object mapper for Python. It sports an interface similar to Django's ORM, SQLAlchemy with the declarative base, or Appengine's datastore. The changelog for recent releases can be seen below my signature. You can find the package at: https://www.github.com/josiahcarlson/rom https://pypi.python.org/pypi/rom And docs can be found at: http://pythonhosted.org/rom/ Please CC me on any replies if you have any questions or comments. Thank you, - Josiah #---------------------------------- 0.26.1 ----------------------------------- [fixed] issue with deleted entity resurrection, bug report and fix thanks to Justin Mayfield https://github.com/mayfield [fixed] issue with deleted entities not being completely cleared out during delete with Lua writes enabled, bug report and fix also courtesy of Justin Mayfield https://github.com/mayfield #---------------------------------- 0.26.0 ----------------------------------- [added] support for Python 3.3 thanks to the six library and porting effort from Justin Mayfield https://github.com/mayfield, which also includes some additional tests. [remove] String column from Python 3.3, use the Text column instead. [changed] Both String and Text columns can use unique columns. [fixed] rom's behavior with long ints in some situations. [fixed] rom's behavior with unicode suffixes in Python 2.x. [added] tests for unicode text indexes, unique indexes, prefix indexes, and suffix indexes. [updated] relevant docs regarding the Text column and unique indexes. [fixed] improperly labeled 0.25.1 release in this changelog. #---------------------------------- 0.25.1 ----------------------------------- [fixed] an issue where Lua writing wouldn't properly update unique indexes on deletion was fixed. Thank you to https://github.com/thedrow for the report. [changed] added a link to the full Python docs to the Readme. #----------------------------- 0.23 (unreleased) ----------------------------- [changed] reduced number of round trips for single-filter queries by 1, thanks to https://github.com/MickeyKim for the report.