[PR #5202] [MERGED] Remove x/net/context vendor by using std package #17696

Closed
opened 2025-11-02 15:04:58 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/5202
Author: @sapk
Created: 10/27/2018
Status: Merged
Merged: 11/10/2018
Merged by: @techknowlogick

Base: masterHead: remove-net-vendor


📝 Commits (6)

  • d5a442d Update dep github.com/markbates/goth
  • ad04259 Update dep github.com/blevesearch/bleve
  • c221c9b Update dep golang.org/x/oauth2
  • f040bd0 Fix github.com/blevesearch/bleve to c74e08f039e56cef576e4336382b2a2d12d9e026
  • 7a8a07a Update dep golang.org/x/oauth2
  • 49e4717 Merge branch 'master' into remove-net-vendor

📊 Changes

40 files changed (+1489 additions, -641 deletions)

View changed files

📝 Gopkg.lock (+10 -8)
📝 Gopkg.toml (+8 -2)
📝 vendor/github.com/blevesearch/bleve/index.go (+2 -1)
📝 vendor/github.com/blevesearch/bleve/index/scorch/introducer.go (+59 -20)
📝 vendor/github.com/blevesearch/bleve/index/scorch/merge.go (+146 -53)
📝 vendor/github.com/blevesearch/bleve/index/scorch/mergeplan/merge_plan.go (+2 -2)
📝 vendor/github.com/blevesearch/bleve/index/scorch/persister.go (+207 -35)
📝 vendor/github.com/blevesearch/bleve/index/scorch/scorch.go (+30 -16)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/mem/build.go (+15 -0)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/mem/dict.go (+5 -4)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/build.go (+70 -53)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/contentcoder.go (+6 -6)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/dict.go (+32 -17)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/docvalues.go (+9 -9)
vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/enumerator.go (+124 -0)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/intcoder.go (+17 -20)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/merge.go (+273 -190)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/posting.go (+10 -4)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/read.go (+20 -8)
📝 vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/segment.go (+2 -1)

...and 20 more files

📄 Description

This PR update

  • github.com/markbates/goth
  • github.com/blevesearch/bleve
  • golang.org/x/oauth2

To remove the unneeded vendor x/net/context since Go1.7.

This PR is still in WIP since it wait for an other PR on golang.org/x/oauth2. https://github.com/golang/oauth2/pull/339


🔄 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/5202 **Author:** [@sapk](https://github.com/sapk) **Created:** 10/27/2018 **Status:** ✅ Merged **Merged:** 11/10/2018 **Merged by:** [@techknowlogick](https://github.com/techknowlogick) **Base:** `master` ← **Head:** `remove-net-vendor` --- ### 📝 Commits (6) - [`d5a442d`](https://github.com/go-gitea/gitea/commit/d5a442d34f182a2cc28eaae47553b3b32560e2a2) Update dep github.com/markbates/goth - [`ad04259`](https://github.com/go-gitea/gitea/commit/ad042599c155a51e14d8672bf966d9288e193fde) Update dep github.com/blevesearch/bleve - [`c221c9b`](https://github.com/go-gitea/gitea/commit/c221c9b8960f1c1c5ea2b0ba51e9420fed544b53) Update dep golang.org/x/oauth2 - [`f040bd0`](https://github.com/go-gitea/gitea/commit/f040bd05c6ade170db964e57065dcb4dd5d42ba0) Fix github.com/blevesearch/bleve to c74e08f039e56cef576e4336382b2a2d12d9e026 - [`7a8a07a`](https://github.com/go-gitea/gitea/commit/7a8a07abb21c64e989b8b7f34272d00cb7dc0b68) Update dep golang.org/x/oauth2 - [`49e4717`](https://github.com/go-gitea/gitea/commit/49e471752b801719ff3643699199a6716c74ffa7) Merge branch 'master' into remove-net-vendor ### 📊 Changes **40 files changed** (+1489 additions, -641 deletions) <details> <summary>View changed files</summary> 📝 `Gopkg.lock` (+10 -8) 📝 `Gopkg.toml` (+8 -2) 📝 `vendor/github.com/blevesearch/bleve/index.go` (+2 -1) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/introducer.go` (+59 -20) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/merge.go` (+146 -53) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/mergeplan/merge_plan.go` (+2 -2) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/persister.go` (+207 -35) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/scorch.go` (+30 -16) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/mem/build.go` (+15 -0) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/mem/dict.go` (+5 -4) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/build.go` (+70 -53) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/contentcoder.go` (+6 -6) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/dict.go` (+32 -17) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/docvalues.go` (+9 -9) ➕ `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/enumerator.go` (+124 -0) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/intcoder.go` (+17 -20) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/merge.go` (+273 -190) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/posting.go` (+10 -4) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/read.go` (+20 -8) 📝 `vendor/github.com/blevesearch/bleve/index/scorch/segment/zap/segment.go` (+2 -1) _...and 20 more files_ </details> ### 📄 Description This PR update - github.com/markbates/goth - github.com/blevesearch/bleve - golang.org/x/oauth2 To remove the unneeded vendor x/net/context since Go1.7. ~This PR is still in WIP since it wait for an other PR on golang.org/x/oauth2. https://github.com/golang/oauth2/pull/339~ --- <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 15:05:00 -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#17696