Products.ZopeVersionControl


NameProducts.ZopeVersionControl JSON
Version 4.1 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/Products.ZopeVersionControl
SummaryZope Version Control
upload_time2023-11-24 11:24:03
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords version control
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Overview
========

Zope Version Control for the Zope application server.

Changelog
=========

4.1 (2023-11-24)
----------------

- Add support for Python 3.12 and ZODB 6.


4.0 (2023-02-01)
----------------

- Drop support for Python 2.7, 3.5, 3.6.


3.1.0 (2022-12-16)
------------------

- Fix insidious buildout configuration bug for tests against Zope 4.

- Add support for Python 3.11.


3.0.0 (2022-07-13)
------------------

Breaking changes:

- Drop support for Zope 2.x.

New features:

- Add support for Python 3.9, 3.10

2.0.0 (2020-03-09)
------------------

Breaking changes:

- Drop support for Python 3.4.

New features:

- Add support for Python 3.7 and 3.8.

Bug fixes:

- Added compatibility with Zope 5 by not registering for the help system.

- Fix for retaining order of ordered folders upon cloning.

- Fix for data error encountered when dealing with data imported by ZEXP import/export from another system.

- Fix for string formatting error in ``Repository.py``.


1.1.4 (2018-11-07)
------------------

- Zope trunk compatibility for product init.

- Fix _findModificationTime for ZODB 5
  [davisagli]

- Add Support for Python 3
  [rudaporto, pbauer, icemac, davisagli]

- Add decode mapping for zodbupdate migration to Python 3.


1.1.3 - 2010-10-02
------------------

- Made sure the VersionHistory.BranchInfo class fulfill the API,
  providing a getId method. Added missing security declarations.

1.1.2 - 2010-08-05
------------------

- Made sure we cast MAX32 to an int, as ``2**31`` would be automatically
  overflow to a long on 32bit Python's.

1.1.1 - 2010-08-04
------------------

- Made compatible with Zope 2.13 and ZODB 3.10.

1.1 - 2010-07-18
----------------

- No changes.

1.1a1 - 2009-11-13
------------------

- Fixed an undefined exception.

- Don't break when checking the connection version in ZODB>=3.9.

- Fixed tests to not use the DemoStorage quota parameter which was removed.

- Changed the Globals.InitializeClass import change in a backward compatible
  way.

- Fixed deprecation warnings for use of Globals. Specified package
  dependencies.

- Purge old zope2 Interface interfaces for Zope 2.12 compatibility. Note that
  they are internal to the implementation of this module.

1.0a1 (2008/05/03)
------------------

- Updated package metadata.

0.3.4 (2007/02/05)
------------------

- Add omitted 'tests/common.py' module.

0.3.3 (2006/09/20)
------------------

