mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Release v3.3-beta1
This commit is contained in:
2
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
@ -14,7 +14,7 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: NetBox version
|
label: NetBox version
|
||||||
description: What version of NetBox are you currently running?
|
description: What version of NetBox are you currently running?
|
||||||
placeholder: v3.2.6
|
placeholder: v3.3-beta1
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
|
2
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
2
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
@ -14,7 +14,7 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: NetBox version
|
label: NetBox version
|
||||||
description: What version of NetBox are you currently running?
|
description: What version of NetBox are you currently running?
|
||||||
placeholder: v3.2.6
|
placeholder: v3.3-beta1
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
|
@ -52,8 +52,7 @@ django-tables2
|
|||||||
|
|
||||||
# User-defined tags for objects
|
# User-defined tags for objects
|
||||||
# https://github.com/alex/django-taggit
|
# https://github.com/alex/django-taggit
|
||||||
# Will evaluate v3.0 during NetBox v3.3 beta
|
django-taggit
|
||||||
django-taggit>=2.1.0,<3.0
|
|
||||||
|
|
||||||
# A Django field for representing time zones
|
# A Django field for representing time zones
|
||||||
# https://github.com/mfogel/django-timezone-field/
|
# https://github.com/mfogel/django-timezone-field/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# NetBox v3.3
|
# NetBox v3.3
|
||||||
|
|
||||||
## v3.3.0 (FUTURE)
|
## v3.3-beta1 (2022-07-14)
|
||||||
|
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
|
@ -152,6 +152,7 @@ nav:
|
|||||||
- Release Checklist: 'development/release-checklist.md'
|
- Release Checklist: 'development/release-checklist.md'
|
||||||
- Release Notes:
|
- Release Notes:
|
||||||
- Summary: 'release-notes/index.md'
|
- Summary: 'release-notes/index.md'
|
||||||
|
- Version 3.3: 'release-notes/version-3.3.md'
|
||||||
- Version 3.2: 'release-notes/version-3.2.md'
|
- Version 3.2: 'release-notes/version-3.2.md'
|
||||||
- Version 3.1: 'release-notes/version-3.1.md'
|
- Version 3.1: 'release-notes/version-3.1.md'
|
||||||
- Version 3.0: 'release-notes/version-3.0.md'
|
- Version 3.0: 'release-notes/version-3.0.md'
|
||||||
|
18
netbox/extras/migrations/0076_tag_slug_unicode.py
Normal file
18
netbox/extras/migrations/0076_tag_slug_unicode.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.0.6 on 2022-07-14 15:51
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('extras', '0075_configcontext_locations'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='tag',
|
||||||
|
name='slug',
|
||||||
|
field=models.SlugField(allow_unicode=True, max_length=100, unique=True),
|
||||||
|
),
|
||||||
|
]
|
@ -29,7 +29,7 @@ django.utils.encoding.force_text = force_str
|
|||||||
# Environment setup
|
# Environment setup
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION = '3.3.0-dev'
|
VERSION = '3.3-beta1'
|
||||||
|
|
||||||
# Hostname
|
# Hostname
|
||||||
HOSTNAME = platform.node()
|
HOSTNAME = platform.node()
|
||||||
|
@ -11,7 +11,7 @@ django-redis==5.2.0
|
|||||||
django-rich==1.4.0
|
django-rich==1.4.0
|
||||||
django-rq==2.5.1
|
django-rq==2.5.1
|
||||||
django-tables2==2.4.1
|
django-tables2==2.4.1
|
||||||
django-taggit==2.1.0
|
django-taggit==3.0.0
|
||||||
django-timezone-field==5.0
|
django-timezone-field==5.0
|
||||||
djangorestframework==3.13.1
|
djangorestframework==3.13.1
|
||||||
drf-yasg[validation]==1.20.0
|
drf-yasg[validation]==1.20.0
|
||||||
@ -26,10 +26,10 @@ netaddr==0.8.0
|
|||||||
Pillow==9.2.0
|
Pillow==9.2.0
|
||||||
psycopg2-binary==2.9.3
|
psycopg2-binary==2.9.3
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
sentry-sdk==1.7.0
|
sentry-sdk==1.7.1
|
||||||
social-auth-app-django==5.0.0
|
social-auth-app-django==5.0.0
|
||||||
social-auth-core==4.3.0
|
social-auth-core==4.3.0
|
||||||
svgwrite==1.4.2
|
svgwrite==1.4.3
|
||||||
tablib==3.2.1
|
tablib==3.2.1
|
||||||
tzdata==2022.1
|
tzdata==2022.1
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user