Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-pynetbox-4.3.0-bp153.1.18 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python2-pynetbox Distribution: SUSE Linux Enterprise 15 SP3
Version: 4.3.0 Vendor: openSUSE
Release: bp153.1.18 Build date: Sat Mar 6 18:36:51 2021
Group: Development/Languages/Python Build host: build78
Size: 150400 Source RPM: python-pynetbox-4.3.0-bp153.1.18.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/digitalocean/pynetbox
Summary: NetBox API client library
Python API client library for NetBox.

Provides

Requires

License

Apache-2.0

Changelog

* Mon Mar 23 2020 pgajdos@suse.com
  - version update to 4.3.0
    * Adds the ability to thread calls to NetBox from .filter() and .all() methods. (PR #216)
* Tue Feb 11 2020 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.2.5
    * save() is not idempotent when dealing with choice objects
      from NetBox 2.7
* Sun Jan 12 2020 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.2.4
    * Fixes Nested Record Write methods
* Tue Dec 10 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.2.2
    * Fixes issues with hashing Record objects by adding name
      attribute to Endpoint and __eq__ method to Record objects to
      facilitate comparison.
* Wed Nov 27 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.2.1
    * Fixes infinite loop when filtering with paginated results.
* Wed Nov 20 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.2.0
    * Fix discrepancy in DetailEndpoint.create() and the docs where
      calling w/o arguments resulted in an exception.
    * Add method to return custom choices.
* Tue Nov 19 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.1.2
    * Fixes URL in get_session_key
* Mon Nov 18 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.1.1
    * Fix Endpoint.choices() by assigning http_session.
* Sat Nov 16 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.1.0
    * Makes use of session in requests
    * Adds Api.version property to query the NetBox version
    * Adds .choices() method to endpoint objects that utilizes DRF's
      OPTIONS method for discovering available choices for fields
      that use it. This method will eventually replace App.choices()
      when NetBox retires the /_choices endpoint.
    * Adds count() method to Endpoint object.
    * Use requests params to form URL parameters.
    * Creates a custom model for ChangeObjects and sets its __str__
      to request_id.
    * Implements __hash__ method on Record.
    * Implements JsonField object.
    * Adds local_context_data field to device model as dict.
* Fri Sep 27 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.0.8
    * Returns ContentError when 2XX response but not JSON.
* Mon Sep 16 2019 Martin Hauke <mardnh@gmx.de>
  - Update to version 4.0.7
    * Returns AllocationError when NetBox responds with a 204 to
      Allocation requests
    * Makes App object pickleable
  - Update to version 4.0.6
    * Fixes behavior where appending an existing VLAN object id to
      tagged_vlans would cause .save() to still trigger a PATCH
      operation.
  - Run testsuite
* Sat Dec 15 2018 mardnh@gmx.de
  - Update to version 4.0.5
    * Fixes list comparison issue in Record._diff.
    * Returns None from Endpoint.get() when no items are found instead
      of empty list from .filter().
  - Update to version 4.0.4
    * Fixes IndexError introduced by fix for #127 when field is empty
      list.
  - Update to version 4.0.3
    * Fixes __iter__ method on Record object so that it properly returns
      lists of record objects. Like tagged_vlans on for Interfaces.
* Fri Dec 07 2018 mardnh@gmx.de
  - Update to version 4.0.2
    * Fixes TypeError when calling save on interfaces Record with
      tagged_vlans.
* Thu Dec 06 2018 mardnh@gmx.de
  - Update to version 4.0.1
    * Adds missing authentication credentials for .choices().
* Wed Dec 05 2018 mardnh@gmx.de
  - Update to version 4.0.0
    Enhancements
    * Added cable endpoint support coming in NetBox 2.5.
    * Added some detail to the ValueError raised when .get() returns
      more than one object.
    * Added reserved kwargs to .get() and .filter() ("id", "pk",
      "limit", "offset").
    * Made RequestError more verbose when the NetBox API returns a
      json response. Also added more details when a 404 is returned
      (e.g. misspelled endpoints).
    API Changes
    * Switch to using PATCH instead of PUTs for updates. Also added
      an .update() method to Response objects that takes a dictionary
      to update multiple values on the object.
    * Add basic support for the _choices endpoint on each app by adding
      a choices() method to the App object.
    * - Return Record objects from .create().
    Bug Fixes
    * Raise an exception now if .filter() is passed no kwargs.
    * Fixes some miscellaneous issues related to converting certain
      Record object's fields into netaddr.IPNetwork objects. That feature
      has been removed and it simply return strings now.
* Sat Dec 01 2018 mardnh@gmx.de
  - Update to versino 3.4.11
    * Bugfix release
* Thu Nov 29 2018 mardnh@gmx.de
  - Update to version 3.4.10
    * Should actually fix idempotent tags (#94) now.
* Tue Nov 27 2018 mardnh@gmx.de
  - Update to version 3.4.9
    * Fixes #94 where users were unable to use .append() to add a tag.
      This converts tag lists to a set and back to a list when
      serialize() is called so we don't send an update when we append
      a tag that's already there.
* Tue Nov 27 2018 mardnh@gmx.de
  - Update to version 3.4.8
    * Fixes #106 by adding a units DetailEndpoint onto the Racks object
      that lets users get the devices in a rack.
      Calling netbox.dcim.racks.get(x).units.list() will return a list
      of RU objects that have a device attribute populated with a Record
      object of the device in that RU.
    * Fixes #110 in serializer that failed to handle tagged_vlans field
      correctly. This also added the ability for objects stored in lists
      to be turned into Record objects requested in #92
* Wed Oct 10 2018 mardnh@gmx.de
  - Update to version 3.4.7
    * Fixes memory leak in endpoints.filter() by getting rid of
      unused CACHE variable.
  - Update to version 3.4.6
    * Fixes issue with the values of data and config_context being
      turned into Record objects instead of
  - Update to version 3.4.5
    * Fixes issue with IPRecord object throwing a ValueError when
      trying to turn a string containing slashes in it into an IPNetwork
      object.
    * Adds custom IPRecord object for Circuit Terminations with a string
      representation of the underlying circuit ID.
* Fri Jul 27 2018 mardnh@gmx.de
  - Update to version 3.4.4
    * Fixes issue with prefix and aggregate records not being
      idempotent.
    * Adds str and repr methods for Circuit Records so that .cid is
      displayed by default.
  - Update to version 3.4.3
    * Fixes issue with how non-ascii characters are handled in
      NetBox return.
  - Update to version 3.4.2
    * Fixes serialization issue with selection type custom fields
    * Remove unused dependency.
  - Update to version 3.4.1
    * Should fix issue introduced by switching to setuptools_scm
      for versioning.
  - Update to version 3.4.0
    * Adds the ability to toggle SSL verification.
    * Sanitizes URL by removing a trailing front slash if it's present
      in the url passed at instantiation.
    * Moves to setuptools_scm for versioning.
* Thu Apr 26 2018 mardnh@gmx.de
  - Update to version 3.3.1
    * Fixes issue with special characters while building the URL.
* Fri Mar 30 2018 mardnh@gmx.de
  - Update to version 3.3.0
    * Adds support for napalm detail endpoint
* Fri Mar 09 2018 mardnh@gmx.de
  - Update to version 3.2.0
    * Adds VirtualMachines object that properly handles
      primary_(ip|ip4|ip6) attributes.
* Wed Feb 28 2018 mardnh@gmx.de
  - Update to version 3.1.0
    * Adds proper support for virtual-chassis endpoint.
    * Fixes issue with calling attributes with None value on Record
      objects after .full_details() has run. (Issue #36)
    * Adds example in docs for RequestError exceptions (Issue #28)
* Wed Feb 07 2018 mardnh@gmx.de
  - Update to version 3.0.2
    * fixed docstrings with old api style
    * full_details doesn't add token
* Sun Nov 19 2017 mardnh@gmx.de
  - Update to version 3.0.1
    * Added python3 support
    * Virtualization support was added
    * Added available-ips as a property of Prefix objects
    * available-prefixes was also added to Prefix objects,
      and behaves similarly to available-ips
* Tue Oct 10 2017 mardnh@gmx.de
  - Initial package, version 2.1.0

Files

/usr/lib/python2.7/site-packages/pynetbox
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/pynetbox-4.3.0-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/pynetbox/__init__.py
/usr/lib/python2.7/site-packages/pynetbox/__init__.pyc
/usr/lib/python2.7/site-packages/pynetbox/__init__.pyo
/usr/lib/python2.7/site-packages/pynetbox/api.py
/usr/lib/python2.7/site-packages/pynetbox/api.pyc
/usr/lib/python2.7/site-packages/pynetbox/api.pyo
/usr/lib/python2.7/site-packages/pynetbox/core
/usr/lib/python2.7/site-packages/pynetbox/core/__init__.py
/usr/lib/python2.7/site-packages/pynetbox/core/__init__.pyc
/usr/lib/python2.7/site-packages/pynetbox/core/__init__.pyo
/usr/lib/python2.7/site-packages/pynetbox/core/endpoint.py
/usr/lib/python2.7/site-packages/pynetbox/core/endpoint.pyc
/usr/lib/python2.7/site-packages/pynetbox/core/endpoint.pyo
/usr/lib/python2.7/site-packages/pynetbox/core/query.py
/usr/lib/python2.7/site-packages/pynetbox/core/query.pyc
/usr/lib/python2.7/site-packages/pynetbox/core/query.pyo
/usr/lib/python2.7/site-packages/pynetbox/core/response.py
/usr/lib/python2.7/site-packages/pynetbox/core/response.pyc
/usr/lib/python2.7/site-packages/pynetbox/core/response.pyo
/usr/lib/python2.7/site-packages/pynetbox/core/util.py
/usr/lib/python2.7/site-packages/pynetbox/core/util.pyc
/usr/lib/python2.7/site-packages/pynetbox/core/util.pyo
/usr/lib/python2.7/site-packages/pynetbox/models
/usr/lib/python2.7/site-packages/pynetbox/models/__init__.py
/usr/lib/python2.7/site-packages/pynetbox/models/__init__.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/__init__.pyo
/usr/lib/python2.7/site-packages/pynetbox/models/circuits.py
/usr/lib/python2.7/site-packages/pynetbox/models/circuits.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/circuits.pyo
/usr/lib/python2.7/site-packages/pynetbox/models/dcim.py
/usr/lib/python2.7/site-packages/pynetbox/models/dcim.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/dcim.pyo
/usr/lib/python2.7/site-packages/pynetbox/models/extras.py
/usr/lib/python2.7/site-packages/pynetbox/models/extras.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/extras.pyo
/usr/lib/python2.7/site-packages/pynetbox/models/ipam.py
/usr/lib/python2.7/site-packages/pynetbox/models/ipam.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/ipam.pyo
/usr/lib/python2.7/site-packages/pynetbox/models/virtualization.py
/usr/lib/python2.7/site-packages/pynetbox/models/virtualization.pyc
/usr/lib/python2.7/site-packages/pynetbox/models/virtualization.pyo
/usr/share/doc/packages/python2-pynetbox
/usr/share/doc/packages/python2-pynetbox/CHANGELOG.md
/usr/share/doc/packages/python2-pynetbox/README.md
/usr/share/licenses/python2-pynetbox
/usr/share/licenses/python2-pynetbox/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024