
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
migrate-versioned-log
Advanced tools
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}
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)
}
)
FAQs
transform semantically versioned append-only log entries
We found that migrate-versioned-log demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.