flowbased / fbp-protocol-client

JavaScript client library for FBP protocol connection handling
8 stars 5 forks source link

Bump noflo from 1.2.7 to 1.3.0 #171

Closed dependabot[bot] closed 3 years ago

dependabot[bot] commented 3 years ago

Bumps noflo from 1.2.7 to 1.3.0.

Release notes

Sourced from noflo's releases.

1.3.0

  • NoFlo createNetwork and asCallback now accept a flowtrace option to pass a Flowtrace instance for retroactive debugging. Example:
const { Flowtrace } = require('flowtrace');
const tracer = new Flowtrace();
noflo.createNetwork(myGraph, {
  flowtrace: tracer,
}, (err, network) => {
  // ... console.log(tracer.toJSON());
});
  • NoFlo createNetwork now accepts componentLoader and baseDir via options. Passing them via Graph properties is deprecated
  • NoFlo createNetwork now defaults to the non-legacy "network drives graph" mode
  • NoFlo createNetwork now only supports the graph, options, callback signature, no options given in some other order
  • noflo.Network interface has been removed. Use createNetwork to instantiate networks
  • CoffeeScript is no longer bundled with NoFlo. Install the CoffeeScript compiler in your project if you need to be able to load CoffeeScript components
Changelog

Sourced from noflo's changelog.

1.3.0 (November 23rd 2020)

  • NoFlo createNetwork and asCallback now accept a flowtrace option to pass a Flowtrace instance for retroactive debugging. Example:
const { Flowtrace } = require('flowtrace');
const tracer = new Flowtrace();
noflo.createNetwork(myGraph, {
  flowtrace: tracer,
}, (err, network) => {
  // ...
  console.log(tracer.toJSON());
});
  • NoFlo createNetwork now accepts componentLoader and baseDir via options. Passing them via Graph properties is deprecated
  • NoFlo createNetwork now defaults to the non-legacy "network drives graph" mode
  • NoFlo createNetwork now only supports the graph, options, callback signature, no options given in some other order
  • noflo.Network interface has been removed. Use createNetwork to instantiate networks
  • CoffeeScript is no longer bundled with NoFlo. Install the CoffeeScript compiler in your project if you need to be able to load CoffeeScript components
Commits
  • 3018830 Release 1.3.0
  • 9f7f001 Merge pull request #683 from noflo/network_options
  • 0b0c29a Document the new componentLoader and baseDir options
  • 099265a Use the new interface for providing baseDir and componentLoader
  • 28a5ae7 Document the change
  • a47df1a Use the new interface for providing baseDir and componentLoader
  • d21f344 Remove legacy options from this suite
  • e9b13c5 Read baseDir and componentLoader from Network options
  • 3bca8c7 Merge pull request #681 from noflo/flowtrace
  • 76fef27 Add test for flowtracing subgraphs
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
bergie commented 3 years ago

@dependabot rebase