Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ Changelog (English)
- Upgrade Microsoft SQL Server driver to v1.10.0
- Upgrade PostgreSQL driver to v1.12.3
- Oracle and SQLite datetime values displayed by select and edit no longer include redundant timezone suffixes. Datetime comparisons are now handled using timezone-independent string conversion. (#55, #57, #58)
- Fix: confirmation to apply changes to the DB was skipped when only NULL values were modified (#59)
- Improved readability of timestamp values shown in bind variable output during edit operations. (#60)
- Fixed missing error messages when INSERT, UPDATE, or DELETE statements failed. (#61)
- Added support for Oracle TIMESTAMP WITH TIME ZONE and TIMESTAMP WITH LOCAL TIME ZONE columns in edit mode. (#63)

v0.27.7
-------
May 15, 2026

- Fix: confirmation to apply changes to the DB was skipped when only NULL values were modified (#59)
- Fixed missing error messages when INSERT, UPDATE, or DELETE statements failed. (#61)
( This release continues to support Windows 7/8/Server 2008 R2 and Go 1.20.14.)

v0.27.6
-------
May 11, 2026
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ Changelog (Japanese)
- Upgrade Microsoft SQL Server driver to v1.10.0
- Upgrade PostgreSQL driver to v1.12.3
- SELECT や EDIT で表示される Oracle と SQLite の日時から冗長なタイムゾーンを除いた。日時の照合もタイムゾーンに依存しないよう変換した文字列で行うようにした (#55, #57, #58)
- edit 文で NULL の設定のみを変更した場合、変更反映の確認が行われない不具合を修正 (#59)
- edit 文でバインド変数出力の日時を読み易さを改善した (#60)
- INSERT/UPDATE/DELETE で発生したエラーが表示されない不具合を修正 (#61)
- edit 文で Oracle の TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE 型をサポート (#63)

v0.27.7
-------
May 15, 2026

- edit 文で NULL の設定のみを変更した場合、変更反映の確認が行われない不具合を修正 (#59)
- INSERT/UPDATE/DELETE で発生したエラーが表示されない不具合を修正 (#61)
( 本バージョンは Windows 7/8/Server 2008R2 と Go 1.20.14 をサポートします )

v0.27.6
-------
May 11, 2026
Expand Down
10 changes: 5 additions & 5 deletions sqlbless.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"version": "0.27.6",
"version": "0.27.7",
"description": "A safety-oriented terminal SQL client",
"homepage": "https://github.com/hymkor/sqlbless",
"license": "MIT License",
"architecture": {
"32bit": {
"url": "https://github.com/hymkor/sqlbless/releases/download/v0.27.6/sqlbless-v0.27.6-windows-386.zip",
"hash": "330e429512711a2d99ed760574d09c09ab1c4e8650e15a03553dd6f42934c35c"
"url": "https://github.com/hymkor/sqlbless/releases/download/v0.27.7/sqlbless-v0.27.7-windows-386.zip",
"hash": "44b186e21ef74869f870f67f2b236d389c9e833c2aae55d308f8771b52fc30d6"
},
"64bit": {
"url": "https://github.com/hymkor/sqlbless/releases/download/v0.27.6/sqlbless-v0.27.6-windows-amd64.zip",
"hash": "1fe213faf1baed4f716f00bb7f76ccec05bed1303c501f1dca5746cde17bae9e"
"url": "https://github.com/hymkor/sqlbless/releases/download/v0.27.7/sqlbless-v0.27.7-windows-amd64.zip",
"hash": "da23cf3a21bf613520ce4f3beaccc17534e2a73e4e7bd7c530076365d0f25c89"
}
},
"bin": "sqlbless.exe",
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package sqlbless

var version = "v0.27.6-goinstall"
var version = "v0.27.7-goinstall"
Loading