Skip to content

Some release note improvements #2775

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

Merged
merged 4 commits into from
Jan 28, 2025
Merged
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
File renamed without changes.
1 change: 1 addition & 0 deletions changes/2693.bugfix.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Match the errors raised by read only stores in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.bugfix.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Use stdout rather than stderr as the default stream for LoggingStore.
1 change: 1 addition & 0 deletions changes/2693.bugfix.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Ensure that ZipStore is open before getting or setting any values.
1 change: 1 addition & 0 deletions changes/2693.bugfix.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update equality for LoggingStore and WrapperStore such that 'other' must also be a LoggingStore or WrapperStore respectively, rather than only checking the types of the stores they wrap.
13 changes: 0 additions & 13 deletions changes/2693.bugfix.rst

This file was deleted.

1 change: 1 addition & 0 deletions changes/2693.feature.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Implemented open() for LoggingStore.
1 change: 1 addition & 0 deletions changes/2693.feature.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
LoggingStore is now a generic class.
3 changes: 3 additions & 0 deletions changes/2693.feature.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Change StoreTest's ``test_store_repr``, ``test_store_supports_writes``,
``test_store_supports_partial_writes``, and ``test_store_supports_listing``
to to be implemented using ``@abstractmethod``, rather raising ``NotImplementedError``.
1 change: 1 addition & 0 deletions changes/2693.feature.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Separate instantiating and opening a store in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.feature.5.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add a test for using Stores as a context managers in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.feature.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test that a ValueError is raised for invalid byte range syntax in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.feature.7.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test getsize() and getsize_prefix() in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.feature.8.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test the error raised for invalid buffer arguments in StoreTests.
1 change: 1 addition & 0 deletions changes/2693.feature.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test that data can be written to a store that's not yet open using the store.set method in StoreTests