Skip to content

Commit

Permalink
Merge pull request #763 from itdependsnetworks/release-2.0.5
Browse files Browse the repository at this point in the history
Release 2.0.5
  • Loading branch information
itdependsnetworks authored May 23, 2024
2 parents 0add5a1 + 8c1951d commit 113e0e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion development/docker-compose.mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ services:
db:
image: "mysql:8"
command:
- "--default-authentication-plugin=mysql_native_password"
- "--max_connections=1000"
env_file:
- "development.env"
Expand Down
5 changes: 5 additions & 0 deletions docs/admin/release_notes/version_2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
!!! note
Please see [migrating guide](../migrating_to_v2.md) for details on migration.

## v2.0.5 2024-05

### Fixed

- [#759](https://github.com/nautobot/nautobot-app-golden-config/issues/749) - Fix issue with Git Repo not syncing by changing to explicitly use class_path property.

## v2.0.4 2024-04

Expand Down
2 changes: 1 addition & 1 deletion nautobot_golden_config/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def gc_repo_prep(job, data):
job.logger.debug(f"In scope device count for this job: {job.qs.count()}", extra={"grouping": "Get Job Filter"})
job.logger.debug("Mapping device(s) to GC Settings.", extra={"grouping": "Device to Settings Map"})
job.device_to_settings_map = get_device_to_settings_map(queryset=job.qs)
gitrepo_types = list(set(get_repo_types_for_job(job.name)))
gitrepo_types = list(set(get_repo_types_for_job(job.class_path)))
job.logger.debug(
f"Repository types to sync: {', '.join(sorted(gitrepo_types))}",
extra={"grouping": "GC Repo Syncs"},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-golden-config"
version = "2.0.4"
version = "2.0.5"
description = "An app for configuration on nautobot"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 113e0e5

Please sign in to comment.