Skip to content

Commit f1ca9ab

Browse files
authored
Merge pull request #1125 from netbox-community/develop
Release 2.8.0
2 parents b47e85a + dfa1904 commit f1ca9ab

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

Diff for: .github/workflows/push.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
runs-on: ubuntu-latest
1515
name: Checks syntax of our code
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
# Full git history is needed to get a proper
2020
# list of changed files within `super-linter`
2121
fetch-depth: 0
22-
- uses: actions/setup-python@v4
22+
- uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.9'
2525
- name: Lint Code Base
@@ -62,13 +62,13 @@ jobs:
6262
steps:
6363
- id: git-checkout
6464
name: Checkout
65-
uses: actions/checkout@v3
65+
uses: actions/checkout@v4
6666
- id: qemu-setup
6767
name: Set up QEMU
68-
uses: docker/setup-qemu-action@v2
68+
uses: docker/setup-qemu-action@v3
6969
- id: buildx-setup
7070
name: Set up Docker Buildx
71-
uses: docker/setup-buildx-action@v2
71+
uses: docker/setup-buildx-action@v3
7272
- id: docker-build
7373
name: Build the image for '${{ matrix.platform }}' with '${{ matrix.build_cmd }}'
7474
run: ${{ matrix.build_cmd }}

Diff for: .github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
steps:
3131
- id: source-checkout
3232
name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- id: set-netbox-docker-version
3535
name: Get Version of NetBox Docker
3636
run: echo "version=$(cat VERSION)" >>"$GITHUB_OUTPUT"
3737
shell: bash
3838
- id: qemu-setup
3939
name: Set up QEMU
40-
uses: docker/setup-qemu-action@v2
40+
uses: docker/setup-qemu-action@v3
4141
- id: buildx-setup
4242
name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@v2
43+
uses: docker/setup-buildx-action@v3
4444
- id: docker-build
4545
name: Build the image with '${{ matrix.build_cmd }}'
4646
run: ${{ matrix.build_cmd }}
@@ -51,7 +51,7 @@ jobs:
5151
# docker.io
5252
- id: docker-io-login
5353
name: Login to docker.io
54-
uses: docker/login-action@v2
54+
uses: docker/login-action@v3
5555
with:
5656
registry: docker.io
5757
username: ${{ secrets.dockerhub_username }}
@@ -60,7 +60,7 @@ jobs:
6060
# quay.io
6161
- id: quay-io-login
6262
name: Login to Quay.io
63-
uses: docker/login-action@v2
63+
uses: docker/login-action@v3
6464
with:
6565
registry: quay.io
6666
username: ${{ secrets.quayio_username }}
@@ -69,7 +69,7 @@ jobs:
6969
# ghcr.io
7070
- id: ghcr-io-login
7171
name: Login to GitHub Container Registry
72-
uses: docker/login-action@v2
72+
uses: docker/login-action@v3
7373
with:
7474
registry: ghcr.io
7575
username: ${{ github.repository_owner }}

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ RUN export DEBIAN_FRONTEND=noninteractive \
7474
&& apt-get update -qq \
7575
&& apt-get install \
7676
--yes -qq --no-install-recommends \
77-
unit=1.30.0-1~lunar \
78-
unit-python3.11=1.30.0-1~lunar \
77+
unit=1.31.1-1~lunar \
78+
unit-python3.11=1.31.1-1~lunar \
7979
&& rm -rf /var/lib/apt/lists/*
8080

8181
COPY --from=builder /opt/netbox/venv /opt/netbox/venv

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.0
1+
2.8.0

Diff for: docker-compose.test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ services:
3939
interval: 15s
4040
test: "ps -aux | grep -v grep | grep -q housekeeping || exit 1"
4141
postgres:
42-
image: postgres:15-alpine
42+
image: postgres:16-alpine
4343
env_file: env/postgres.env
4444
healthcheck:
4545
test: "pg_isready -t 2 -d $$POSTGRES_DB -U $$POSTGRES_USER" ## $$ because of docker-compose

Diff for: docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3.4'
22
services:
33
netbox: &netbox
4-
image: docker.io/netboxcommunity/netbox:${VERSION-v3.6-2.7.0}
4+
image: docker.io/netboxcommunity/netbox:${VERSION-v3.7-2.8.0}
55
depends_on:
66
- postgres
77
- redis
@@ -47,7 +47,7 @@ services:
4747

4848
# postgres
4949
postgres:
50-
image: docker.io/postgres:15-alpine
50+
image: docker.io/postgres:16-alpine
5151
env_file: env/postgres.env
5252
volumes:
5353
- netbox-postgres-data:/var/lib/postgresql/data

Diff for: requirements-container.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
django-auth-ldap==4.5.0
2-
django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.13.2
3-
dulwich==0.21.5
4-
psycopg[c,pool]==3.1.10
5-
python3-saml==1.15.0
1+
django-auth-ldap==4.6.0
2+
django-storages[azure,boto3,dropbox,google,libcloud,sftp]==1.14.2
3+
dulwich==0.21.7
4+
psycopg[c,pool]==3.1.16
5+
python3-saml==1.16.0

0 commit comments

Comments
 (0)