From 46ae2c7ed39ce42a3b0a46be952a2b6caaecdb83 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Wed, 25 May 2022 10:11:57 +0300 Subject: [PATCH] chore: release v1.0.17 (release.sh) --- CHANGELOG.md | 9 +++++++++ example/all-in-one/go.mod | 4 ++-- example/basic-compat/go.mod | 4 ++-- example/basic-verbose/go.mod | 4 ++-- example/basic/go.mod | 4 ++-- example/basicauth/go.mod | 6 +++--- example/cors/go.mod | 4 ++-- example/error-handling/go.mod | 4 ++-- example/file-server/go.mod | 4 ++-- example/opentelemetry/go.mod | 12 ++++++------ example/opentelemetry/go.sum | 11 ++++++----- example/panic-recover/go.mod | 4 ++-- example/rate-limiting/go.mod | 4 ++-- extra/basicauth/go.mod | 2 +- extra/bunrouterotel/go.mod | 2 +- extra/reqlog/go.mod | 2 +- package.json | 2 +- version.go | 2 +- 18 files changed, 47 insertions(+), 37 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5358d9..a46556d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.0.17](https://github.com/uptrace/bunrouter/compare/v1.0.16...v1.0.17) (2022-05-25) + + +### Bug Fixes + +* fix another corner case with incorrect param resolving ([7e3d720](https://github.com/uptrace/bunrouter/commit/7e3d7205a85cb90de5b3ddee3e2737e699fe810a)) + + + ## [1.0.16](https://github.com/uptrace/bunrouter/compare/v1.0.15...v1.0.16) (2022-05-23) diff --git a/example/all-in-one/go.mod b/example/all-in-one/go.mod index 172cd19..3710aaa 100644 --- a/example/all-in-one/go.mod +++ b/example/all-in-one/go.mod @@ -9,8 +9,8 @@ replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( github.com/klauspost/compress v1.15.4 github.com/rs/cors v1.8.2 - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/basic-compat/go.mod b/example/basic-compat/go.mod index 868fb51..fd1f56d 100644 --- a/example/basic-compat/go.mod +++ b/example/basic-compat/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/basic-verbose/go.mod b/example/basic-verbose/go.mod index 1257c5e..30e6a95 100644 --- a/example/basic-verbose/go.mod +++ b/example/basic-verbose/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/basic/go.mod b/example/basic/go.mod index 3ef5f9b..b576748 100644 --- a/example/basic/go.mod +++ b/example/basic/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/basicauth/go.mod b/example/basicauth/go.mod index 8adc84f..f91d97e 100644 --- a/example/basicauth/go.mod +++ b/example/basicauth/go.mod @@ -9,9 +9,9 @@ replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog replace github.com/uptrace/bunrouter/extra/basicauth => ../../extra/basicauth require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/basicauth v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/basicauth v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/cors/go.mod b/example/cors/go.mod index d7ad0c6..a484180 100644 --- a/example/cors/go.mod +++ b/example/cors/go.mod @@ -8,8 +8,8 @@ replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( github.com/rs/cors v1.8.2 - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/error-handling/go.mod b/example/error-handling/go.mod index 6ecea55..bb25dc9 100644 --- a/example/error-handling/go.mod +++ b/example/error-handling/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/file-server/go.mod b/example/file-server/go.mod index 27d1bb4..01185a3 100644 --- a/example/file-server/go.mod +++ b/example/file-server/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/opentelemetry/go.mod b/example/opentelemetry/go.mod index 73deed9..32efdc2 100644 --- a/example/opentelemetry/go.mod +++ b/example/opentelemetry/go.mod @@ -10,9 +10,9 @@ replace github.com/uptrace/bunrouter/extra/bunrouterotel => ../../extra/bunroute require ( github.com/klauspost/compress v1.15.4 - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/bunrouterotel v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/bunrouterotel v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 github.com/uptrace/opentelemetry-go-extra/otelplay v0.1.13 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.32.0 go.opentelemetry.io/otel/trace v1.7.0 @@ -25,7 +25,7 @@ require ( github.com/go-logr/logr v1.2.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/golang/protobuf v1.5.2 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.1 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.2 // indirect github.com/mattn/go-colorable v0.1.12 // indirect github.com/mattn/go-isatty v0.0.14 // indirect github.com/uptrace/uptrace-go v1.7.1 // indirect @@ -42,10 +42,10 @@ require ( go.opentelemetry.io/otel/sdk v1.7.0 // indirect go.opentelemetry.io/otel/sdk/metric v0.30.0 // indirect go.opentelemetry.io/proto/otlp v0.16.0 // indirect - golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect + golang.org/x/net v0.0.0-20220524220425-1d687d428aca // indirect golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect golang.org/x/text v0.3.7 // indirect - google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect + google.golang.org/genproto v0.0.0-20220525015930-6ca3db687a9d // indirect google.golang.org/grpc v1.46.2 // indirect google.golang.org/protobuf v1.28.0 // indirect ) diff --git a/example/opentelemetry/go.sum b/example/opentelemetry/go.sum index a1657e3..76fb9b5 100644 --- a/example/opentelemetry/go.sum +++ b/example/opentelemetry/go.sum @@ -140,8 +140,8 @@ github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4 github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.0/go.mod h1:XnLCLFp3tjoZJszVKjfpyAK6J8sYIcQXWQxmqLWF21I= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.1 h1:Y7pyy1viWfoKMUVxmjfI5X6fVLlen75kdYjeIwl9CKc= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.1/go.mod h1:chrfS3YoLAlKTRE5cFWvCbt8uGAjshktT4PveTUpsFQ= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.2 h1:ERKrevVTnCw3Wu4I3mtR15QU3gtWy86cBo6De0jEohg= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.2/go.mod h1:chrfS3YoLAlKTRE5cFWvCbt8uGAjshktT4PveTUpsFQ= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= @@ -286,8 +286,8 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 h1:NWy5+hlRbC7HK+PmcXVUmW1IMyFce7to56IUvhUFm7Y= -golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220524220425-1d687d428aca h1:xTaFYiPROfpPhqrfTIDXj0ri1SpfueYT951s4bAuDO8= +golang.org/x/net v0.0.0-20220524220425-1d687d428aca/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -457,8 +457,9 @@ google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20220317150908-0efb43f6373e/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd h1:e0TwkXOdbnH/1x5rc5MZ/VYyiZ4v+RdVfrGMqEwT68I= google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220525015930-6ca3db687a9d h1:8BnRR08DxAQ+e2pFx64Q3Ltg/AkrrxyG1LLa1WpomyA= +google.golang.org/genproto v0.0.0-20220525015930-6ca3db687a9d/go.mod h1:yKyY4AMRwFiC8yMMNaMi+RkCnjZJt9LoWuvhXjMs+To= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= diff --git a/example/panic-recover/go.mod b/example/panic-recover/go.mod index 9204d43..c269a8a 100644 --- a/example/panic-recover/go.mod +++ b/example/panic-recover/go.mod @@ -7,8 +7,8 @@ replace github.com/uptrace/bunrouter => ../.. replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/example/rate-limiting/go.mod b/example/rate-limiting/go.mod index 1bd3e8d..6936e26 100644 --- a/example/rate-limiting/go.mod +++ b/example/rate-limiting/go.mod @@ -9,8 +9,8 @@ replace github.com/uptrace/bunrouter/extra/reqlog => ../../extra/reqlog require ( github.com/go-redis/redis/v8 v8.11.5 github.com/go-redis/redis_rate/v9 v9.1.2 - github.com/uptrace/bunrouter v1.0.16 - github.com/uptrace/bunrouter/extra/reqlog v1.0.16 + github.com/uptrace/bunrouter v1.0.17 + github.com/uptrace/bunrouter/extra/reqlog v1.0.17 ) require ( diff --git a/extra/basicauth/go.mod b/extra/basicauth/go.mod index aa39f73..d3a43ed 100644 --- a/extra/basicauth/go.mod +++ b/extra/basicauth/go.mod @@ -4,4 +4,4 @@ go 1.17 replace github.com/uptrace/bunrouter => ../.. -require github.com/uptrace/bunrouter v1.0.16 +require github.com/uptrace/bunrouter v1.0.17 diff --git a/extra/bunrouterotel/go.mod b/extra/bunrouterotel/go.mod index 6d3500e..3119043 100644 --- a/extra/bunrouterotel/go.mod +++ b/extra/bunrouterotel/go.mod @@ -5,7 +5,7 @@ go 1.17 replace github.com/uptrace/bunrouter => ../.. require ( - github.com/uptrace/bunrouter v1.0.16 + github.com/uptrace/bunrouter v1.0.17 go.opentelemetry.io/otel v1.7.0 go.opentelemetry.io/otel/trace v1.7.0 ) diff --git a/extra/reqlog/go.mod b/extra/reqlog/go.mod index cc2cc3c..84d0e59 100644 --- a/extra/reqlog/go.mod +++ b/extra/reqlog/go.mod @@ -7,7 +7,7 @@ replace github.com/uptrace/bunrouter => ../.. require ( github.com/fatih/color v1.13.0 github.com/felixge/httpsnoop v1.0.3 - github.com/uptrace/bunrouter v1.0.16 + github.com/uptrace/bunrouter v1.0.17 go.opentelemetry.io/otel/trace v1.7.0 ) diff --git a/package.json b/package.json index f2fcf0d..1595b10 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ { "name": "bunrouter", - "version": "1.0.16" + "version": "1.0.17" } diff --git a/version.go b/version.go index 2a0f616..6a4a40f 100644 --- a/version.go +++ b/version.go @@ -2,5 +2,5 @@ package bunrouter // Version is the current release version. func Version() string { - return "1.0.16" + return "1.0.17" }