summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2020-07-10 14:19:16 -0400
committerDoug Hellmann <doug@doughellmann.com>2020-07-10 14:19:16 -0400
commit5eb3ef2de3576c8633dddab832bbe85405930db0 (patch)
treef3ed2a2fb741d65e5562f76dd4f0dd5f52a0a453
parentd5297167e08468c75d2477f15004df61cf98e57e (diff)
downloadstevedore-5eb3ef2de3576c8633dddab832bbe85405930db0.tar.gz
add release note before major version update3.0.0
Change-Id: I1ffe194f9edfffac07c9c78f9691e999f2e61246 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
-rw-r--r--releasenotes/notes/entry-point-type-change-06ca3b301ba7aad1.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/releasenotes/notes/entry-point-type-change-06ca3b301ba7aad1.yaml b/releasenotes/notes/entry-point-type-change-06ca3b301ba7aad1.yaml
new file mode 100644
index 0000000..d947a63
--- /dev/null
+++ b/releasenotes/notes/entry-point-type-change-06ca3b301ba7aad1.yaml
@@ -0,0 +1,15 @@
+---
+features:
+ - |
+ Adds a caching layer. The cache is a single JSON file created
+ automatically in the user's home directory. It stores the parsed
+ text data from all of the metadata input files in a file with a
+ name based on the hash of the contents and `sys.path`, ensuring
+ uniqueness for applications installed into different virtual
+ environments.
+upgrade:
+ - |
+ The type of the entry point objects returned has changed from
+ `pkg_resources.EntryPoint` to `importlib.metadata.EntryPoint`. The
+ new objects still have a `load()` method, but some of the other
+ APIs are different.