Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 18, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/go-sql-driver/mysql v1.6.0 -> v1.9.3 age adoption passing confidence

Release Notes

go-sql-driver/mysql (github.com/go-sql-driver/mysql)

v1.9.3

Compare Source

What's Changed

Full Changelog: go-sql-driver/mysql@v1.9.2...v1.9.3

v1.9.2

Compare Source

v1.9.2 is a re-release of v1.9.1 due to a release process issue; no changes were made to the content.

v1.9.1

Compare Source

Major Changes
Bugfixes
  • go.mod: fix go version format (#​1682)
  • Fix FormatDSN missing ConnectionAttributes (#​1619)

v1.9.0

Compare Source

Major Changes
  • Implement zlib compression. (#​1487)
  • Supported Go version is updated to Go 1.21+. (#​1639)
  • Add support for VECTOR type introduced in MySQL 9.0. (#​1609)
  • Config object can have custom dial function. (#​1527)
Bugfixes
  • Fix auth errors when username/password are too long. (#​1625)
  • Check if MySQL supports CLIENT_CONNECT_ATTRS before sending client attributes. (#​1640)
  • Fix auth switch request handling. (#​1666)
Other changes
  • Add "filename:line" prefix to log in go-mysql. Custom loggers now show it. (#​1589)
  • Improve error handling. It reduces the "busy buffer" errors. (#​1595, #​1601, #​1641)
  • Use strconv.Atoi to parse max_allowed_packet. (#​1661)
  • rejectReadOnly option now handles ER_READ_ONLY_MODE (1290) error too. (#​1660)

v1.8.1

Compare Source

What's Changed

Bugfixes:

Full Changelog: go-sql-driver/mysql@v1.8.0...v1.8.1

v1.8.0

Compare Source

What's Changed

Major changes

  • Use SET NAMES charset COLLATE collation. by @​methane in https://github.com/go-sql-driver/mysql/pull/1437

    • Older go-mysql-driver used collation_id in the handshake packet. But it caused collation mismatch in some situation.
    • If you don't specify charset nor collation, go-mysql-driver sends SET NAMES utf8mb4 for new connection. This uses server's default collation for utf8mb4.
    • If you specify charset, go-mysql-driver sends SET NAMES <charset>. This uses the server's default collation for <charset>.
    • If you specify collation and/or charset, go-mysql-driver sends SET NAMES charset COLLATE collation.
  • PathEscape dbname in DSN. by @​methane in https://github.com/go-sql-driver/mysql/pull/1432

    • This is backward incompatible in rare case. Check your DSN.
  • Drop Go 1.13-17 support by @​methane in https://github.com/go-sql-driver/mysql/pull/1420

    • Use Go 1.18+
  • Parse numbers on text protocol too by @​methane in https://github.com/go-sql-driver/mysql/pull/1452

    • When text protocol is used, go-mysql-driver passed bare []byte to database/sql for avoid unnecessary allocation and conversion.
    • If user specified *any to Scan(), database/sql passed the []byte into the target variabe.
    • This confused users because most user doesn't know when text/binary protocol used.
    • go-mysql-driver 1.8 converts integer/float values into int64/double even in text protocol. This doesn't increase allocation compared to []byte and conversion cost is negilible.
  • New options start using the Functional Option Pattern to avoid increasing technical debt in the Config object. Future version may introduce Functional Option for existing options, but not for now.

Other changes

New Contributors

Full Changelog: go-sql-driver/mysql@v1.7.1...v1.8.0

v1.7.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-sql-driver/mysql@v1.7.0...v1.7.1

v1.7.0: Version 1.7

Compare Source

Changes:

  • Drop support of Go 1.12 (#​1211)
  • Refactoring (*textRows).readRow in a more clear way (#​1230)
  • util: Reduce boundary check in escape functions. (#​1316)
  • enhancement for mysqlConn handleAuthResult (#​1250)

New Features:

  • support Is comparison on MySQLError (#​1210)
  • return unsigned in database type name when necessary (#​1238)
  • Add API to express like a --ssl-mode=PREFERRED MySQL client (#​1370)
  • Add SQLState to MySQLError (#​1321)

Bugfixes:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Contributor Author

renovate bot commented Feb 18, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.16 -> 1.21.0

@renovate renovate bot force-pushed the renovate/github.com-go-sql-driver-mysql-1.x branch from 00dd604 to 9e74958 Compare March 11, 2025 11:06
@renovate renovate bot force-pushed the renovate/github.com-go-sql-driver-mysql-1.x branch from 9e74958 to 91f8ad8 Compare March 21, 2025 02:35
@renovate renovate bot changed the title fix(deps): update module github.com/go-sql-driver/mysql to v1.9.0 fix(deps): update module github.com/go-sql-driver/mysql to v1.9.1 Mar 21, 2025
@renovate renovate bot force-pushed the renovate/github.com-go-sql-driver-mysql-1.x branch from 91f8ad8 to b8cac8f Compare April 7, 2025 13:36
@renovate renovate bot changed the title fix(deps): update module github.com/go-sql-driver/mysql to v1.9.1 fix(deps): update module github.com/go-sql-driver/mysql to v1.9.2 Apr 7, 2025
@renovate renovate bot force-pushed the renovate/github.com-go-sql-driver-mysql-1.x branch from b8cac8f to d4ffae7 Compare May 7, 2025 12:53
@stale
Copy link

stale bot commented Jun 6, 2025

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Jun 6, 2025
@renovate renovate bot force-pushed the renovate/github.com-go-sql-driver-mysql-1.x branch from d4ffae7 to 802d47e Compare June 13, 2025 10:36
@renovate renovate bot changed the title fix(deps): update module github.com/go-sql-driver/mysql to v1.9.2 fix(deps): update module github.com/go-sql-driver/mysql to v1.9.3 Jun 13, 2025
@sonarqubecloud
Copy link

@stale stale bot closed this Jun 27, 2025
@renovate
Copy link
Contributor Author

renovate bot commented Jun 27, 2025

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (v1.9.3). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

@renovate renovate bot deleted the renovate/github.com-go-sql-driver-mysql-1.x branch June 27, 2025 13:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant