Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
fdb9950
Documentation improvement (#80)
p-pekala Jul 19, 2022
a773996
GitPython is not required anymore (#83)
p-pekala Aug 4, 2022
510cfd8
Documentation improvement (#80)
p-pekala Jul 19, 2022
bd36498
GitPython is not required anymore (#83)
p-pekala Aug 4, 2022
0438e62
feat: looker integration for compile and deploy, new command: bi
pawelpinkos Sep 20, 2022
078c2fb
tests fix, looker git with ssh
pawelpinkos Sep 21, 2022
31ce56d
chore: organizing imports, removed not used variables
pawelpinkos Sep 22, 2022
20c56ef
chore: dbt2looker as extra dependency, mypy errors fix, bi-git-key-pa…
pawelpinkos Sep 22, 2022
d2ea295
chore: formatting, types-requests dependency for mypy
pawelpinkos Sep 23, 2022
6002e2b
refactor: refactoring bi, removing bi command, fix tests, moving bi f…
pawelpinkos Sep 26, 2022
408e8ff
Fix after rebase
p-pekala Oct 19, 2022
3b87f83
Fix after rebase
p-pekala Oct 19, 2022
233a41e
Fix after rebase
p-pekala Oct 19, 2022
54a59fe
Fix after rebase
p-pekala Oct 19, 2022
326b967
Airbyte integration (#86)
Santhin Oct 27, 2022
c0dca7c
Service account OIDC ID token in deploy command (#91)
paszynski Dec 14, 2022
5b13df0
Bump copier (#93)
Santhin Dec 16, 2022
c63edae
chore: downgrade version to properly prepare release
PiotrSierkin-Ki Dec 16, 2022
6d2dda4
chore(docs): fix date in changelog
PiotrSierkin-Ki Dec 16, 2022
524d68b
Merge branch 'main' into develop
invalid-email-address Dec 16, 2022
7440802
BI deployment is disabled when config is missing (#95)
paszynski Feb 23, 2023
dbc3349
Merge branch 'main' into develop
invalid-email-address Mar 15, 2023
7b5b5d4
DATA-629: Added Airbyte configuration documentation (#97)
paszynski Mar 30, 2023
c9d68d1
Merge branch 'main' into develop
invalid-email-address Apr 14, 2023
39ec098
feat: disable sync bucket (#102)
Santhin May 15, 2023
e6c93b8
Merge branch 'main' into develop
PiotrSierkin-Ki May 15, 2023
fc986a7
Fix failing readthedocs builds (#104)
paszynski May 15, 2023
a162ee6
Removed sphinx action from prepare-release pipeline (#105)
paszynski May 16, 2023
8ebacfe
Bump werkzeug from 2.2.2 to 2.2.3 (#106)
dependabot[bot] May 16, 2023
c90012b
Merge main into develop
paszynski May 17, 2023
25ef351
Airbyte fix creating multiple connections (#109)
jszafran Jun 16, 2023
3258545
Merge branch 'main' into develop
jszafran Jun 19, 2023
c7c2aa5
Pin pydantic version (#112)
jszafran Jul 4, 2023
25255fc
FIX #113 - Bump version and CHANGELOG for release 0.25.3
invalid-email-address Jul 4, 2023
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.25.3] - 2023-07-04

- Pinned Pydantic's version (transient dependency from Copier) as new major version breaks our CLI.

## [0.25.2] - 2023-06-16

### Fixed
Expand Down Expand Up @@ -261,7 +265,9 @@
- Draft of `dp init`, `dp create`, `dp template new`, `dp template list` and `dp dbt`
- Draft of `dp compile` and `dp deploy`

[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.2...HEAD
[Unreleased]: https://github.com/getindata/data-pipelines-cli/compare/0.25.3...HEAD

[0.25.3]: https://github.com/getindata/data-pipelines-cli/compare/0.25.2...0.25.3

[0.25.2]: https://github.com/getindata/data-pipelines-cli/compare/0.25.1...0.25.2

Expand Down
2 changes: 1 addition & 1 deletion data_pipelines_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
pipelines.
"""

version = "0.25.2"
version = "0.25.3"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.25.2
current_version = 0.25.3

[bumpversion:file:setup.py]

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"packaging==21.3",
"colorama==0.4.5",
"dbt-core==1.3.1",
"pydantic<2",
]

EXTRA_FILESYSTEMS_REQUIRE = {
Expand Down Expand Up @@ -68,7 +69,7 @@

setup(
name="data_pipelines_cli",
version="0.25.2",
version="0.25.3",
description="CLI for data platform",
long_description=README,
long_description_content_type="text/markdown",
Expand Down