Skip to content

Latest commit

 

History

History
106 lines (66 loc) · 5.1 KB

CHANGELOG.md

File metadata and controls

106 lines (66 loc) · 5.1 KB

[UNRELEASED] neptune-fetcher 0.8.3

Changes

  • Add names_exclude_regex parameter to fetch_experiments_df() (#84

neptune-fetcher 0.8.2

Changes

  • Add step filter in FetchableSeries.fetch_values() and ReadOnlyRun.prefetch_series_values() (#78

neptune-fetcher 0.8.1

Changes

  • fetch_*_df() now fetches data concurrently (#68)

neptune-fetcher 0.8.0

Breaking changes

  • Deprecated the match_columns_to_filters in fetch_*_df(). The current behaviour is as if it was set to True (#63)
  • The progress_bar argument to fetch_*_df() is temporarily ignored in this release (#63)

Changes

  • Removed the limit of columns that can be fetched in fetch_*_df() (#63)
  • Added a warning when fetching a large dataframe (#63)

neptune-fetcher 0.7.1

Fixes

  • Fixed SwaggerMappingError when using match_columns_to_filters parameter (#57)

Changes

  • Added exception when cumulative length of columns was exceeded (#58)
  • Added better input validation for fetch_*_df() methods (#59)
  • Fetching only up to cumulative length of columns in fetch_*_df() methods (#60)

neptune-fetcher 0.7.0

Features

  • Added support for initializing ReadOnlyRun based on experiment name (#54)
  • Added fetch_read_only_experiments() method for fetching experiments in read-only mode (#54)

Changes

  • Fixed columns_regex not respecting 5k column limit (#55)

neptune-fetcher 0.6.0

Breaking Changes

  • Removed sys/id from the columns that are always returned in fetch_*_df() (#51)
  • Made passing None as columns parameter return only sys/custom_run_id (and sys/name in case of experiments) in fetch_*_df() (#51)

Changes

  • Increased the limit of total columns fetched to 5000 in fetch_*_df() (#51)
  • Moved regex matching for table filtering to the server side with NQL MATCHES operator in fetch_*_df() (#51)

Fixes

  • Fixed bug where passing columns as None invalidated columns_regex parameter in fetch_*_df() (#51)
  • Fixed bug where passing a names_regex not matching any experiment resulted in returning entire table (#51)
  • Fixed misleading error message related to hitting a column number limit (#51)

Features

  • Added match_columns_to_filters to conditionally enable column matching based on run filters (#51)

neptune-fetcher 0.5.0

Features

  • Added methods to list and fetch Experiments (#34)
  • Added method to prefetch series values (#42)
  • Added progress_bar parameter to prefetch_series_values (#43)
  • Added support for filtering with Neptune Query Language (#45)
  • Added support for include_inherited and progress_bar in series values fetching (#47)

neptune-fetcher 0.4.0

Features

  • Added support for custom run IDs (#22)

neptune-fetcher 0.3.0

Features

  • Regex support with columns_regex and names_regex for fetch_runs_df() (#20)

neptune-fetcher 0.2.0

Features

  • Added support for bool, state, datetime, float series, and string set (#19)
  • Added support for fetching float series values (#19)

Changes

  • Using only paths filter endpoint instead of dedicated ones (#17)

neptune-fetcher 0.1.0

Initial release

Changes

  • Improved performance of the list_runs() query (#7)
  • Added support for protocol buffers (#12)