Release 0.40.0 (#201)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-04-12 10:46:01 +01:00 committed by GitHub
parent 33e19df3db
commit 6d4dcc5ece
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 122 additions and 43 deletions

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
fixing issue with select keywords outside SQL queries

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
disabling logs in the console on production builds

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
JSONL and NDJSON support

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
fixed syntax highlighting in callouts

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
adding support for TAGS macro

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
underlying engine updated to wa-sqlite

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
Adding tasks statuses support

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
fixing issue with config table not found on first run

102
.changeset/status.json Normal file
View file

@ -0,0 +1,102 @@
{
"changesets": [
{
"releases": [
{
"name": "sqlseal",
"type": "patch"
}
],
"summary": "fixing issue with select keywords outside SQL queries",
"id": "bright-weeks-chew"
},
{
"releases": [
{
"name": "sqlseal",
"type": "patch"
}
],
"summary": "disabling logs in the console on production builds",
"id": "dark-signs-show"
},
{
"releases": [
{
"name": "sqlseal",
"type": "minor"
}
],
"summary": "JSONL and NDJSON support",
"id": "evil-loops-feel"
},
{
"releases": [
{
"name": "sqlseal",
"type": "patch"
}
],
"summary": "fixed syntax highlighting in callouts",
"id": "gentle-ducks-peel"
},
{
"releases": [
{
"name": "sqlseal",
"type": "minor"
}
],
"summary": "adding support for TAGS macro",
"id": "giant-times-roll"
},
{
"releases": [
{
"name": "sqlseal",
"type": "minor"
}
],
"summary": "underlying engine updated to wa-sqlite",
"id": "old-wombats-slide"
},
{
"releases": [
{
"name": "sqlseal",
"type": "minor"
}
],
"summary": "Adding tasks statuses support",
"id": "orange-showers-argue"
},
{
"releases": [
{
"name": "sqlseal",
"type": "patch"
}
],
"summary": "fixing issue with config table not found on first run",
"id": "poor-foxes-fall"
}
],
"releases": [
{
"name": "sqlseal",
"type": "minor",
"oldVersion": "0.39.1",
"changesets": [
"bright-weeks-chew",
"dark-signs-show",
"evil-loops-feel",
"gentle-ducks-peel",
"giant-times-roll",
"old-wombats-slide",
"orange-showers-argue",
"poor-foxes-fall"
],
"newVersion": "0.40.0"
}
]
}

View file

@ -1,5 +1,21 @@
# Releases
## 0.40.0
### Minor Changes
- fc24a4f: JSONL and NDJSON support
- c038366: adding support for TAGS macro
- bf085fe: underlying engine updated to wa-sqlite
- c856713: Adding tasks statuses support
### Patch Changes
- 03dfcd7: fixing issue with select keywords outside SQL queries
- b852977: disabling logs in the console on production builds
- d9cb4d5: fixed syntax highlighting in callouts
- 33e19df: fixing issue with config table not found on first run
## 0.39.1
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"id": "sqlseal",
"name": "SQLSeal",
"version": "0.39.1",
"version": "0.40.0",
"minAppVersion": "0.15.0",
"description": "Use SQL in your notes to query your vault files and CSV content.",
"author": "hypersphere",

View file

@ -1,6 +1,6 @@
{
"name": "sqlseal",
"version": "0.39.1",
"version": "0.40.0",
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
"main": "main.js",
"scripts": {

View file

@ -67,5 +67,6 @@
"0.37.1": "0.15.0",
"0.38.0": "0.15.0",
"0.39.0": "0.15.0",
"0.39.1": "0.15.0"
"0.39.1": "0.15.0",
"0.40.0": "0.15.0"
}