Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CHANGELOG for version 0.9.3 and add pull request template #129

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Before submitting checklist

- [ ] Did you **update the CHANGELOG**? (not for test updates, internal changes/refactors or CI/CD setup)
- [ ] Did you **ask the docs owner** to review all the user-facing changes?
58 changes: 46 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,38 @@
## neptune-fetcher 0.9.1
# Changelog

All notable changes to this project will be documented in this file.

<!--- ONLY INCLUDE USER-FACING CHANGES -->

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.5] - 2024-11-27

### Changes
- Removed warning raised by `neptune-fetcher` if `neptune` is installed ([#132](https://github.com/neptune-ai/neptune-fetcher/pull/132))

## [0.9.4] - 2024-11-27

### Changes
- `neptune-fetcher` now raises a warning instead of an `ImportError` if `neptune` is installed ([#130](https://github.com/neptune-ai/neptune-fetcher/pull/130))

## [0.9.3] - 2024-11-27
SiddhantSadangi marked this conversation as resolved.
Show resolved Hide resolved

### Changes
- `neptune-fetcher` now raises an `ImportError` if `neptune` is installed ([#128](https://github.com/neptune-ai/neptune-fetcher/pull/128))

## [0.9.2] - 2024-11-25

### Added
- Added `NEPTUNE_VERIFY_SSL` environment variable ([#114](https://github.com/neptune-ai/neptune-fetcher/pull/114))

### Changed
- Removed dependency on `neptune` ([#102](https://github.com/neptune-ai/neptune-fetcher/pull/102))
- Progress bar disabled while fetching series metrics ([#124](https://github.com/neptune-ai/neptune-fetcher/pull/124))
- `sys/name` is now always present when fetching a dataframe ([#118](https://github.com/neptune-ai/neptune-fetcher/pull/118))

## [0.9.1] - 2024-11-05

### Breaking changes

Expand All @@ -14,17 +48,17 @@
- Escape all user input that is part of an NQL query (eg. `names_regex` in `fetch_experiments_df()`
- Make `FloatSeries.fetch_values()` use the Protobuf endpoint

## neptune-fetcher 0.8.2
## [0.8.2]

### Changes
- Add step filter in `FetchableSeries.fetch_values()` and `ReadOnlyRun.prefetch_series_values()` ([#78](https://github.com/neptune-ai/neptune-fetcher/pull/78))

## neptune-fetcher 0.8.1
## [0.8.1]

### Changes
- `fetch_*_df()` now fetches data concurrently ([#68](https://github.com/neptune-ai/neptune-fetcher/pull/68))

## neptune-fetcher 0.8.0
## [0.8.0]

### Breaking changes

Expand All @@ -36,7 +70,7 @@
- Removed the limit of columns that can be fetched in `fetch_*_df()` ([#63](https://github.com/neptune-ai/neptune-fetcher/pull/63))
- Added a warning when fetching a large dataframe ([#63](https://github.com/neptune-ai/neptune-fetcher/pull/63))

## neptune-fetcher 0.7.1
## [0.7.1]

### Fixes
- Fixed `SwaggerMappingError` when using `match_columns_to_filters` parameter ([#57](https://github.com/neptune-ai/neptune-fetcher/pull/57))
Expand All @@ -47,7 +81,7 @@
- Fetching only up to cumulative length of columns in `fetch_*_df()` methods ([#60](https://github.com/neptune-ai/neptune-fetcher/pull/60))


## neptune-fetcher 0.7.0
## [0.7.0]

### Features
- Added support for initializing `ReadOnlyRun` based on experiment name ([#54](https://github.com/neptune-ai/neptune-fetcher/pull/54))
Expand All @@ -57,7 +91,7 @@
- Fixed `columns_regex` not respecting 5k column limit ([#55](https://github.com/neptune-ai/neptune-fetcher/pull/55))


## neptune-fetcher 0.6.0
## [0.6.0]

### Breaking Changes
- Removed `sys/id` from the columns that are always returned in `fetch_*_df()` ([#51](https://github.com/neptune-ai/neptune-fetcher/pull/51))
Expand All @@ -76,7 +110,7 @@
- Added `match_columns_to_filters` to conditionally enable column matching based on run filters ([#51](https://github.com/neptune-ai/neptune-fetcher/pull/51))


## neptune-fetcher 0.5.0
## [0.5.0]

## Features
- Added methods to list and fetch Experiments ([#34](https://github.com/neptune-ai/neptune-fetcher/pull/34))
Expand All @@ -86,19 +120,19 @@
- Added support for include_inherited and progress_bar in series values fetching ([#47](https://github.com/neptune-ai/neptune-fetcher/pull/47))


## neptune-fetcher 0.4.0
## [0.4.0]

### Features
- Added support for custom run IDs ([#22](https://github.com/neptune-ai/neptune-fetcher/pull/21))


## neptune-fetcher 0.3.0
## [0.3.0]

### Features
- Regex support with `columns_regex` and `names_regex` for `fetch_runs_df()` ([#20](https://github.com/neptune-ai/neptune-fetcher/pull/20))


## neptune-fetcher 0.2.0
## [0.2.0]

### Features
- Added support for bool, state, datetime, float series, and string set ([#19](https://github.com/neptune-ai/neptune-fetcher/pull/19))
Expand All @@ -108,7 +142,7 @@
- Using only paths filter endpoint instead of dedicated ones ([#17](https://github.com/neptune-ai/neptune-fetcher/pull/17))


## neptune-fetcher 0.1.0
## [0.1.0]

Initial release

Expand Down