Skip to content

Commit 2e03484

Browse files
authored
Merge pull request #263 from networktocode/main
Promote `develop` to 2.0
2 parents faa9d19 + ebc88b3 commit 2e03484

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+608
-405
lines changed

.flake8

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
33
# W503: Black disagrees with this rule, as does PEP 8; Black wins
44
ignore = E501, W503
5+
exclude = .venv

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -130,18 +130,20 @@ jobs:
130130
fail-fast: true
131131
matrix:
132132
python-version: ["3.8", "3.9", "3.10", "3.11"]
133+
poetry-version: ["1.5.1"]
133134
runs-on: "ubuntu-20.04"
134135
env:
135136
PYTHON_VER: "${{ matrix.python-version }}"
136137
steps:
137138
- name: "Check out repository code"
138139
uses: "actions/checkout@v2"
139140
- name: "Setup environment"
140-
uses: "networktocode/gh-action-setup-poetry-environment@v5"
141+
uses: "networktocode/gh-action-setup-poetry-environment@3ea5d3ecf382cdcb0c74d4c0ff0629d95fce63c7"
141142
env:
142143
POETRY_VERSION: 1.5.1
143144
with:
144145
python-version: "${{ matrix.python-version }}"
146+
poetry-version: "${{ matrix.poetry-version }}"
145147
- name: "Install redis"
146148
run: "sudo apt-get install -y redis"
147149
- name: "Run poetry Install"

CHANGELOG.md

+27-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22

3-
## v1.10.0 - 2023-11-16
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6+
7+
## [2.0.0]
8+
9+
### Changed
10+
11+
- **BREAKING CHANGE** #236/240 - Upgrade to Pydantic v2.
12+
13+
## [1.10.0] - 2023-11-16
414

515
### Fixed
616

@@ -11,7 +21,7 @@
1121

1222
- #247 - Deprecates Python 3.7
1323

14-
## v1.9.0 - 2023-10-16
24+
## [1.9.0] - 2023-10-16
1525

1626
### Added
1727

@@ -21,7 +31,7 @@
2131

2232
- #219 - Type hinting overhaul
2333

24-
## v1.8.0 - 2023-04-18
34+
## [1.8.0] - 2023-04-18
2535

2636
### Added
2737

@@ -34,7 +44,7 @@
3444
- #77/#188 - `sync_from()` and `sync_to()` now return the `Diff` that was applied.
3545
- #211 - Loosened `packaging` and `structlog` library dependency constraints for broader compatibility.
3646

37-
## v1.7.0 - 2022-11-03
47+
## [1.7.0] - 2022-11-03
3848

3949
### Changed
4050

@@ -52,15 +62,15 @@
5262

5363
### Fixed
5464

55-
- #149 Limit redundant CI concurrency
65+
- #149 - Limit redundant CI concurrency
5666

57-
## v1.6.0 - 2022-07-09
67+
## [1.6.0] - 2022-07-09
5868

5969
### Changed
6070

6171
- #120 - Dropped support for Python 3.6, new minimum is Python 3.7
6272

63-
## v1.5.1 - 2022-06-30
73+
## [1.5.1] - 2022-06-30
6474

6575
### Added
6676

@@ -75,13 +85,13 @@
7585
- #115 - Fixed ReadTheDocs rendering pipeline
7686
- #118 - Fixed a regression in `DiffSync.get(modelname, identifiers)` introduced in 1.5.0
7787

78-
## v1.5.0 - 2022-06-07
88+
## [1.5.0] - 2022-06-07
7989

8090
### Added
8191

8292
- #106 - Add a new, optional, backend store based in Redis
8393

84-
## v1.4.3 - 2022-03-03
94+
## [1.4.3] - 2022-03-03
8595

8696
### Fixed
8797

@@ -91,25 +101,25 @@
91101

92102
### Changed
93103

94-
- #103 Update development dependencies
104+
- #103 - Update development dependencies
95105

96-
## v1.4.2 - 2022-02-28
106+
## [1.4.2] - 2022-02-28
97107

98108
**WARNING** - #90 inadvertently introduced a breaking API change in DiffSync 1.4.0 through 1.4.2 (#101); this change was reverted in #102 for DiffSync 1.4.3 and later. We recommend not using this release, and moving to 1.4.3 instead.
99109

100110
### Fixed
101111

102112
- #100 - Added explicit dependency on `packaging`.
103113

104-
## v1.4.1 - 2022-01-26
114+
## [1.4.1] - 2022-01-26
105115

106116
**WARNING** - #90 inadvertently introduced a breaking API change in DiffSync 1.4.0 through 1.4.2 (#101); this change was reverted in #102 for DiffSync 1.4.3 and later. We recommend not using this release, and moving to 1.4.3 instead.
107117

108118
### Fixed
109119

110120
- #95 - Removed optional dependencies on `sphinx`, `m2r2`, `sphinx-rtd-theme`, `toml`.
111121

112-
## v1.4.0 - 2022-01-24
122+
## [1.4.0] - 2022-01-24
113123

114124
**WARNING** - #90 inadvertently introduced a breaking API change in DiffSync 1.4.0 through 1.4.2 (#101); this change was reverted in #102 for DiffSync 1.4.3 and later. We recommend not using this release, and moving to 1.4.3 instead.
115125

@@ -138,19 +148,19 @@
138148
- #51 - Update minimum Pydantic version due to security advisory GHSA-5jqp-qgf6-3pvh
139149
- #63 - Fix type in Readme
140150

141-
## v1.3.0 - 2021-04-07
151+
## [1.3.0] - 2021-04-07
142152

143153
### Added
144154

145155
- #48 - added optional `callback` argument to `diff_from`/`diff_to`/`sync_from`/`sync_to` for use with progress reporting.
146156

147-
## v1.2.0 - 2020-12-08
157+
## [1.2.0] - 2020-12-08
148158

149159
### Added
150160

151161
- #45 - minimum Python version lowered from 3.7 to 3.6, also now tested against Python 3.9.
152162

153-
## v1.1.0 - 2020-12-01
163+
## [1.1.0] - 2020-12-01
154164

155165
### Added
156166

@@ -168,6 +178,6 @@
168178

169179
- #44 - On CRUD failure, do not generate an extraneous "success" log message in addition to the "failed" message
170180

171-
## v1.0.0 - 2020-10-23
181+
## [1.0.0] - 2020-10-23
172182

173183
Initial release

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
88
&& rm -rf /var/lib/apt/lists/*
99

1010
RUN pip install --upgrade pip \
11-
&& pip install poetry
11+
&& pip install poetry==1.5.1
1212

1313

1414
WORKDIR /local

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ DiffSync is at its most useful when you have multiple sources or sets of data to
1515

1616
# Overview of DiffSync
1717

18-
DiffSync acts as an intermediate translation layer between all of the data sets you are diffing and/or syncing. In practical terms, this means that to use DiffSync, you will define a set of data models as well as the “adapters” needed to translate between each base data source and the data model. In Python terms, the adapters will be subclasses of the `DiffSync` class, and each data model class will be a subclass of the `DiffSyncModel` class.
18+
DiffSync acts as an intermediate translation layer between all of the data sets you are diffing and/or syncing. In practical terms, this means that to use DiffSync, you will define a set of data models as well as the “adapters” needed to translate between each base data source and the data model. In Python terms, the adapters will be subclasses of the `Adapter` class, and each data model class will be a subclass of the `DiffSyncModel` class.
1919

2020
![Diffsync Components](https://raw.githubusercontent.com/networktocode/diffsync/develop/docs/images/diffsync_components.png "Diffsync Components")
2121

0 commit comments

Comments
 (0)