aboutsummaryrefslogtreecommitdiff
path: root/uri.go
AgeCommit message (Expand)AuthorFilesLines
2023-12-13chore: Add missing dots at the end of comments (#1677)Gravatar Oleksandr Redko 1-3/+3
2023-11-24chore: Use 'any' instead of 'interface{}' (#1666)Gravatar Oleksandr Redko 1-1/+1
2023-08-29Enable gocritic linter; fix lint issues (#1612)Gravatar Oleksandr Redko 1-1/+2
2023-06-13Enable gofumpt linter; format code `gofumpt -w .` (#1576)v1.48.0Gravatar Oleksandr Redko 1-3/+1
2023-02-11docs: replace links to golang.org with go.dev (#1489)Gravatar Oleksandr Redko 1-1/+1
2023-02-11Refactor golangci-lint config and remove redundant nolints (#1486)Gravatar Oleksandr Redko 1-1/+1
2023-02-10Rename unexported funcs, vars to match common Go (#1488)Gravatar Oleksandr Redko 1-2/+2
2023-02-01fix: modify normalizePath (#1478)Gravatar kinggo 1-2/+2
2022-08-29Chore (#1365)Gravatar tyltr 1-9/+3
2022-08-14Add Go 1.19 Support (#1355)v1.39.0Gravatar Aoang 1-19/+19
2022-04-01Use %v for errors and %q for strings (#1262)v1.35.0Gravatar Erik Dubbelboer 1-1/+1
2022-02-28Add windows support to normalizePathGravatar Erik Dubbelboer 1-0/+55
2022-01-27remove redundant code (#1202)v1.33.0Gravatar tyltr 1-8/+8
2021-11-08uri: isHttps() and isHttp() (#1150)Gravatar Sergey Ponomarev 1-3/+10
2021-10-03URI.Parse should never change it's inputGravatar Erik Dubbelboer 1-3/+8
2021-10-01Improve return value reusability documentationGravatar Erik Dubbelboer 1-5/+17
2021-10-01Properly parse URIGravatar Erik Dubbelboer 1-0/+221
2021-08-28Fix []byte reuse bugGravatar Erik Dubbelboer 1-1/+1
2021-03-20Use bytes.IndexByte instead of bytes.Index for single byte lookup (#999)Gravatar Mike Faraponov 1-2/+2
2021-01-02Use QueryString while constructing RequestURI instead of QueryArgs if parsedQ...v1.19.0Gravatar anshul-jain-aws 1-1/+1
2020-08-21Git commit fix URI parse for urls like host.dm?some/path/to/file (#866)Gravatar Vitali Pikulik 1-3/+7
2020-06-06Try TravisCI Windows (#828)Gravatar Erik Dubbelboer 1-1/+2
2020-05-31URI.Parse now returns an errorGravatar Erik Dubbelboer 1-9/+22
2020-05-25Fix memory reusage bug with authGravatar Erik Dubbelboer 1-4/+4
2020-04-25Don't allow ASCII control character in URLs (#790)Gravatar Erik Dubbelboer 1-0/+15
2020-02-28Don't send the fragment/hash/# part of a URL to the serverGravatar Erik Dubbelboer 1-5/+6
2019-12-01Fix parsing relative URLs starting with // (#702)Gravatar Erik Dubbelboer 1-3/+8
2019-11-16Run golangci-lint using a Github ActionGravatar Erik Dubbelboer 1-1/+1
2019-10-19Fix race condition in tests, fix URI bugGravatar Erik Dubbelboer 1-20/+5
2019-09-18Added option to disable path normalization (#649)Gravatar Daniel Firsht 1-1/+17
2019-08-18Add support for user:pass in URLs (#614)Gravatar Erik Dubbelboer 1-0/+51
2018-08-13Merge pull request #303 from chebyrash/masterGravatar Kirill Danshin 1-1/+1
2017-11-08Parse bogus uris with missing slash after hostname like `http://foobar.com?ba...Gravatar Aliaksandr Valialkin 1-0/+5
2017-10-08A lot of typo fixesGravatar xPushkin 1-1/+1
2017-07-21ioptimized decodeArgAppend a bitGravatar Aliaksandr Valialkin 1-1/+1
2017-01-09Updated tests and documentation for URI.Parse and URI.Update* regarding uris ...Gravatar Aliaksandr Valialkin 1-0/+9
2016-08-17Allow redirecting to urls without scheme, i.e. //google.com/foo.barGravatar Aliaksandr Valialkin 1-9/+21
2016-08-17Propagate 'https' scheme to request URI for TLS connectionsGravatar Aliaksandr Valialkin 1-1/+4
2016-06-07Properly handle hashes and single dots in URI.Update (see https://github.com/...Gravatar Aliaksandr Valialkin 1-26/+31
2016-05-04Issue #86: Fixed leading slash on WindowsGravatar Aleksandr Razumov 1-6/+1
2016-03-06Moved empty noCopy struct to the top of container structs. See @stemar94 's c...Gravatar Aliaksandr Valialkin 1-2/+2
2016-03-04Do not expose noCopy.LockGravatar Aliaksandr Valialkin 1-1/+1
2016-03-04Embed noCopy struct into structs, which mustn't be copiedGravatar Aliaksandr Valialkin 1-0/+2
2016-02-19Properly copy query arguments in URI.CopyToGravatar Aliaksandr Valialkin 1-1/+2
2016-02-19Allow updating request's RequestURI and Host header via Request.URI()Gravatar Aliaksandr Valialkin 1-1/+1
2016-02-19Added AcquireArgs and ReleaseArgs helper functionsGravatar Aliaksandr Valialkin 1-0/+1
2016-02-17Consistency fix: refer to URI as u instead of x in URI methodsGravatar Aliaksandr Valialkin 1-135/+135
2016-02-17Added AcquireURI and ReleaseURIGravatar Aliaksandr Valialkin 1-0/+23
2016-02-17Issue #53: Clarify that the following instances mustn't be used from concurre...Gravatar Aliaksandr Valialkin 1-0/+2
2016-02-09Issue #48: added more tests and code prettifying after PR #50Gravatar Aliaksandr Valialkin 1-11/+8