Skip to content

Releases: toolbox-team/storage

toolbox-storage v1.0.0

18 Feb 09:00
109fd11
Compare
Choose a tag to compare

Initial release.

toolbox-devvit v0.4.0

18 Feb 09:00
109fd11
Compare
Choose a tag to compare

Breaking Changes

  • This package now exports only Devvit-specific stuff (i.e. ToolboxClient and 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-specific toolbox-storage package. For example:

     // Before:
     import {ToolboxClient, type Usernote} from 'toolbox-devvit';
     // After:
     import {ToolboxClient} from 'toolbox-devvit';
     import {type Usernote} from 'toolbox-storage';

Fixes

  • Ensure Usernotes instances can be constructed from empty/missing data, i.e. fresh data for subreddits never touched by Toolbox (#58, #63)
  • Same for SubredditConfig instances (#58, #66, thanks @fsvreddit!)

toolbox-devvit v0.3.1

31 Oct 16:10
Compare
Choose a tag to compare

Additions

  • APIs for working with usernote types (subreddit config usernoteColors) (#57)

Fixes

  • Better handling when there are multiple usernote entries for the same user with different key capitalization (#54)
  • Fix import path used in documentation examples (#56)

toolbox-devvit v0.3.0

09 Jul 13:13
Compare
Choose a tag to compare

Breaking

  • Compatibility with @devvit/[email protected] breaking changes (#51)
    • metadata is no longer passed to ToolboxClient methods
    • 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 new ToolboxClient instance within each event handler using the reddit passed in the event context
    • Examples have been updated to reflect these changes

Meta

  • Some changes to the test setup (#44)
  • Reshuffling of some more links (#45)

toolbox-devvit v0.2.0

09 Jun 10:26
Compare
Choose a tag to compare

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

08 Jun 02:39
Compare
Choose a tag to compare

First release