Skip to content

v0.13.0

Compare
Choose a tag to compare
@github-actions github-actions released this 27 Apr 18:04
· 324 commits to main since this release

What's new

Added 🎉

  • Added Beaker.dataset.url() method.
  • Added Beaker.image.url() method.
  • Added Beaker.group.url() method.
  • Added Beaker.workspace.url() method.
  • Added Beaker.cluster.url() method.

Changed ⚠️

  • Improved performance of Beaker.cluster.filter_available() by using a ThreadPoolExecutor for concurrency.
  • Changed behavior of Beaker.dataset.create() and Beaker.dataset.sync() with respect to source files. By default now, source files and directories will be uploading as their given path, instead of just their name. You can still get the old behavior by passing strip_paths=True.
  • Changed default value of max_workers to None in Beaker.dataset.create() and .sync().
    When left as None, the number of workers will be determined by the ThreadPoolExecutor.
  • "." now allowed in beaker names.

Commits

4fcc8d5 Allow "." in beaker names (#91)
b426ab2 Add Beaker.(cluster|group|image|workspace).url() methods
1723180 Add Beaker.dataset.url() method
2c2bd48 Keep source paths by default when syncing datasets (#89)
c5a648f update dockerignore
134b9be Improve Beaker.cluster.filter_available() by using a ThreadPoolExecutor for concurrency (#88)