diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2ded65..e899207f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,10 @@ This changelog covers all three packages, as they are (for now) updated as a who - Add `Store.parseMetaTags` to load JSON-AD objects stored in the DOM. Speeds up initial page load by allowing server to set JSON-AD objects in the initial HTML response. - Move static assets around, align build with server and fix PWA #292 -- `store.createSubject` allows creating nested paths - Add `useChildren` hook and `Store.getChildren` method - Add `Store.postToServer` method, add `endpoints`, `importJsonAdString` +- Let users register using e-mail address, improve sign-up UX. +- `store.createSubject` allows creating nested paths ## v0.35.0 diff --git a/lib/src/authentication.ts b/lib/src/authentication.ts index ce9e43ad..c6cddf32 100644 --- a/lib/src/authentication.ts +++ b/lib/src/authentication.ts @@ -9,7 +9,6 @@ import { /** Returns a JSON-AD resource of an Authentication */ export async function createAuthentication(subject: string, agent: Agent) { - console.log('create authentication', subject); const timestamp = getTimestampNow(); if (!agent.subject) { diff --git a/lib/src/websockets.ts b/lib/src/websockets.ts index 2cc694fe..00ad0971 100644 --- a/lib/src/websockets.ts +++ b/lib/src/websockets.ts @@ -23,7 +23,6 @@ export function startWebsocket(url: string, store: Store): WebSocket { } function handleOpen(store: Store, client: WebSocket) { - console.log('open client', client); // Make sure user is authenticated before sending any messages authenticate(client, store).then(() => { // Subscribe to all existing messages