CHANGELOG
v1.0.0
ESM Only & Node v18+
- Magnetar is now ESM only. This means you need to use
import
instead of require
.
- Magnetar now requires Node v18+.
@magnetarjs/plugin-vue2
was removed.
local
store plugin now needs to be called cache
Before:
import { CreatePlugin as PluginVue3 } from '@magnetarjs/plugin-vue3'
const local = PluginVue3({ generateRandomId })
const remote = ...
export const magnetar = Magnetar({
localStoreName: 'local',
stores: { local, remote },
executionOrder: {
read: ['local', 'remote'],
write: ['local', 'remote'],
After:
import { CreatePlugin as PluginVue3 } from '@magnetarjs/plugin-vue3'
const cache = PluginVue3({ generateRandomId })
const remote = ...
export const magnetar = Magnetar({
stores: { cache, remote },
executionOrder: {
read: ['cache', 'remote'],
write: ['cache', 'remote'],
v0.4.0
breaking changes
plugin-firestore
Now it's possible to use firebase v9 modular syntax:
Before:
import firebase from 'firebase/app'
import 'firebase/firestore'
firebase.initializeApp({
})
import { CreatePlugin as PluginFirestore } from '@magnetarjs/plugin-firestore'
const remote = PluginFirestore({ firebaseInstance: firebase })
After:
import { initializeApp } from 'firebase/app'
import { getFirestore } from 'firebase/firestore'
const firebaseApp = initializeApp({
})
const db = getFirestore(firebaseApp)
import { CreatePlugin as PluginFirestore } from '@magnetarjs/plugin-firestore'
const remote = PluginFirestore({ db })
v0.3.0
highly improved the way streams can be closed. MUCH easier to use syntax now!!
breaking changes
stream
Before:
magnetar.collection('my-collection').stream()
const closeStream = magnetar.collection('my-collection').openStreams.get(undefined)
closeStream()
After:
magnetar.collection('my-collection').stream()
magnetar.collection('my-collection').closeStream()
See the new docs at: https://magnetar.cycraft.co/docs#stream-realtime-updates