Skip to content

v2.0.2

Compare
Choose a tag to compare
@jvanderaa jvanderaa released this 15 Jun 01:38
d1602a8

Release v2.0.2

Bug Fixes

N/A

Package Updates

  • (#23) Updates for NetUtils releases >0.2.0

New Items

  • (#22) Adds a toggle for including the pynautobot data as a dictionary key item. No change in the default behavior. Now you can disable this with an optional key to the inventory of pynautobot_dict.
        nornir_no_pynb_dict = InitNornir(
            inventory={
                "plugin": "NautobotInventory",
                "options": {
                    "nautobot_url": "http://mock.example.com",
                    "nautobot_token": "0123456789abcdef01234567890",
                    "pynautobot_dict": False,
                },
            },
            logging={"enabled": False},
        )