Conversation
Bumps [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) from 1.9.6 to 1.9.7. - [Release notes](https://github.com/microsoft/go-mssqldb/releases) - [Changelog](https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md) - [Commits](microsoft/go-mssqldb@v1.9.6...v1.9.7) --- updated-dependencies: - dependency-name: github.com/microsoft/go-mssqldb dependency-version: 1.9.7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
ilyam8
approved these changes
Feb 28, 2026
Contributor
There was a problem hiding this comment.
No issues found across 2 files
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Architecture diagram
sequenceDiagram
participant App as Go Application
participant Hash as xxhash/v2
participant Driver as go-mssqldb (v1.9.7)
participant DB as SQL Server
Note over App,Hash: NEW: xxhash promoted to direct dependency
App->>Hash: Generate data/query hash
Hash-->>App: hash value
Note over App,DB: Connection & Authentication
App->>Driver: sql.Open() / Connect
Driver->>DB: TDS Handshake
alt NEW: EPA (Extended Protection) enabled
Driver->>DB: CHANGED: Channel Binding & Service Binding check
end
DB-->>Driver: Authenticated
Note over App,DB: Data Operations
rect rgb(23, 37, 84)
App->>Driver: BulkCopy(data)
Driver->>Driver: CHANGED: Correctly escape column names
Driver->>DB: Send TDS bulk stream
end
App->>Driver: Execute Batch Query
Driver->>Driver: CHANGED: Fix stateSep parsing in batch package
Driver->>DB: Execute SQL batch
DB-->>Driver: Return Column Metadata & Rows
loop For each column
Driver->>Driver: CHANGED: Process columnStruct via pointer (Performance)
end
Driver-->>App: sql.Rows / Resultset
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps github.com/microsoft/go-mssqldb from 1.9.6 to 1.9.7.
Release notes
Sourced from github.com/microsoft/go-mssqldb's releases.
Changelog
Sourced from github.com/microsoft/go-mssqldb's changelog.
Commits
a5d08fetest: improve code coverage with comprehensive unit tests (#323)acefb55docs: add LLM optimization files for AI code assistant discoverability (#311)95e5e8aAdd unit tests for type conversion, SQL quoting, and error handling (#321)5718c41fix: update release-please action and config (#322)c3c0300Fix handling ofstateSepin batch package. Addresses bug #247 (#248)ca98174bulkcopy: fix column escaping (#253)1c8ea5bperf: use pointer receiver for columnStruct to avoid copy (#316)f49ac9bfeat: implement automated versioning with Release Please (#310)c16a19eAdd support for EPA (#295)719c5b7Merge pull request #308 from lidavidm/v1.9.6-patchDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by cubic
Pulls in performance improvements and bug fixes in the SQL Server driver; also aligns xxhash usage with go.mod.
Written for commit af19d1e. Summary will update on new commits.