Releases: blacksmithgu/obsidian-dataview
Releases · blacksmithgu/obsidian-dataview
0.5.57
0.5.57
Maintenance patch which bumps many internal dependency versions and which includes approximately ~20 community-contributed PRs which add some new functions, fix some Dataview interactions with properties, and more!
0.5.56
0.5.56
- Includes some performance fixes on recent versions of Obsidian 1.3+ due to some API changes. Thanks @kometenstaub.
- Documentation cleanups and improvements by @mocsa, @protofarer, @seanlzx, and @somidad.
- Adds the new
flat(array)
method for flattening nested arrays, as well as parsing dates using arbitrary formats using
date(text, "format")
. Thanks @holroy!
0.5.55
0.5.55
- Durations are now internationalized using luxon's new internationalization support.
- Dataviews should now properly render inside Canvas and some other contexts. Thanks @GamerGirlandCo!
0.5.54
0.5.53
0.5.53
- Fix some documentation issues causing docs to not be updated.
0.5.52
0.5.52
Substantial documentation improvements thanks to @s-blu and @AB1908!
- For people concerned about dataviewjs code execution from copy-pasting, @eyuelt has made it possible to change the
dataviewjs codeblock prefix. - @sohanglal has added some documentation for
task.visual
for changing the visual text of a task. - @Chouffy and @Daryl-Horton have fixed some bad documentation links!
- @vrtmrz swapped the regex used for parsing tags to better match Obsidian's own parser.
- @alexfertel has added
regextest
, which allows for matching parts of a string instead of the whole thing. - @iamrecursion has added more metadata to file links, so they now include section metadata. This may cause some slight
visual changes in link views.
0.5.51
0.5.51 (Beta)
- Allow disabling regular Dataview inline queries via configuration option.
0.5.50
0.5.50 (Beta)
- Expose dataview EXPRESSION and QUERY parsing to the dataview npm plugin, so others can parse dataview ASTs.
- Fix documentation issue with
join
.
0.5.49
0.5.49 (Beta)
- Add the
average
function to compute averages of lists (average([list of things])
). - Added documentation for
average
,min
,max
,minby
, andmaxby
functions. - Fixed the broken
nonnull
function and documented it.
0.5.48
0.5.48 (Beta)
We're back to more regular beta releases while I trial out new functionality!
- Fixed broken list behavior for
dv.markdownTaskList
. - @GamerGirlandCo: Better handling of block IDs when checking off tasks!
- @s-blu and @AB1908: Lots of big documentation upgrades! Nice!
- @leoccyao: More block ID task checking fixes. Should work after this one.
- Add expression/query parsing to the dataview NPM package.
- @charleshan: Fix a missing header level in the dataview
dv.header
example.