release: Release Next (#175)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2025-08-13 12:32:59 +01:00 committed by GitHub
parent 1fec2bbd47
commit 10eb87803c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 22 additions and 53 deletions

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
adding global tables support - you can now define table that will be available in all your files

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
added ability to hide columns from CSV files

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
Added SQLSeal Explorer that makes it easy to work on new queries

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
added interactive visualiser for SQL schema of external databases

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
tables and charts now render better on canvas and work when you use external files too

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
csv and json views are now only registered when not colliding with other existing plugins

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
reworked JSONViewer to allow for visual JSONPath preview

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
reworking plugin internals to organise code into modules

View file

@ -1,5 +0,0 @@
---
"sqlseal": minor
---
sqlite databases can now be previewed using explorer view

View file

@ -1,5 +0,0 @@
---
"sqlseal": patch
---
highlighting code in the copy modal

View file

@ -1,5 +1,23 @@
# Releases
## 0.38.0
### Minor Changes
- 2bfd206: adding global tables support - you can now define table that will be available in all your files
- 7095130: added ability to hide columns from CSV files
- 531d486: Added SQLSeal Explorer that makes it easy to work on new queries
- 403e9f3: added interactive visualiser for SQL schema of external databases
- 285684d: tables and charts now render better on canvas and work when you use external files too
- 1bf5e8e: reworked JSONViewer to allow for visual JSONPath preview
- 285684d: reworking plugin internals to organise code into modules
- 531d486: sqlite databases can now be previewed using explorer view
### Patch Changes
- 285684d: csv and json views are now only registered when not colliding with other existing plugins
- 531d486: highlighting code in the copy modal
## 0.37.1
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"id": "sqlseal",
"name": "SQLSeal",
"version": "0.37.1",
"version": "0.38.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.37.1",
"version": "0.38.0",
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
"main": "main.js",
"scripts": {

View file

@ -64,5 +64,6 @@
"0.35.0": "0.15.0",
"0.36.0": "0.15.0",
"0.37.0": "0.15.0",
"0.37.1": "0.15.0"
"0.37.1": "0.15.0",
"0.38.0": "0.15.0"
}