Skip to content

Releases: TBD54566975/web5-js

Web5 JS v0.7.6

01 Jun 19:16
Compare
Choose a tag to compare

What's Changed

External API Changes

  • Web5.connect() now takes an options object which is documented here.

Full Changelog: v0.7.5...v0.7.6

Web5 JS v0.7.5

23 May 06:46
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.4...v0.7.5

Web5 JS v0.7.4

20 May 15:12
Compare
Choose a tag to compare

What's Changed

  • Implement initial sync prototype by @mistermoe in #77
  • Add support for store: false to web5.dwn.records.create() by @frankhinek in #78

Full Changelog: v0.7.3...v0.7.4

Web5 JS v0.7.3

19 May 18:05
12435a1
Compare
Choose a tag to compare
Web5 JS v0.7.3 Pre-release
Pre-release

What's Changed

The were no changes to external API methods.

Full Changelog: v0.7.2...v0.7.3

Web5 JS v0.7.2

18 May 15:54
Compare
Choose a tag to compare
Web5 JS v0.7.2 Pre-release
Pre-release

This PR is primarily a hot fix to resolve an issue with Docusaurus not importing the bundled version intended for web browsers. An explicit /browser export was added which will be used to resolve an issue with TBD's Developer Site.

The were no changes to external API methods.

Full Changelog: v0.7.1...v0.7.2

Web5 JS v0.7.1

18 May 12:49
8710760
Compare
Choose a tag to compare
Web5 JS v0.7.1 Pre-release
Pre-release

This is primarily a hot fix release to resolve an incorrect export path for the bundled versions for web browsers.

The only change to external API methods is that the DID is now a required value for the Protocol.send() instance method to be consistent with Record.send(). The release notes for 0.7.0 did not require modification since the DID was being specified in the examples.

What's Changed

Full Changelog: v0.7.0...v0.7.1

Web5 JS v0.7.0

16 May 17:10
71937dc
Compare
Choose a tag to compare
Web5 JS v0.7.0 Pre-release
Pre-release

The TBD open source team is thrilled to announce a new version of Web5 JS, 0.7.0. Web5 JS is a software development kit that empowers everyone to create decentralized web applications (DWAs) that return ownership of data and identity to individuals.

If you were using a previous version of Web5 JS in your project, you can get 0.7.0 through a variety of distribution channels, including:

If your project is a you can get Web5 JS 0.7.0 with
Node.js package npm install @tbd54566975/web5
Native web browser app https://unpkg.com/@tbd54566975/[email protected]/dist/browser.js
OR
https://cdn.jsdelivr.net/npm/@tbd54566975/[email protected]/dist/browser.mjs

We invite everyone to help us out by testing this release, and please consider reporting any bugs you might come across. Thanks! 🙏

What's in 0.7.0

💡 Summary

The Web5 JS 0.7.0 release is a significant step towards making the creation of decentralized web applications more accessible and convenient. By simplifying the initial setup process, introducing in-browser and cloud agent capabilities, improving protocol definition readability, and refining typical DWN protocol and record operations, we aim to empower developers to innovate with ease and efficiency. The TBD open source team remains committed to continuous improvement and eagerly anticipates your feedback on this release. So, download, test, and let's work together to return ownership of data and identity back to the individuals. Happy coding!

Simplify Getting Started

Previously, the first thing a developer building a decentralized web application using Web5 JS would do is:

const web5 = new Web5();

const did = await web5.did.create('ion');

await web5.did.manager.set(did.id, {
  connected: true,
  endpoint: 'app://dwn', //this points to the user's local DWN
  keys: {
      ['#dwn']: {
        keyPair: did.keys.find(key => key.id === 'dwn').keyPair,
      },
  },
});

With this release, the developer experience has been simplified to:

const { web5, did } = await Web5.connect();

To begin, the developer connects to a Web5 User Agent. A web5-user-agent acts on behalf of a user to manage identity information, public/private data, and interactions with other entities in a decentralized network. These capabilities are enabled by the underlying profile, DID, key, cryptography, and DWN management components that an Agent interacts with.

Web5 JS can be used to build Agents for a variety of deployment environments, including:

  • Cloud Instances
  • Desktop OS (macOS, Linux, Windows)
  • Mobile OS (Android, iOS)
  • Web Browsers

However, with the 0.7.0 release the focus is on in-browser and cloud agents first with a fast follow release to enable desktop agents.
Returning to our example, connect() returns a web5 instance and did:

  • web5: The web5 instance returned is instantiated with a Web5 User Agent that manages DIDs, keys, an embedded DWN, and persisting the DID / key state to either browser storage or local disk, depending on whether the app is running in a browser or Node.js environment.
  • did: The did returned is the automatically generated DID that is currently active in the connected Web5 User Agent.

It is also worth noting is that, previously, most DWAs had to provide a method for saving and loading profile state information (DID, keys, etc.) so that they weren't regenerated on every app launch or page reload. To simplify the developer experience, saving/loading profile state now happens automatically in both web browser and Node.js environments. A security-focused key management solution will be incorporated in a future release that will make this capability even more secure and flexible.


✨ Simplify Decentralized Web Node Operations

Before this release, creating a record in an app's DWN, writing the record to someone else's DWN, and then querying to confirm it was written might look like the following:

Note In this example, aliceDid and bobDid are the decentralized identifiers (DIDs) of two individuals, Alice and Bob, who are sending data back and forth using Web5 JS and DWNs they control.

