mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
release: Release Next
This commit is contained in:
parent
1fec2bbd47
commit
33e11e6bbe
14 changed files with 22 additions and 53 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
adding global tables support - you can now define table that will be available in all your files
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
added ability to hide columns from CSV files
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
Added SQLSeal Explorer that makes it easy to work on new queries
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
added interactive visualiser for SQL schema of external databases
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
tables and charts now render better on canvas and work when you use external files too
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": patch
|
||||
---
|
||||
|
||||
csv and json views are now only registered when not colliding with other existing plugins
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
reworked JSONViewer to allow for visual JSONPath preview
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
reworking plugin internals to organise code into modules
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": minor
|
||||
---
|
||||
|
||||
sqlite databases can now be previewed using explorer view
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"sqlseal": patch
|
||||
---
|
||||
|
||||
highlighting code in the copy modal
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in a new issue