Skip to content

Commit d038ba6

Browse files
authored
Merge pull request #104 from Kani999/103-support-netbox-4.6
Support NetBox 4.6 (issue #103)
2 parents 2c4acdb + 84a7051 commit d038ba6

6 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [11.2.0b1] - 2026-05-07
9+
10+
### Changed
11+
12+
- Bump `max_version` from `4.5.99` to `4.6.99` to allow installing on NetBox 4.6.x (issue #103). Beta release for testing 4.6 compatibility.
13+
814
## [11.1.0] - 2026-04-21
915

1016
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
Supported now:
1919

20-
- NetBox: `4.5.x`
20+
- NetBox: `4.5.x``4.6.x`
2121
- Plugin: `11.x`
2222
- Python: `3.12`, `3.13`, `3.14`
2323

docs/compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
Current maintained line:
66

7-
- NetBox: `4.5.x`
7+
- NetBox: `4.5.x``4.6.x`
88
- Plugin: `11.x`
99
- Python: `3.12`, `3.13`, `3.14`
1010

1111
Runtime compatibility is enforced in plugin config:
1212

1313
- `min_version = "4.5.0"`
14-
- `max_version = "4.5.99"`
14+
- `max_version = "4.6.99"`
1515

1616
Source: `netbox_attachments/__init__.py`
1717

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- NetBox `4.5.x`
5+
- NetBox `4.5.x``4.6.x`
66
- Python `3.12` to `<3.15`
77

88
## 1. Install the package

netbox_attachments/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class NetBoxAttachmentsConfig(PluginConfig):
3232
}
3333
required_settings = []
3434
min_version = "4.5.0"
35-
max_version = "4.5.99"
35+
max_version = "4.6.99"
3636

3737

3838
config = NetBoxAttachmentsConfig

netbox_attachments/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "11.1.0"
1+
__version__ = "11.2.0b1"

0 commit comments

Comments
 (0)