Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bps

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bps - npm Package Versions

2.0.1

Diff

Changelog

Source

2.0.1 - 2024-02-25

Fixed

  • The CLI tool now reports the correct version.
lsphillips
published 2.0.0 •

Changelog

Source

2.0.0 - 2024-02-24

Added

  • Introduced the bps.build() function that enables you to build an instruction set from a source and a desired target.
  • Introduced the bps.serialize() function that enables you to serialize an instruction set into a binary BPS buffer.
  • Introduced the create command in the CLI tool that enables you to create a BPS patch file from a source file and a desired target file.

Changed

  • The result of bps.parse() has been changed, it now has a different shape. Instead of this object structure:
    {
      sourceSize : 0,
      sourceChecksum : 0,
      targetSize : 0,
      targetChecksum : 0,
      actions : [],
      patchChecksum : 0
    }
    
    You will instead recieve an object with this structure:
    {
      instructions : {
        sourceSize : 0,
        sourceChecksum : 0,
        targetSize : 0,
        targetChecksum : 0,
        actions : []
      },
      checksum : 0
    }
    
  • The bps.patch() function no longer takes the entire patch previously returned by bps.parse() but instead just the instruction set.
lsphillips
published 1.0.0 •

Changelog

Source

1.0.0 - 2024-02-02

The initial public release.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc