diff --git a/CHANGELOG.md b/CHANGELOG.md index 50aea68..dfaacdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,9 +13,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [1.8.1] - 2024-07-09 + +### Changed + +- Fixed outdated reference to std uri template. + ## [1.8.0] - 2024-07-09 -- Remove native support for date in `std-uritemplate` [#1.8.0](https://github.com/microsoft/kiota-abstractions-go/issues/183) +### Changed + +- Removed native support for date in `std-uritemplate` [#1.8.0](https://github.com/microsoft/kiota-abstractions-go/issues/183) ### Added diff --git a/go.mod b/go.mod index 7a42830..f36602b 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/cjlapao/common-go v0.0.39 github.com/google/uuid v1.6.0 - github.com/std-uritemplate/std-uritemplate/go v1.0.6 + github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.1 github.com/stretchr/testify v1.9.0 go.opentelemetry.io/otel v1.24.0 go.opentelemetry.io/otel/trace v1.24.0 diff --git a/go.sum b/go.sum index 35020a1..ab5b7c5 100644 --- a/go.sum +++ b/go.sum @@ -16,8 +16,8 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/std-uritemplate/std-uritemplate/go v1.0.6 h1:XkCI5iBsbDxc9bYnFArKlgBkNvcw8St1UBJoNpYGCCo= -github.com/std-uritemplate/std-uritemplate/go v1.0.6/go.mod h1:rG/bqh/ThY4xE5de7Rap3vaDkYUT76B0GPJ0loYeTTc= +github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.1 h1:/m2cTZHpqgofDsrwPqsASI6fSNMNhb+9EmUYtHEV2Uk= +github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.1/go.mod h1:Z5KcoM0YLC7INlNhEezeIZ0TZNYf7WSNO0Lvah4DSeQ= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= diff --git a/request_information.go b/request_information.go index 9c0ca63..e9a0d94 100644 --- a/request_information.go +++ b/request_information.go @@ -13,7 +13,7 @@ import ( "github.com/google/uuid" s "github.com/microsoft/kiota-abstractions-go/serialization" - stduritemplate "github.com/std-uritemplate/std-uritemplate/go" + stduritemplate "github.com/std-uritemplate/std-uritemplate/go/v2" "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/trace"