- __init__.py, nonversioned.py:  Fixed compatibility with Zope 2.8
  and new-style objects (http://www.zope.org/Collectors/Zope/2137)


0.3.2 (2006/06/02)
------------------

- ZopeRepository.py:  make ZR addable via GenericSetup toolset
  (http://www.zope.org/Collectors/CMF/438).

- Utility.py:  Import cleanup, including compatibility with ZODB 3.3+
  location of 'refrencesf'.


0.3.1 (2004/05/03)
------------------

- IVersionControl.py:  Added a module-scope alias for the benefit
  of older software which depended on the old name.

- Hardened unit tests against the absence of the References product.


0.3 (2004/04/20)
----------------

- Refined the pattern for maintaining parts of objects independently
  of version control.  This is a generalization of the mechanism for
  versioning container items.  IVersionedContainer is now named
  INonVersionedData and has more descriptive method names.

- 'updateResource' and 'uncheckoutResource' now retain the identity
  of the object being versioned.  That is, they never replace an
  object with a new object, but instead change the state of an
  existing object.

  'updateResource' and 'uncheckoutResource' used to replace the
  object in its container, but this strategy had two flaws:

    1. It required ZopeVersionControl to use the ObjectManager API.
       Version control should not require versionable objects to be
       contained in ObjectManagers.

    2. It assumes that versionable objects are simply wrapped using
       acquisition.  References (symlink-like objects) break this
       assumption.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/Products.ZopeVersionControl",
    "name": "Products.ZopeVersionControl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "version control",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.dev",
    "download_url": "https://files.pythonhosted.org/packages/ae/24/0134f8a5222e3c14483c9df8cc23038ce60c8da855d022d46aa706dabf5f/Products.ZopeVersionControl-4.1.tar.gz",
    "platform": null,
    "description": "Overview\n========\n\nZope Version Control for the Zope application server.\n\nChangelog\n=========\n\n4.1 (2023-11-24)\n----------------\n\n- Add support for Python 3.12 and ZODB 6.\n\n\n4.0 (2023-02-01)\n----------------\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n\n3.1.0 (2022-12-16)\n------------------\n\n- Fix insidious buildout configuration bug for tests against Zope 4.\n\n- Add support for Python 3.11.\n\n\n3.0.0 (2022-07-13)\n------------------\n\nBreaking changes:\n\n- Drop support for Zope 2.x.\n\nNew features:\n\n- Add support for Python 3.9, 3.10\n\n2.0.0 (2020-03-09)\n------------------\n\nBreaking changes:\n\n- Drop support for Python 3.4.\n\nNew features:\n\n- Add support for Python 3.7 and 3.8.\n\nBug fixes:\n\n- Added compatibility with Zope 5 by not registering for the help system.\n\n- Fix for retaining order of ordered folders upon cloning.\n\n- Fix for data error encountered when dealing with data imported by ZEXP import/export from another system.\n\n- Fix for string formatting error in ``Repository.py``.\n\n\n1.1.4 (2018-11-07)\n------------------\n\n- Zope trunk compatibility for product init.\n\n- Fix _findModificationTime for ZODB 5\n  [davisagli]\n\n- Add Support for Python 3\n  [rudaporto, pbauer, icemac, davisagli]\n\n- Add decode mapping for zodbupdate migration to Python 3.\n\n\n1.1.3 - 2010-10-02\n------------------\n\n- Made sure the VersionHistory.BranchInfo class fulfill the API,\n  providing a getId method. Added missing security declarations.\n\n1.1.2 - 2010-08-05\n------------------\n\n- Made sure we cast MAX32 to an int, as ``2**31`` would be automatically\n  overflow to a long on 32bit Python's.\n\n1.1.1 - 2010-08-04\n------------------\n\n- Made compatible with Zope 2.13 and ZODB 3.10.\n\n1.1 - 2010-07-18\n----------------\n\n- No changes.\n\n1.1a1 - 2009-11-13\n------------------\n\n- Fixed an undefined exception.\n\n- Don't break when checking the connection version in ZODB>=3.9.\n\n- Fixed tests to not use the DemoStorage quota parameter which was removed.\n\n- Changed the Globals.InitializeClass import change in a backward compatible\n  way.\n\n- Fixed deprecation warnings for use of Globals. Specified package\n  dependencies.\n\n- Purge old zope2 Interface interfaces for Zope 2.12 compatibility. Note that\n  they are internal to the implementation of this module.\n\n1.0a1 (2008/05/03)\n------------------\n\n- Updated package metadata.\n\n0.3.4 (2007/02/05)\n------------------\n\n- Add omitted 'tests/common.py' module.\n\n0.3.3 (2006/09/20)\n------------------\n\n- __init__.py, nonversioned.py:  Fixed compatibility with Zope 2.8\n  and new-style objects (http://www.zope.org/Collectors/Zope/2137)\n\n\n0.3.2 (2006/06/02)\n------------------\n\n- ZopeRepository.py:  make ZR addable via GenericSetup toolset\n  (http://www.zope.org/Collectors/CMF/438).\n\n- Utility.py:  Import cleanup, including compatibility with ZODB 3.3+\n  location of 'refrencesf'.\n\n\n0.3.1 (2004/05/03)\n------------------\n\n- IVersionControl.py:  Added a module-scope alias for the benefit\n  of older software which depended on the old name.\n\n- Hardened unit tests against the absence of the References product.\n\n\n0.3 (2004/04/20)\n----------------\n\n- Refined the pattern for maintaining parts of objects independently\n  of version control.  This is a generalization of the mechanism for\n  versioning container items.  IVersionedContainer is now named\n  INonVersionedData and has more descriptive method names.\n\n- 'updateResource' and 'uncheckoutResource' now retain the identity\n  of the object being versioned.  That is, they never replace an\n  object with a new object, but instead change the state of an\n  existing object.\n\n  'updateResource' and 'uncheckoutResource' used to replace the\n  object in its container, but this strategy had two flaws:\n\n    1. It required ZopeVersionControl to use the ObjectManager API.\n       Version control should not require versionable objects to be\n       contained in ObjectManagers.\n\n    2. It assumes that versionable objects are simply wrapped using\n       acquisition.  References (symlink-like objects) break this\n       assumption.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "Zope Version Control",
    "version": "4.1",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/Products.ZopeVersionControl",
        "Issue Tracker": "https://github.com/zopefoundation/Products.ZopeVersionControl/issues",
        "Sources": "https://github.com/zopefoundation/Products.ZopeVersionControl"
    },
    "split_keywords": [
        "version",
        "control"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a28a3deb7b9810e531aaf667f769f2cc4c3f654bbc02aded9775699f10993d34",
                "md5": "7c3bc861234927108c01f4fdc53a7724",
                "sha256": "38b742008665bbd2022e4434bd0e0d5f273fbb9d92186878644cecdb07a18112"
            },
            "downloads": -1,
            "filename": "Products.ZopeVersionControl-4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7c3bc861234927108c01f4fdc53a7724",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 52117,
            "upload_time": "2023-11-24T11:24:01",
            "upload_time_iso_8601": "2023-11-24T11:24:01.479780Z",
            "url": "https://files.pythonhosted.org/packages/a2/8a/3deb7b9810e531aaf667f769f2cc4c3f654bbc02aded9775699f10993d34/Products.ZopeVersionControl-4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae240134f8a5222e3c14483c9df8cc23038ce60c8da855d022d46aa706dabf5f",
                "md5": "b2c34f2bcf525397fc4fe3d7cd8965b0",
                "sha256": "004b8157952c630b942c0c1deb7fc846d04dc7ab95797b452bf3ae35ae6bd96f"
            },
            "downloads": -1,
            "filename": "Products.ZopeVersionControl-4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "b2c34f2bcf525397fc4fe3d7cd8965b0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 34428,
            "upload_time": "2023-11-24T11:24:03",
            "upload_time_iso_8601": "2023-11-24T11:24:03.909341Z",
            "url": "https://files.pythonhosted.org/packages/ae/24/0134f8a5222e3c14483c9df8cc23038ce60c8da855d022d46aa706dabf5f/Products.ZopeVersionControl-4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-24 11:24:03",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "Products.ZopeVersionControl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "products.zopeversioncontrol"
}
        
Elapsed time: 0.14979s