Skip to content

Releases: ideos/gloe

Gloe v0.7.0

03 Feb 23:58
db8da8c

Choose a tag to compare

New Features

🚀 Gloe now supports transformers with no parameters and with multiple parameters!

Gloe v0.7.0-rc1

27 Jan 09:44
e3ca778

Choose a tag to compare

Gloe v0.7.0-rc1 Pre-release
Pre-release

For the new feature "transformers with no parameters and with multiple parameters":

  • 🛠️ Fixing bugs in the collection transformers.
  • 📝 Covering it in all related parts of the docs.
  • 🧪 Covering it in all related parts of the tests.

Gloe v0.7.0-rc0

30 Aug 15:13

Choose a tag to compare

Gloe v0.7.0-rc0 Pre-release
Pre-release

New Features

  • 🚀 Gloe now supports transformers with no parameters and with multiple parameters!

Gloe v0.6.0

26 Jun 17:59
8a22907

Choose a tag to compare

New Features

  • 🚀 Gloe now supports an arbitrary number of transformers in a graph!
  • 🔄 Async versions of each transformer from the gloe.collection package have been added: FilterAsync, MapAsync, and MapOverAsync.
  • 🖼️ Added .to_image() and .to_dot() methods to transformer instances.
  • 🔀 Conditional flows can now handle async transformers at any point.
  • 🛠️ Introduced the gloe.gateways package with parallel and sequential gateways.
  • 📊 Improved plotting features: support for subgraphs and better formatting of complex types.

Fixes on Plot

  • 🔧 Fixing formatting of UnionType
  • 🔧 Fixing nested sibling subgraphs

Deprecations

  • ⚠️ The .export() method for transformers is now deprecated in favor of the .to_dot() method.
  • ⚠️ The forward_incoming utility is now deprecated in favor of the attach utility.

Documentation

  • 📚 Adding many examples of usage with other famous Python libraries.
  • 📝 Introducing Gloe patterns.
  • 🔍 Exploring advanced use cases.

Tests

  • ✅ Achieved 100% test coverage.
  • 🧪 Improved tests packages structure.

Dependencies

  • 🔗 Gloe now only depends on typing_extensions. networkx is no longer necessary.

Gloe v0.6.0-rc1

25 Jun 15:19

Choose a tag to compare

Gloe v0.6.0-rc1 Pre-release
Pre-release

Fixes:

  • Fixing formatting of UnionType
  • Fixing nested sibling subgraphs

Gloe v0.6.0-rc0

21 Jun 11:30

Choose a tag to compare

Gloe v0.6.0-rc0 Pre-release
Pre-release

New Features

  • 🚀 Gloe now supports an arbitrary number of transformers in a graph!
  • 🔄 Async versions of each transformer from the gloe.collection package have been added: FilterAsync, MapAsync, and MapOverAsync.
  • 🖼️ Added .to_image() and .to_dot() methods to transformer instances.
  • 🔀 Conditional flows can now handle async transformers at any point.
  • 🛠️ Introduced the gloe.gateways package with parallel and sequential gateways.
  • 📊 Improved plotting features: support for subgraphs and better formatting of complex types.

Deprecations

  • ⚠️ The .export() method for transformers is now deprecated in favor of the .to_dot() method.
  • ⚠️ The forward_incoming utility is now deprecated in favor of the attach utility.

Documentation

  • 📚 Adding many examples of usage with other famous Python libraries.
  • 📝 Introducing Gloe patterns.
  • 🔍 Exploring advanced use cases.

Tests

  • ✅ Achieved 100% test coverage.
  • 🧪 Improved tests packages structure.

Dependencies

  • 🔗 Gloe now only depends on typing_extensions. networkx is no longer necessary.

Gloe v0.5.9

27 Apr 17:20
4dd5fe8

Choose a tag to compare

Adding support for Python version 3.9

Gloe v0.5.8

25 Apr 20:55
eee2a10

Choose a tag to compare

New features:

  • Gloe now raise a custom error when trying to export .dot graph file without pygraphviz installed.

Dependencies:

  • Relaxing the constraint of typing_extensions version in dependencies.

Gloe v0.5.7

22 Apr 15:14
ce9d0f5

Choose a tag to compare

Package cleaning:

  • Removing unnecessary dependencies.

Gloe v0.5.6

16 Apr 22:38
8c65aad

Choose a tag to compare

New features:

  • Adding new Filter transformer to collection package.
  • Allowing transformers into collection package to be used with any Iterable.