From 1d79b419a1c1587a11c6b7f79a8c58bedbeb0800 Mon Sep 17 00:00:00 2001 From: Rob Emanuele Date: Thu, 17 Jun 2021 21:57:51 -0400 Subject: [PATCH] Add CHANGELOG entry for PR #454 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4a445ff9..5150a0e5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ - Migration for pre-1.0.0-rc.1 Stats Objects (renamed to Range Objects in 1.0.0-rc.3) ([#447](https://github.com/stac-utils/pystac/pull/447)) - Attempting to extend a `STACObject` that does not contain the extension's schema URI in `stac_extensions` raises new `ExtensionNotImplementedError` ([#450](https://github.com/stac-utils/pystac/pull/450)) +- `STACObject.from_dict` now takes a `preserve_dict` parameter, which if False will avoid a call to deepcopy on the passed in dict and can result in performance gains (defaults to True. Reading from a file will use preserve_dict=False resulting in better performance. ([#454](https://github.com/stac-utils/pystac/pull/454)) ### Changed