Releases: toolbox-team/storage
Releases · toolbox-team/storage
toolbox-storage v1.0.0
Initial release.
toolbox-devvit v0.4.0
Breaking Changes
-
This package now exports only Devvit-specific stuff (i.e.
ToolboxClientand nothing else). You probably weren't using any of the lower-level helpers manually in a Devvit project, but if you were previously importing any types or other members from this package, they can now be found in the new, non-Devvit-specifictoolbox-storagepackage. For example:// Before: import {ToolboxClient, type Usernote} from 'toolbox-devvit'; // After: import {ToolboxClient} from 'toolbox-devvit'; import {type Usernote} from 'toolbox-storage';
Fixes
- Ensure
Usernotesinstances can be constructed from empty/missing data, i.e. fresh data for subreddits never touched by Toolbox (#58, #63) - Same for
SubredditConfiginstances (#58, #66, thanks @fsvreddit!)
toolbox-devvit v0.3.1
toolbox-devvit v0.3.0
Breaking
- Compatibility with
@devvit/public-api@0.10.0breaking changes (#51)metadatais no longer passed toToolboxClientmethods- Since the reddit API client is no longer constructed upfront, you will need to tweak your applications to enable the API client in
Devvit.configure()and create a newToolboxClientinstance within each event handler using theredditpassed in the event context - Examples have been updated to reflect these changes
Meta
toolbox-devvit v0.2.0
Big breaking change, lots of stuff got reworked and none of the names are the same anymore. Nobody was using v0.1.0 anyway though and I think this puts us solidly past the super unstable, everything-is-always-breaking-constantly phase of initial development.
Proper release notes starting with the next release I promise
toolbox-devvit v0.1.0
First release