Skip to content

Releases: dagster-io/dagster

v0.2.8

01 Nov 17:14
fbd9f64
Compare
Choose a tag to compare
  • Version bump to deal with likely pypi issue around using a fourth-level version number
  • Added more elegant syntax for building solid and context configs

v.0.2.7

31 Oct 23:01
c6a9f4b
Compare
Choose a tag to compare

Version 0.2.7 Release Notes

Most notable improvements in this release are bunch of improvements to dagit, most notably hot reloading and the in-browser rendering of python error. Also the ability to scaffold configs from the command line is the first fruit of the rearchitecting of the config system.

  • Dagster improvements:

    • Added scaffold_config command which generates the template of a yaml file needed to drive the execution of a particular pipeline
    • Added the ability to automatically serialize intermediate inputs as they flow between solids. Consider this alpha quality. It is currently hard-coded to write out to /tmp/dagster/runs/<<run_id>>
  • Dagit improvements:

    • Hot-Reloading and in-browser rendering of python errors.
    • Scrolling and performance improvements
    • Keyboard short cuts to navigate between solids using arrow keys
    • In-app previews of notebooks for dagstermill solids

v0.2.6

09 Oct 00:58
82102f9
Compare
Choose a tag to compare

Changes:

  • 'run_id' value automatically included in ExecutionContext context
    stack. This is a uuid.
  • Config system update:

This is a significant change in the config system. Now the top level environment objects (and all descendants) are now part of the dagster type system. Unique types are generated on a per-pipeline basis. This unlocks a few things:

  1. The entirety of yaml config files are now type-checked in the same fashion as the user-defined config.
  2. One can now pass dictionaries to execute_pipeline that mimic the yaml files exactly. You no longer have to use the dagster.config APIs (although those still work)
  3. The entire config system is queryable via graphql (and therefore shows up in dagit). This adds some noise to the type browser (we can mitigate that soon), but this will enable the building of a config-editor is fully aware of the dagster type system.
  4. This has one breaking change. The yaml file's format has changed slightly.

Previously:

context:
   name: context_name
   config: some_config_value

Now:

context:
   context_name:
       config: some_config_value

BREAKING CHANGE: Config format change. See above.

v0.2.5

05 Oct 03:16
4e4c649
Compare
Choose a tag to compare

Version bump to 0.2.5 (#227)

  • Added the Type Explorer in Dagit. You can now browse all the types
    declared in a pipeline.
  • Added the --watch/--no-watch flag to dagit. This allows you to turn
    off watching in cases where there are two many files below the
    current working directory.

v.0.2.4

01 Oct 14:42
d4c84c9
Compare
Choose a tag to compare

This version bump contains a few changes (including one breaking
change).

  • New, radically improved version of dagit. Vertical layout, and a
    beautiful new design. H/T to @bengotow for this spectacular work.
  • All types now require names. This is breaking change for
    ConfigDictionary, which did not require a name. You will
    have to change your calls to ConfigDictionary or
    ConfigDefinition.config_dict to include a name that is unique to the
    Pipeline.
  • Solids default to take no config definition, rather than a config
    definition typed as any.

v0.2.3

22 Sep 17:31
414a68d
Compare
Choose a tag to compare

Driving factor to release this is a bug in the command line interface in 0.2.2 (#207)

Other changes in this release:

  • CLI interface has changed slightly. Whenver dagit or dagster needs to
    specify a function to load a repo or a pipeline, us the -n/--fn-name
    flag combo. Before this was split out into to different use cases in
    dagster.
  • We now have the ability to reuse a single solid definition multiple
    times within the same pipeline using the SolidInstance API. See the
    corresponding tutorial section for more details.
  • Documentation continues to improve.

v0.2.2

20 Sep 21:57
Compare
Choose a tag to compare

@channel

The first dot release! up-to-date versions of dagster and dagit 0.2.2. (I just skipped 0.2.1 of dagster so that dagit and dagster are in sync. I won’t get into why pypi is dumb and made me do that)

There are virtually no changes to the python API. This update was for the CLI interface to make it so that you can use it without the repository.yml file and without installed modules.

You can now use dagit (or dagster) like:

dagit -f step_one.py -r define_pipeline

to load the pipeline straightaway from a function rather than having to go through repositories and yaml files.

v0.2.0

20 Sep 21:55
c582220
Compare
Choose a tag to compare

This is the first "major" release of dagster meant for consumption. The public APIs in this release will be supported for some time.

New things in this release:

  • Solids do not specify their dependencies anymore. They are more easily reusable between pipelines. Dependencies now specified at the pipeline level.
  • Solids support multiple outputs and branching
  • Solids can take config, in addition to inputs and outputs.
  • Sources and materializations have been eliminated as formal abstractions. Solids accepting configs enabled this.
  • New configuration system with full type system instead of argument dictionary. Configs can be arbitrarily nested and support composite types.
  • New result api
  • New execution engine. this now does a compiler-esque pass where a new logical execution graph of nodes is generated from the logical definition files and config.
  • Python 2.7, 3.5 and 3.6 now supported
  • RepositoryDefinition has been added. pipelines.yml is gone
  • Full documentation of all public APIs
  • Multi-part tutorial that introduces all concepts.
  • @solid now must take info object, which has config and context members. @lambda_solid is for simple cases that do not require config and context.
  • ... Much more

v0.1.6

17 Aug 16:38
Compare
Choose a tag to compare

Just starting to use the tag feature to mark releases for the first time.

This is the last version I will be release before the major breaking change coming in 0.2.0 that will change the way that dependencies are configured and eliminate sources and materializations as formalized abstractions.