``zodburi``
===========
A library which parses URIs and converts them to ZODB storage objects and
database arguments.
See the documentation at
https://docs.pylonsproject.org/projects/zodburi/en/latest/ for more information.
.. _change-log:
Change Log
----------
2.6.0 (2023-05-17)
~~~~~~~~~~~~~~~~~~
- Stop support for ZODB4
- Stop support for python<3.7
2.5.0 (2021-05-12)
~~~~~~~~~~~~~~~~~~
- Support both ZODB4 and ZODB5.
- Add support for PyPy.
- Add support for Python 3.8.
- Drop support for Python 3.4.
- Add support for ``demo:`` URI scheme.
2.4.0 (2019-01-11)
~~~~~~~~~~~~~~~~~~
- Add support for Python 3.7.
- Fix PendingDeprecationWarning about ``cgi.parse_qsl``. (PR #21)
2.3.0 (2017-10-17)
~~~~~~~~~~~~~~~~~~
- Fix parsing of ``zeo://`` URI with IPv6 address.
- Drop support for Python 3.3.
- Add support for Python 3.6.
2.2.2 (2017-05-05)
~~~~~~~~~~~~~~~~~~
- Fix transposed ``install_requires`` and ``tests_require`` lists in
``setup.py``.
2.2.1 (2017-04-18)
~~~~~~~~~~~~~~~~~~
- Fix breakage added in 2.2 to the ``zconfig`` resolver.
2.2 (2017-04-17)
~~~~~~~~~~~~~~~~
- Add support for additional database configuration parameters:
``pool_timeout``, ``cache_size_bytes``, ``historical_pool_size``,
``historical_cache_size``, ``historical_cache_size_bytes``,
``historical_timeout``, and ``large_record_size``.
2.1 (2017-04-17)
~~~~~~~~~~~~~~~~
- Add support for Python 3.4 and 3.5.
- Drop support for Python 2.6 and 3.2.
- Add missing ClientStorage constructor kw args to resolver.
2.0 (2014-01-05)
~~~~~~~~~~~~~~~~
- Update ``ZODB3`` meta-package dependency to ``ZODB`` + ``ZConfig`` + ``ZEO``.
Those releases are what we import, and have final Py3k-compatible releases.
- Packaging: fix missing ``url`` argument to ``setup()``.
2.0b1 (2013-05-02)
~~~~~~~~~~~~~~~~~~
- Add support for Python 3.2 / 3.3.
- Add ``setup.py docs`` alias (runs ``setup.py develop`` and installs
documentation dependencies).
- Add ``setup.py dev`` alias (runs ``setup.py develop`` and installs
testing dependencies).
- Automate building the Sphinx docs via ``tox``.
- Fix ``zconfig:`` URIs under Python 2.7. The code worked around a bug in
the stdlib's ``urlparse.urlsplit`` for Python < 2.7; that workaround broke
under 2.7. See https://github.com/Pylons/zodburi/issues/5
- Drop support for Python 2.5.
1.1 (2012-09-12)
~~~~~~~~~~~~~~~~
- Remove support for ``postgres://`` URIs, which will now be provided by
the ``relstorage`` package. Thanks to Georges Dubus for the patch!
1.0 (2012-06-07)
~~~~~~~~~~~~~~~~
- Add support for ``postgres://`` URIs. Thanks to Georges Dubus for
the patch!
- Pin dependencies to Python 2.5-compatible versions when testing with
tox under Python 2.5.
- Update the documentation for publication to `ReadTheDocs
<https://docs.pylonsproject.org/projects/zodburi/en/latest/>`_
1.0b1 (2011-08-21)
~~~~~~~~~~~~~~~~~~
- Initial release.
Raw data
{
"_id": null,
"home_page": "https://pylonsproject.org/",
"name": "zodburi",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "zodb zodbconn",
"author": "Chris Rossi",
"author_email": "pylons-discuss@googlegroups.com",
"download_url": "https://files.pythonhosted.org/packages/54/fe/2c6eeadf306aba56df1bb6264ff663b1f45d44872c5d2831197476c8616f/zodburi-2.6.0.tar.gz",
"platform": null,
"description": "``zodburi``\n===========\n\nA library which parses URIs and converts them to ZODB storage objects and\ndatabase arguments.\n\nSee the documentation at\nhttps://docs.pylonsproject.org/projects/zodburi/en/latest/ for more information.\n\n\n\n.. _change-log:\n\nChange Log\n----------\n\n2.6.0 (2023-05-17)\n~~~~~~~~~~~~~~~~~~\n\n- Stop support for ZODB4\n\n- Stop support for python<3.7\n\n\n2.5.0 (2021-05-12)\n~~~~~~~~~~~~~~~~~~\n\n- Support both ZODB4 and ZODB5.\n\n- Add support for PyPy.\n\n- Add support for Python 3.8.\n\n- Drop support for Python 3.4.\n\n- Add support for ``demo:`` URI scheme.\n\n2.4.0 (2019-01-11)\n~~~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.7.\n\n- Fix PendingDeprecationWarning about ``cgi.parse_qsl``. (PR #21)\n\n2.3.0 (2017-10-17)\n~~~~~~~~~~~~~~~~~~\n\n- Fix parsing of ``zeo://`` URI with IPv6 address.\n\n- Drop support for Python 3.3.\n\n- Add support for Python 3.6.\n\n2.2.2 (2017-05-05)\n~~~~~~~~~~~~~~~~~~\n\n- Fix transposed ``install_requires`` and ``tests_require`` lists in\n ``setup.py``.\n\n2.2.1 (2017-04-18)\n~~~~~~~~~~~~~~~~~~\n\n- Fix breakage added in 2.2 to the ``zconfig`` resolver.\n\n2.2 (2017-04-17)\n~~~~~~~~~~~~~~~~\n\n- Add support for additional database configuration parameters:\n ``pool_timeout``, ``cache_size_bytes``, ``historical_pool_size``,\n ``historical_cache_size``, ``historical_cache_size_bytes``,\n ``historical_timeout``, and ``large_record_size``.\n\n2.1 (2017-04-17)\n~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.4 and 3.5.\n\n- Drop support for Python 2.6 and 3.2.\n\n- Add missing ClientStorage constructor kw args to resolver.\n\n2.0 (2014-01-05)\n~~~~~~~~~~~~~~~~\n\n- Update ``ZODB3`` meta-package dependency to ``ZODB`` + ``ZConfig`` + ``ZEO``.\n Those releases are what we import, and have final Py3k-compatible releases.\n\n- Packaging: fix missing ``url`` argument to ``setup()``.\n\n2.0b1 (2013-05-02)\n~~~~~~~~~~~~~~~~~~\n\n- Add support for Python 3.2 / 3.3.\n\n- Add ``setup.py docs`` alias (runs ``setup.py develop`` and installs\n documentation dependencies).\n\n- Add ``setup.py dev`` alias (runs ``setup.py develop`` and installs\n testing dependencies).\n\n- Automate building the Sphinx docs via ``tox``.\n\n- Fix ``zconfig:`` URIs under Python 2.7. The code worked around a bug in\n the stdlib's ``urlparse.urlsplit`` for Python < 2.7; that workaround broke\n under 2.7. See https://github.com/Pylons/zodburi/issues/5\n\n- Drop support for Python 2.5.\n\n1.1 (2012-09-12)\n~~~~~~~~~~~~~~~~\n\n- Remove support for ``postgres://`` URIs, which will now be provided by\n the ``relstorage`` package. Thanks to Georges Dubus for the patch!\n\n1.0 (2012-06-07)\n~~~~~~~~~~~~~~~~\n\n- Add support for ``postgres://`` URIs. Thanks to Georges Dubus for\n the patch!\n\n- Pin dependencies to Python 2.5-compatible versions when testing with\n tox under Python 2.5.\n\n- Update the documentation for publication to `ReadTheDocs\n <https://docs.pylonsproject.org/projects/zodburi/en/latest/>`_\n\n1.0b1 (2011-08-21)\n~~~~~~~~~~~~~~~~~~\n\n- Initial release.\n",
"bugtrack_url": null,
"license": "BSD-derived (http://www.repoze.org/LICENSE.txt)",
"summary": "Construct ZODB storage instances from URIs.",
"version": "2.6.0",
"project_urls": {
"Homepage": "https://pylonsproject.org/"
},
"split_keywords": [
"zodb",
"zodbconn"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f3cfd5e7c81c11f9871e133da75db1a61e930796e74ae99a47810165e5a6e7a3",
"md5": "e58c2c998d0440ce6f10031cf5eab7c8",
"sha256": "df5609a6b64346b7489f53cafaf2650ce6982658dc1446ae2b67d7fd04682594"
},
"downloads": -1,
"filename": "zodburi-2.6.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e58c2c998d0440ce6f10031cf5eab7c8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 13030,
"upload_time": "2023-05-17T08:10:51",
"upload_time_iso_8601": "2023-05-17T08:10:51.413547Z",
"url": "https://files.pythonhosted.org/packages/f3/cf/d5e7c81c11f9871e133da75db1a61e930796e74ae99a47810165e5a6e7a3/zodburi-2.6.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54fe2c6eeadf306aba56df1bb6264ff663b1f45d44872c5d2831197476c8616f",
"md5": "be1012424ebbdaac34368b6ccd1819dc",
"sha256": "62ef5ca8226f4649e721cd07ac7070a6fce16791a1b1abe57e6a2a6bde7fdbb0"
},
"downloads": -1,
"filename": "zodburi-2.6.0.tar.gz",
"has_sig": false,
"md5_digest": "be1012424ebbdaac34368b6ccd1819dc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22378,
"upload_time": "2023-05-17T08:10:53",
"upload_time_iso_8601": "2023-05-17T08:10:53.212272Z",
"url": "https://files.pythonhosted.org/packages/54/fe/2c6eeadf306aba56df1bb6264ff663b1f45d44872c5d2831197476c8616f/zodburi-2.6.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-17 08:10:53",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "zodburi"
}