Skip to content

Commit

Permalink
Remove console log and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Feb 27, 2023
1 parent 48cd696 commit b4a2b18
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion lib/src/authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 0 additions & 1 deletion lib/src/websockets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b4a2b18

Please sign in to comment.