From f1efccea6b7d28d5827d7cb77e5c8639471ea95b Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 28 Feb 2022 13:52:44 +0000 Subject: [PATCH 1/5] Update actions/setup-python action to v3 --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d77ceb5..d8f4c1a 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,7 +17,7 @@ jobs: with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v3 - name: Lint Code Base uses: github/super-linter@v4 env: From 2c20771682ccb5001eefb8cb67482137dde040de Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 1 Mar 2022 19:06:16 +0000 Subject: [PATCH 2/5] Update actions/checkout action to v3 --- .github/workflows/push.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d8f4c1a..fc00ee8 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest name: Checks syntax of our code steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 @@ -52,7 +52,7 @@ jobs: steps: - id: git-checkout name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: docker-build name: Build the image from '${{ matrix.docker_from }}' with '${{ matrix.build_cmd }}' run: ${{ matrix.build_cmd }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51e90b2..93f6868 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get Version of NetBox Docker run: | From 2f24902436d7ae004ae6986f42b65ccd276121be Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 21 Mar 2022 20:43:51 +0000 Subject: [PATCH 3/5] Update dependency napalm to v3.4.0 --- requirements-container.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-container.txt b/requirements-container.txt index 2542395..7847ca3 100644 --- a/requirements-container.txt +++ b/requirements-container.txt @@ -1,6 +1,6 @@ django-auth-ldap==4.0.0 django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.12.3 google-crc32c==1.3.0 -napalm==3.3.1 +napalm==3.4.0 ruamel.yaml==0.17.21 tzdata==2021.5 From 091d23d537b1a1a9b7e0cad3595c95eeac98f7d8 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Wed, 6 Apr 2022 08:43:10 +0200 Subject: [PATCH 4/5] tzdata is already required in Netbox --- requirements-container.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements-container.txt b/requirements-container.txt index 2542395..241f79e 100644 --- a/requirements-container.txt +++ b/requirements-container.txt @@ -3,4 +3,3 @@ django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.12.3 google-crc32c==1.3.0 napalm==3.3.1 ruamel.yaml==0.17.21 -tzdata==2021.5 From 91ab616cc59e65ee1f4ad825e38fa5a156333701 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Wed, 6 Apr 2022 09:39:22 +0200 Subject: [PATCH 5/5] Preparation for 1.6.1 --- VERSION | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index dc1e644..9c6d629 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6.0 +1.6.1 diff --git a/docker-compose.yml b/docker-compose.yml index 9c6a284..c7373be 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '3.4' services: netbox: &netbox - image: netboxcommunity/netbox:${VERSION-v3.1-1.6.0} + image: netboxcommunity/netbox:${VERSION-v3.2-1.6.1} depends_on: - postgres - redis