
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
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
The npm package migrate-versioned-log receives a total of 342 weekly downloads. As such, migrate-versioned-log popularity was classified as not popular.
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.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.