Skip to content

Commit 9a68cde

Browse files
committed
Merge branch 'feature' into 20210-new-token-auth
2 parents 9b85d92 + 6c723df commit 9a68cde

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/codeql/codeql-config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
paths-ignore:
22
# Ignore compiled JS
33
- netbox/project-static/dist
4+
5+
query-filters:
6+
# Exclude py/url-redirection: NetBox uses safe_for_redirect() wrapper function
7+
# which validates all redirects via Django's url_has_allowed_host_and_scheme().
8+
# CodeQL's taint tracking doesn't recognize wrapper functions without custom
9+
# query configuration. See #20484.
10+
- exclude:
11+
id: py/url-redirection

netbox/core/plugins.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import datetime
22
import importlib
3-
import importlib.util
43
from dataclasses import dataclass, field
54
from typing import Optional
65

netbox/dcim/migrations/0188_racktype.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import taggit.managers
44
from django.db import migrations, models
55

6-
import utilities.fields
76
import utilities.json
8-
import utilities.ordering
97

108

119
class Migration(migrations.Migration):

netbox/ipam/models/ip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ class IPRange(ContactsMixin, PrimaryModel):
548548
mark_utilized = models.BooleanField(
549549
verbose_name=_('mark utilized'),
550550
default=False,
551-
help_text=_("Report space as 100% utilized")
551+
help_text=_("Report space as fully utilized")
552552
)
553553

554554
clone_fields = (

netbox/translations/en/LC_MESSAGES/django.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-10-01 05:02+0000\n"
11+
"POT-Creation-Date: 2025-10-02 05:01+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10919,8 +10919,7 @@ msgid "Prevent the creation of IP addresses within this range"
1091910919
msgstr ""
1092010920

1092110921
#: netbox/ipam/models/ip.py:551
10922-
#, python-format
10923-
msgid "Report space as 100% utilized"
10922+
msgid "Report space as fully utilized"
1092410923
msgstr ""
1092510924

1092610925
#: netbox/ipam/models/ip.py:560

0 commit comments

Comments
 (0)