// Create a record in Alice's DWN
const { record: aliceRecord, status } = await web5.dwn.records.create(aliceDid, {
  author: aliceDid,
  data: "Hello Web5",
  message: {
    dataFormat: 'text/plain'
  }
});

// Alice writes the same record to Bob's DWN
const { record: bobRecord } = await web5.dwn.records.createFrom(bobDid, {
  author: aliceDid,
  record: aliceRecord
});

// Alice queries Bob's DWN to confirm the record was written
const { entries } = await web5.dwn.records.query(bobDid, {
  author: aliceDid,
  message: {
    filter: {
      recordId: aliceRecord.id,
  },
});
const firstEntry = entries[0];
console.log(aliceRecord.id === firstEntry.id) // prints "true"

Every method call, whether a create() or query(), required specifying:

  • target to direct the record creation or query to
  • author who signs and transmits the request

While it makes sense that you should have to specify the DWN to send messages to for processing when it is a DWN you don't control (e.g., Alice sending to Bob), it is rather verbose to have to repeatedly reiterate aliceDid for target and author for every record operation destined for Alice's local DWN.

With 0.7.0, Web5.connect() returns an instance of web5 with a connected did profile already active. As a result, when you call methods like web5.dwn.records.create(), the agent will assume the operation should be performed on the connected DID's DWN unless you tell it otherwise. To revisit the Alice and Bob example, the code to create a record on Alice's DWN and then write it to Bob no longer requires specifying aliceDid as the target and author: to create the record and to send the same record to Bob becomes a one-liner:

// Create a record in Alice's DWN
const { record: aliceRecord } = await web5.dwn.records.create({
  data: "Hello Web5",
  message: {
    dataFormat: 'text/plain',
  },
});

// Alice writes the same record to Bob's DWN
const { status } = await record.send(bobDid);

For queries (and every web5.dwn.*.* method), the same pattern holds: if you want to perform the operation on your DID's DWN then you don't need to specify any additional properties. Alice querying her own DWN for the record created earlier is simply:

const { records } = await web5.dwn.records.query({
  message: {
    filter: {
      recordId: aliceRecord.id,
  },
});

and to query from Bob's DWN, simply add a from: property specifying the DID you wish to query from:

// Alice queries Bob's DWN to confirm the record was written
const { records } = await web5.dwn.records.query({
  from: bobDid,
  message: {
    filter: {
      recordId: aliceRecord.id,
  },
});

The last example to highlight is likely to be less frequently used, but there may be scenarios in which you intentionally do not want to write a record to your agent's DWN until after the record was written to another entity's DWN. In that case, you can use a store: false directive to skip persisting the record. If the record is successfully written to the third-party then you can either choose to never write a local copy or send it to your own remote DWN as a final step. As mentioned, this is likely to be an unusual sequence, but we'd love to hear from anyone who has this scenario in mind for an app they are building.

// Create the record but do NOT save it to Alice's DWN
const { record: aliceRecord } = await web5.dwn.records.create({
  store: false,
  data: "Hello Web5",
  message: {
    dataFormat: 'text/plain',
  },
});

// Alice writes the record to Bob's DWN
const { status } = await record.send(bobDid);
if (status.code === 202) {
  await record.send(aliceDid);
}

Check out the DWN Methods Cheat Sheet at the end of the release notes.


✨ Enhancements to DSL for Protocol Definitions

DWeb Nodes are designed to act the substrate upon which a wide variety of decentralized applications and services can be written. With an interface like Records alone, a DWeb Node owner and those they permission can write isolated records, but that alone is not enough to support and facilitate decentralized apps.

Protocols introduces a mechanism for declaratively encoding an app or service’s underlying protocol rules, including segmentation of records, relationships between records, data-level requirements, and constraints on how participants interact with a protocol. With the DWN Protocols mechanism, one can model the underpinning protocols for a vast array of use cases in a way that enables interop-by-default between app implementations that ride on top of them.

While this is a change in the underlying DWN SDK that Web5 JS uses to interact with DWNs, the enhancements to make the protocol definition DSL (Domain-Specific Language) were made during the development of the 0.7.0 release to improve the ease with which designers and developers could both create and interpret protocol definitions.

The prior definition format was:

{
  "labels": {
    "credentialApplicatio...
Read more

Web5 JS v0.6.3

03 May 21:52
Compare
Choose a tag to compare
Web5 JS v0.6.3 Pre-release
Pre-release

This release solely exists to trigger the re-publication of the package to NPMJS.com. The 0.6.2 NPM package contained a corrupted dist/ directory.

Web5 JS v0.6.2

29 Apr 21:53
13e31e1
Compare
Choose a tag to compare
Web5 JS v0.6.2 Pre-release
Pre-release

This is primarily a hot fix release to resolve two edge case bugs introduced in the v0.6.0 release. There are no changes to any external API methods.

What's Changed

  • Adds automated JSDoc documentation generation by @frankhinek in #47
  • Fixes an issue in a Record instance with the record.data.json() and record.data.text() methods by @frankhinek in #51
  • Fixes an issue in web5.dwn.records.write() if request included data but the message was missing the dataFormat property by @frankhinek in #51
  • Adds test coverage for web5.dwn.records* methods and adds improved testing utilities by @frankhinek in #51
  • Updates README documentation by @csuwildcat in #52

Full Changelog: v0.6.0...v0.6.2

Web5 JS v0.6.0

21 Apr 15:53
3e81ed1
Compare
Choose a tag to compare
Web5 JS v0.6.0 Pre-release
Pre-release

What's Changed

Full Changelog: v0.4.0...v0.6.0