Skip to content
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
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Version updates
.. toctree::
:maxdepth: 1

version_0.20_updates
version_0.19_updates
version_0.18_updates
version_0.17_updates
Expand Down
11 changes: 11 additions & 0 deletions docs/release_notes/version_0.20_update.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Version 0.20 Updates
/////////////////////////


Version 0.20.0
===============

Changes
++++++++++++++++++++++++++++++

Previously, when using the :ref:`data-sources-mars` source via the standalone MARS client the ``MARS_AUTO_SPLIT_BY_DATES="1"`` environment variable was set to enable splitting of MARS requests by date when needed. However, this approach has been removed and now users must set this environment variable themselves when needed. This change was made to give users more control over the behavior of MARS requests and to avoid potential issues with unintended splitting of requests. (:pr:`974`)
1 change: 0 additions & 1 deletion src/earthkit/data/sources/mars.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def execute(self, request, target, log=None):

subprocess.run(
[self.command(), filename],
env=dict(os.environ, MARS_AUTO_SPLIT_BY_DATES="1"),
check=True,
**log,
)
Expand Down
Loading