Skip to content

Commit

Permalink
Merge pull request #88 from nautobot/develop
Browse files Browse the repository at this point in the history
Release to Main
  • Loading branch information
jvanderaa committed Oct 21, 2022
2 parents 9d483ea + bd8d390 commit e26e43a
Show file tree
Hide file tree
Showing 26 changed files with 520 additions and 344 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
fail-fast: true
matrix:
include:
- python-version: "3.6"
nautobot-version: "1.1.6"
- python-version: "3.7"
nautobot-version: "1.2"
- python-version: "3.8"
Expand All @@ -27,7 +25,7 @@ jobs:
- name: "Check out repository code"
uses: "actions/checkout@v2"
- name: "Install CICD dependencies"
run: "pip install -U pip && pip install poetry"
run: "pip install -U pip && pip install poetry==1.1.15"
- name: "Install project dependencies via Poetry"
run: "poetry install"
- name: "Start containers"
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## v1.2.2

### Bug Fixes

- (#84) Fixes URLs for plugins with nested endpoints (i.e. /api/plugins/app_name/endpoint/nested_endpoint)

## v1.2.1

- (#76) Feature: Removing the restriction on `id` for filter
> It is now allowed to filter per id. (switch = devices.get(id="..."))
- (#81) Development: Added two invoke tasks:
- `debug` to get the logs for Nautobot to the screen
- `stop` to execute `docker-compose down` for started containers

## v1.2.0

### Significant Updates

- (#71) Drops support for Python3.6 and updates package dependencies.

### Bug Fixes

- (#75) Fixes child prefixes for the **available-prefixes/ips** endpoint.
- (#72) Updates to account for JSON Custom Field type introduced by Nautobot Custom Fields.

## v1.1.2

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![pynautobot](docs/nautobot_logo.svg "Nautobot logo")

# Pynautobot [![build main](https://travis-ci.com/nautobot/pynautobot.svg?branch=main)](https://travis-ci.com/nautobot/pynautobot)
# Pynautobot
Python API client library for [Nautobot](https://github.com/nautobot/nautobot).

> Pynautobot was initially developed as a fork of [pynetbox](https://github.com/digitalocean/pynetbox/).
Expand Down
8 changes: 7 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,13 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, "pynautobot.tex", "pynautobot Documentation", "Network to Code", "manual",),
(
master_doc,
"pynautobot.tex",
"pynautobot Documentation",
"Network to Code",
"manual",
),
]


Expand Down

0 comments on commit e26e43a

Please sign in to comment.