[PR #226] [MERGED] Release v1.1.0 #12009

Closed
opened 2025-12-29 22:19:07 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbox-community/netbox/pull/226
Author: @jeremystretch
Created: 7/7/2016
Status: Merged
Merged: 7/7/2016
Merged by: @jeremystretch

Base: masterHead: develop


📝 Commits (10+)

  • 24e361d Add option to dockerize netbox
  • 7a68e1d Post-release version bump
  • 1bb2a3f Fixes #169: Fallback to cancel_url if object is missing get_absolute_url()
  • 49f06cf Optionally use sudo if not running upgrade.sh as root
  • f96171f Fix interface connections list view glitch
  • 067f22e Initial work on #91: Support for subdevices
  • 7682b66 Merge pull request #179 from peelman/develop
  • 35c5423 Merge pull request #177 from digitalocean/upgrade-sudo
  • 0123dbc Initial work on #91: Support for subdevices
  • 06a38d8 Merge branch 'device-bays' of github.com:digitalocean/netbox into device-bays

📊 Changes

55 files changed (+1306 additions, -4511 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 CONTRIBUTING.md (+4 -0)
Dockerfile (+30 -0)
docker-compose.yml (+52 -0)
docker/docker-entrypoint.sh (+22 -0)
docker/gunicorn_config.py (+5 -0)
docker/nginx.conf (+35 -0)
📝 docs/dcim.md (+7 -3)
docs/getting-started-docker.md (+54 -0)
📝 docs/getting-started.md (+46 -1)
docs/schema.sql (+0 -4391)
📝 docs/secrets.md (+2 -0)
📝 netbox/dcim/admin.py (+20 -4)
📝 netbox/dcim/api/serializers.py (+49 -8)
📝 netbox/dcim/api/urls.py (+1 -0)
📝 netbox/dcim/api/views.py (+29 -2)
netbox/dcim/fields.py (+44 -0)
📝 netbox/dcim/fixtures/dcim.json (+4 -1)
netbox/dcim/formfields.py (+26 -0)
📝 netbox/dcim/forms.py (+50 -7)

...and 35 more files

📄 Description

New Features

  • #107 - Docker support
  • #91 - Support for subdevices within a device
  • #170 - Added MAC address field to interfaces

Bug Fixes

  • #169 - Fix rendering of cancellation URL when editing objects
  • #183 - Ignore vi swap files
  • #209 - Corrected error when not confirming component template deletions
  • #214 - Fixed redundant message on bulk interface creation
  • #68 - Improved permissions-related error reporting for secrets

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbox-community/netbox/pull/226 **Author:** [@jeremystretch](https://github.com/jeremystretch) **Created:** 7/7/2016 **Status:** ✅ Merged **Merged:** 7/7/2016 **Merged by:** [@jeremystretch](https://github.com/jeremystretch) **Base:** `master` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`24e361d`](https://github.com/netbox-community/netbox/commit/24e361dc502bd921c962a728dacf3d2ae970f9cf) Add option to dockerize netbox - [`7a68e1d`](https://github.com/netbox-community/netbox/commit/7a68e1d9010a7d7adb162fa5f4740b976d5ca40d) Post-release version bump - [`1bb2a3f`](https://github.com/netbox-community/netbox/commit/1bb2a3f15239f7f58e545aca6d7bab79e5edfc11) Fixes #169: Fallback to cancel_url if object is missing get_absolute_url() - [`49f06cf`](https://github.com/netbox-community/netbox/commit/49f06cfeb29500b001ddfbada8d4456649ce9659) Optionally use sudo if not running upgrade.sh as root - [`f96171f`](https://github.com/netbox-community/netbox/commit/f96171f529713c885b2f4343a97f1994a2852bb7) Fix interface connections list view glitch - [`067f22e`](https://github.com/netbox-community/netbox/commit/067f22e4445358e5adf93956d131199df2b776b7) Initial work on #91: Support for subdevices - [`7682b66`](https://github.com/netbox-community/netbox/commit/7682b6603415045e5c335966697f0036c6e648a6) Merge pull request #179 from peelman/develop - [`35c5423`](https://github.com/netbox-community/netbox/commit/35c5423127a84b9f2d1b3ef7b28c8236cb72d895) Merge pull request #177 from digitalocean/upgrade-sudo - [`0123dbc`](https://github.com/netbox-community/netbox/commit/0123dbcf5fc108065b52e94566ac6688e3781bbe) Initial work on #91: Support for subdevices - [`06a38d8`](https://github.com/netbox-community/netbox/commit/06a38d836c4921c21f6fa4dfe7f4fcb922a56d95) Merge branch 'device-bays' of github.com:digitalocean/netbox into device-bays ### 📊 Changes **55 files changed** (+1306 additions, -4511 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `CONTRIBUTING.md` (+4 -0) ➕ `Dockerfile` (+30 -0) ➕ `docker-compose.yml` (+52 -0) ➕ `docker/docker-entrypoint.sh` (+22 -0) ➕ `docker/gunicorn_config.py` (+5 -0) ➕ `docker/nginx.conf` (+35 -0) 📝 `docs/dcim.md` (+7 -3) ➕ `docs/getting-started-docker.md` (+54 -0) 📝 `docs/getting-started.md` (+46 -1) ➖ `docs/schema.sql` (+0 -4391) 📝 `docs/secrets.md` (+2 -0) 📝 `netbox/dcim/admin.py` (+20 -4) 📝 `netbox/dcim/api/serializers.py` (+49 -8) 📝 `netbox/dcim/api/urls.py` (+1 -0) 📝 `netbox/dcim/api/views.py` (+29 -2) ➕ `netbox/dcim/fields.py` (+44 -0) 📝 `netbox/dcim/fixtures/dcim.json` (+4 -1) ➕ `netbox/dcim/formfields.py` (+26 -0) 📝 `netbox/dcim/forms.py` (+50 -7) _...and 35 more files_ </details> ### 📄 Description ## New Features - [#107](https://github.com/digitalocean/netbox/pull/107) - Docker support - [#91](https://github.com/digitalocean/netbox/issues/91) - Support for subdevices within a device - [#170](https://github.com/digitalocean/netbox/pull/170) - Added MAC address field to interfaces ## Bug Fixes - [#169](https://github.com/digitalocean/netbox/issues/169) - Fix rendering of cancellation URL when editing objects - [#183](https://github.com/digitalocean/netbox/issues/183) - Ignore vi swap files - [#209](https://github.com/digitalocean/netbox/issues/209) - Corrected error when not confirming component template deletions - [#214](https://github.com/digitalocean/netbox/issues/214) - Fixed redundant message on bulk interface creation - [#68](https://github.com/digitalocean/netbox/issues/68) - Improved permissions-related error reporting for secrets --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 22:19:07 +01:00
adam closed this issue 2025-12-29 22:19:07 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/netbox#12009