Skip to content

Releases: uphold/anonymizer

v4.1.1

18 Feb 11:36
Compare
Choose a tag to compare

Changelog

  • Update readme to include trim option #42 (rplopes)
  • Trim objects with no unredacted values #41 (rplopes)

v4.1.0

17 Feb 19:04
Compare
Choose a tag to compare

Changelog

v4.0.0

21 Jan 17:02
Compare
Choose a tag to compare

Changelog

v3.1.1

18 Nov 16:49
Compare
Choose a tag to compare

Changelog

  • Fix obfuscation of class getter methods #36 (nunofgs)

v3.1.0

22 Oct 15:28
Compare
Choose a tag to compare

Changelog

v3.0.0

19 May 15:15
Compare
Choose a tag to compare

Changelog

  • Add a blacklist with higher priority than whitelist #31 (adisney-up)
  • Add instructions to release new versions of the project #20 (waldyrious)
  • Replace travis with github test action #30 (nunofgs)
  • Remove github package registry #29 (nunofgs)

v2.0.0

17 Feb 15:03
Compare
Choose a tag to compare

Changelog

1.1.1

20 Aug 14:38
Compare
Choose a tag to compare

anonymizer

Object redaction with whitelist as main feature.

Arguments

  1. whitelist (Object): The whitelist object.

Example

const anonymizer = require('@uphold/anonymizer');
const anonymize = anonymizer(['foo.key', 'bar.*']);

anonymize({ foo: { key: 'public', another: 'bar' }, bar: { foo: 1, bar: 2 } });

//=> { foo: { key: 'public', another: '--REDACTED--' }, bar: { foo: 1, bar: 2 } }

1.1.0

12 Aug 17:35
Compare
Choose a tag to compare

anonymizer

Object redaction with whitelist as main feature.

Arguments

  1. whitelist (Object): The whitelist object.

Example

const anonymizer = require('@uphold/anonymizer');
const anonymize = anonymizer(['foo.key', 'bar.*']);

anonymize({ foo: { key: 'public', another: 'bar' }, bar: { foo: 1, bar: 2 } });

//=> { foo: { key: 'public', another: '--REDACTED--' }, bar: { foo: 1, bar: 2 } }

1.0.3

12 Aug 17:34
Compare
Choose a tag to compare

anonymizer

Object redaction with whitelist as main feature.

Arguments

  1. whitelist (Object): The whitelist object.

Example

const anonymizer = require('@uphold/anonymizer');
const anonymize = anonymizer(['foo.key', 'bar.*']);

anonymize({ foo: { key: 'public', another: 'bar' }, bar: { foo: 1, bar: 2 } });

//=> { foo: { key: 'public', another: '--REDACTED--' }, bar: { foo: 1, bar: 2 } }