Skip to content

Commit

Permalink
Merge pull request #669 from sm-shaw/4.10_versions_changelog
Browse files Browse the repository at this point in the history
v4.10 Version numbers and Changelog
  • Loading branch information
abondvt89 authored Feb 12, 2024
2 parents 12748be + 37b09f3 commit 561eaf5
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 12 deletions.
20 changes: 20 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1107,3 +1107,23 @@ Added Use bcp as a user option #587 (#584)
Add Optional Invisible Primary Key to History for Replication in MySQL and MariaDB #586 (#580)
Update precision of w_ytd to prevent numeric field overflow #585 (#577)
Container file simplication #569

---------------------------------------------------------------------

Version 4.10 Feb 2024

Pull Requests & Issues

Increase default CLI timeouts #668 (#667)
Add support for Microsoft Entra authentication for SQL Server #665 (#662)
Add schema and consistency checks for all databases for TPROC-C and TPROC-H #664 (#659)
Add quotemeta function to escape special characters in passwords #658 (#561,#606)
Add bcp -u option for SQL Server to trust the server certificate #653 (#651)
MSSQL TPCH Create Advanced Statistics #652
MSSQLS TPCH Add Flag to Partition Orders and Lineitems #647
Add giset command to set generic dictionary settings #646 (#645)
Add check to vurun for pre-existing threads #644 (#643)
Add optional purge and write back for MariaDB TPROC-C database #642 (#640)
Docker cloudtk docker gui #641 (#631)
Fix call ash_fetch,error on Windows client running PostgreSQL metrics #638 (#637)
Alter MSSQLS TPCH Schema to use Decimal not Money #634
4 changes: 2 additions & 2 deletions agent/agent
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exit
# mpstatPlot -- visual display of mpstat idle value for all processors
# by Keith Vetter
#
# Copyright (C) 2003-2023 Steve Shaw
# Copyright (C) 2003-2024 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -40,7 +40,7 @@ namespace import comm::*
interp recursionlimit {} 3000
global agentlist S iswin
set iswin "false"
set version 4.9
set version 4.10

if {$tcl_platform(platform) == "windows"} {
package require twapi
Expand Down
4 changes: 2 additions & 2 deletions hammerdb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exec wish8.6 -file $0 ${1+"$@"}
exit
########################################################################
# HammerDB
# Copyright (C) 2003-2023 Steve Shaw
# Copyright (C) 2003-2024 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -27,7 +27,7 @@ exit
# License along with this program; If not, see <https://www.gnu.org/licenses/>
########################################################################
global hdb_version
set hdb_version "v4.9"
set hdb_version "v4.10"
set mainGeometry +10+10
set UserDefaultDir [ file dirname [ info script ] ]
::tcl::tm::path add "$UserDefaultDir/modules"
Expand Down
6 changes: 3 additions & 3 deletions hammerdbcli
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export PYTHONPATH="./lib/tclpy0.4:$PYTHONPATH"
exec ./bin/tclsh8.6 "$0" ${1+"$@"}
########################################################################
# HammerDB
# Copyright (C) 2003-2023 Steve Shaw
# Copyright (C) 2003-2024 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -27,9 +27,9 @@ exec ./bin/tclsh8.6 "$0" ${1+"$@"}
# License along with this program; If not, see <https://www.gnu.org/licenses/>
########################################################################
global hdb_version
set hdb_version "v4.9"
set hdb_version "v4.10"
puts "HammerDB CLI $hdb_version"
puts "Copyright (C) 2003-2023 Steve Shaw"
puts "Copyright (C) 2003-2024 Steve Shaw"
if { $argc eq 0 } {
set argv0 "" } else { set argv0 [ string tolower [lindex $argv 0 ]] }
if { $argv0 == "" || $argv0 == "tcl" || $argv0 == "auto" } {
Expand Down
6 changes: 3 additions & 3 deletions hammerdbws
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export PATH="./bin:$PATH"
exec ./bin/tclsh8.6 "$0" ${1+"$@"}
########################################################################
# HammerDB
# Copyright (C) 2003-2023 Steve Shaw
# Copyright (C) 2003-2024 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -30,10 +30,10 @@ set argv0 "wait"
set argv0 [ string tolower [lindex $argv 0 ]]
}
global hdb_version
set hdb_version "v4.9"
set hdb_version "v4.10"
if { $argv0 != "gui" } {
puts "HammerDB Web Service $hdb_version"
puts "Copyright (C) 2003-2023 Steve Shaw"
puts "Copyright (C) 2003-2024 Steve Shaw"
puts "Type \"help\" for a list of commands"
}
set UserDefaultDir [ file dirname [ info script ] ]
Expand Down
4 changes: 2 additions & 2 deletions src/generic/gened.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1972,14 +1972,14 @@ proc vuser_options {} {
proc about { } {
global hdb_version
tk_messageBox -title About -message "HammerDB $hdb_version
Copyright (C) 2003-2023
Copyright (C) 2003-2024
Steve Shaw\n"
}

proc license { } {
tk_messageBox -title License -message "
This copyright notice must be included in all distributions.
Copyright (C) 2003-2023 Steve Shaw
Copyright (C) 2003-2024 Steve Shaw
This program is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation,
Expand Down

0 comments on commit 561eaf5

Please sign in to comment.