File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.0.12
4+
5+ ### Features
6+
7+ - feat: Add time_creation as first-class metadata (#210 ) by @lcian
8+ - feat(clients): Append to the given base URL path (#222 ) by @lcian
9+ - feat: Add time_expires as first-class metadata (#217 ) by @lcian
10+
311## 0.0.11
412
513### Various fixes & improvements
Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ session = client.session(
5555# Write an object and metadata
5656object_key = session.put(
5757 b " Hello, world!" ,
58- # You can pass in your own identifier for the object to decide where to store the file.
59- # Otherwise, Objectstore will pick an identifier and return it.
60- # A put request to an existing identifier overwrites the contents and metadata.
61- # id ="hello",
58+ # You can pass in your own key for the object to decide where to store the file.
59+ # Otherwise, Objectstore will pick a key and return it.
60+ # A put request to an existing key overwrites the contents and metadata.
61+ # key ="hello",
6262 metadata = {" key" : " value" },
6363 # Overrides the default defined at the Usecase level
6464 expiration_policy = TimeToIdle(datetime.timedelta(days = 30 )),
You can’t perform that action at this time.
0 commit comments