Skip to content

Commit 1eacad3

Browse files
authored
Merge pull request #826 from nautobot/release-v3.8.1
Release v3.8.1
2 parents 7755634 + 1ad91ce commit 1eacad3

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/admin/release_notes/version_3.8.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,9 @@ This release has a new IPFabric feature for syncing the Device Role using the De
3131
### Housekeeping
3232

3333
- Rebaked from the cookie `nautobot-app-v2.5.0`.
34+
35+
## [v3.8.1 (2025-05-16)](https://github.com/nautobot/nautobot-app-ssot/releases/tag/v3.8.1)
36+
37+
### Changed
38+
39+
- [#822](https://github.com/nautobot/nautobot-app-ssot/issues/822) - Disabled auto sorting in SSoT.

nautobot_ssot/jobs/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from nautobot.extras.jobs import BooleanVar, DryRunVar, Job
1818

1919
from nautobot_ssot.choices import SyncLogEntryActionChoices
20-
from nautobot_ssot.contrib.sorting import sort_relationships
2120
from nautobot_ssot.models import BaseModel, Sync, SyncLogEntry
2221

2322
DataMapping = namedtuple("DataMapping", ["source_name", "source_url", "target_name", "target_url"])
@@ -182,7 +181,8 @@ def record_memory_trace(step: str):
182181
record_memory_trace("target_load")
183182

184183
# Sorting relationships must be done before calculating diffs.
185-
sort_relationships(self.source_adapter, self.target_adapter)
184+
# NOTE: Disabled for the time being due to ongoing issues.
185+
# sort_relationships(self.source_adapter, self.target_adapter)
186186

187187
self.logger.info("Calculating diffs...")
188188
self.calculate_diff()

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nautobot-ssot"
3-
version = "3.8.0"
3+
version = "3.8.1"
44
description = "Nautobot Single Source of Truth"
55
authors = ["Network to Code, LLC <opensource@networktocode.com>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)