Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs/js-stores
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: interface-blockstore-tests-v5.0.1
Choose a base ref
...
head repository: ipfs/js-stores
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: interface-blockstore-tests-v6.0.0
Choose a head ref
  • 15 commits
  • 14 files changed
  • 4 contributors

Commits on Mar 15, 2023

  1. Configuration menu
    Copy the full SHA
    44170cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6660830 View commit details
    Browse the repository at this point in the history
  3. feat: allow extending store method options (#193)

    To allow for extra options like progress handlers, add generic types
    for extending the options types passed to the various store methods.
    
    They are all defaulted to an empty interface (e.g. no extension) so
    this is a non-breaking change.
    achingbrain authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    007e8ac View commit details
    Browse the repository at this point in the history
  4. chore(release): 4.1.0 [skip ci]

    ## [interface-store-v4.1.0](interface-store-v4.0.0...interface-store-v4.1.0) (2023-03-15)
    
    ### Features
    
    * allow extending store method options ([#193](#193)) ([007e8ac](007e8ac))
    semantic-release-bot committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    5ed90c4 View commit details
    Browse the repository at this point in the history
  5. chore(release): 5.1.0 [skip ci]

    ## [interface-blockstore-v5.1.0](interface-blockstore-v5.0.0...interface-blockstore-v5.1.0) (2023-03-15)
    
    ### Features
    
    * allow extending store method options ([#193](#193)) ([007e8ac](007e8ac))
    semantic-release-bot committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    e24ce0b View commit details
    Browse the repository at this point in the history
  6. chore(release): 8.1.0 [skip ci]

    ## [interface-datastore-v8.1.0](interface-datastore-v8.0.0...interface-datastore-v8.1.0) (2023-03-15)
    
    ### Features
    
    * allow extending store method options ([#193](#193)) ([007e8ac](007e8ac))
    semantic-release-bot committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    9ad0ce5 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. fix: make datastore batch commit option extension optional (#194)

    This should be optional
    achingbrain authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    7bb6729 View commit details
    Browse the repository at this point in the history
  2. chore(release): 8.1.1 [skip ci]

    ## [interface-datastore-v8.1.1](interface-datastore-v8.1.0...interface-datastore-v8.1.1) (2023-03-22)
    
    ### Bug Fixes
    
    * make datastore batch commit option extension optional ([#194](#194)) ([7bb6729](7bb6729))
    semantic-release-bot committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    40f500b View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

  1. fix!: return stream of pairs from getmany (#195)

    To make the return value of getMany consistent with putMany and
    getAll, return a stream of pairs from the return type of getMany -
    this also allows decoupling of processing the output from the input
    since the output processor doesn't need any extra context since they
    get both the key and the value being returned.
    
    BREAKING CHANGE: the output of store.getMany is now a stream of pairs
    achingbrain authored Mar 23, 2023
    Configuration menu
    Copy the full SHA
    252bced View commit details
    Browse the repository at this point in the history
  2. chore(release): 5.0.0 [skip ci]

    ## [interface-store-v5.0.0](interface-store-v4.1.0...interface-store-v5.0.0) (2023-03-23)
    
    ### ⚠ BREAKING CHANGES
    
    * the output of store.getMany is now a stream of pairs
    
    ### Bug Fixes
    
    * return stream of pairs from getmany ([#195](#195)) ([252bced](252bced))
    semantic-release-bot committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    3d69492 View commit details
    Browse the repository at this point in the history
  3. deps: update sibling dependencies

    aegir[bot] committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    7c84601 View commit details
    Browse the repository at this point in the history
  4. chore(release): 5.1.1 [skip ci]

    ## [interface-blockstore-v5.1.1](interface-blockstore-v5.1.0...interface-blockstore-v5.1.1) (2023-03-23)
    
    ### Dependencies
    
    * update sibling dependencies ([7c84601](7c84601))
    semantic-release-bot committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    9db13e0 View commit details
    Browse the repository at this point in the history
  5. fix: return key from put and put many (#196)

    Otherwise if operating remotely we have the strange property of
    sending the data to be put once to the receiver and then again back
    to the sender.
    achingbrain authored Mar 23, 2023
    Configuration menu
    Copy the full SHA
    dfc4697 View commit details
    Browse the repository at this point in the history
  6. chore(release): 5.0.1 [skip ci]

    ## [interface-store-v5.0.1](interface-store-v5.0.0...interface-store-v5.0.1) (2023-03-23)
    
    ### Bug Fixes
    
    * return key from put and put many ([#196](#196)) ([dfc4697](dfc4697))
    semantic-release-bot committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    060e74b View commit details
    Browse the repository at this point in the history
  7. chore(release): 6.0.0 [skip ci]

    ## [interface-blockstore-tests-v6.0.0](interface-blockstore-tests-v5.0.1...interface-blockstore-tests-v6.0.0) (2023-03-23)
    
    ### ⚠ BREAKING CHANGES
    
    * the output of store.getMany is now a stream of pairs
    
    ### Bug Fixes
    
    * return key from put and put many ([#196](#196)) ([dfc4697](dfc4697))
    * return stream of pairs from getmany ([#195](#195)) ([252bced](252bced))
    semantic-release-bot committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    96958c0 View commit details
    Browse the repository at this point in the history
Loading