Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): version package #35

Merged
merged 1 commit into from
May 31, 2024
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented May 20, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to canary, this PR will be updated.

Releases

[email protected]

Major Changes

  • 789d49a: BREAKING: The exported paths of the package have changed for both BrowserDriver and FsDriver.

    - import { BrowserDriver, FsDriver } from 'storage-box';
    + import { BrowserDriver } from 'storage-box/browser';
    + import { FsDriver } from 'storage-box/node';
  • 789d49a: BREAKING: the list method has been renamed to lgetall

  • ce4fd52: fix: Operation methods are now synchronous. The keyword await is no longer needed.

Minor Changes

  • 789d49a: feat: createList method to create an instance of a list

    import { Client } from 'storage-box';
    
    const c = new Client();
    
    const nl = c.createList<number>();
    for (let i = 0; i < 10; i++) {
      nl.push(i);
    }
    console.log(nl.range(0, 3));
  • 789d49a: feat: Added createHashMap method to create an instance of a HashMap.

    import { Client } from 'storage-box';
    
    const c = new Client();
    
    interface Vertex {
      x: number;
      y: number;
    }
    
    const vhm = c.createHashMap<string, Vertex>();
    vhm.set('a', { x: 1, y: 2 });

Patch Changes

  • 789d49a: fix: added getall to extract entry storage as a record/key-value object
  • f4ede69: feat: added pushex and exists operations for list

@github-actions github-actions bot force-pushed the changeset-release/canary branch 5 times, most recently from 1268c2d to 76c3fdc Compare May 21, 2024 11:27
@github-actions github-actions bot force-pushed the changeset-release/canary branch 4 times, most recently from 36bdee7 to 4c9f13b Compare May 22, 2024 12:11
@github-actions github-actions bot force-pushed the changeset-release/canary branch 2 times, most recently from 931567a to 57eef5a Compare May 31, 2024 15:35
@github-actions github-actions bot force-pushed the changeset-release/canary branch from 57eef5a to f7b141d Compare May 31, 2024 15:40
@github-actions github-actions bot force-pushed the changeset-release/canary branch 2 times, most recently from 0140385 to e849ce8 Compare May 31, 2024 15:56
@github-actions github-actions bot force-pushed the changeset-release/canary branch from e849ce8 to da43b57 Compare May 31, 2024 16:07
@shahradelahi shahradelahi merged commit 1d407c6 into canary May 31, 2024
@shahradelahi shahradelahi deleted the changeset-release/canary branch May 31, 2024 16:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant