Skip to content

v3.0.1

Latest

Choose a tag to compare

@Kotak-Neo Kotak-Neo released this 17 Aug 07:15
· 19 commits to main since this release
Immutable release. Only release title and notes can be modified.

Type: Patch release — bug fix, no breaking changes. Safe to upgrade from v3.0.0 with no code changes required.

Fixed

  • SDK is now quiet by default at runtime (#18). Previously, every REST API call logged an INFO-level line for its start and success (plus client init/close events), which printed to stdout by default — indistinguishable from print() output and noisy for normal usage.
    • The default log level (NEO_LOG_LEVEL) changed from INFO to WARNING. Only warnings and errors are visible out of the box now.
    • rest_client_initialized, api_request_start, api_request_success, and rest_client_closing are now logged at DEBUG instead of INFO, reflecting that they're routine tracing, not actionable events.
    • Want the old verbosity back? Set NEO_LOG_LEVEL=INFO or NEO_LOG_LEVEL=DEBUG.

Documentation

  • Migration Guide references now read "v2.0.2 → v3.0.X" (covers the whole v3 line rather than pinning to v3.0.0 specifically).
  • Updated docs/guides/MIGRATION.md's logging section to describe the new quiet-by-default behavior.

Notes

  • No API surface changes — this is purely a logging-verbosity and documentation fix.