🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

migrate-versioned-log

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

migrate-versioned-log

transform semantically versioned append-only log entries

1.0.1
latest
Source
npm
Version published
Weekly downloads
933
0.32%
Maintainers
1
Weekly downloads
 
Created
Source

This package helps you build transform streams that migrate, or upgrade, semantically versioned append-only log entries.

To create a transform, pass an Array of Object in the shape:

[
  {
    fromRange: SemVerRange,
    toVersion: SemVer,
    transform: function (entry, callback) {
      callback(null, [/* transformed entries */])
    }
  }
]

toVersion must be greater than all ranges that satisfy fromRange.

The transforms expect and emit chunks in the shape:

{index: Number, version: SemVer, entry: Object}

Example

This example is run as a test for the package. It uses a few packages from the mississippi streams collection.

var assert = require('assert')
var collect = require('collect-stream')
var from2Array = require('from2-array')
var migrate = require('migrate-versioned-log')
var pump = require('pump')

var log = [
  // A 1.0.0 set operation.
  {index: 1, version: '1.0.0', entry: {key: 'a', value: 1}},
  // From version 2.0.0, set operations are logged with two entries:
  // One to initialize. One to set.
  {index: 2, version: '2.0.0', entry: {type: 'init', key: 'b'}},
  {index: 3, version: '2.0.0', entry: {type: 'set', key: 'b', value: 2}}
]

var migrated = [
  // The old 1.0.0 entry is migrated to two 2.0.0 entries.
  {index: 1, version: '2.0.0', entry: {type: 'init', key: 'a'}},
  {index: 1, version: '2.0.0', entry: {type: 'set', key: 'a', value: 1}},
  // The 2.0.0 entries remain the same.
  {index: 2, version: '2.0.0', entry: {type: 'init', key: 'b'}},
  {index: 3, version: '2.0.0', entry: {type: 'set', key: 'b', value: 2}}
]

collect(
  pump(
    from2Array.obj(log),
    migrate([{
      fromRange: '1.x',
      toVersion: '2.0.0',
      transform: function (entry, callback) {
        callback(null, [
          {type: 'init', key: entry.key},
          {type: 'set', key: entry.key, value: entry.value}
        ])
      }
    }])
  ),
  function (error, data) {
    assert.ifError(error)
    assert.deepEqual(data, migrated)
  }
)

Keywords

SemVer

FAQs

Package last updated on 11 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts