Releases: conversejs/skeletor
Releases · conversejs/skeletor
v0.0.8
v0.0.7
Full Changelog: v0.0.6...v0.0.7
v0.0.6
What's Changed
- Import the default export of localforage by @ubermanu in #13
- Bump ini from 1.3.5 to 1.3.8 by @dependabot in #7
- Bump log4js from 6.3.0 to 6.4.0 by @dependabot in #17
- Bump pathval from 1.1.0 to 1.1.1 by @dependabot in #18
- Bump karma from 5.0.9 to 6.3.16 by @dependabot in #23
- Bump ansi-regex from 3.0.0 to 3.0.1 by @dependabot in #24
- Bump y18n from 4.0.0 to 4.0.3 by @dependabot in #25
- Bump ssri from 6.0.1 to 6.0.2 by @dependabot in #11
- Bump ajv from 6.10.2 to 6.12.6 by @dependabot in #20
- Bump path-parse from 1.0.6 to 1.0.7 by @dependabot in #15
- Bump elliptic from 6.5.3 to 6.5.4 by @dependabot in #9
- Bump browserslist from 4.12.0 to 4.20.2 by @dependabot in #26
New Contributors
Full Changelog: v0.0.4...v0.0.6
Version 0.0.4 - 2021-05-12
Upgrade to lit 2.0.0-rc.2
Version 0.0.3 - 2021-04-28
- Create the
ElementView
, which is like a Backbone View but extends
HTMLElement
and is therefore also a custom element or web component.
/home/kalie/src/converse.prosody/src/converse.js/src/headless/core.js: * @Property {object} converse.env._ - The instance of lodash-es used by Converse. - Allow writes to the client-side store to be batched (via mergebounce).
This is particularly useful for IndexedDB, which has a very slow writing speed.
To enabled batched writes, pass intrue
for the 3rd parameter of the
Storage
constructor.
Version 0.0.2 - 2020-09-18
Initial fork from Backbone
- Removes the dependency on jQuery
- Instead of the
render
method Views can have atoHTML
method which must return a
lit-htmlTemplateResult
. - Replaces underscore with lodash
- Imports lodash methods individually to allow for tree-shaking
- Uses the native browser API instead of lodash
- Drops support for older browsers (including IE) and uses ES6+ language features
- Splits models, views and collections into separate modules
- Adds a new
ElementView
class, which is a like a Backbone View, but doubles
as an instance of HTMLElement and can be used to register a custom element or
web-component.