File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v1.9.0 - 2023-10-16
4+
5+ ### Added
6+
7+ - #220 - Implement DiffSyncModelFlags.NATURAL_DELETION_ORDER.
8+
9+ ### Changed
10+
11+ - #219 - Type hinting overhaul
12+
13+ ### CI
14+
15+ - #244 - Pin poetry
16+
317## v1.8.0 - 2023-04-18
418
519### Added
Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ FROM python:${PYTHON_VER}-slim
55RUN apt-get update && apt-get install -y --no-install-recommends \
66 build-essential \
77 redis \
8+ curl \
89 && rm -rf /var/lib/apt/lists/*
910
10- RUN pip install --upgrade pip \
11- && pip install poetry
12-
11+ RUN pip install --upgrade pip
12+ ENV POETRY_VERSION=1.5.1
13+ RUN curl -sSL https://install.python-poetry.org | python3
14+ ENV PATH="/root/.local/bin:$PATH"
1315
1416WORKDIR /local
1517COPY pyproject.toml /local
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " diffsync"
3- version = " 1.7 .0"
3+ version = " 1.9 .0"
44description = " Library to easily sync/diff/update 2 different data sources"
55authors = [" Network to Code, LLC <info@networktocode.com>" ]
66license = " Apache-2.0"
You can’t perform that action at this time.
0 commit comments