This repository was archived by the owner on Nov 23, 2022. It is now read-only.
Releases: dstack-js/dstack
Releases · dstack-js/dstack
v0.2.12 (2022-01-27)
v0.2.11 (2022-01-25)
0.2.11 (2022-01-25)
Features
- lib: add pubsub proof-of-concept (9c722bb)
Bug Fixes
- relay: fix readme (e408f75)
Full Changelog: v0.2.10...v0.2.11
v0.2.10 (2022-01-23)
DStack moved to IPFS
Changelog
Full Changelog: v0.0.7...v0.2.10
v0.0.7
[Preview] v0.0.6-next.0 | Geo module, node.put
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
- Preview of file uploads on graph nodes