All Versions
68
Latest Version
Avg Release Cycle
196 days
Latest Release
1851 days ago

Changelog History
Page 6

  • v1.3.0 Changes

    Summary

    • โœ‚ Remove check for dependencies, the developer is responsible for that
    • โœ‚ Remove check for duplicate dependencies, the developer is responsible for that
    • โœ‚ Remove eslint packages from plugins. We use the root package as linter
    • ๐Ÿ‘• Use standard package to lint.
    • ๐Ÿ“ฆ Create new hemera-plugin which checks that the bare-minimum version of Hemera is installed and provide a consistent interface to create plugins.
    • โž• Add tests for hemera-plugin
    • โšก๏ธ Update docs and examples
    • โœ‚ Remove dependencies property from all hemera packages
    • โœ‚ Remove eslint, editorconfig from all hemera packages
    • ๐Ÿ“ฆ Use safe-buffer in hemera-avro package

    ๐Ÿ’ฅ Breaking Changes

    ๐Ÿ”Œ Hemera is no longer responsible to handle plugin dependencies.

    ๐Ÿ†• New Features

    • ๐Ÿ”Œ Simplifiy dependency management. Dependencies are installed from the plugin it needs. Since NPM 3 a clean dependency graph is guaranteed.
    • ๐Ÿ”Œ Plugin helper hemera-plugin

    Migration Checklist

    • ๐Ÿ“ฆ Always use hemera-plugin if you want to create a plugin. Example
    • ๐Ÿ”Œ Check if any plugins has installed the correct dependencies.
  • v1.2.16 Changes

    • Generate unique node id
  • v1.2.15 Changes

    • Unsubscribe subscription by id
    • โšก๏ธ Update streaming example
  • v1.2.14 Changes

    • Emit errors instead throw them because they will be thrown by convention when no error handler exist. This improves async error handling.
  • v1.2.13

  • v1.2.12

  • v1.2.11

  • v1.2.10 Changes

    Summary
    • ๐Ÿ”ง Configuration: When load policy has been breached we can gracefully exit the process
     load: {
      shouldCrash: true, // Should gracefully exit the process to recover from memory leaks or load, crashOnFatal must be enabled
    }
    
  • v1.2.9 Changes

    Summary
    • ๐Ÿ‘Œ Improve NATS subject to RegexExp conversion. Support all subject levels a.*.b, a.>.
  • v1.2.8 Changes

    Summary
    • โž• Add support for full / token wildcards in topic name details
    • โž• Add wildcard example
    • โž• Add tests for wildcards