Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update module monaco-io/request to v1.0.14 #39

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

gary-kim-bot
Copy link
Collaborator

@gary-kim-bot gary-kim-bot commented Jan 17, 2021

This PR contains the following updates:

Package Type Update Change
github.com/monaco-io/request require patch v1.0.5 -> v1.0.14

Release Notes

monaco-io/request

v1.0.14

Compare Source

v1.0.13

Compare Source

image

v1.0.12

Compare Source

v1.0.11

Compare Source

v1.0.10

Compare Source

v1.0.9

Compare Source

v1.0.8

Compare Source

v1.0.7

Compare Source

// Client Method
/*
     Method         = "OPTIONS"                ; Section 9.2
                    | "GET"                    ; Section 9.3
                    | "HEAD"                   ; Section 9.4
                    | "POST"                   ; Section 9.5
                    | "PUT"                    ; Section 9.6
                    | "DELETE"                 ; Section 9.7
                    | "TRACE"                  ; Section 9.8
                    | "CONNECT"                ; Section 9.9
                    | extension-method
   extension-method = token
     token          = 1*<any CHAR except CTLs or separators>
*/
type Client struct {
	// URL http request url like: https://www.google.com
	URL string

	// Method http method GET/POST/POST/DELETE ...
	Method string

	// Header http header
	Header map[string]string

	// Query params on http url
	Query map[string]string

	// JSON body as json string/bytes/struct
	JSON interface{}

	// XML body as xml string/bytes/struct
	XML interface{}

	// XML body as string
	String string

	// WWWForm TODO
	WWWForm interface{}

	// BasicAuth http basic auth with username and password
	BasicAuth BasicAuth

	// CustomerAuth add Authorization xxx to header
	CustomerAuth string

	// CustomerAuth add Authorization bearer xxx to header
	Bearer string

	// Timeout http request timeout
	Timeout time.Duration

	// TLSTimeout tls timeout
	TLSTimeout time.Duration

	// DialTimeout dial timeout
	DialTimeout time.Duration

	// ProxyURL proxy url
	ProxyURL string

	// Define the proxy function to be used during the transport
	ProxyServers map[string]string

	// Cookies original http cookies
	Cookies []*http.Cookie

	// CookiesMap add cookies as map
	CookiesMap map[string]string

	// TLSConfig tls config on transport
	TLSConfig *tls.Config

	// Transport http transport
	Transport *http.Transport
}

v1.0.6

Compare Source


Renovate configuration

馃搮 Schedule: 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

@gary-kim
Copy link
Owner

gary-kim commented Jan 20, 2021

There were some really big changes to the API in this update. Maybe we should consider dropping monaco-io/request and just using http.Client?

@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from 2c1cedd to a5c92dd Compare February 6, 2021 09:37
@gary-kim-bot gary-kim-bot changed the title chore(deps): update module monaco-io/request to v1.0.7 chore(deps): update module monaco-io/request to v1.0.8 Feb 6, 2021
@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from a5c92dd to fcf9465 Compare February 9, 2021 07:37
@gary-kim-bot gary-kim-bot changed the title chore(deps): update module monaco-io/request to v1.0.8 chore(deps): update module monaco-io/request to v1.0.9 Feb 9, 2021
@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from fcf9465 to c0cfa21 Compare March 15, 2021 09:37
@gary-kim-bot gary-kim-bot changed the title chore(deps): update module monaco-io/request to v1.0.9 chore(deps): update module monaco-io/request to v1.0.10 Mar 15, 2021
@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from c0cfa21 to 44e87c2 Compare March 15, 2021 12:37
@gary-kim-bot gary-kim-bot changed the title chore(deps): update module monaco-io/request to v1.0.10 chore(deps): update module monaco-io/request to v1.0.11 Mar 15, 2021
@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from 44e87c2 to 881db97 Compare March 16, 2021 07:37
@gary-kim-bot gary-kim-bot changed the title chore(deps): update module monaco-io/request to v1.0.11 chore(deps): update module monaco-io/request to v1.0.12 Mar 16, 2021
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from 881db97 to bbbdadf Compare May 17, 2021 17:27
@garykim-dev-renovate garykim-dev-renovate bot changed the title chore(deps): update module monaco-io/request to v1.0.12 chore(deps): update module monaco-io/request to v1.0.13 May 17, 2021
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/github.com-monaco-io-request-1.x branch 3 times, most recently from 139b4b2 to 83f8fb0 Compare June 11, 2021 10:00
@garykim-dev-renovate garykim-dev-renovate bot changed the title chore(deps): update module monaco-io/request to v1.0.13 chore(deps): update module monaco-io/request to v1.0.14 Jun 11, 2021
@gary-kim-bot gary-kim-bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from 83f8fb0 to 3524972 Compare October 3, 2021 03:01
Signed-off-by: Gary Kim Bot <bot@garykim.dev>
@garykim-dev-renovate garykim-dev-renovate bot force-pushed the renovate/github.com-monaco-io-request-1.x branch from 3524972 to 3e56ae2 Compare July 2, 2023 14:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants