Skip to content

Releases: dlt-hub/dlt

0.2.6a1

30 Apr 21:28
89c57dd
Compare
Choose a tag to compare
0.2.6a1 Pre-release
Pre-release

Core library

Customizations

  • Feat/new add_limit method for resources by @z3z1ma in #298
  • Same method added to sources. overall you can now quickly sample large sources to ie. create example data sets, test your transformations etc. without the need to load everything

Docs

  • explains how to set logging level and format by @rudolfix in #297
  • ga4 internal dashboard demo blog post by @TyDunn in #299
  • Added google_analytics docs by @AmanGuptAnalytics in #305
  • Update README, add contributor's guide by @burnash in #311
  • progress bars docs by @rudolfix in #312

New Contributors

Full Changelog: 0.2.6a0...0.2.6a1

0.2.6a0

23 Apr 18:16
ade25a0
Compare
Choose a tag to compare
0.2.6a0 Pre-release
Pre-release

New package name and pip install command

💡 We changed the package name to dlt!

pip install dlt

Core library

  • PyPI package name: migrate to dlt by @burnash in #264
  • adds anonymous id to telemetry by @rudolfix in #284
  • makes duckdb database to follow current working directory by @rudolfix in #291
  • you can disable unique checks in incremental by passing empty tuple as primary_key to dlt.sources.incremental

Helpers

a first of series of Airflow helpers and features: store secrets.toml in Airflow Variable and have your credentials injected automatically. same code works locally and in Airflow DAG.

Building blocks

When building pipelines you can now use specs that wrap google credentials. we support service credentials and oauth2 credentials, detect default credentials, provide authorization methods etc. info on credentials below will soon be added to our docs and some example pipelines.

from dlt.common.configuration.specs import GcpClientCredentials, GcpClientCredentialsWithDefault, GcpOAuthCredentials, GcpOAuthCredentialsWithDefault
  • Initial commit for adding oauth gcp credentials by @redicane in #254

Docs

New Contributors

Full Changelog: 0.2.0a32...0.2.6a0

0.2.0a32

16 Apr 18:46
2f49a01
Compare
Choose a tag to compare
0.2.0a32 Pre-release
Pre-release

What's Changed in Docs

  • moving to new docs structure by @TyDunn in #245
  • adds Agolia DocSearch to the dlt docs 🚀 by @TyDunn in #248
  • Zendesk pipeline docs by @AmanGuptAnalytics in #222
  • Added Hubspot setup guide by @AmanGuptAnalytics in #250
  • moving create a pipeline to use weatherapi and duckdb by @TyDunn in #255
  • first version of exploring the data docs page by @TyDunn in #257
  • adds schema general usage and schema adjusting walkthrough to docs by @rudolfix in #243
  • filling in deploying section by @TyDunn in #262
  • Examples for customisations by @adrianbr in #247

What's Changed

  • Typed pipeline state by @steinitzu in #239
  • allows incremental to be passed to resource.apply_hints() method
  • adds state property to sources and resources to get actual value of source and resource scoped state
  • Fix failing tests for Redshift and PostgreSQL by @burnash in #270
  • add resource name to table schema by @steinitzu in #265
  • resets the resource scoped state when doing replace on resource
  • you can add Incremental as a transform step, instead of injecting

Full Changelog: 0.2.0a30...0.2.0a32

0.2.0a30

09 Apr 16:57
1e7a8e6
Compare
Choose a tag to compare
0.2.0a30 Pre-release
Pre-release

What's Changed

This release includes two important features

  • merge write disposition: load data incrementally by merging with merge keys and/or deduplicate/upsert with primary keys
  • incremental loading with last value and dlt state available when declaring resources
    We consider those features still in alpha. Try them out and report bugs! Preliminary documentation is here: https://dlthub.com/docs/customization/incremental-loading

This release includes improved support for resources that use dynamic hint to dispatch data to several database tables and other bug fixes.

What's Changed in docs

  • Strapi setup guide by @TyDunn in #212
  • add edit this page button on all docs pages by @TyDunn in #226
  • adding alerting content from workshop by @TyDunn in #233
  • adding monitoring content from workshop by @TyDunn in #229
  • adding the chess pipeline documentation by @rahuljo in #237
  • adds deduplication of staging dataset during merge by @rudolfix in #240

New Contributors

Full Changelog: 0.2.0a29...0.2.0a30

0.2.0.a29

30 Mar 22:48
4ac4507
Compare
Choose a tag to compare
0.2.0.a29 Pre-release
Pre-release

What's Changed

What's Changed in docs

Full Changelog: 0.2.0a28...0.2.0a29

0.2.0a28

23 Mar 14:45
3d6a208
Compare
Choose a tag to compare
0.2.0a28 Pre-release
Pre-release

What's Changed

Docs

New Contributors

  • @AmanGuptAnalytics made their first contribution in #183
  • @burnash made their first contribution in #196

Full Changelog: 0.2.0a26...0.2.0a28

0.2.0a26

14 Mar 15:05
1049059
Compare
Choose a tag to compare
0.2.0a26 Pre-release
Pre-release

What's Changed

0.2.0a25

08 Mar 09:26
9cbdc32
Compare
Choose a tag to compare
0.2.0a25 Pre-release
Pre-release

What's Changed

New dlt init command.

With this release you can use dlt init to add existing pipelines to your project. Please see updated documentation
The pipelines currently come from pipelines contrib repo. You can use any other repo or a local folder that follows the same structure (dlt init ... --location <url>)

0.2.0a23

01 Mar 19:58
65447d5
Compare
Choose a tag to compare
0.2.0a23 Pre-release
Pre-release

What's Changed

  • fixes multiple unnecessary alter tables to add columns by @rudolfix in #163

Full Changelog: 0.2.0a22...0.2.0a23

0.2.0a22

28 Feb 22:22
fde4642
Compare
Choose a tag to compare
0.2.0a22 Pre-release
Pre-release

dlt library changes

  • DATE type is supported on all destinations
  • table and column names will be shortened to fit into particular destination
  • duckdb database will be created in the current working directory by default #148
  • fixes connection problem on duckdb 0.7.1
  • allows to configure naming conventions or adopt naming conventions preferred by a destination
  • streamlit app generated by dlt pipeline ... show does not display deprecation warnings

PRs