New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

did-method-key

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

did-method-key - npm Package Compare versions

Comparing version

to
0.4.0

5

CHANGELOG.md
# did:key driver ChangeLog
## 0.4.0 - 2020-01-29
### Changed
- **BREAKING**: Now using `'https://www.w3.org/ns/did/v1'` as context.
## 0.3.0 - 2020-01-08

@@ -4,0 +9,0 @@

2

lib/driver.js

@@ -57,3 +57,3 @@ /*!

return {
'@context': 'https://w3id.org/did/v1',
'@context': 'https://www.w3.org/ns/did/v1',
id: did,

@@ -60,0 +60,0 @@ publicKey: [{

{
"name": "did-method-key",
"version": "0.3.0",
"version": "0.4.0",
"description": "A did:key method driver for did-io and standalone use.",

@@ -5,0 +5,0 @@ "homepage": "http://github.com/digitalbazaar/did-method-key",

# did:key method driver _(did-method-key)_
[![NPM Version](https://img.shields.io/npm/v/did-method-key.svg?style=flat-square)](https://npm.im/did-method-key)
[![Build Status](https://travis-ci.org/digitalbazaar/did-method-key.png?branch=master)](https://travis-ci.org/digitalbazaar/did-method-key)
[![Build Status](https://travis-ci.org/digitalbazaar/did-method-key-js.png?branch=master)](https://travis-ci.org/digitalbazaar/did-method-key-js)

@@ -50,3 +50,3 @@ > A [DID](https://w3c-ccg.github.io/did-spec/) (Decentralized Identifier) method driver for the `did-io` library and for standalone use

{
"@context": "https://w3id.org/did/v1",
"@context": "https://www.w3.org/ns/did/v1",
"id": "did:key:z6MkpTHR8VNsBxYAAWHut2Geadd9jSwuBV8xRoAnwWsdvktH",

@@ -53,0 +53,0 @@ "publicKey": [

@@ -20,3 +20,3 @@ /*!

expect(didDoc.id).to.equal(did);
expect(didDoc['@context']).to.equal('https://w3id.org/did/v1');
expect(didDoc['@context']).to.equal('https://www.w3.org/ns/did/v1');
expect(didDoc.authentication).to.eql([keyId]);

@@ -23,0 +23,0 @@ expect(didDoc.assertionMethod).to.eql([keyId]);

Sorry, the diff of this file is not supported yet