Skip to content

Commit

Permalink
Auto-release 0.5.27
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brenan committed Jun 7, 2022
1 parent 85d6eaf commit eacc28d
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 0.5.27

More performance + correctness bugfixes.

- The parser has been made a little more robust to prevent major indexing issues (or at least recover from them
quickly).
- Several new strange tag variants are now supported.
- Markdown links are now properly indexed again.

Some DataviewJS performance issues should be resolved now, especially for external plugins using Dataview. This fix
does involve a slight API break w.r.t. what types are wrapped into Dataview Arrays (which provide functions like
`.where()`). Generally, only Dataview-provided implicits are wrapped in data arrays now; frontmatter and inline fields
are always now regular JS arrays - use `dv.array()` to explicitly make a data array if you want the advanced querying.

---

# 0.5.26

More small bugfixes:
Expand Down
16 changes: 16 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 0.5.27

More performance + correctness bugfixes.

- The parser has been made a little more robust to prevent major indexing issues (or at least recover from them
quickly).
- Several new strange tag variants are now supported.
- Markdown links are now properly indexed again.

Some DataviewJS performance issues should be resolved now, especially for external plugins using Dataview. This fix
does involve a slight API break w.r.t. what types are wrapped into Dataview Arrays (which provide functions like
`.where()`). Generally, only Dataview-provided implicits are wrapped in data arrays now; frontmatter and inline fields
are always now regular JS arrays - use `dv.array()` to explicitly make a data array if you want the advanced querying.

---

# 0.5.26

More small bugfixes:
Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.5.26",
"version": "0.5.27",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.5.26",
"version": "0.5.27",
"minAppVersion": "0.13.11",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dataview",
"version": "0.5.26",
"version": "0.5.27",
"description": "Advanced data views for Obsidian.md.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,6 @@
"0.5.23": "0.12.0",
"0.5.24": "0.12.0",
"0.5.25": "0.12.0",
"0.5.26": "0.12.0"
"0.5.26": "0.12.0",
"0.5.27": "0.12.0"
}

0 comments on commit eacc28d

Please sign in to comment.