Skip to content

Releases: wanadev/obsidian-api

Obsidian API v2.1.0

01 Oct 13:22
15df0da
Compare
Choose a tag to compare
  • feat: Allow to set custom attributes on the <iframe> HTML element (@flozz, #60)

Obsidian API v2.0.0

31 Jul 09:09
6578169
Compare
Choose a tag to compare
  • feat: Removed dependency to the uuid library. Use browser's secure implementation if available, or a fallback one else (@flozz)

  • feat: Reduced dependency to lodash (@flozz)

    • Replaced calls to lodash.includes() by calls to native (ES2015) String.prototype.includes()
    • Replaced calls to lodash.toArray() by calls to native (ES2015) Array.from()
    • Replaced calls to lodash.keys() by calls to native (ES5) Object.keys()
    • Replaced calls to lodash.tail() by calls to native Array.prototype.slice(1)
    • Replaced calls to lodash.last() by direct acces to array index
  • !misc: Dropped support for non-ES2015+ browsers; you now have to use polyfill if you need to support old browsers (@flozz)

Obsidian API v1.0.9

12 May 09:19
d0761fd
Compare
Choose a tag to compare
  • Updated dependencies (@jbghoul, #31)
  • Replaced deprecated mocha-phantomjs by mocha-headless-chrome to run tests (@jbghoul, #31)