{ "info": { "author": "Trey Hunner", "author_email": "corey@qr7.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "django-simple-history\n=====================\n\n.. image:: https://secure.travis-ci.org/treyhunner/django-simple-history.png?branch=master\n :target: http://travis-ci.org/treyhunner/django-simple-history\n :alt: Build Status\n\n.. image:: https://img.shields.io/codecov/c/github/treyhunner/django-simple-history/master.svg\n :target: http://codecov.io/github/treyhunner/django-simple-history?branch=master\n :alt: Test Coverage\n\n.. image:: https://img.shields.io/pypi/v/django-simple-history.svg\n :target: https://pypi.python.org/pypi/django-simple-history\n :alt: PyPI Version\n\n.. image:: https://landscape.io/github/treyhunner/django-simple-history/master/landscape.png\n :target: https://landscape.io/github/treyhunner/django-simple-history/master\n :alt: Code Health\n\n\ndjango-simple-history stores Django model state on every create/update/delete.\n\nThis app requires Django 1.6 or greater and Python 2.7, 3.3, or greater.\n\nGetting Help\n------------\n\nDocumentation is available at https://django-simple-history.readthedocs.io/\n\nIssue tracker is at https://github.com/treyhunner/django-simple-history/issues\n\nPull requests are welcome. Read the CONTRIBUTING file for tips on\nsubmitting a pull request.\n\n.. _PyPI: https://pypi.python.org/pypi/django-email-log/\n\nChanges\n=======\n\nUnreleased\n----------\n- Use get_queryset rather than model.objects in history_view. (gh-303)\n- Change ugettext calls in models.py to ugettext_lazy\n\n1.9.0 (2017-06-11)\n------------------\n- Add --batchsize option to the populate_history management command. (gh-231)\n- Add ability to show specific attributes in admin history list view. (gh-256)\n- Add Brazilian Portuguese translation file. (gh-279)\n- Fix locale file packaging issue. (gh-280)\n- Add ability to specify reason for history change. (gh-275)\n- Test against Django 1.11 and Python 3.6. (gh-276)\n- Add `excluded_fields` option to exclude fields from history. (gh-274)\n\n1.8.2 (2017-01-19)\n------------------\n- Add Polish locale.\n- Add Django 1.10 support.\n\n1.8.1 (2016-03-19)\n------------------\n- Clear the threadlocal request object when processing the response to prevent test interactions. (gh-213)\n\n1.8.0 (2016-02-02)\n------------------\n- History tracking can be inherited by passing `inherit=True`. (gh-63)\n\n1.7.0 (2015-12-02)\n------------------\n- Add ability to list history in admin when the object instance is deleted. (gh-72)\n- Add ability to change history through the admin. (Enabled with the `SIMPLE_HISTORY_EDIT` setting.)\n- Add Django 1.9 support.\n- Support for custom tables names. (gh-196)\n\n1.6.3 (2015-07-30)\n------------------\n- Respect `to_field` and `db_column` parameters (gh-182)\n\n1.6.2 (2015-07-04)\n------------------\n- Use app loading system and fix deprecation warnings on Django 1.8 (gh-172)\n- Update Landscape configuration\n\n1.6.1 (2015-04-21)\n------------------\n- Fix OneToOneField transformation for historical models (gh-166)\n- Disable cascading deletes from related models to historical models\n- Fix restoring historical instances with missing one-to-one relations (gh-162)\n\n1.6.0 (2015-04-16)\n------------------\n- Add support for Django 1.8+\n- Deprecated use of ``CustomForeignKeyField`` (to be removed)\n- Remove default reverse accessor to `auth.User` for historical models (gh-121)\n\n1.5.4 (2015-01-03)\n------------------\n- Fix a bug when models have a ``ForeignKey`` with ``primary_key=True``\n- Do NOT delete the history elements when a user is deleted.\n- Add support for ``latest``\n- Allow setting a reason for change. [using option changeReason]\n\n1.5.3 (2014-11-18)\n------------------\n- Fix migrations while using ``order_with_respsect_to`` (gh-140)\n- Fix migrations using south\n- Allow history accessor class to be overridden in ``register()``\n\n1.5.2 (2014-10-15)\n------------------\n- Additional fix for migrations (gh-128)\n\n1.5.1 (2014-10-13)\n------------------\n- Removed some incompatibilities with non-default admin sites (gh-92)\n- Fixed error caused by ``HistoryRequestMiddleware`` during anonymous requests (gh-115 fixes gh-114)\n- Added workaround for clashing related historical accessors on User (gh-121)\n- Added support for MongoDB AutoField (gh-125)\n- Fixed CustomForeignKeyField errors with 1.7 migrations (gh-126 fixes gh-124)\n\n1.5.0 (2014-08-17)\n------------------\n- Extended availability of the ``as_of`` method to models as well as instances.\n- Allow ``history_user`` on historical objects to be set by middleware.\n- Fixed error that occurs when a foreign key is designated using just the name of the model.\n- Drop Django 1.3 support\n\n1.4.0 (2014-06-29)\n------------------\n- Fixed error that occurs when models have a foreign key pointing to a one to one field.\n- Fix bug when model verbose_name uses unicode (gh-76)\n- Allow non-integer foreign keys\n- Allow foreign keys referencing the name of the model as a string\n- Added the ability to specify a custom ``history_date``\n- Note that ``simple_history`` should be added to ``INSTALLED_APPS`` (gh-94 fixes gh-69)\n- Properly handle primary key escaping in admin URLs (gh-96 fixes gh-81)\n- Add support for new app loading (Django 1.7+)\n- Allow specifying custom base classes for historical models (gh-98)\n\n1.3.0 (2013-05-17)\n------------------\n\n- Fixed bug when using ``django-simple-history`` on nested models package\n- Allow history table to be formatted correctly with ``django-admin-bootstrap``\n- Disallow calling ``simple_history.register`` twice on the same model\n- Added Python 3 support\n- Added support for custom user model (Django 1.5+)\n\n1.2.3 (2013-04-22)\n------------------\n\n- Fixed packaging bug: added admin template files to PyPI package\n\n1.2.1 (2013-04-22)\n------------------\n\n- Added tests\n- Added history view/revert feature in admin interface\n- Various fixes and improvements\n\nOct 22, 2010\n------------\n\n- Merged setup.py from Klaas van Schelven - Thanks!\n\nFeb 21, 2010\n------------\n\n- Initial project creation, with changes to support ForeignKey relations.", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/treyhunner/django-simple-history", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "rca-django-simple-history", "package_url": "https://pypi.org/project/rca-django-simple-history/", "platform": "", "project_url": "https://pypi.org/project/rca-django-simple-history/", "project_urls": { "Homepage": "https://github.com/treyhunner/django-simple-history" }, "release_url": "https://pypi.org/project/rca-django-simple-history/1.9.1/", "requires_dist": null, "requires_python": "", "summary": "Store model history and view/revert changes from admin site.", "version": "1.9.1" }, "last_serial": 3198622, "releases": { "1.9.1": [ { "comment_text": "", "digests": { "md5": "201ff646497e69b9f9c256dad781cd5e", "sha256": "577a03b778d4299322763d300b1e4dc43261737392104021111fcaf2ebc7d95d" }, "downloads": -1, "filename": "rca-django-simple-history-1.9.1.tar.gz", "has_sig": false, "md5_digest": "201ff646497e69b9f9c256dad781cd5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25333, "upload_time": "2017-09-24T14:06:35", "url": "https://files.pythonhosted.org/packages/3d/bc/0e6b854032b22045239a7db0eee84ec15dc05d7c0e4087c1ff6587d9a26f/rca-django-simple-history-1.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "201ff646497e69b9f9c256dad781cd5e", "sha256": "577a03b778d4299322763d300b1e4dc43261737392104021111fcaf2ebc7d95d" }, "downloads": -1, "filename": "rca-django-simple-history-1.9.1.tar.gz", "has_sig": false, "md5_digest": "201ff646497e69b9f9c256dad781cd5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25333, "upload_time": "2017-09-24T14:06:35", "url": "https://files.pythonhosted.org/packages/3d/bc/0e6b854032b22045239a7db0eee84ec15dc05d7c0e4087c1ff6587d9a26f/rca-django-simple-history-1.9.1.tar.gz" } ] }