Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Releases: dstack-js/dstack

v0.2.12 (2022-01-27)

27 Jan 14:18

Choose a tag to compare

v0.2.12 (2022-01-27)

Features

v0.2.11 (2022-01-25)

25 Jan 18:59

Choose a tag to compare

0.2.11 (2022-01-25)

Features

  • lib: add pubsub proof-of-concept (9c722bb)

Bug Fixes

Full Changelog: v0.2.10...v0.2.11

v0.2.10 (2022-01-23)

23 Jan 17:11

Choose a tag to compare

DStack moved to IPFS

Changelog
Full Changelog: v0.0.7...v0.2.10

v0.0.7

05 Dec 09:11

Choose a tag to compare

v0.0.7

[Preview] v0.0.6-next.0 | Geo module, node.put

11 Oct 18:25

Choose a tag to compare

Changes

Added Geo module

import { createStack, Stack } from '@dstack-js/lib'
import { encode } from '@dstack-js/geo'

const stack = await createStack({ app: 'test' })
const map = await stack.node('map')

const [p1, p2] = await Promise.all([
  encode(stack, map, 50.450_678, 30.522_395, 7),
  encode(stack, map, 50.440_239, 30.520_194, 7)
])

await p1.put('Ukraine, Kyiv, Maydan')
await p2.put('Ukraine, Kyiv, Arena')

expect(p1.path).toBe('map.$geo.u.8.v.x.n.8.3')
expect(p2.path).toBe('map.$geo.u.8.v.w.y.w.2')

const map = await stack.node('map')

//                                   lat, lng, precision
const box = await encode(stack, map, 50.45, 30.52, 3)

Added put on node

import { createStack, Stack } from '@dstack-js/lib'

const stack = await createStack({ app: 'test' })
const node = await stack.node('hello')

await node.put('World')

Full Changelog: v0.0.5...v0.0.6-next.0

v0.0.5 | Files PoC

22 Sep 20:36

Choose a tag to compare

v0.0.5 | Files PoC Pre-release
Pre-release
  • Preview of file uploads on graph nodes

v0.0.4

21 Sep 20:59

Choose a tag to compare

v0.0.4 Pre-release
Pre-release

Changelog

  • added the possibility to store reactive distributed graph database nodes on Gun.js