Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 1ee5da8

Browse files
committed
🔖 prepare to release 0.8.4
1 parent 5c9edc6 commit 1ee5da8

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGES.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ Changes
2121
=======
2222

2323

24-
Version 0.8.4
25-
-------------
24+
Version 0.8.4 (2023-01-23)
25+
--------------------------
2626

2727
- Add support to generate data cube from Landsat Collection 2 (`#172 <https://github.com/brazil-data-cube/cube-builder/issues/172>`_)
2828
- Add support to combine Landsat Collection 2 sensors (L5/L7, L7/L8, L7/L8/L9) using single collection (`#172 <https://github.com/brazil-data-cube/cube-builder/issues/172>`_)
2929
- Review API error when no parameter is set.
30+
- Review unittests for cube creation and code coverage.
3031

3132

3233
Version 0.8.3 (2022-10-03)

cube_builder/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def get_cube(cls, cube_id: int):
344344
@classmethod
345345
def list_cubes(cls):
346346
"""Retrieve the list of data cubes from Brazil Data Cube database."""
347-
cubes = Collection.query().filter(Collection.collection_type == 'cube').all()
347+
cubes = Collection.query().filter(Collection.collection_type == 'cube').order_by(Collection.id).all()
348348

349349
serializer = CollectionForm()
350350

0 commit comments

Comments
 (0)