Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.5] - 2025-10-14
### Changed

- Fixed issue with unidentified node types.

## [1.4.4] - 2024-04-01
### Added

Expand Down Expand Up @@ -76,4 +81,4 @@ All notable changes to this project will be documented in this file. The format

## [1.0.0] - 2023-01-09

- Initial Release
- Initial Release
Binary file modified dist/support_bundle
Binary file not shown.
3 changes: 2 additions & 1 deletion support_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ def run_identify():

if "node_type" not in identity_info:
logging.warning("Failed to identify node type")
identity_info["node_type"] = "unidentified"

# identify host id
minion_files = ['/etc/salt/minion.d/nf-minion.conf',
Expand Down Expand Up @@ -734,7 +735,7 @@ def main():
# main
if __name__ == '__main__':
try:
__version__ = '1.4.4'
__version__ = '1.4.5'
# change log
# https://github.com/netfoundry/edge-router-support-bundle/blob/main/CHANGELOG.md

Expand Down