Skip to content

Releases: stephendolan/spark

v1.15.0

05 Jul 20:08
6b47600
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.14.3...v1.15.0

v1.14.3

19 May 21:07
Compare
Choose a tag to compare

Fixes

  • Remove need for local test self-require

v1.14.2

19 May 21:00
e5228ff
Compare
Choose a tag to compare

Fixes

  • Change local self-require for testing to use GitHub repository instead of local path

v1.14.1

10 May 12:49
Compare
Choose a tag to compare

Fixes

  • Spark::Template#run_remote_file now cleans up the File.tempfile files that are created after execution.

v1.14.0

10 May 12:22
983f061
Compare
Choose a tag to compare

New Features

  • Spark::Template.run_local_file - Run Crystal code from a local file source (USE WITH CAUTION)
  • Spark::Template.run_remote_file - Run Crystal code from a remote source (USE WITH CAUTION)
  • The Spark CLI is here!
    • ./bin/spark apply [Remote Template URL] - Runs the content returned from the provided URL through crystal run
    • ./bin/spark apply --local [Local File Path] - Runs the content of the provided file path through `crystal run

v1.13.0

09 Apr 21:46
Compare
Choose a tag to compare

New Features

  • Spark::File.chmod_file allows you to modify the permissions of a file.

v1.12.0

09 Apr 21:20
Compare
Choose a tag to compare

New Features

  • Spark.indent allows you to increase indentation of all Spark output by one level.
  • Spark.outdent allows you to decrease indentation of all Spark output by one level.
  • Spark.reset_indentation allows you to reset indentation of all spark output to zero.

Changes

  • All Spark::Prompt#log_action output is indented by one additional level by default.

v1.11.2

09 Apr 19:58
Compare
Choose a tag to compare

New Features

  • Spark.quiet(&block) allows you to run a single block of code in a silenced way for log output.

Changes

  • Spark::File.move_file has more accurate log output
  • Spark::File.copy_file has more accurate log output

v1.11.1

09 Apr 19:42
Compare
Choose a tag to compare

Fixes

  • Spark::Prompt#ask now trims unnecessary whitespace from the beginning & end of answers.

v1.11.0

09 Apr 19:21
Compare
Choose a tag to compare

New Features

  • Spark::File.move_file moves a file from a provided source path to a provided destination path.