New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@streamr/cli-tools

Package Overview
Dependencies
Maintainers
0
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@streamr/cli-tools - npm Package Versions

1
1213

2.1.0

Diff

Changelog

Source

[102.1.0] - 2025-02-19

@streamr/node

Fixed
  • Fix false flagging issue (https://github.com/streamr-dev/network/pull/3006)

@streamr/cli-tools

Added
  • Add new sub command streamr storage-node register to register a storage node (https://github.com/streamr-dev/network/pull/2982)
  • Add new sub command streamr storage-node unregister to unregister a storage node (https://github.com/streamr-dev/network/pull/2982)
  • Add new sub command streamr storage-node show to display the metadata of a storage node (https://github.com/streamr-dev/network/pull/2982)
harbu
published 2.0.0 •

Changelog

Source

[102.0.0] - 2025-01-27

@streamr/sdk

Added
  • Add support for arbitrary length user IDs: (https://github.com/streamr-dev/network/pull/2774, https://github.com/streamr-dev/network/pull/2780)
    • it is supported for PUBLISH and SUBSCRIBE permissions
    • new StreamrClient#getUserId() method
  • Method StreamrClient#getDiagnosticInfo() provides diagnostic info about network (https://github.com/streamr-dev/network/pull/2740, https://github.com/streamr-dev/network/pull/2741)
  • Add accessors for stream metadata fields: (https://github.com/streamr-dev/network/pull/2825, https://github.com/streamr-dev/network/pull/2845, https://github.com/streamr-dev/network/pull/2883)
    • Stream#getPartitionCount()
    • Stream#getDescription() and Stream#setDescription()
    • Stream#getStorageDayCount() and Stream#setStorageDayCount()
  • Add method StreamrClient#getStreamMetadata() (https://github.com/streamr-dev/network/pull/2883)
  • Add validation for public permissions (https://github.com/streamr-dev/network/pull/2819)
  • Add opts parameter to StreamrClient#addStreamToStorageNode (https://github.com/streamr-dev/network/pull/2858)
    • controls how long to wait for storage node to pick up on assignment
Changed
  • BREAKING CHANGE: Rename user to userId in these interfaces: (https://github.com/streamr-dev/network/pull/2811)
    • UserPermissionAssignment
      • used in grantPermissions(), revokePermissions(), getPermissions() and setPermissions()
    • UserPermissionQuery
      • used in hasPermission()
    • SearchStreamsPermissionFilter
      • used in searchStreams()
  • BREAKING CHANGE: Type StreamMetadata is Record<string, unknown> (https://github.com/streamr-dev/network/pull/2825, https://github.com/streamr-dev/network/pull/2845)
    • some new accessors available, see above
    • no default values are injected (https://github.com/streamr-dev/network/pull/2851)
  • BREAKING CHANGE: Method Stream#addToStorageNode() doesn't wait for acknowledgment by default (https://github.com/streamr-dev/network/pull/2810)
  • BREAKING CHANGE: Replace methods StreamrClient#updateStream() and Stream#update(): (https://github.com/streamr-dev/network/pull/2826, https://github.com/streamr-dev/network/pull/2855, https://github.com/streamr-dev/network/pull/2859, https://github.com/streamr-dev/network/pull/2862)
    • use StreamrClient#setStreamMetadata() and Stream#setMetadata() instead
    • both methods overwrite metadata instead of merging it
  • BREAKING CHANGE: Methods Stream#getMetadata() and Stream#getStreamParts() are async (https://github.com/streamr-dev/network/pull/2883)
  • BREAKING CHANGE: Rename event streamRemovedFromFromStorageNode to streamRemovedFromStorageNode (https://github.com/streamr-dev/network/pull/2930)
  • BREAKING CHANGE: Replace custom errors with StreamrClientError: (https://github.com/streamr-dev/network/pull/2895, https://github.com/streamr-dev/network/pull/2927)
    • StreamrClientError contains MessageID instead of StreamMessage
  • Caching changes:
    • storage node addresses (https://github.com/streamr-dev/network/pull/2877, https://github.com/streamr-dev/network/pull/2878)
    • stream metadata and permissions (https://github.com/streamr-dev/network/pull/2889)
  • Upgrade StreamRegistry from v4 to v5 (https://github.com/streamr-dev/network/pull/2780)
  • Network-level changes:
    • avoid routing through proxy connections (https://github.com/streamr-dev/network/pull/2801)
    • internal record StreamPartitionInfo format changed (https://github.com/streamr-dev/network/pull/2738, https://github.com/streamr-dev/network/pull/2790)
Removed
  • BREAKING CHANGE: Remove Stream#detectFields() method (https://github.com/streamr-dev/network/pull/2864)
  • BREAKING CHANGE: Remove Stream#delete() method (https://github.com/streamr-dev/network/pull/2863)
    • use StreamrClient#deleteStream() instead
  • BREAKING CHANGE: Remove StreamrClient#findOperators() method (https://github.com/streamr-dev/network/pull/2876)
  • Remove support for legacy encryption keys (https://github.com/streamr-dev/network/pull/2757)
  • Remove obsolete config options:
    • network.node.id (https://github.com/streamr-dev/network/pull/2777)
    • network.controlLayer.webNewrtcConnectionTimeout (https://github.com/streamr-dev/network/pull/2776)
Fixed
  • Fix WebRTC connections in Firefox (https://github.com/streamr-dev/network/pull/2746)
  • Fix flag expiration time in Operator#getExpiredFlags() (https://github.com/streamr-dev/network/pull/2739)
  • Network-level fixes:
    • fix node discover in small topologies (e.g. ~2 nodes) (https://github.com/streamr-dev/network/pull/2786)
    • fix to time-to-data spike scenarios (https://github.com/streamr-dev/network/pull/2802)
    • make network node stop faster (https://github.com/streamr-dev/network/pull/2736)
    • reject requests after disconnection events (https://github.com/streamr-dev/network/pull/2760)
    • fix geoip database file validation (https://github.com/streamr-dev/network/pull/2783)

@streamr/node

Added
  • Add new operator plugin config options (for testing purposes) (https://github.com/streamr-dev/network/pull/2742)
Changed
  • The environment config option now applies additional settings if dev2 value is used (https://github.com/streamr-dev/network/pull/2813)
    • e.g. disables entryPointDiscovery and metrics
Removed
  • BREAKING CHANGE: Remove deprecated bin/config-wizard script (i.e. the streamr-broker-init command) (https://github.com/streamr-dev/network/pull/2830)
    • use streamr-node-init command instead
  • BREAKING CHANGE: Remove deprecated command streamr-broker (https://github.com/streamr-dev/network/pull/2881)
    • use streamr-node command instead
Fixed
  • Fix operator flag voting behavior when using custom gas estimation (https://github.com/streamr-dev/network/pull/2784)
  • Fix a bug causing the inspection process to freeze (https://github.com/streamr-dev/network/pull/2893)

@streamr/cli-tools

Added
  • Add binary data support to streamr stream publish (https://github.com/streamr-dev/network/pull/2947)
  • Add binary data support to streamr stream susbcribe (https://github.com/streamr-dev/network/pull/2948)
  • Add binary data support to streamr mock-data generate command (https://github.com/streamr-dev/network/pull/2946)
Changed
  • BREAKING CHANGE: Replace --dev flag with --env flag (https://github.com/streamr-dev/network/pull/2817, https://github.com/streamr-dev/network/pull/2834)
    • the --env flag supports multiple environments
    • if there is a value for environment in a config file, this overrides it
    • use --env dev2 for the development environment
harbu
published 1.1.1 •

Changelog

Source

[101.1.1] - 2024-08-29

@streamr/sdk

Changed
  • Numerous improvements to time-to-data (https://github.com/streamr-dev/network/pull/2723, https://github.com/streamr-dev/network/pull/2724, https://github.com/streamr-dev/network/pull/2726, https://github.com/streamr-dev/network/pull/2727)
  • Reduce message propagation cache TTL from 30 seconds to 10 seconds (https://github.com/streamr-dev/network/pull/2732)

@streamr/node

Changed

  • Optimize the "operator value breach" task to be less demanding on EVM RPCs (https://github.com/streamr-dev/network/pull/2721)
Fixed
  • Add better checks to the "expired flag closing" task so that the likelihood of submitting reverting transactions to the blockchain is reduced (https://github.com/streamr-dev/network/pull/2725)
harbu
published 1.1.0 •

Changelog

Source

[101.1.0] - 2024-08-13

@streamr/sdk

Added
  • Add method findOperators to client (https://github.com/streamr-dev/network/pull/2703)
Fixed
  • Fix operator review request event parsing (https://github.com/streamr-dev/network/pull/2714)

@streamr/node

Added
  • Operators now register external RPC endpoints for accelerated stream entrypoint discovery (https://github.com/streamr-dev/network/pull/2702)
Fixed
  • Fix propagation buffer TTL issue (https://github.com/streamr-dev/network/pull/2682)
  • Fix operator review request event parsing (https://github.com/streamr-dev/network/pull/2714)
harbu
published 1.0.2 •

harbu
published 1.0.0 •

Changelog

Source

[101.0.0] - 2024-07-08

@streamr/sdk

Changed
  • Update ethers.js library to v6 (https://github.com/streamr-dev/network/pull/2506)
  • Restructure contracts config section (https://github.com/streamr-dev/network/pull/2581)
  • Improve reliability of JSON RPC interactions by adding retry redundancy (https://github.com/streamr-dev/network/pull/2562, https://github.com/streamr-dev/network/pull/2601)
  • Rename events (https://github.com/streamr-dev/network/pull/2604, https://github.com/streamr-dev/network/pull/2605) as denoted below
    • createStream => streamCreated
    • addToStorageNode => streamAddedToStorageNode
    • removeFromStorageNode => streamRemovedFromFromStorageNode
    • resendComplete => resendCompleted (on instances of Subscription)
Removed
  • Remove obsolete RPC provider options (https://github.com/streamr-dev/network/pull/2583)

@streamr/node

Changed
  • Improve reliability of JSON RPC interactions by adding retry redundancy (https://github.com/streamr-dev/network/pull/2562, https://github.com/streamr-dev/network/pull/2601)
Deprecated
  • Deprecate command streamr-broker. Use streamr-node instead. (https://github.com/streamr-dev/network/pull/2626)
  • Deprecate command streamr-broker-init. Use streamr-node-init instead. (https://github.com/streamr-dev/network/pull/2626)
Fixed
  • Fix memory leak in SubscriberPlugin (https://github.com/streamr-dev/network/pull/2578)
1
1213
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc