[PR #4161] [MERGED] Dep upgrade mysql lib #17265

Closed
opened 2025-11-02 12:31:12 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/4161
Author: @techknowlogick
Created: 6/6/2018
Status: Merged
Merged: 7/3/2018
Merged by: @techknowlogick

Base: masterHead: dep-upgrade-xorm


📝 Commits (7)

  • 8178ea3 update xorm dep
  • 8475cb0 update github.com/go-sql-driver/mysql
  • 1b6c15a Merge branch 'master' into dep-upgrade-xorm
  • 1f2b60d Merge branch 'master' into dep-upgrade-xorm
  • f4f9fad Merge branch 'master' into dep-upgrade-xorm
  • 8d4a2e1 update gopkg file to add sql dep
  • a689c38 Merge branch 'master' into dep-upgrade-xorm

📊 Changes

22 files changed (+1806 additions, -607 deletions)

View changed files

📝 Gopkg.lock (+2 -2)
📝 Gopkg.toml (+4 -0)
📝 vendor/github.com/go-sql-driver/mysql/AUTHORS (+34 -0)
📝 vendor/github.com/go-sql-driver/mysql/appengine.go (+1 -1)
vendor/github.com/go-sql-driver/mysql/auth.go (+420 -0)
📝 vendor/github.com/go-sql-driver/mysql/buffer.go (+6 -6)
📝 vendor/github.com/go-sql-driver/mysql/collations.go (+1 -0)
📝 vendor/github.com/go-sql-driver/mysql/connection.go (+116 -32)
vendor/github.com/go-sql-driver/mysql/connection_go18.go (+208 -0)
📝 vendor/github.com/go-sql-driver/mysql/const.go (+18 -7)
📝 vendor/github.com/go-sql-driver/mysql/driver.go (+37 -44)
📝 vendor/github.com/go-sql-driver/mysql/dsn.go (+111 -48)
📝 vendor/github.com/go-sql-driver/mysql/errors.go (+6 -73)
vendor/github.com/go-sql-driver/mysql/fields.go (+194 -0)
📝 vendor/github.com/go-sql-driver/mysql/infile.go (+3 -3)
📝 vendor/github.com/go-sql-driver/mysql/packets.go (+229 -200)
📝 vendor/github.com/go-sql-driver/mysql/rows.go (+139 -35)
📝 vendor/github.com/go-sql-driver/mysql/statement.go (+93 -32)
📝 vendor/github.com/go-sql-driver/mysql/transaction.go (+2 -2)
📝 vendor/github.com/go-sql-driver/mysql/utils.go (+92 -122)

...and 2 more files

📄 Description

update github.com/go-sql-driver/mysql to most recent release (fixes #3876)
Related: https://github.com/go-xorm/xorm/pull/1000


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/4161 **Author:** [@techknowlogick](https://github.com/techknowlogick) **Created:** 6/6/2018 **Status:** ✅ Merged **Merged:** 7/3/2018 **Merged by:** [@techknowlogick](https://github.com/techknowlogick) **Base:** `master` ← **Head:** `dep-upgrade-xorm` --- ### 📝 Commits (7) - [`8178ea3`](https://github.com/go-gitea/gitea/commit/8178ea34e64d01d5de1f1640144410d59284b9ff) update xorm dep - [`8475cb0`](https://github.com/go-gitea/gitea/commit/8475cb0a423147d493bfaf5429959d8c69663547) update github.com/go-sql-driver/mysql - [`1b6c15a`](https://github.com/go-gitea/gitea/commit/1b6c15a64e8e1b28de09d24664a922beb9f83bfb) Merge branch 'master' into dep-upgrade-xorm - [`1f2b60d`](https://github.com/go-gitea/gitea/commit/1f2b60d9a4be1af922e085b22ecc79f3bc8bb660) Merge branch 'master' into dep-upgrade-xorm - [`f4f9fad`](https://github.com/go-gitea/gitea/commit/f4f9fad97034d49ac3ff019b1a3574c93a02bd5d) Merge branch 'master' into dep-upgrade-xorm - [`8d4a2e1`](https://github.com/go-gitea/gitea/commit/8d4a2e1fe27489b78bf85da7ed29e0cd099f1264) update gopkg file to add sql dep - [`a689c38`](https://github.com/go-gitea/gitea/commit/a689c38cf7093704b3312e8f8132b1f63c21634f) Merge branch 'master' into dep-upgrade-xorm ### 📊 Changes **22 files changed** (+1806 additions, -607 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+2 -2) 📝 `Gopkg.toml` (+4 -0) 📝 `vendor/github.com/go-sql-driver/mysql/AUTHORS` (+34 -0) 📝 `vendor/github.com/go-sql-driver/mysql/appengine.go` (+1 -1) ➕ `vendor/github.com/go-sql-driver/mysql/auth.go` (+420 -0) 📝 `vendor/github.com/go-sql-driver/mysql/buffer.go` (+6 -6) 📝 `vendor/github.com/go-sql-driver/mysql/collations.go` (+1 -0) 📝 `vendor/github.com/go-sql-driver/mysql/connection.go` (+116 -32) ➕ `vendor/github.com/go-sql-driver/mysql/connection_go18.go` (+208 -0) 📝 `vendor/github.com/go-sql-driver/mysql/const.go` (+18 -7) 📝 `vendor/github.com/go-sql-driver/mysql/driver.go` (+37 -44) 📝 `vendor/github.com/go-sql-driver/mysql/dsn.go` (+111 -48) 📝 `vendor/github.com/go-sql-driver/mysql/errors.go` (+6 -73) ➕ `vendor/github.com/go-sql-driver/mysql/fields.go` (+194 -0) 📝 `vendor/github.com/go-sql-driver/mysql/infile.go` (+3 -3) 📝 `vendor/github.com/go-sql-driver/mysql/packets.go` (+229 -200) 📝 `vendor/github.com/go-sql-driver/mysql/rows.go` (+139 -35) 📝 `vendor/github.com/go-sql-driver/mysql/statement.go` (+93 -32) 📝 `vendor/github.com/go-sql-driver/mysql/transaction.go` (+2 -2) 📝 `vendor/github.com/go-sql-driver/mysql/utils.go` (+92 -122) _...and 2 more files_ </details> ### 📄 Description update github.com/go-sql-driver/mysql to most recent release (fixes #3876) ~Related: https://github.com/go-xorm/xorm/pull/1000~ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 12:31:12 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#17265