Skip to content

Commit 77c3356

Browse files
authored
Update changelog (#85) (#86)
1 parent 38bc629 commit 77c3356

File tree

2 files changed

+57
-15
lines changed

2 files changed

+57
-15
lines changed

CHANGELOG.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,40 @@
11
# Changelog
22

3-
## 5.32.0 - YYYY-MM-DD
3+
## 5.32.0
44

55
### What's Changed
6-
- Initial docstring overhaul and a new test for better documentation and test coverage. by @JustinGilmer in #82
7-
- Test new join functionality for improved data loading for windowed queries. by @JustinGilmer in #80
8-
- Improve `arrow_to_dataframe` function for handling large amounts of columns, enhancing performance and usability. by @Jefflinf in #73
9-
- Expand testing to include Python 3.11, ensuring compatibility and stability. by @JustinGilmer in #74
10-
- Update exception handling to better support `RpcErrors`, improving error management and debugging. by @JustinGilmer in #72
11-
- Introduce an option for specifying the schema of the returned data, allowing for more flexibility in data handling. by @TODO in #51
12-
- Remove non-required dependencies and migrate to 'data' optional dependency for a lighter package and easier installation. by @JustinGilmer in #71
13-
- New method to get first and last timestamps from `aligned_windows`, enhancing data analysis capabilities. by @Jefflinf in #70
14-
- Add `to_timedelta` method for `pointwidth` class, providing more options for time-based data manipulation. by @Jefflinf in #69
6+
- Initial docstring overhaul and a new test for better documentation and test coverage. by @JustinGilmer in [#82](https://github.com/pingthingsio/btrdb-python/pull/82)
7+
- Test new join logic for improved data loading for windowed queries. by @JustinGilmer in [#80](https://github.com/pingthingsio/btrdb-python/pull/80)
8+
- Improve `arrow_to_dataframe` function for handling large amounts of columns, enhancing performance and usability. by @Jefflinf in [#73](https://github.com/pingthingsio/btrdb-python/pull/73)
9+
- Expand testing to include Python 3.11, ensuring compatibility and stability. by @JustinGilmer in [#74](https://github.com/pingthingsio/btrdb-python/pull/74)
10+
- Update exception handling to better support `RpcErrors`, improving error management and debugging. by @JustinGilmer in [#72](https://github.com/pingthingsio/btrdb-python/pull/72)
11+
- Introduce an option for specifying the schema of the returned raw data, allowing for more flexibility in data handling. by @andrewchambers in [#51](https://github.com/pingthingsio/btrdb-python/pull/51)
12+
- Remove non-required dependencies and migrate to 'data' optional dependency for a lighter package and easier installation. by @JustinGilmer in [#71](https://github.com/pingthingsio/btrdb-python/pull/71)
13+
- New method to get first and last timestamps from `aligned_windows`, enhancing data analysis capabilities. by @Jefflinf in [#70](https://github.com/pingthingsio/btrdb-python/pull/70)
14+
- Add `to_timedelta` method for `pointwidth` class, providing more options for time-based data manipulation. by @Jefflinf in [#69](https://github.com/pingthingsio/btrdb-python/pull/69)
1515

1616
### Fixed
17-
- Fix `NoneType` error for `earliest/latest` for empty streams, ensuring reliability and error handling. by @Jefflinf in #64
18-
- Correct integration tests where the time column is not automatically set as the index, improving test accuracy and reliability. by @JustinGilmer in #56
17+
- Fix `NoneType` error for `earliest/latest` for empty streams, ensuring reliability and error handling. by @Jefflinf in [#64](https://github.com/pingthingsio/btrdb-python/pull/64)
18+
- Correct integration tests where the time column is not automatically set as the index, improving test accuracy and reliability. by @JustinGilmer in [#56](https://github.com/pingthingsio/btrdb-python/pull/56)
1919

2020
### Deprecated
21-
- FutureWarning for `streams_in_collection` to return `StreamSet` in the future, preparing users for upcoming API changes. by @Jefflinf in #60
21+
- FutureWarning for `streams_in_collection` to return `StreamSet` in the future, preparing users for upcoming API changes. by @Jefflinf in [#60](https://github.com/pingthingsio/btrdb-python/pull/60)
2222

2323
**Full Changelog**: [GitHub compare view](https://github.com/PingThingsIO/btrdb-python/compare/v5.31.0...v5.32.0)
2424

2525

2626
## 5.31.0
2727
## What's Changed
28-
* Release v5.30.2 by @youngale-pingthings in https://github.com/PingThingsIO/btrdb-python/pull/42
2928
* Have release script update pyproject.toml file by @youngale-pingthings in https://github.com/PingThingsIO/btrdb-python/pull/48
3029
* Provide option to sort the arrow tables by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/47
31-
* [sc-25841] Remove 4MB limit for gRPC message payloads by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/49
30+
* Remove 4MB limit for gRPC message payloads by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/49
3231
* Update documentation for arrow methods by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/50
3332
* Update from staging by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/54
3433
* Sort tables by time by default for any `pyarrow` tables. by @justinGilmer in
3534
* Fix deprecation warnings for pip installations. by @jleifnf in
3635

36+
**Full Changelog**: [GitHub compare view](https://github.com/PingThingsIO/btrdb-python/compare/v5.30.2...v5.31.0)
37+
3738
## 5.30.2
3839
### What's Changed
3940
* Update readthedocs to new yaml for testing. by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/40

docs/source/changelog.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
22
Changelog
33
=========
44

5+
5.32.0
6+
------
7+
8+
What's Changed
9+
^^^^^^^^^^^^^^
10+
- Initial docstring overhaul and a new test for better documentation and test coverage. by @JustinGilmer in `#82 <https://github.com/pingthingsio/btrdb-python/pull/82>`_
11+
- Test new join logic for improved data loading for windowed queries. by @JustinGilmer in `#80 <https://github.com/pingthingsio/btrdb-python/pull/80>`_
12+
- Improve :code:`arrow_to_dataframe` function for handling large amounts of columns, enhancing performance and usability. by @Jefflinf in `#73 <https://github.com/pingthingsio/btrdb-python/pull/73>`_
13+
- Expand testing to include Python 3.11, ensuring compatibility and stability. by @JustinGilmer in `#74 <https://github.com/pingthingsio/btrdb-python/pull/74>`_
14+
- Update exception handling to better support :code:`RpcErrors`, improving error management and debugging. by @JustinGilmer in `#72 <https://github.com/pingthingsio/btrdb-python/pull/72>`_
15+
- Introduce an option for specifying the schema of the returned raw data, allowing for more flexibility in data handling. by @andrewchambers in `#51 <https://github.com/pingthingsio/btrdb-python/pull/51>`_
16+
- Remove non-required dependencies and migrate to 'data' optional dependency for a lighter package and easier installation. by @JustinGilmer in `#71 <https://github.com/pingthingsio/btrdb-python/pull/71>`_
17+
- New method to get first and last timestamps from ``aligned_windows``, enhancing data analysis capabilities. by @Jefflinf in `#70 <https://github.com/pingthingsio/btrdb-python/pull/70>`_
18+
- Add ``to_timedelta`` method for ``pointwidth`` class, providing more options for time-based data manipulation. by @Jefflinf in `#69 <https://github.com/pingthingsio/btrdb-python/pull/69>`_
19+
20+
Fixed
21+
^^^^^
22+
- Fix ``NoneType`` error for ``earliest/latest`` for empty streams, ensuring reliability and error handling. by @Jefflinf in `#64 <https://github.com/pingthingsio/btrdb-python/pull/64>`_
23+
- Correct integration tests where the time column is not automatically set as the index, improving test accuracy and reliability. by @JustinGilmer in `#56 <https://github.com/pingthingsio/btrdb-python/pull/56>`_
24+
25+
Deprecated
26+
^^^^^^^^^^
27+
- FutureWarning for ``streams_in_collection`` to return ``StreamSet`` in the future, preparing users for upcoming API changes. by @Jefflinf in `#60 <https://github.com/pingthingsio/btrdb-python/pull/60>`_
28+
29+
**Full Changelog**: `GitHub compare view <https://github.com/PingThingsIO/btrdb-python/compare/v5.31.0...v5.32.0>`_
30+
31+
32+
5.31.0
33+
------
34+
What's Changed
35+
^^^^^^^^^^^^^^
36+
* Have release script update pyproject.toml file by @youngale-pingthings in https://github.com/PingThingsIO/btrdb-python/pull/48
37+
* Provide option to sort the arrow tables by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/47
38+
* Remove 4MB limit for gRPC message payloads by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/49
39+
* Update documentation for arrow methods by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/50
40+
* Update from staging by @justinGilmer in https://github.com/PingThingsIO/btrdb-python/pull/54
41+
* Sort tables by time by default for any ``pyarrow`` tables. by @justinGilmer in
42+
* Fix deprecation warnings for pip installations. by @jleifnf in
43+
44+
**Full Changelog**: `GitHub compare view <https://github.com/PingThingsIO/btrdb-python/compare/v5.30.2...v5.31.0>`_
45+
546
5.30.2
647
------
748
What’s Changed

0 commit comments

Comments
 (0)