-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
120 changed files
with
29,812 additions
and
2,256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Breaking changes | ||
---------------- | ||
|
||
Full changelog available in `Release history <changelog.html>`_. | ||
|
||
3.0.0b3 | ||
+++++++ | ||
|
||
* :meth:`~eodag.api.core.EODataAccessGateway.download` / :class:`~eodag.types.download_args.DownloadConf` parameters | ||
``outputs_prefix`` and ``outputs_extension`` renamed to ``output_dir`` and ``output_extension``. | ||
|
||
3.0.0b1 | ||
+++++++ | ||
|
||
* :meth:`~eodag.api.core.EODataAccessGateway.search` method now returns only a | ||
:class:`~eodag.api.search_result.SearchResult` instead of a 2 values tuple. It can optionally store the estimated | ||
total number of products in ``SearchResult.number_matched`` if the method is called with ``count=True`` | ||
(``False`` by default). | ||
|
||
* **eodag < 3.0.0b1 syntax:** | ||
|
||
.. code-block:: python | ||
search_results, number_matched = dag.search(productType="S2_MSI_L1C") | ||
| Traceback (most recent call last): | ||
| File "<stdin>", line 1, in <module> | ||
| ValueError: too many values to unpack (expected 2) | ||
* **eodag >= 3.0.0b1 syntax:** | ||
|
||
.. code-block:: python | ||
search_results = dag.search(productType="S2_MSI_L1C") | ||
* Packaging refactoring and new `optional dependencies | ||
<getting_started_guide/install.html#optional-dependencies>`_. EODAG default | ||
installs with a minimal set of dependencies. | ||
New sets of extra requirements are: ``eodag[all]``, ``eodag[all-providers]``, ``eodag[ecmwf]``, ``eodag[usgs]``, | ||
``eodag[csw]``, ``eodag[server]``, ``eodag[stubs]``. Previous existing sets of extra requirements are also kept: | ||
``eodag[notebook]``, ``eodag[tutorials]``, ``eodag[dev]``, ``eodag[docs]``. | ||
|
||
.. code-block:: sh | ||
# install eodag with all available providers supported | ||
pip install "eodag[all-providers]" | ||
2.0b1 | ||
+++++ | ||
|
||
- STAC API compliant REST server | ||
- Common configuration for STAC providers | ||
|
||
1.0 | ||
+++ | ||
|
||
- Adds product type search functionality | ||
- The cli arguments are now fully compliant with opensearch geo(bbox)/time extensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.