Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cfb8773
Bump prepatch
jdrew82 Sep 26, 2025
c58590d
Merge pull request #302 from networktocode/release-2.1.0-to-develop
jdrew82 Sep 26, 2025
d7ea41b
Few Updates to Prep for SSoT Refactor (#303)
jdrew82 Nov 13, 2025
eab7737
Update CODEOWNERS (#304)
glennmatthews Nov 17, 2025
b9b13f8
chore(deps): update dependency pydantic to v2.12.4 (#306)
renovate[bot] Nov 17, 2025
a1d71c4
Fix minor grammar issues
collin-wicker Nov 25, 2025
0868929
Merge pull request #310 from collin-wicker/fix/doc-updates
collin-wicker Nov 25, 2025
2720d1c
chore(deps): update dependency structlog to v25.5.0 (#291)
renovate[bot] Dec 2, 2025
3a3ddf4
chore(deps): update dependency bandit to v1.9.2 (#301)
renovate[bot] Dec 2, 2025
7a3f441
chore(deps): update dependency coverage to v7.12.0 (#296)
renovate[bot] Dec 2, 2025
a7e3e41
chore(deps): update dependency invoke to v2.2.1 (#305)
renovate[bot] Dec 2, 2025
543780f
chore(deps): update dependency black to v25.11.0 (#307)
renovate[bot] Dec 2, 2025
d0d6d0e
chore(deps): update dependency pylint to v4 (#308)
renovate[bot] Dec 2, 2025
e61e60f
chore(deps): update dependency pydantic to v2.12.5 (#311)
renovate[bot] Dec 3, 2025
8083f63
chore(deps): update dependency mypy to v1.19.0 (#312)
renovate[bot] Dec 3, 2025
8ec1fb3
chore(deps): update dependency coverage to v7.13.0 (#317)
renovate[bot] Dec 8, 2025
83d99ae
Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool (#315)
jdrew82 Dec 8, 2025
af4e153
Bump version
jdrew82 Dec 8, 2025
abc3e80
docs: 📝 Add release notes for 2.2.0 and migrated previous from CHANGE…
jdrew82 Dec 8, 2025
7916b12
Add release notes for 2.2.0
jdrew82 Dec 8, 2025
c099c32
docs: 📝 Correct release notes
jdrew82 Dec 8, 2025
86ae1be
Fixes
jdrew82 Dec 8, 2025
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
5 changes: 0 additions & 5 deletions .bandit.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .cookiecutter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"cookiecutter": {
"codeowner_github_usernames": "@glennmatthews @michalis1 @jdrew82",
"full_name": "Network to Code, LLC",
"email": "info@networktocode.com",
"github_org": "networktocode",
"description": "Library to easily sync/diff/update 2 different data sources",
"project_name": "diffsync",
"project_slug": "diffsync",
"repo_url": "https://github.com/networktocode/diffsync",
"base_url": "diffsync",
"project_python_name": "diffsync",
"project_python_base_version": "3.10",
"project_with_config_settings": "no",
"generate_docs": "yes",
"version": "2.2.0",
"original_publish_year": "2025",
"_drift_manager": {
"template": "git@github.com:networktocode-llc/cookiecutter-ntc.git",
"template_dir": "python",
"template_ref": "main",
"cookie_dir": "",
"pull_request_strategy": "create",
"post_actions": [],
"draft": false,
"baked_commit_ref": "bc789d65fa90182c0eb392664e1cba02ea187ab1",
"drift_managed_branch": "develop"
}
}
}
28 changes: 23 additions & 5 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
# Docker related
development/Dockerfile
development/docker-compose*.yml
development/*.env
*.env
environments/

# Python
**/*.pyc
**/*.pyo
**/*.log
**/__pycache__/
**/.pytest_cache/
**/.venv/


# Other
docs/_build
FAQ.md
.git/
.gitignore
Dockerfile
docker-compose.yml
.env
docs/_build
.github
tasks.py
LICENSE
**/*.log
**/.vscode/
invoke*.yml
tasks.py
5 changes: 0 additions & 5 deletions .flake8

This file was deleted.

4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default owners for all files in this repository
* @glennmatthews @Kircheneer @chadell
# Default owner(s) of all files in this repository
* @glennmatthews @michalis1 @jdrew82
13 changes: 8 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
---
name: 🐛 Bug Report
about: Report a reproducible bug in the current release of DiffSync
about: Report a reproducible bug in the current release of diffsync
---

### Environment
* Python version: <!-- Example: 3.10 -->
* DiffSync version: <!-- Example: 1.0.0 -->
* Python version <!-- Example: 3.7.7 -->

<!-- What happened instead? -->
### Observed Behavior

<!-- What did you expect to happen? -->

### Expected Behavior

<!-- What happened instead? -->

### Observed Behavior

<!--
Describe in detail the exact steps that someone else can take to reproduce
this bug using the current release.
-->

### Steps to Reproduce
1.
2.
Expand Down
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@ about: Propose a new feature or enhancement
---

### Environment

* DiffSync version: <!-- Example: 1.0.0 -->

<!--
Describe in detail the new functionality you are proposing.
-->
### Proposed Functionality

### Proposed Functionality

<!--
Convey an example use case for your proposed feature. Write from the
perspective of a user who would benefit from the proposed
functionality and describe how.
-->
### Use Case

### Use Case
10 changes: 10 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## New Pull Request

Have you:
- [ ] Updated the README if necessary?
- [ ] Updated any configuration settings?
- [ ] Written a unit test?

## Change Notes

## Justification
Loading