Skip to content

Releases: dlt-hub/dlt

0.1.0a15

08 Jan 18:48
8310c40
Compare
Choose a tag to compare
0.1.0a15 Pre-release
Pre-release

What's Changed

  • improving docs UX by @TyDunn in #110
  • docstings and cli improvements by @rudolfix in #114
  • allows hash mismatch when loading schema that needs migration
  • makes full_refresh flag configurable
  • fixes config/secrets injection when union with base configuration is used, fixes secret hint detection
  • properly restores pipeline state when extract step fails

0.2.0a10

07 Dec 23:01
52227e1
Compare
Choose a tag to compare
0.2.0a10 Pre-release
Pre-release

What's Changed

  • only specific default config values are generated in dlt init ie BigQuery Location
  • correct postgres port generated
  • sends traces to sentry if RUNTIME__SENTRY_DSN is present
  • sends slack notification if RUNTIME__SLACK_INCOMING_HOOK is present

0.2.0a9

05 Dec 22:55
af4ce68
Compare
Choose a tag to compare
0.2.0a9 Pre-release
Pre-release

What's Changed

0.2.0a8

04 Dec 21:55
cfcc6a6
Compare
Choose a tag to compare
0.2.0a8 Pre-release
Pre-release

What's Changed

  • deletes all pipeline state (schemas, state, intermediate files) if destination dataset is dropped
  • synchronizes state with the destination in the run method
  • you can opt out from state sync with restore_from_destination=false in ie. config.toml
  • loads all schemas/source into single dataset by default. this will simplify experience for less advanced users. you can switch back to the old behavior (each source/schema has separate dataset) with use_single_dataset=false config option
  • enables CTRL-C when running user code
  • commits all files extracted from several sources after all user code ran

0.2.0a7

02 Dec 17:28
92515b9
Compare
Choose a tag to compare
0.2.0a7 Pre-release
Pre-release

What's Changed

  • adds max_table_nesting argument to dlt.source to control the depth of parent-child table nesting
  • fixes the pipeline_name when runtime configuration is embedded
  • reacts to signals (ie CTRL-C) during extraction and other signal improvements
  • passes github vars to loggers/tracers

0.2.0a6

30 Nov 14:15
397fceb
Compare
Choose a tag to compare
0.2.0a6 Pre-release
Pre-release

Fixes the module import bug in dlt init command

0.2.0a5

29 Nov 20:38
9360075
Compare
Choose a tag to compare
0.2.0a5 Pre-release
Pre-release
  • allows to use simpler dlt init scripts without run methods
  • basic tests for dlt cli added
  • missing dependencies for google apis

0.2.0a4

29 Nov 10:51
a09ee16
Compare
Choose a tag to compare
0.2.0a4 Pre-release
Pre-release

What's Changed

0.2.0a2

24 Nov 12:01
8931b10
Compare
Choose a tag to compare
0.2.0a2 Pre-release
Pre-release

Another alpha release of 0.2.0

  • is your sources and resources, specify required arguments that should come from config/secrets via dlt.config.value or dlt.secrets.value
  • improved init command working with next gen of init templates
  • gitubpython dep fixed

0.2.0a1

23 Nov 10:34
d77e363
Compare
Choose a tag to compare
0.2.0a1 Pre-release
Pre-release

This is alpha release of dlt 0.2.0. This version is a complete rewrite of the user facing interface of 0.1.0

  • create sources and resources with the decorators
  • credentials integration
  • automatic exporting and importing of schemas
  • improved syncing of schemas
  • dlt state restored from the destination
    and many more