diff --git a/CHANGELOG.md b/CHANGELOG.md index e2fb6ae1a..22d532df1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ======= +## [1.75.4] - 2025-01-30 +### Added +- thriftrw-plugin-yarpc: Add option for configuring the mock library. +### Fixed +- Columns in the HTML Outbounds table on the debug page now properly line up + with header rows. + ## [1.75.3] - 2024-12-04 ### Added - Noop resolver to use in clients with custom load balancing. @@ -1540,6 +1547,7 @@ This release requires regeneration of ThriftRW code. ## 0.1.0 - 2016-08-31 - Initial release. +[1.75.4]: https://github.com/yarpc/yarpc-go/compare/v1.75.3...1.75.4 [1.75.3]: https://github.com/yarpc/yarpc-go/compare/v1.75.2...1.75.3 [1.75.2]: https://github.com/yarpc/yarpc-go/compare/v1.75.1...1.75.2 [1.75.1]: https://github.com/yarpc/yarpc-go/compare/v1.75.0...1.75.1 diff --git a/README.md b/README.md index ac072074e..ef821ed47 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,10 @@ -# yarpc [![GoDoc][doc-img]][doc] [![GitHub release][release-img]][release] [![Mit License][mit-img]][mit] [![Build Status][ci-img]][ci] [![Coverage Status][cov-img]][cov] +# yarpc + +[![GoDoc][doc-img]][doc] +[![GitHub release][release-img]][release] +[![Mit License][mit-img]][mit] +[![Build Status][ci-img]][ci] +[![Coverage Status][cov-img]][cov] A message passing platform for Go that lets you: @@ -8,12 +14,20 @@ A message passing platform for Go that lets you: ## Installation -We recommend locking to [SemVer](http://semver.org/) range `^1` using [Glide](https://github.com/Masterminds/glide): +Add dependency to your `go.mod` file: ``` -glide get 'go.uber.org/yarpc#^1' +go get go.uber.org/yarpc@latest +``` + +Use the following import path in the code: + +```go +import "go.uber.org/yarpc" ``` +Please see [reference][doc] and [examples][examples-link] for more details. + ## Stability This library is `v1` and follows [SemVer](http://semver.org/) strictly. @@ -26,20 +40,6 @@ APIs can break at any time. The intention here is to validate these APIs and ite by working closely with internal customers. Once stable, their contents will be moved out of the containing `x` package and their APIs will be locked. -[doc-img]: http://img.shields.io/badge/GoDoc-Reference-blue.svg -[doc]: https://godoc.org/go.uber.org/yarpc - -[release-img]: https://img.shields.io/github/release/yarpc/yarpc-go.svg -[release]: https://github.com/yarpc/yarpc-go/releases - -[mit-img]: http://img.shields.io/badge/License-MIT-blue.svg -[mit]: https://github.com/yarpc/yarpc-go/blob/master/LICENSE - -[ci-img]: https://badge.buildkite.com/f7d8e675c4d5ee4f5c4e4c2e33ca03c5be9bde22b186750538.svg?branch=master -[ci]: https://buildkite.com/uberopensource/yarpc-go - -[cov-img]: https://codecov.io/gh/yarpc/yarpc-go/branch/master/graph/badge.svg -[cov]: https://codecov.io/gh/yarpc/yarpc-go/branch/master ## Development @@ -48,9 +48,7 @@ the containing `x` package and their APIs will be locked. To start developing with yarpc-go, run the following command to setup your environment: ``` -cd $GOPATH/src git clone https://github.com/yarpc/yarpc-go.git go.uber.org/yarpc -make ``` ### Running Tests @@ -65,4 +63,21 @@ To run tests locally, run the following command: SUPPRESS_DOCKER=1 make test ``` -Happy development! \ No newline at end of file +Happy development! + +[doc-img]: https://pkg.go.dev/badge/go.uber.org/yarpc.svg +[doc]: https://pkg.go.dev/go.uber.org/yarpc + +[release-img]: https://img.shields.io/github/release/yarpc/yarpc-go.svg +[release]: https://github.com/yarpc/yarpc-go/releases + +[mit-img]: http://img.shields.io/badge/License-MIT-blue.svg +[mit]: https://github.com/yarpc/yarpc-go/blob/master/LICENSE + +[ci-img]: https://badge.buildkite.com/f7d8e675c4d5ee4f5c4e4c2e33ca03c5be9bde22b186750538.svg?branch=master +[ci]: https://buildkite.com/uberopensource/yarpc-go + +[cov-img]: https://codecov.io/gh/yarpc/yarpc-go/branch/master/graph/badge.svg +[cov]: https://codecov.io/gh/yarpc/yarpc-go/branch/master + +[examples-link]: https://github.com/yarpc/yarpc-go/tree/dev/internal/examples \ No newline at end of file diff --git a/ack.go b/ack.go index f73d14375..bb4a91ca3 100644 --- a/ack.go +++ b/ack.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/backoff/backoff.go b/api/backoff/backoff.go index aafe92cf8..231a71c4d 100644 --- a/api/backoff/backoff.go +++ b/api/backoff/backoff.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/backoff/none.go b/api/backoff/none.go index 600029d06..4226b2992 100644 --- a/api/backoff/none.go +++ b/api/backoff/none.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/backoff/none_test.go b/api/backoff/none_test.go index 5c706c9f9..9909d1ae9 100644 --- a/api/backoff/none_test.go +++ b/api/backoff/none_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/call.go b/api/encoding/call.go index e7f252f8c..363e538f7 100644 --- a/api/encoding/call.go +++ b/api/encoding/call.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/call_option.go b/api/encoding/call_option.go index ae493597f..5db0840b7 100644 --- a/api/encoding/call_option.go +++ b/api/encoding/call_option.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/call_options_test.go b/api/encoding/call_options_test.go index 50b505469..75ef761f5 100644 --- a/api/encoding/call_options_test.go +++ b/api/encoding/call_options_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/call_test.go b/api/encoding/call_test.go index a350c8bcd..46cfe1b02 100644 --- a/api/encoding/call_test.go +++ b/api/encoding/call_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/doc.go b/api/encoding/doc.go index 8c05308a3..1d13ca57a 100644 --- a/api/encoding/doc.go +++ b/api/encoding/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/inbound_call.go b/api/encoding/inbound_call.go index 134d9a02f..44b1ca9aa 100644 --- a/api/encoding/inbound_call.go +++ b/api/encoding/inbound_call.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/inbound_call_test.go b/api/encoding/inbound_call_test.go index b486d95dc..b8075ec37 100644 --- a/api/encoding/inbound_call_test.go +++ b/api/encoding/inbound_call_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/outbound_call.go b/api/encoding/outbound_call.go index 0b11cc4ed..0c18ba1c7 100644 --- a/api/encoding/outbound_call.go +++ b/api/encoding/outbound_call.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/outbound_call_test.go b/api/encoding/outbound_call_test.go index 806a08398..df6e8b93e 100644 --- a/api/encoding/outbound_call_test.go +++ b/api/encoding/outbound_call_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/encoding/stream.go b/api/encoding/stream.go index 2f1b0d5fd..d3782182f 100644 --- a/api/encoding/stream.go +++ b/api/encoding/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/inbound.go b/api/middleware/inbound.go index 9bd9e583a..8d3d07e4c 100644 --- a/api/middleware/inbound.go +++ b/api/middleware/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/inbound_test.go b/api/middleware/inbound_test.go index 3a445b03b..5fc1e5546 100644 --- a/api/middleware/inbound_test.go +++ b/api/middleware/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/middlewaretest/router.go b/api/middleware/middlewaretest/router.go index 274b483a8..557dbe642 100644 --- a/api/middleware/middlewaretest/router.go +++ b/api/middleware/middlewaretest/router.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/middleware (interfaces: Router,UnaryInbound,UnaryOutbound,OnewayInbound,OnewayOutbound,StreamInbound,StreamOutbound) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/outbound.go b/api/middleware/outbound.go index f53fd95c1..0ecf7fd77 100644 --- a/api/middleware/outbound.go +++ b/api/middleware/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/outbound_test.go b/api/middleware/outbound_test.go index e2148a97c..d8c6df8bb 100644 --- a/api/middleware/outbound_test.go +++ b/api/middleware/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/router.go b/api/middleware/router.go index 8723ac74e..ab0fbdf86 100644 --- a/api/middleware/router.go +++ b/api/middleware/router.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/middleware/router_test.go b/api/middleware/router_test.go index 741d2b4a6..6ab17532d 100644 --- a/api/middleware/router_test.go +++ b/api/middleware/router_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/connectionstatus_string.go b/api/peer/connectionstatus_string.go index acf1d3cfa..8eb8fceb8 100644 --- a/api/peer/connectionstatus_string.go +++ b/api/peer/connectionstatus_string.go @@ -1,6 +1,6 @@ // Code generated by "stringer -type=ConnectionStatus ./api/peer"; DO NOT EDIT. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/doc.go b/api/peer/doc.go index a67aefee5..d6c7ce833 100644 --- a/api/peer/doc.go +++ b/api/peer/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/errors.go b/api/peer/errors.go index 49747fc40..a0df45eea 100644 --- a/api/peer/errors.go +++ b/api/peer/errors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/errors_test.go b/api/peer/errors_test.go index 241b0992e..150d1d0ac 100644 --- a/api/peer/errors_test.go +++ b/api/peer/errors_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/list.go b/api/peer/list.go index 60761838d..cc2f9054d 100644 --- a/api/peer/list.go +++ b/api/peer/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peer.go b/api/peer/peer.go index 417fdb57f..809ee73e3 100644 --- a/api/peer/peer.go +++ b/api/peer/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/list.go b/api/peer/peertest/list.go index c1bd67f5d..82e084fd3 100644 --- a/api/peer/peertest/list.go +++ b/api/peer/peertest/list.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/peer (interfaces: Chooser,List,ChooserList) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/peer.go b/api/peer/peertest/peer.go index af976e342..04015cd1d 100644 --- a/api/peer/peertest/peer.go +++ b/api/peer/peertest/peer.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/peer (interfaces: Identifier,Peer) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/peerlistaction.go b/api/peer/peertest/peerlistaction.go index 115776977..85db990d5 100644 --- a/api/peer/peertest/peerlistaction.go +++ b/api/peer/peertest/peerlistaction.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/peers.go b/api/peer/peertest/peers.go index 762f8397a..172e133f4 100644 --- a/api/peer/peertest/peers.go +++ b/api/peer/peertest/peers.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/subscriber.go b/api/peer/peertest/subscriber.go index 5477dbe17..b11342d3f 100644 --- a/api/peer/peertest/subscriber.go +++ b/api/peer/peertest/subscriber.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/transport.go b/api/peer/peertest/transport.go index e2387752e..89ee4219e 100644 --- a/api/peer/peertest/transport.go +++ b/api/peer/peertest/transport.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/peer (interfaces: Transport,Subscriber) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/peertest/transportaction.go b/api/peer/peertest/transportaction.go index 29ea7384d..87393f01b 100644 --- a/api/peer/peertest/transportaction.go +++ b/api/peer/peertest/transportaction.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/status_stringer.go b/api/peer/status_stringer.go index a43d4cb7c..582604827 100644 --- a/api/peer/status_stringer.go +++ b/api/peer/status_stringer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/peer/transport.go b/api/peer/transport.go index 563bb7008..a44f76f2c 100644 --- a/api/peer/transport.go +++ b/api/peer/transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/ack.go b/api/transport/ack.go index dfde363b3..416d54dbb 100644 --- a/api/transport/ack.go +++ b/api/transport/ack.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/clientconfig.go b/api/transport/clientconfig.go index 3e76f4fe2..953b2211c 100644 --- a/api/transport/clientconfig.go +++ b/api/transport/clientconfig.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/compression.go b/api/transport/compression.go index eb2e35e88..a25fb97ce 100644 --- a/api/transport/compression.go +++ b/api/transport/compression.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/errors.go b/api/transport/errors.go index da5a1a8fe..becbae452 100644 --- a/api/transport/errors.go +++ b/api/transport/errors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/errors_test.go b/api/transport/errors_test.go index 6659fc85f..e878594a9 100644 --- a/api/transport/errors_test.go +++ b/api/transport/errors_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/handler.go b/api/transport/handler.go index 1294f85f7..273575ec0 100644 --- a/api/transport/handler.go +++ b/api/transport/handler.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/handler_invoker.go b/api/transport/handler_invoker.go index 00d2927ad..0c956e2a0 100644 --- a/api/transport/handler_invoker.go +++ b/api/transport/handler_invoker.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/handler_panic_test.go b/api/transport/handler_panic_test.go index 1f9e4bbc7..5740eb857 100644 --- a/api/transport/handler_panic_test.go +++ b/api/transport/handler_panic_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/handler_test.go b/api/transport/handler_test.go index 30d222c65..7b876763d 100644 --- a/api/transport/handler_test.go +++ b/api/transport/handler_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/header.go b/api/transport/header.go index b136ffcc0..8215a0807 100644 --- a/api/transport/header.go +++ b/api/transport/header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/header_test.go b/api/transport/header_test.go index 579e99a50..544b9623e 100644 --- a/api/transport/header_test.go +++ b/api/transport/header_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/inbound.go b/api/transport/inbound.go index 2b92c3cd0..b62ddf3f5 100644 --- a/api/transport/inbound.go +++ b/api/transport/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/lifecycle.go b/api/transport/lifecycle.go index 960a34dde..9b2869092 100644 --- a/api/transport/lifecycle.go +++ b/api/transport/lifecycle.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/outbound.go b/api/transport/outbound.go index 7858b0911..d7c236099 100644 --- a/api/transport/outbound.go +++ b/api/transport/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/outboundconfig.go b/api/transport/outboundconfig.go index 1065a2bc1..6f26649af 100644 --- a/api/transport/outboundconfig.go +++ b/api/transport/outboundconfig.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/propagation.go b/api/transport/propagation.go index 7c27ba106..f09e4a87f 100644 --- a/api/transport/propagation.go +++ b/api/transport/propagation.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/request.go b/api/transport/request.go index bda2e3dec..d3dce1f2d 100644 --- a/api/transport/request.go +++ b/api/transport/request.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/request_test.go b/api/transport/request_test.go index 93b2743dd..a93d62e3c 100644 --- a/api/transport/request_test.go +++ b/api/transport/request_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/response.go b/api/transport/response.go index 79278b2c1..66486a7d4 100644 --- a/api/transport/response.go +++ b/api/transport/response.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/router.go b/api/transport/router.go index 26d6cd25c..c89cfb6c3 100644 --- a/api/transport/router.go +++ b/api/transport/router.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/router_test.go b/api/transport/router_test.go index 37d0d4da1..a773920df 100644 --- a/api/transport/router_test.go +++ b/api/transport/router_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/stream.go b/api/transport/stream.go index 80b01b7f3..09a217f8d 100644 --- a/api/transport/stream.go +++ b/api/transport/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/stream_test.go b/api/transport/stream_test.go index 0009e2867..140704e05 100644 --- a/api/transport/stream_test.go +++ b/api/transport/stream_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/tls/mode.go b/api/transport/tls/mode.go index 28182d0e0..48dcd9fb8 100644 --- a/api/transport/tls/mode.go +++ b/api/transport/tls/mode.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/tls/mode_string.go b/api/transport/tls/mode_string.go index 1de9927ab..8fea3bffc 100644 --- a/api/transport/tls/mode_string.go +++ b/api/transport/tls/mode_string.go @@ -1,6 +1,6 @@ // Code generated by "stringer -type=Mode ./api/transport/tls"; DO NOT EDIT. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/tls/outbound.go b/api/transport/tls/outbound.go index e877c8561..0219fe58a 100644 --- a/api/transport/tls/outbound.go +++ b/api/transport/tls/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transport.go b/api/transport/transport.go index 4bacb5ccf..081faf467 100644 --- a/api/transport/transport.go +++ b/api/transport/transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/clientconfig.go b/api/transport/transporttest/clientconfig.go index 95f817c52..35268a670 100644 --- a/api/transport/transporttest/clientconfig.go +++ b/api/transport/transporttest/clientconfig.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: ClientConfig,ClientConfigProvider) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/constants.go b/api/transport/transporttest/constants.go index c25d67a1c..3717580df 100644 --- a/api/transport/transporttest/constants.go +++ b/api/transport/transporttest/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/context.go b/api/transport/transporttest/context.go index 96f181e50..bf6ecc7f5 100644 --- a/api/transport/transporttest/context.go +++ b/api/transport/transporttest/context.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/echo.go b/api/transport/transporttest/echo.go index 8f2152a42..ba2e51ff3 100644 --- a/api/transport/transporttest/echo.go +++ b/api/transport/transporttest/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/handler.go b/api/transport/transporttest/handler.go index ceeba2f90..e47beea4a 100644 --- a/api/transport/transporttest/handler.go +++ b/api/transport/transporttest/handler.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: UnaryHandler,OnewayHandler,StreamHandler) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/inbound.go b/api/transport/transporttest/inbound.go index 1707ef6f2..3c0b6f313 100644 --- a/api/transport/transporttest/inbound.go +++ b/api/transport/transporttest/inbound.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: Inbound) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/messagepipe.go b/api/transport/transporttest/messagepipe.go index ae2dae3a8..35c0ce989 100644 --- a/api/transport/transporttest/messagepipe.go +++ b/api/transport/transporttest/messagepipe.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/outbound.go b/api/transport/transporttest/outbound.go index b30e02f6a..d456eaf6e 100644 --- a/api/transport/transporttest/outbound.go +++ b/api/transport/transporttest/outbound.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: UnaryOutbound,OnewayOutbound,StreamOutbound) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/reqres.go b/api/transport/transporttest/reqres.go index 3ace6e97c..bed856310 100644 --- a/api/transport/transporttest/reqres.go +++ b/api/transport/transporttest/reqres.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/reqres_test.go b/api/transport/transporttest/reqres_test.go index 82002578f..b4e1a4951 100644 --- a/api/transport/transporttest/reqres_test.go +++ b/api/transport/transporttest/reqres_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/router.go b/api/transport/transporttest/router.go index e8ad21377..09f6117f6 100644 --- a/api/transport/transporttest/router.go +++ b/api/transport/transporttest/router.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: Router,RouteTable) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/stream.go b/api/transport/transporttest/stream.go index b58f1baca..33b78d899 100644 --- a/api/transport/transporttest/stream.go +++ b/api/transport/transporttest/stream.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: Stream,StreamCloser) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/transporttest/transport.go b/api/transport/transporttest/transport.go index 80b511c05..feb7828e8 100644 --- a/api/transport/transporttest/transport.go +++ b/api/transport/transporttest/transport.go @@ -1,7 +1,7 @@ // Code generated by MockGen. DO NOT EDIT. // Source: go.uber.org/yarpc/api/transport (interfaces: Transport) -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/transport/type_string.go b/api/transport/type_string.go index 96a3d0f62..afd77c5df 100644 --- a/api/transport/type_string.go +++ b/api/transport/type_string.go @@ -1,6 +1,6 @@ // Code generated by "stringer -type=Type ./api/transport"; DO NOT EDIT. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/x/introspection/chooser.go b/api/x/introspection/chooser.go index 4fa413e06..f3bea32cf 100644 --- a/api/x/introspection/chooser.go +++ b/api/x/introspection/chooser.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/x/introspection/inbound.go b/api/x/introspection/inbound.go index aa56ec3cd..e4b811450 100644 --- a/api/x/introspection/inbound.go +++ b/api/x/introspection/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/x/introspection/outbound.go b/api/x/introspection/outbound.go index ec549bc4c..f2d87c74b 100644 --- a/api/x/introspection/outbound.go +++ b/api/x/introspection/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/x/restriction/restricter.go b/api/x/restriction/restricter.go index 4f94a1c13..241c2085e 100644 --- a/api/x/restriction/restricter.go +++ b/api/x/restriction/restricter.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/api/x/restriction/restricter_test.go b/api/x/restriction/restricter_test.go index 7baf351ba..a88f98cc8 100644 --- a/api/x/restriction/restricter_test.go +++ b/api/x/restriction/restricter_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/bench_test.go b/bench_test.go index f0bdc6f73..af07d3d37 100644 --- a/bench_test.go +++ b/bench_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/call.go b/call.go index 7692a6b09..d99ed72e0 100644 --- a/call.go +++ b/call.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/call_test.go b/call_test.go index 65495312f..36c1377ba 100644 --- a/call_test.go +++ b/call_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/client_config.go b/client_config.go index a7687d67b..c024279bc 100644 --- a/client_config.go +++ b/client_config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/grpc/grpc.go b/compressor/grpc/grpc.go index 032368d67..5064aa902 100644 --- a/compressor/grpc/grpc.go +++ b/compressor/grpc/grpc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/grpc/grpc_test.go b/compressor/grpc/grpc_test.go index d79c4a63f..712e7014f 100644 --- a/compressor/grpc/grpc_test.go +++ b/compressor/grpc/grpc_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/gzip/gzip.go b/compressor/gzip/gzip.go index c1d94b4ee..2c7f9b309 100644 --- a/compressor/gzip/gzip.go +++ b/compressor/gzip/gzip.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/gzip/gzip_test.go b/compressor/gzip/gzip_test.go index 7fba3712e..871289319 100644 --- a/compressor/gzip/gzip_test.go +++ b/compressor/gzip/gzip_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/snappy/snappy.go b/compressor/snappy/snappy.go index 35bc756b8..6e80d229c 100644 --- a/compressor/snappy/snappy.go +++ b/compressor/snappy/snappy.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/compressor/snappy/snappy_test.go b/compressor/snappy/snappy_test.go index 6f3b2bbea..fcc5aaf7f 100644 --- a/compressor/snappy/snappy_test.go +++ b/compressor/snappy/snappy_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/config.go b/config.go index 92382ee1d..298a8f851 100644 --- a/config.go +++ b/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/dispatcher.go b/dispatcher.go index 91d5bb3b2..6c0839440 100644 --- a/dispatcher.go +++ b/dispatcher.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/dispatcher_example_test.go b/dispatcher_example_test.go index 26e402e28..e63e9850a 100644 --- a/dispatcher_example_test.go +++ b/dispatcher_example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/dispatcher_introspection.go b/dispatcher_introspection.go index 9f6d0929d..6f8da1c67 100644 --- a/dispatcher_introspection.go +++ b/dispatcher_introspection.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/dispatcher_startup.go b/dispatcher_startup.go index 7dab06de3..500885293 100644 --- a/dispatcher_startup.go +++ b/dispatcher_startup.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/dispatcher_test.go b/dispatcher_test.go index 3031ff9fa..00d41c8a6 100644 --- a/dispatcher_test.go +++ b/dispatcher_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/doc.go b/doc.go index 82b8d4d7e..d54d41a5b 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/constants.go b/encoding/json/constants.go index 34e8137f8..4024b6b2a 100644 --- a/encoding/json/constants.go +++ b/encoding/json/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/doc.go b/encoding/json/doc.go index 3e06f6611..d90aefe39 100644 --- a/encoding/json/doc.go +++ b/encoding/json/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/inbound.go b/encoding/json/inbound.go index b89a1cad5..62d852bde 100644 --- a/encoding/json/inbound.go +++ b/encoding/json/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/inbound_test.go b/encoding/json/inbound_test.go index f5d76bf92..9e92e1b32 100644 --- a/encoding/json/inbound_test.go +++ b/encoding/json/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/observability_test.go b/encoding/json/observability_test.go index 13e5bb05d..201235bbc 100644 --- a/encoding/json/observability_test.go +++ b/encoding/json/observability_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/outbound.go b/encoding/json/outbound.go index 6f5baeda0..4c53393fe 100644 --- a/encoding/json/outbound.go +++ b/encoding/json/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/outbound_test.go b/encoding/json/outbound_test.go index d5a158339..d42be4801 100644 --- a/encoding/json/outbound_test.go +++ b/encoding/json/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/register.go b/encoding/json/register.go index c2fe6c5a3..db0342e8b 100644 --- a/encoding/json/register.go +++ b/encoding/json/register.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/json/register_test.go b/encoding/json/register_test.go index f260a7c2d..9e7d5f75d 100644 --- a/encoding/json/register_test.go +++ b/encoding/json/register_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/doc.go b/encoding/protobuf/doc.go index 610d589fe..429bc0cbf 100644 --- a/encoding/protobuf/doc.go +++ b/encoding/protobuf/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/error.go b/encoding/protobuf/error.go index 5cff2769a..465d599cc 100644 --- a/encoding/protobuf/error.go +++ b/encoding/protobuf/error.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/error_external_test.go b/encoding/protobuf/error_external_test.go index a2db503f5..62a76fef0 100644 --- a/encoding/protobuf/error_external_test.go +++ b/encoding/protobuf/error_external_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/error_integration_test.go b/encoding/protobuf/error_integration_test.go index 301abd7a2..9be074401 100644 --- a/encoding/protobuf/error_integration_test.go +++ b/encoding/protobuf/error_integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/error_test.go b/encoding/protobuf/error_test.go index 258da0183..20bac0e52 100644 --- a/encoding/protobuf/error_test.go +++ b/encoding/protobuf/error_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/external_test.go b/encoding/protobuf/external_test.go index da3fb7aef..a859a212e 100644 --- a/encoding/protobuf/external_test.go +++ b/encoding/protobuf/external_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/inbound.go b/encoding/protobuf/inbound.go index d5f762ee5..a581d9599 100644 --- a/encoding/protobuf/inbound.go +++ b/encoding/protobuf/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/inbound_test.go b/encoding/protobuf/inbound_test.go index c47e80153..478d5626c 100644 --- a/encoding/protobuf/inbound_test.go +++ b/encoding/protobuf/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/internal/testpb/testpb_test.go b/encoding/protobuf/internal/testpb/testpb_test.go index c1ef64d5d..4db700b94 100644 --- a/encoding/protobuf/internal/testpb/testpb_test.go +++ b/encoding/protobuf/internal/testpb/testpb_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/internal/testpb/v2/test.pb.go b/encoding/protobuf/internal/testpb/v2/test.pb.go index f55e712ae..1c5e0c4f5 100644 --- a/encoding/protobuf/internal/testpb/v2/test.pb.go +++ b/encoding/protobuf/internal/testpb/v2/test.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.34.1 -// protoc v3.5.1 +// protoc v3.15.0 // source: encoding/protobuf/internal/testpb/v2/test.proto package testpb diff --git a/encoding/protobuf/internal/testpb/v2/test_grpc.pb.go b/encoding/protobuf/internal/testpb/v2/test_grpc.pb.go index 579ff119b..ba6ec3fb1 100644 --- a/encoding/protobuf/internal/testpb/v2/test_grpc.pb.go +++ b/encoding/protobuf/internal/testpb/v2/test_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 -// - protoc v3.5.1 +// - protoc v3.15.0 // source: encoding/protobuf/internal/testpb/v2/test.proto package testpb diff --git a/encoding/protobuf/marshal.go b/encoding/protobuf/marshal.go index 4622fae87..f994b03dd 100644 --- a/encoding/protobuf/marshal.go +++ b/encoding/protobuf/marshal.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/marshal_test.go b/encoding/protobuf/marshal_test.go index 7828ca3b7..1eccf4ddf 100644 --- a/encoding/protobuf/marshal_test.go +++ b/encoding/protobuf/marshal_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/observability_test.go b/encoding/protobuf/observability_test.go index 623efb315..c538e3a61 100644 --- a/encoding/protobuf/observability_test.go +++ b/encoding/protobuf/observability_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/outbound.go b/encoding/protobuf/outbound.go index c970cb5ca..00170bb4a 100644 --- a/encoding/protobuf/outbound.go +++ b/encoding/protobuf/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/outbound_test.go b/encoding/protobuf/outbound_test.go index b17064c13..a16ff1c6b 100644 --- a/encoding/protobuf/outbound_test.go +++ b/encoding/protobuf/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/outbound_unit_test.go b/encoding/protobuf/outbound_unit_test.go index b8ba77451..81d856b4a 100644 --- a/encoding/protobuf/outbound_unit_test.go +++ b/encoding/protobuf/outbound_unit_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protobuf.go b/encoding/protobuf/protobuf.go index 80c8e3777..93fcd252f 100644 --- a/encoding/protobuf/protobuf.go +++ b/encoding/protobuf/protobuf.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protobuf_test.go b/encoding/protobuf/protobuf_test.go index d382ebea7..7e1af425e 100644 --- a/encoding/protobuf/protobuf_test.go +++ b/encoding/protobuf/protobuf_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protoc-gen-yarpc-go-v2/internal/lib/lib.go b/encoding/protobuf/protoc-gen-yarpc-go-v2/internal/lib/lib.go index 98938595c..799d23d40 100644 --- a/encoding/protobuf/protoc-gen-yarpc-go-v2/internal/lib/lib.go +++ b/encoding/protobuf/protoc-gen-yarpc-go-v2/internal/lib/lib.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protoc-gen-yarpc-go-v2/main.go b/encoding/protobuf/protoc-gen-yarpc-go-v2/main.go index 634728f9c..539e69282 100644 --- a/encoding/protobuf/protoc-gen-yarpc-go-v2/main.go +++ b/encoding/protobuf/protoc-gen-yarpc-go-v2/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protoc-gen-yarpc-go/internal/lib/lib.go b/encoding/protobuf/protoc-gen-yarpc-go/internal/lib/lib.go index 5c54d7d34..9f2cf72d5 100644 --- a/encoding/protobuf/protoc-gen-yarpc-go/internal/lib/lib.go +++ b/encoding/protobuf/protoc-gen-yarpc-go/internal/lib/lib.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/protoc-gen-yarpc-go/main.go b/encoding/protobuf/protoc-gen-yarpc-go/main.go index 5f1b38b6a..7ab850802 100644 --- a/encoding/protobuf/protoc-gen-yarpc-go/main.go +++ b/encoding/protobuf/protoc-gen-yarpc-go/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/reflection/doc.go b/encoding/protobuf/reflection/doc.go index 5da20ec70..8c5275d25 100644 --- a/encoding/protobuf/reflection/doc.go +++ b/encoding/protobuf/reflection/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/reflection/reflection.go b/encoding/protobuf/reflection/reflection.go index 95abe095b..d6df39c6c 100644 --- a/encoding/protobuf/reflection/reflection.go +++ b/encoding/protobuf/reflection/reflection.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/stream.go b/encoding/protobuf/stream.go index e0b1fc9bc..512c48c57 100644 --- a/encoding/protobuf/stream.go +++ b/encoding/protobuf/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/stream_test.go b/encoding/protobuf/stream_test.go index 760df503b..0ca0075e7 100644 --- a/encoding/protobuf/stream_test.go +++ b/encoding/protobuf/stream_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/stream_unit_test.go b/encoding/protobuf/stream_unit_test.go index 1e9402a6e..3cfb0b6d4 100644 --- a/encoding/protobuf/stream_unit_test.go +++ b/encoding/protobuf/stream_unit_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/testing/benchmark_test.go b/encoding/protobuf/testing/benchmark_test.go index a66da1e46..ce83574a6 100644 --- a/encoding/protobuf/testing/benchmark_test.go +++ b/encoding/protobuf/testing/benchmark_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/testing/testing.go b/encoding/protobuf/testing/testing.go index 9e929b236..e32726861 100644 --- a/encoding/protobuf/testing/testing.go +++ b/encoding/protobuf/testing/testing.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/testing/testing_test.go b/encoding/protobuf/testing/testing_test.go index b4d7e5f74..b619e2f48 100644 --- a/encoding/protobuf/testing/testing_test.go +++ b/encoding/protobuf/testing/testing_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/error.go b/encoding/protobuf/v2/error.go index f63cdfc37..e00d3699f 100644 --- a/encoding/protobuf/v2/error.go +++ b/encoding/protobuf/v2/error.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/error_external_test.go b/encoding/protobuf/v2/error_external_test.go index 8068a4596..9667d74d9 100644 --- a/encoding/protobuf/v2/error_external_test.go +++ b/encoding/protobuf/v2/error_external_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/error_integration_test.go b/encoding/protobuf/v2/error_integration_test.go index 2f19128d1..4bd5ea757 100644 --- a/encoding/protobuf/v2/error_integration_test.go +++ b/encoding/protobuf/v2/error_integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/error_test.go b/encoding/protobuf/v2/error_test.go index ac875916b..97c3f75cc 100644 --- a/encoding/protobuf/v2/error_test.go +++ b/encoding/protobuf/v2/error_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/external_test.go b/encoding/protobuf/v2/external_test.go index 6c24082e9..dcfa33b48 100644 --- a/encoding/protobuf/v2/external_test.go +++ b/encoding/protobuf/v2/external_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/inbound.go b/encoding/protobuf/v2/inbound.go index f99df261a..e841dcfab 100644 --- a/encoding/protobuf/v2/inbound.go +++ b/encoding/protobuf/v2/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/inbound_test.go b/encoding/protobuf/v2/inbound_test.go index 5df306f27..e9f19f8cd 100644 --- a/encoding/protobuf/v2/inbound_test.go +++ b/encoding/protobuf/v2/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/marshal.go b/encoding/protobuf/v2/marshal.go index 7d8147d73..ff65ff184 100644 --- a/encoding/protobuf/v2/marshal.go +++ b/encoding/protobuf/v2/marshal.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/marshal_test.go b/encoding/protobuf/v2/marshal_test.go index c7a6158ef..136f0527c 100644 --- a/encoding/protobuf/v2/marshal_test.go +++ b/encoding/protobuf/v2/marshal_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/observability_test.go b/encoding/protobuf/v2/observability_test.go index 3000109c5..39376aeeb 100644 --- a/encoding/protobuf/v2/observability_test.go +++ b/encoding/protobuf/v2/observability_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/outbound.go b/encoding/protobuf/v2/outbound.go index 858e8a9e3..895b57dad 100644 --- a/encoding/protobuf/v2/outbound.go +++ b/encoding/protobuf/v2/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/outbound_test.go b/encoding/protobuf/v2/outbound_test.go index bcafa3680..6a71926aa 100644 --- a/encoding/protobuf/v2/outbound_test.go +++ b/encoding/protobuf/v2/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/protobuf.go b/encoding/protobuf/v2/protobuf.go index 08fc9b9e3..9f3be3735 100644 --- a/encoding/protobuf/v2/protobuf.go +++ b/encoding/protobuf/v2/protobuf.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/protobuf_test.go b/encoding/protobuf/v2/protobuf_test.go index fef902165..31405c8d3 100644 --- a/encoding/protobuf/v2/protobuf_test.go +++ b/encoding/protobuf/v2/protobuf_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/stream.go b/encoding/protobuf/v2/stream.go index 24f5923ab..65ad59131 100644 --- a/encoding/protobuf/v2/stream.go +++ b/encoding/protobuf/v2/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/stream_test.go b/encoding/protobuf/v2/stream_test.go index 6a8b98577..ae89b8eba 100644 --- a/encoding/protobuf/v2/stream_test.go +++ b/encoding/protobuf/v2/stream_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/protobuf/v2/stream_unit_test.go b/encoding/protobuf/v2/stream_unit_test.go index 5f3e2ba9e..8eae9d6e2 100644 --- a/encoding/protobuf/v2/stream_unit_test.go +++ b/encoding/protobuf/v2/stream_unit_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/constants.go b/encoding/raw/constants.go index dce3de8fe..187e8b642 100644 --- a/encoding/raw/constants.go +++ b/encoding/raw/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/doc.go b/encoding/raw/doc.go index a60f0f41a..04bed6e00 100644 --- a/encoding/raw/doc.go +++ b/encoding/raw/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/inbound.go b/encoding/raw/inbound.go index 33fc612ca..9c9109a30 100644 --- a/encoding/raw/inbound.go +++ b/encoding/raw/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/inbound_test.go b/encoding/raw/inbound_test.go index bc5ffddbe..2cf63db58 100644 --- a/encoding/raw/inbound_test.go +++ b/encoding/raw/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/outbound.go b/encoding/raw/outbound.go index c28b7af88..02629f699 100644 --- a/encoding/raw/outbound.go +++ b/encoding/raw/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/outbound_test.go b/encoding/raw/outbound_test.go index 73f318f89..08f75dfa7 100644 --- a/encoding/raw/outbound_test.go +++ b/encoding/raw/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/raw/register.go b/encoding/raw/register.go index 18157d530..c4e0cdf05 100644 --- a/encoding/raw/register.go +++ b/encoding/raw/register.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/benchmark_test.go b/encoding/thrift/benchmark_test.go index 76279194c..0bbaeb8f7 100644 --- a/encoding/thrift/benchmark_test.go +++ b/encoding/thrift/benchmark_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/constants.go b/encoding/thrift/constants.go index f7474b684..e4e626ca6 100644 --- a/encoding/thrift/constants.go +++ b/encoding/thrift/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/doc.go b/encoding/thrift/doc.go index 595d14573..f5c9e91dd 100644 --- a/encoding/thrift/doc.go +++ b/encoding/thrift/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/envelope.go b/encoding/thrift/envelope.go index 1b3bbb949..5b3b90ee4 100644 --- a/encoding/thrift/envelope.go +++ b/encoding/thrift/envelope.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/envelope_test.go b/encoding/thrift/envelope_test.go index 07cfd29a8..728e83ee2 100644 --- a/encoding/thrift/envelope_test.go +++ b/encoding/thrift/envelope_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/fakes_test.go b/encoding/thrift/fakes_test.go index c60b7c24d..2f66b8867 100644 --- a/encoding/thrift/fakes_test.go +++ b/encoding/thrift/fakes_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inbound.go b/encoding/thrift/inbound.go index dd0d995e8..52254ce95 100644 --- a/encoding/thrift/inbound.go +++ b/encoding/thrift/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inbound_nowire.go b/encoding/thrift/inbound_nowire.go index 1e1ee0a1e..c8a700a24 100644 --- a/encoding/thrift/inbound_nowire.go +++ b/encoding/thrift/inbound_nowire.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inbound_nowire_test.go b/encoding/thrift/inbound_nowire_test.go index 6258db25f..bf901f3fb 100644 --- a/encoding/thrift/inbound_nowire_test.go +++ b/encoding/thrift/inbound_nowire_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inbound_test.go b/encoding/thrift/inbound_test.go index 3fbee5918..ac37e2d7e 100644 --- a/encoding/thrift/inbound_test.go +++ b/encoding/thrift/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inject.go b/encoding/thrift/inject.go index b21d31dab..b72ca46ad 100644 --- a/encoding/thrift/inject.go +++ b/encoding/thrift/inject.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/inject_test.go b/encoding/thrift/inject_test.go index 7f512bf07..c5bbb1e6a 100644 --- a/encoding/thrift/inject_test.go +++ b/encoding/thrift/inject_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/internal.go b/encoding/thrift/internal/internal.go index b85b587ba..fba6b43f4 100644 --- a/encoding/thrift/internal/internal.go +++ b/encoding/thrift/internal/internal.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/test.go b/encoding/thrift/internal/observabilitytest/test/test.go index 395fed02d..942164e13 100644 --- a/encoding/thrift/internal/observabilitytest/test/test.go +++ b/encoding/thrift/internal/observabilitytest/test/test.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testserviceclient/client.go b/encoding/thrift/internal/observabilitytest/test/testserviceclient/client.go index 6da344499..179c4fe15 100644 --- a/encoding/thrift/internal/observabilitytest/test/testserviceclient/client.go +++ b/encoding/thrift/internal/observabilitytest/test/testserviceclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testservicefx/client.go b/encoding/thrift/internal/observabilitytest/test/testservicefx/client.go index f2d95ae87..50eefdf09 100644 --- a/encoding/thrift/internal/observabilitytest/test/testservicefx/client.go +++ b/encoding/thrift/internal/observabilitytest/test/testservicefx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testservicefx/doc.go b/encoding/thrift/internal/observabilitytest/test/testservicefx/doc.go index 70878ce1c..bef13b865 100644 --- a/encoding/thrift/internal/observabilitytest/test/testservicefx/doc.go +++ b/encoding/thrift/internal/observabilitytest/test/testservicefx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testservicefx/server.go b/encoding/thrift/internal/observabilitytest/test/testservicefx/server.go index 6274017fb..694482f3c 100644 --- a/encoding/thrift/internal/observabilitytest/test/testservicefx/server.go +++ b/encoding/thrift/internal/observabilitytest/test/testservicefx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testserviceserver/server.go b/encoding/thrift/internal/observabilitytest/test/testserviceserver/server.go index 1116ed747..9bc04fdb4 100644 --- a/encoding/thrift/internal/observabilitytest/test/testserviceserver/server.go +++ b/encoding/thrift/internal/observabilitytest/test/testserviceserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/testservicetest/client.go b/encoding/thrift/internal/observabilitytest/test/testservicetest/client.go index a5c4ce5d7..1e6626956 100644 --- a/encoding/thrift/internal/observabilitytest/test/testservicetest/client.go +++ b/encoding/thrift/internal/observabilitytest/test/testservicetest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/internal/observabilitytest/test/types_yarpc.go b/encoding/thrift/internal/observabilitytest/test/types_yarpc.go index b45954767..952722d93 100644 --- a/encoding/thrift/internal/observabilitytest/test/types_yarpc.go +++ b/encoding/thrift/internal/observabilitytest/test/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/multiplex.go b/encoding/thrift/multiplex.go index a06bb2d55..ac0b3a7d4 100644 --- a/encoding/thrift/multiplex.go +++ b/encoding/thrift/multiplex.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/multiplex_test.go b/encoding/thrift/multiplex_test.go index dfee1fbed..b81135cb9 100644 --- a/encoding/thrift/multiplex_test.go +++ b/encoding/thrift/multiplex_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/observability_test.go b/encoding/thrift/observability_test.go index a09c5042c..6ca48d2c2 100644 --- a/encoding/thrift/observability_test.go +++ b/encoding/thrift/observability_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/options.go b/encoding/thrift/options.go index 1b36ee203..bea14337d 100644 --- a/encoding/thrift/options.go +++ b/encoding/thrift/options.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/outbound.go b/encoding/thrift/outbound.go index 1485ffaba..2b8d8c1e0 100644 --- a/encoding/thrift/outbound.go +++ b/encoding/thrift/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/outbound_nowire.go b/encoding/thrift/outbound_nowire.go index 97ae6d311..72fea0fcc 100644 --- a/encoding/thrift/outbound_nowire.go +++ b/encoding/thrift/outbound_nowire.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/outbound_nowire_test.go b/encoding/thrift/outbound_nowire_test.go index 085fe8808..b7c1bf219 100644 --- a/encoding/thrift/outbound_nowire_test.go +++ b/encoding/thrift/outbound_nowire_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/outbound_test.go b/encoding/thrift/outbound_test.go index faa898024..8e1ab2d0a 100644 --- a/encoding/thrift/outbound_test.go +++ b/encoding/thrift/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/register.go b/encoding/thrift/register.go index a2848c22b..9c949d694 100644 --- a/encoding/thrift/register.go +++ b/encoding/thrift/register.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/response.go b/encoding/thrift/response.go index ca81d8837..7549e509e 100644 --- a/encoding/thrift/response.go +++ b/encoding/thrift/response.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/client.go b/encoding/thrift/thriftrw-plugin-yarpc/client.go index 6c80d3f63..04a7cc1a2 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/client.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/exception.go b/encoding/thrift/thriftrw-plugin-yarpc/exception.go index 9a3e77985..6a1adfca7 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/exception.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/exception.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/exception_test.go b/encoding/thrift/thriftrw-plugin-yarpc/exception_test.go index 9a310ad7e..8b6a761bf 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/exception_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/exception_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/extends_test.go b/encoding/thrift/thriftrw-plugin-yarpc/extends_test.go index 8a17781c2..aa9d7d463 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/extends_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/extends_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/fake_testreporter_test.go b/encoding/thrift/thriftrw-plugin-yarpc/fake_testreporter_test.go index 5b0270222..f80c9d425 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/fake_testreporter_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/fake_testreporter_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/fx.go b/encoding/thrift/thriftrw-plugin-yarpc/fx.go index c4d60064f..e7378bfd3 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/fx.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/fx.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/fx_test.go b/encoding/thrift/thriftrw-plugin-yarpc/fx_test.go index a6498dc47..bedabed58 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/fx_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/fx_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/golden_test.go b/encoding/thrift/thriftrw-plugin-yarpc/golden_test.go index e97932fb6..fd30e87c2 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/golden_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/golden_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/gomock.go b/encoding/thrift/thriftrw-plugin-yarpc/gomock.go index 128fa2685..91d5d74cb 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/gomock.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/gomock.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -33,7 +33,7 @@ const gomockTemplate = ` <$pkgname := printf "%stest" (lower .Name)> package <$pkgname> -<$gomock := import "github.com/golang/mock/gomock"> +<$gomock := import .MockLibrary> // MockClient implements a gomock-compatible mock client for service // <.Name>. diff --git a/encoding/thrift/thriftrw-plugin-yarpc/gomock_test.go b/encoding/thrift/thriftrw-plugin-yarpc/gomock_test.go index ee5b15471..3d4fdaafb 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/gomock_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/gomock_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/main.go b/encoding/thrift/thriftrw-plugin-yarpc/main.go index 5aa197de3..bdce3d8e3 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/main.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -64,12 +64,19 @@ package main import ( "flag" + "fmt" "strings" "go.uber.org/thriftrw/plugin" "go.uber.org/thriftrw/plugin/api" ) +// mock libraries +const ( + _golangMock = "github.com/golang/mock/gomock" + _uberMock = "go.uber.org/mock/gomock" +) + // Command line flags var ( _context = flag.String("context-import-path", @@ -82,7 +89,9 @@ var ( "go.uber.org/yarpc/encoding/thrift.OnewayHandler", "Function used to wrap generic Thrift oneway function handlers into YARPC handlers") _noGomock = flag.Bool("no-gomock", false, - "Don't generate gomock mocks for service clients") + "Don't generate mocks for service clients") + _mockLibrary = flag.String("mock-library", _golangMock, + fmt.Sprintf("Mock library service clients are generated with. Supported options: %q %q", _golangMock, _uberMock)) _noFx = flag.Bool("no-fx", false, "Don't generate Fx module") _sanitizeTChannel = flag.Bool("sanitize-tchannel", false, "Enable tchannel context sanitization") ) @@ -106,6 +115,10 @@ func (g g) Generate(req *api.GenerateServiceRequest) (*api.GenerateServiceRespon serviceGenerators = append(serviceGenerators, gomockGenerator) } + if !(*_mockLibrary == _golangMock || *_mockLibrary == _uberMock) { + return nil, fmt.Errorf("%q specified as mock-library. expected %q or %q", *_mockLibrary, _golangMock, _uberMock) + } + unaryWrapperImport, unaryWrapperFunc := splitFunctionPath(*_unaryHandlerWrapper) onewayWrapperImport, onewayWrapperFunc := splitFunctionPath(*_onewayHandlerWrapper) @@ -115,6 +128,7 @@ func (g g) Generate(req *api.GenerateServiceRequest) (*api.GenerateServiceRespon data := serviceTemplateData{ Svc: buildSvc(serviceID, req), ContextImportPath: *_context, + MockLibrary: *_mockLibrary, UnaryWrapperImport: unaryWrapperImport, UnaryWrapperFunc: unaryWrapperFunc, OnewayWrapperImport: onewayWrapperImport, diff --git a/encoding/thrift/thriftrw-plugin-yarpc/roundtrip_test.go b/encoding/thrift/thriftrw-plugin-yarpc/roundtrip_test.go index e0a7e9a64..d1cbf2ba3 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/roundtrip_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/roundtrip_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/sanitization_test.go b/encoding/thrift/thriftrw-plugin-yarpc/sanitization_test.go index fdb33ef84..6ab9902c4 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/sanitization_test.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/sanitization_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/server.go b/encoding/thrift/thriftrw-plugin-yarpc/server.go index 876a1a7a7..14a3e4c0a 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/server.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/encoding/thrift/thriftrw-plugin-yarpc/template.go b/encoding/thrift/thriftrw-plugin-yarpc/template.go index 4aaba5d19..a89bcc383 100644 --- a/encoding/thrift/thriftrw-plugin-yarpc/template.go +++ b/encoding/thrift/thriftrw-plugin-yarpc/template.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -105,6 +105,7 @@ type serviceTemplateData struct { OnewayWrapperImport string OnewayWrapperFunc string SanitizeTChannel bool + MockLibrary string } // moduleTemplateData contains the data for code gen templates. This should be diff --git a/errors.go b/errors.go index faf02e6a1..e9dd17991 100644 --- a/errors.go +++ b/errors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/errors_test.go b/errors_test.go index 8e5b97cca..107b22afe 100644 --- a/errors_test.go +++ b/errors_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/etc/make/deps.mk b/etc/make/deps.mk index 532a64229..8a5eb5da0 100644 --- a/etc/make/deps.mk +++ b/etc/make/deps.mk @@ -12,7 +12,7 @@ GEN_GO_BIN_DEPS = \ # automatically and must be requested by $(BIN)/$(basename importPath). THRIFT_VERSION := 1.0.0-dev -PROTOC_VERSION := 3.5.1 +PROTOC_VERSION := 3.15.0 PROGO_GRPC_VERSION := 1.2.0 RAGEL_VERSION := 6.10 ERRCHECK_VERSION := 1.7.0 @@ -28,10 +28,18 @@ THRIFT_ARCH := $(UNAME_ARCH) PROTOC_ARCH := $(UNAME_ARCH) RAGEL_ARCH := $(UNAME_ARCH) +# Use the x86_64 version on arm64 macs. +ifeq ($(UNAME_OS),Darwin) +ifeq ($(UNAME_ARCH),arm64) +THRIFT_ARCH := x86_64 +RAGEL_ARCH := x86_64 +PROTOC_ARCH := x86_64 +endif +endif + +# Protoc: use "osx" link for macos ifeq ($(UNAME_OS),Darwin) PROTOC_OS := osx -else -PROTOC_OS = linux endif THRIFT_LIB = $(LIB)/thrift-$(THRIFT_VERSION) @@ -67,7 +75,7 @@ $(THRIFT): $(THRIFT_TAR) $(PROTOC_ZIP): @mkdir -p $(PROTOC_LIB) - curl -L "https://github.com/google/protobuf/releases/download/v$(PROTOC_VERSION)/protoc-$(PROTOC_VERSION)-$(PROTOC_OS)-$(PROTOC_ARCH).zip" > $(PROTOC_ZIP) + curl -L "https://github.com/protocolbuffers/protobuf/releases/download/v$(PROTOC_VERSION)/protoc-$(PROTOC_VERSION)-$(PROTOC_OS)-$(PROTOC_ARCH).zip" > $(PROTOC_ZIP) $(PROTOC): $(PROTOC_ZIP) @mkdir -p $(BIN) diff --git a/etc/make/local.mk b/etc/make/local.mk index 0ff1233be..24b11eeb8 100644 --- a/etc/make/local.mk +++ b/etc/make/local.mk @@ -11,7 +11,9 @@ FILTER_GOVET := grep -v \ # Regexes for 'staticcheck' rules to ignore FILTER_STATICCHECK := grep -v \ -e 'grpc.CallCustomCodec is deprecated: use ForceCodec instead' \ - -e '"io/ioutil" has been deprecated since Go 1.19' + -e '"io/ioutil" has been deprecated since Go 1.19' \ + -e 'yarpcStatus.Name is deprecated' \ + -e 'status.Name is deprecated' ERRCHECK_FLAGS := -ignoretests ERRCHECK_EXCLUDES := \.Close\(\) \.Stop\(\) fmt\.Fprint diff --git a/header.go b/header.go index c84859e04..4f215dc08 100644 --- a/header.go +++ b/header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/header_test.go b/header_test.go index f6d0ee571..c1dc62118 100644 --- a/header_test.go +++ b/header_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/inject.go b/inject.go index 08627cf2d..0c61923c2 100644 --- a/inject.go +++ b/inject.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/inject_test.go b/inject_test.go index 617f2985c..0e8bed165 100644 --- a/inject_test.go +++ b/inject_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/backoff/exponential.go b/internal/backoff/exponential.go index eacec888c..9babff80f 100644 --- a/internal/backoff/exponential.go +++ b/internal/backoff/exponential.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/backoff/exponential_test.go b/internal/backoff/exponential_test.go index 9b92faa7d..b8dc3d77d 100644 --- a/internal/backoff/exponential_test.go +++ b/internal/backoff/exponential_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/bufferpool/buffer.go b/internal/bufferpool/buffer.go index 816301b65..0e2070b38 100644 --- a/internal/bufferpool/buffer.go +++ b/internal/bufferpool/buffer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/bufferpool/bufferpool.go b/internal/bufferpool/bufferpool.go index a6c14282e..f73f47cc0 100644 --- a/internal/bufferpool/bufferpool.go +++ b/internal/bufferpool/bufferpool.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/bufferpool/bufferpool_test.go b/internal/bufferpool/bufferpool_test.go index 96ba0f4cb..5e5e951b5 100644 --- a/internal/bufferpool/bufferpool_test.go +++ b/internal/bufferpool/bufferpool_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/clientconfig/multioutbound.go b/internal/clientconfig/multioutbound.go index d082de9f4..4b340cf48 100644 --- a/internal/clientconfig/multioutbound.go +++ b/internal/clientconfig/multioutbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/clientconfig/multioutbound_test.go b/internal/clientconfig/multioutbound_test.go index aa2a15ff1..65750f523 100644 --- a/internal/clientconfig/multioutbound_test.go +++ b/internal/clientconfig/multioutbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/config/attributemap.go b/internal/config/attributemap.go index 491370735..43180198c 100644 --- a/internal/config/attributemap.go +++ b/internal/config/attributemap.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/config/attributemap_test.go b/internal/config/attributemap_test.go index f46435eab..192b6bdeb 100644 --- a/internal/config/attributemap_test.go +++ b/internal/config/attributemap_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/config/mapdecode.go b/internal/config/mapdecode.go index c997effe6..2e2ff23e7 100644 --- a/internal/config/mapdecode.go +++ b/internal/config/mapdecode.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/config/mapdecode_test.go b/internal/config/mapdecode_test.go index 02b85feaa..cffb5640f 100644 --- a/internal/config/mapdecode_test.go +++ b/internal/config/mapdecode_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/cover/main.go b/internal/cover/main.go index fb8392a61..bfd19ef8c 100644 --- a/internal/cover/main.go +++ b/internal/cover/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/apachethrift/behavior.go b/internal/crossdock/client/apachethrift/behavior.go index 8bedfeb72..2890165cb 100644 --- a/internal/crossdock/client/apachethrift/behavior.go +++ b/internal/crossdock/client/apachethrift/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/ctxpropagation/behavior.go b/internal/crossdock/client/ctxpropagation/behavior.go index 2b342bc86..3e8989216 100644 --- a/internal/crossdock/client/ctxpropagation/behavior.go +++ b/internal/crossdock/client/ctxpropagation/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/dispatcher/dispatcher.go b/internal/crossdock/client/dispatcher/dispatcher.go index 77953f6fb..144e49dc4 100644 --- a/internal/crossdock/client/dispatcher/dispatcher.go +++ b/internal/crossdock/client/dispatcher/dispatcher.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/dispatcher/dispatcher_test.go b/internal/crossdock/client/dispatcher/dispatcher_test.go index 697835ab1..0ada0d2ce 100644 --- a/internal/crossdock/client/dispatcher/dispatcher_test.go +++ b/internal/crossdock/client/dispatcher/dispatcher_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/echo/behavior.go b/internal/crossdock/client/echo/behavior.go index f380a7e3e..244c26bf3 100644 --- a/internal/crossdock/client/echo/behavior.go +++ b/internal/crossdock/client/echo/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/echo/json.go b/internal/crossdock/client/echo/json.go index 1c7b6500b..3ad603ef6 100644 --- a/internal/crossdock/client/echo/json.go +++ b/internal/crossdock/client/echo/json.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/echo/protobuf.go b/internal/crossdock/client/echo/protobuf.go index f1b671f48..4271d5d4a 100644 --- a/internal/crossdock/client/echo/protobuf.go +++ b/internal/crossdock/client/echo/protobuf.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/echo/raw.go b/internal/crossdock/client/echo/raw.go index ed4f59634..b31e7fe6c 100644 --- a/internal/crossdock/client/echo/raw.go +++ b/internal/crossdock/client/echo/raw.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/echo/thrift.go b/internal/crossdock/client/echo/thrift.go index 3e9eccf4d..76a9fb3aa 100644 --- a/internal/crossdock/client/echo/thrift.go +++ b/internal/crossdock/client/echo/thrift.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/errorshttpclient/behavior.go b/internal/crossdock/client/errorshttpclient/behavior.go index 0183fe87a..b7aaede19 100644 --- a/internal/crossdock/client/errorshttpclient/behavior.go +++ b/internal/crossdock/client/errorshttpclient/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/errorstchclient/behavior.go b/internal/crossdock/client/errorstchclient/behavior.go index 1e154c673..fc1c1568b 100644 --- a/internal/crossdock/client/errorstchclient/behavior.go +++ b/internal/crossdock/client/errorstchclient/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/gauntlet/behavior.go b/internal/crossdock/client/gauntlet/behavior.go index decf37778..c9b919c83 100644 --- a/internal/crossdock/client/gauntlet/behavior.go +++ b/internal/crossdock/client/gauntlet/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/googlegrpcclient/googlegrpcclient.go b/internal/crossdock/client/googlegrpcclient/googlegrpcclient.go index 91cfa6dda..fa44c080b 100644 --- a/internal/crossdock/client/googlegrpcclient/googlegrpcclient.go +++ b/internal/crossdock/client/googlegrpcclient/googlegrpcclient.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/googlegrpcserver/googlegrpcserver.go b/internal/crossdock/client/googlegrpcserver/googlegrpcserver.go index 093225807..c2f7e427f 100644 --- a/internal/crossdock/client/googlegrpcserver/googlegrpcserver.go +++ b/internal/crossdock/client/googlegrpcserver/googlegrpcserver.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/grpc/grpc.go b/internal/crossdock/client/grpc/grpc.go index 1f280d35c..7d4b01fe1 100644 --- a/internal/crossdock/client/grpc/grpc.go +++ b/internal/crossdock/client/grpc/grpc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/headers/behavior.go b/internal/crossdock/client/headers/behavior.go index 838f42186..b03fd6a47 100644 --- a/internal/crossdock/client/headers/behavior.go +++ b/internal/crossdock/client/headers/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/httpserver/behavior.go b/internal/crossdock/client/httpserver/behavior.go index 4aade4da8..e3dc527e0 100644 --- a/internal/crossdock/client/httpserver/behavior.go +++ b/internal/crossdock/client/httpserver/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/oneway/json.go b/internal/crossdock/client/oneway/json.go index 5a3fbff63..03f52d88a 100644 --- a/internal/crossdock/client/oneway/json.go +++ b/internal/crossdock/client/oneway/json.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/oneway/oneway.go b/internal/crossdock/client/oneway/oneway.go index 1fb7a9954..aca39dee1 100644 --- a/internal/crossdock/client/oneway/oneway.go +++ b/internal/crossdock/client/oneway/oneway.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/oneway/raw.go b/internal/crossdock/client/oneway/raw.go index 8ce72b9aa..0ea30507d 100644 --- a/internal/crossdock/client/oneway/raw.go +++ b/internal/crossdock/client/oneway/raw.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/oneway/thrift.go b/internal/crossdock/client/oneway/thrift.go index de1bf9804..7d86268a3 100644 --- a/internal/crossdock/client/oneway/thrift.go +++ b/internal/crossdock/client/oneway/thrift.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/onewayctxpropagation/behavior.go b/internal/crossdock/client/onewayctxpropagation/behavior.go index 607a9cf40..50ff754bb 100644 --- a/internal/crossdock/client/onewayctxpropagation/behavior.go +++ b/internal/crossdock/client/onewayctxpropagation/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/params/constants.go b/internal/crossdock/client/params/constants.go index 595d7d043..40d3c3d01 100644 --- a/internal/crossdock/client/params/constants.go +++ b/internal/crossdock/client/params/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/random/rand.go b/internal/crossdock/client/random/rand.go index a3c936f3e..3cf68e759 100644 --- a/internal/crossdock/client/random/rand.go +++ b/internal/crossdock/client/random/rand.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/random/rand_test.go b/internal/crossdock/client/random/rand_test.go index 9671f1fad..49e0f12d7 100644 --- a/internal/crossdock/client/random/rand_test.go +++ b/internal/crossdock/client/random/rand_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/start.go b/internal/crossdock/client/start.go index f6dcfcf80..58e9d1f41 100644 --- a/internal/crossdock/client/start.go +++ b/internal/crossdock/client/start.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchclient/behavior.go b/internal/crossdock/client/tchclient/behavior.go index f0a372d85..78248c93e 100644 --- a/internal/crossdock/client/tchclient/behavior.go +++ b/internal/crossdock/client/tchclient/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchclient/json.go b/internal/crossdock/client/tchclient/json.go index f5497c6a2..3150512d5 100644 --- a/internal/crossdock/client/tchclient/json.go +++ b/internal/crossdock/client/tchclient/json.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchclient/raw.go b/internal/crossdock/client/tchclient/raw.go index 347aec6b6..98780b734 100644 --- a/internal/crossdock/client/tchclient/raw.go +++ b/internal/crossdock/client/tchclient/raw.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchclient/thrift.go b/internal/crossdock/client/tchclient/thrift.go index b9d866153..bae3abf44 100644 --- a/internal/crossdock/client/tchclient/thrift.go +++ b/internal/crossdock/client/tchclient/thrift.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchserver/behavior.go b/internal/crossdock/client/tchserver/behavior.go index 5c66b3bb1..12c8befe1 100644 --- a/internal/crossdock/client/tchserver/behavior.go +++ b/internal/crossdock/client/tchserver/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchserver/json.go b/internal/crossdock/client/tchserver/json.go index e5771fddd..48a2d5b25 100644 --- a/internal/crossdock/client/tchserver/json.go +++ b/internal/crossdock/client/tchserver/json.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchserver/raw.go b/internal/crossdock/client/tchserver/raw.go index e6c0b395e..8a3db1c18 100644 --- a/internal/crossdock/client/tchserver/raw.go +++ b/internal/crossdock/client/tchserver/raw.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchserver/skip.go b/internal/crossdock/client/tchserver/skip.go index b8826ac50..a8d96340d 100644 --- a/internal/crossdock/client/tchserver/skip.go +++ b/internal/crossdock/client/tchserver/skip.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/tchserver/thrift.go b/internal/crossdock/client/tchserver/thrift.go index 5b6312131..24074cd34 100644 --- a/internal/crossdock/client/tchserver/thrift.go +++ b/internal/crossdock/client/tchserver/thrift.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/client/timeout/behavior.go b/internal/crossdock/client/timeout/behavior.go index 1bcc3083b..a4e21bcd1 100644 --- a/internal/crossdock/client/timeout/behavior.go +++ b/internal/crossdock/client/timeout/behavior.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/crossdock.go b/internal/crossdock/crossdock.go index f43dd9444..a409ce7fb 100644 --- a/internal/crossdock/crossdock.go +++ b/internal/crossdock/crossdock.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/crossdock_test.go b/internal/crossdock/crossdock_test.go index a48560db5..84251c607 100644 --- a/internal/crossdock/crossdock_test.go +++ b/internal/crossdock/crossdock_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/internal/header.go b/internal/crossdock/internal/header.go index b0f4c2a11..94ca0f014 100644 --- a/internal/crossdock/internal/header.go +++ b/internal/crossdock/internal/header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/apachethrift/gauntlet.go b/internal/crossdock/server/apachethrift/gauntlet.go index 621c9cfc7..6f8fca14c 100644 --- a/internal/crossdock/server/apachethrift/gauntlet.go +++ b/internal/crossdock/server/apachethrift/gauntlet.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/apachethrift/server.go b/internal/crossdock/server/apachethrift/server.go index fd21bb7cc..c3fef0c9a 100644 --- a/internal/crossdock/server/apachethrift/server.go +++ b/internal/crossdock/server/apachethrift/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/googlegrpc/echo.go b/internal/crossdock/server/googlegrpc/echo.go index 78e3d881a..288a33f81 100644 --- a/internal/crossdock/server/googlegrpc/echo.go +++ b/internal/crossdock/server/googlegrpc/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/googlegrpc/server.go b/internal/crossdock/server/googlegrpc/server.go index 0b887adbf..c1be9cac4 100644 --- a/internal/crossdock/server/googlegrpc/server.go +++ b/internal/crossdock/server/googlegrpc/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/http/server.go b/internal/crossdock/server/http/server.go index cfc11f47e..dff4fd5fa 100644 --- a/internal/crossdock/server/http/server.go +++ b/internal/crossdock/server/http/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/http/timeout.go b/internal/crossdock/server/http/timeout.go index 5d6ddb5a2..ef2e9fe03 100644 --- a/internal/crossdock/server/http/timeout.go +++ b/internal/crossdock/server/http/timeout.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/oneway/echo.go b/internal/crossdock/server/oneway/echo.go index dc6a928b6..15c8c1c8b 100644 --- a/internal/crossdock/server/oneway/echo.go +++ b/internal/crossdock/server/oneway/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/oneway/server.go b/internal/crossdock/server/oneway/server.go index d8905797f..f568c7fcf 100644 --- a/internal/crossdock/server/oneway/server.go +++ b/internal/crossdock/server/oneway/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/start.go b/internal/crossdock/server/start.go index b5510aa0a..fa47cc0f3 100644 --- a/internal/crossdock/server/start.go +++ b/internal/crossdock/server/start.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/tch/echo.go b/internal/crossdock/server/tch/echo.go index d6f1db675..f78f70de8 100644 --- a/internal/crossdock/server/tch/echo.go +++ b/internal/crossdock/server/tch/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/tch/gauntlet.go b/internal/crossdock/server/tch/gauntlet.go index 37a679580..e1677a633 100644 --- a/internal/crossdock/server/tch/gauntlet.go +++ b/internal/crossdock/server/tch/gauntlet.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/tch/server.go b/internal/crossdock/server/tch/server.go index 55e14f269..d095b7ba3 100644 --- a/internal/crossdock/server/tch/server.go +++ b/internal/crossdock/server/tch/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/tch/timeout.go b/internal/crossdock/server/tch/timeout.go index c1aca0f05..7961a13e4 100644 --- a/internal/crossdock/server/tch/timeout.go +++ b/internal/crossdock/server/tch/timeout.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/echo.go b/internal/crossdock/server/yarpc/echo.go index 39e38bbb6..7425343fd 100644 --- a/internal/crossdock/server/yarpc/echo.go +++ b/internal/crossdock/server/yarpc/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/error.go b/internal/crossdock/server/yarpc/error.go index ee42ad5af..146b8f9a2 100644 --- a/internal/crossdock/server/yarpc/error.go +++ b/internal/crossdock/server/yarpc/error.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/gauntlet.go b/internal/crossdock/server/yarpc/gauntlet.go index 01cafe6e5..b4016bf45 100644 --- a/internal/crossdock/server/yarpc/gauntlet.go +++ b/internal/crossdock/server/yarpc/gauntlet.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/phone.go b/internal/crossdock/server/yarpc/phone.go index 6578b4fea..898e31d69 100644 --- a/internal/crossdock/server/yarpc/phone.go +++ b/internal/crossdock/server/yarpc/phone.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/second_service.go b/internal/crossdock/server/yarpc/second_service.go index 5b33f2791..0903bc702 100644 --- a/internal/crossdock/server/yarpc/second_service.go +++ b/internal/crossdock/server/yarpc/second_service.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/server.go b/internal/crossdock/server/yarpc/server.go index 44a884995..003757fa8 100644 --- a/internal/crossdock/server/yarpc/server.go +++ b/internal/crossdock/server/yarpc/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/server/yarpc/sleep.go b/internal/crossdock/server/yarpc/sleep.go index 8def8e34e..a7bbaa24e 100644 --- a/internal/crossdock/server/yarpc/sleep.go +++ b/internal/crossdock/server/yarpc/sleep.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echo.go b/internal/crossdock/thrift/echo/echo.go index 6c3ae5eda..982f744b8 100644 --- a/internal/crossdock/thrift/echo/echo.go +++ b/internal/crossdock/thrift/echo/echo.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echoclient/client.go b/internal/crossdock/thrift/echo/echoclient/client.go index 7748d5544..2055071a4 100644 --- a/internal/crossdock/thrift/echo/echoclient/client.go +++ b/internal/crossdock/thrift/echo/echoclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echofx/client.go b/internal/crossdock/thrift/echo/echofx/client.go index f42f0ee3c..7dc48047a 100644 --- a/internal/crossdock/thrift/echo/echofx/client.go +++ b/internal/crossdock/thrift/echo/echofx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echofx/doc.go b/internal/crossdock/thrift/echo/echofx/doc.go index e2d441a51..2e4616a2d 100644 --- a/internal/crossdock/thrift/echo/echofx/doc.go +++ b/internal/crossdock/thrift/echo/echofx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echofx/server.go b/internal/crossdock/thrift/echo/echofx/server.go index 7aa122e56..8b0ce23e7 100644 --- a/internal/crossdock/thrift/echo/echofx/server.go +++ b/internal/crossdock/thrift/echo/echofx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echoserver/server.go b/internal/crossdock/thrift/echo/echoserver/server.go index 2844c5487..8e17e6786 100644 --- a/internal/crossdock/thrift/echo/echoserver/server.go +++ b/internal/crossdock/thrift/echo/echoserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/echotest/client.go b/internal/crossdock/thrift/echo/echotest/client.go index 3cbf8dfea..45ddba035 100644 --- a/internal/crossdock/thrift/echo/echotest/client.go +++ b/internal/crossdock/thrift/echo/echotest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/echo/types_yarpc.go b/internal/crossdock/thrift/echo/types_yarpc.go index 0776e8961..c64fb0f9b 100644 --- a/internal/crossdock/thrift/echo/types_yarpc.go +++ b/internal/crossdock/thrift/echo/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/gauntlet.go b/internal/crossdock/thrift/gauntlet/gauntlet.go index 8115cf5a0..ec2d1b820 100644 --- a/internal/crossdock/thrift/gauntlet/gauntlet.go +++ b/internal/crossdock/thrift/gauntlet/gauntlet.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondserviceclient/client.go b/internal/crossdock/thrift/gauntlet/secondserviceclient/client.go index 12f053b3a..39bafecfe 100644 --- a/internal/crossdock/thrift/gauntlet/secondserviceclient/client.go +++ b/internal/crossdock/thrift/gauntlet/secondserviceclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondservicefx/client.go b/internal/crossdock/thrift/gauntlet/secondservicefx/client.go index 04110761d..66d23420c 100644 --- a/internal/crossdock/thrift/gauntlet/secondservicefx/client.go +++ b/internal/crossdock/thrift/gauntlet/secondservicefx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondservicefx/doc.go b/internal/crossdock/thrift/gauntlet/secondservicefx/doc.go index b35155eb2..0bc6801c1 100644 --- a/internal/crossdock/thrift/gauntlet/secondservicefx/doc.go +++ b/internal/crossdock/thrift/gauntlet/secondservicefx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondservicefx/server.go b/internal/crossdock/thrift/gauntlet/secondservicefx/server.go index 088d72964..a62d65658 100644 --- a/internal/crossdock/thrift/gauntlet/secondservicefx/server.go +++ b/internal/crossdock/thrift/gauntlet/secondservicefx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondserviceserver/server.go b/internal/crossdock/thrift/gauntlet/secondserviceserver/server.go index 5e7e5055f..964469c9c 100644 --- a/internal/crossdock/thrift/gauntlet/secondserviceserver/server.go +++ b/internal/crossdock/thrift/gauntlet/secondserviceserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/secondservicetest/client.go b/internal/crossdock/thrift/gauntlet/secondservicetest/client.go index 257c504a4..0e74e86e4 100644 --- a/internal/crossdock/thrift/gauntlet/secondservicetest/client.go +++ b/internal/crossdock/thrift/gauntlet/secondservicetest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttestclient/client.go b/internal/crossdock/thrift/gauntlet/thrifttestclient/client.go index 810a880dc..cb86171c2 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttestclient/client.go +++ b/internal/crossdock/thrift/gauntlet/thrifttestclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttestfx/client.go b/internal/crossdock/thrift/gauntlet/thrifttestfx/client.go index d3fc5e2e5..8bdbc3c5d 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttestfx/client.go +++ b/internal/crossdock/thrift/gauntlet/thrifttestfx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttestfx/doc.go b/internal/crossdock/thrift/gauntlet/thrifttestfx/doc.go index 267a1fac7..9ca64ffba 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttestfx/doc.go +++ b/internal/crossdock/thrift/gauntlet/thrifttestfx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttestfx/server.go b/internal/crossdock/thrift/gauntlet/thrifttestfx/server.go index a1b9288ce..8a454f8c9 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttestfx/server.go +++ b/internal/crossdock/thrift/gauntlet/thrifttestfx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttestserver/server.go b/internal/crossdock/thrift/gauntlet/thrifttestserver/server.go index d6320566a..0ce379ef7 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttestserver/server.go +++ b/internal/crossdock/thrift/gauntlet/thrifttestserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/thrifttesttest/client.go b/internal/crossdock/thrift/gauntlet/thrifttesttest/client.go index 78ecf2d9d..2e72fec18 100644 --- a/internal/crossdock/thrift/gauntlet/thrifttesttest/client.go +++ b/internal/crossdock/thrift/gauntlet/thrifttesttest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gauntlet/types_yarpc.go b/internal/crossdock/thrift/gauntlet/types_yarpc.go index 848a19a06..508d75de4 100644 --- a/internal/crossdock/thrift/gauntlet/types_yarpc.go +++ b/internal/crossdock/thrift/gauntlet/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/echo/constants.go b/internal/crossdock/thrift/gen-go/echo/constants.go index 29c1bb484..9f93be8a2 100644 --- a/internal/crossdock/thrift/gen-go/echo/constants.go +++ b/internal/crossdock/thrift/gen-go/echo/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/echo/echo.go b/internal/crossdock/thrift/gen-go/echo/echo.go index 749dadc51..1ce35786c 100644 --- a/internal/crossdock/thrift/gen-go/echo/echo.go +++ b/internal/crossdock/thrift/gen-go/echo/echo.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/echo/tchan-echo.go b/internal/crossdock/thrift/gen-go/echo/tchan-echo.go index ca2052589..f08d299f8 100644 --- a/internal/crossdock/thrift/gen-go/echo/tchan-echo.go +++ b/internal/crossdock/thrift/gen-go/echo/tchan-echo.go @@ -1,6 +1,6 @@ // @generated Code generated by thrift-gen. Do not modify. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/echo/ttypes.go b/internal/crossdock/thrift/gen-go/echo/ttypes.go index 63e6b4d1f..a0e7561a2 100644 --- a/internal/crossdock/thrift/gen-go/echo/ttypes.go +++ b/internal/crossdock/thrift/gen-go/echo/ttypes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_apache/constants.go b/internal/crossdock/thrift/gen-go/gauntlet_apache/constants.go index 2338fac78..ed7cd6427 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_apache/constants.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_apache/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_apache/secondservice.go b/internal/crossdock/thrift/gen-go/gauntlet_apache/secondservice.go index 77ebb78ef..a188cf176 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_apache/secondservice.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_apache/secondservice.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_apache/thrifttest.go b/internal/crossdock/thrift/gen-go/gauntlet_apache/thrifttest.go index 91548a185..665ace646 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_apache/thrifttest.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_apache/thrifttest.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_apache/ttypes.go b/internal/crossdock/thrift/gen-go/gauntlet_apache/ttypes.go index f51c0c8da..5bde19b83 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_apache/ttypes.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_apache/ttypes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/constants.go b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/constants.go index 0359cfbff..92dccabc4 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/constants.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/secondservice.go b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/secondservice.go index 7b4ba1aa9..00a13aafa 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/secondservice.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/secondservice.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/tchan-gauntlet_tchannel.go b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/tchan-gauntlet_tchannel.go index 9987ee859..eb6b782b1 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/tchan-gauntlet_tchannel.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/tchan-gauntlet_tchannel.go @@ -1,6 +1,6 @@ // @generated Code generated by thrift-gen. Do not modify. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/thrifttest.go b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/thrifttest.go index c1eafff93..69442e133 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/thrifttest.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/thrifttest.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/ttypes.go b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/ttypes.go index dab35d9f6..e64f8b96e 100644 --- a/internal/crossdock/thrift/gen-go/gauntlet_tchannel/ttypes.go +++ b/internal/crossdock/thrift/gen-go/gauntlet_tchannel/ttypes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/oneway.go b/internal/crossdock/thrift/oneway/oneway.go index 914b14e2c..cb5a31197 100644 --- a/internal/crossdock/thrift/oneway/oneway.go +++ b/internal/crossdock/thrift/oneway/oneway.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewayclient/client.go b/internal/crossdock/thrift/oneway/onewayclient/client.go index efcf0735d..cf3c9fdd8 100644 --- a/internal/crossdock/thrift/oneway/onewayclient/client.go +++ b/internal/crossdock/thrift/oneway/onewayclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewayfx/client.go b/internal/crossdock/thrift/oneway/onewayfx/client.go index 76b6d4c45..afc4f3a03 100644 --- a/internal/crossdock/thrift/oneway/onewayfx/client.go +++ b/internal/crossdock/thrift/oneway/onewayfx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewayfx/doc.go b/internal/crossdock/thrift/oneway/onewayfx/doc.go index cc140a24b..2ebbefa22 100644 --- a/internal/crossdock/thrift/oneway/onewayfx/doc.go +++ b/internal/crossdock/thrift/oneway/onewayfx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewayfx/server.go b/internal/crossdock/thrift/oneway/onewayfx/server.go index abc9b2add..daf77725c 100644 --- a/internal/crossdock/thrift/oneway/onewayfx/server.go +++ b/internal/crossdock/thrift/oneway/onewayfx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewayserver/server.go b/internal/crossdock/thrift/oneway/onewayserver/server.go index a5228c6cd..528d2b49b 100644 --- a/internal/crossdock/thrift/oneway/onewayserver/server.go +++ b/internal/crossdock/thrift/oneway/onewayserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/onewaytest/client.go b/internal/crossdock/thrift/oneway/onewaytest/client.go index 0c9d07f5a..c8362d092 100644 --- a/internal/crossdock/thrift/oneway/onewaytest/client.go +++ b/internal/crossdock/thrift/oneway/onewaytest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/crossdock/thrift/oneway/types_yarpc.go b/internal/crossdock/thrift/oneway/types_yarpc.go index a72fc7692..d2cac9795 100644 --- a/internal/crossdock/thrift/oneway/types_yarpc.go +++ b/internal/crossdock/thrift/oneway/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/digester/digester.go b/internal/digester/digester.go index fc238962d..51eaa3864 100644 --- a/internal/digester/digester.go +++ b/internal/digester/digester.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/digester/digester_test.go b/internal/digester/digester_test.go index 0ca051156..241da6d75 100644 --- a/internal/digester/digester_test.go +++ b/internal/digester/digester_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/errorsync/err.go b/internal/errorsync/err.go index 90655b5a7..8a5f2fc24 100644 --- a/internal/errorsync/err.go +++ b/internal/errorsync/err.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/errorsync/err_test.go b/internal/errorsync/err_test.go index 5c0a2140c..c8bb1b484 100644 --- a/internal/errorsync/err_test.go +++ b/internal/errorsync/err_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/json-keyvalue/client/main.go b/internal/examples/json-keyvalue/client/main.go index 3f2e4a673..a44718958 100644 --- a/internal/examples/json-keyvalue/client/main.go +++ b/internal/examples/json-keyvalue/client/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/json-keyvalue/server/main.go b/internal/examples/json-keyvalue/server/main.go index 73744bba1..1f6801bd4 100644 --- a/internal/examples/json-keyvalue/server/main.go +++ b/internal/examples/json-keyvalue/server/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/protobuf/example/example.go b/internal/examples/protobuf/example/example.go index 2e2569985..b278e324e 100644 --- a/internal/examples/protobuf/example/example.go +++ b/internal/examples/protobuf/example/example.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/protobuf/exampleutil/exampleutil.go b/internal/examples/protobuf/exampleutil/exampleutil.go index ffba0f4eb..c225f243d 100644 --- a/internal/examples/protobuf/exampleutil/exampleutil.go +++ b/internal/examples/protobuf/exampleutil/exampleutil.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/protobuf/main.go b/internal/examples/protobuf/main.go index 0d8b2da8d..8d176d85c 100644 --- a/internal/examples/protobuf/main.go +++ b/internal/examples/protobuf/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/protobuf/main_test.go b/internal/examples/protobuf/main_test.go index 992b9632d..f22a02ab7 100644 --- a/internal/examples/protobuf/main_test.go +++ b/internal/examples/protobuf/main_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/streaming/client/main.go b/internal/examples/streaming/client/main.go index b2ec6e067..2ec963169 100644 --- a/internal/examples/streaming/client/main.go +++ b/internal/examples/streaming/client/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/streaming/server/main.go b/internal/examples/streaming/server/main.go index 22a25205e..07fb8f071 100644 --- a/internal/examples/streaming/server/main.go +++ b/internal/examples/streaming/server/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/echo.go b/internal/examples/thrift-hello/hello/echo/echo.go index ef8aa83ae..011163cd1 100644 --- a/internal/examples/thrift-hello/hello/echo/echo.go +++ b/internal/examples/thrift-hello/hello/echo/echo.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/helloclient/client.go b/internal/examples/thrift-hello/hello/echo/helloclient/client.go index 7d2f48e7d..9512e504e 100644 --- a/internal/examples/thrift-hello/hello/echo/helloclient/client.go +++ b/internal/examples/thrift-hello/hello/echo/helloclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/hellofx/client.go b/internal/examples/thrift-hello/hello/echo/hellofx/client.go index 0bc42a505..341568a81 100644 --- a/internal/examples/thrift-hello/hello/echo/hellofx/client.go +++ b/internal/examples/thrift-hello/hello/echo/hellofx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/hellofx/doc.go b/internal/examples/thrift-hello/hello/echo/hellofx/doc.go index 9cf35109a..3b1147f19 100644 --- a/internal/examples/thrift-hello/hello/echo/hellofx/doc.go +++ b/internal/examples/thrift-hello/hello/echo/hellofx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/hellofx/server.go b/internal/examples/thrift-hello/hello/echo/hellofx/server.go index e3d3a36d6..4e9f40d17 100644 --- a/internal/examples/thrift-hello/hello/echo/hellofx/server.go +++ b/internal/examples/thrift-hello/hello/echo/hellofx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/helloserver/server.go b/internal/examples/thrift-hello/hello/echo/helloserver/server.go index e967f42da..178b92406 100644 --- a/internal/examples/thrift-hello/hello/echo/helloserver/server.go +++ b/internal/examples/thrift-hello/hello/echo/helloserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/hellotest/client.go b/internal/examples/thrift-hello/hello/echo/hellotest/client.go index 528a842ac..e7a3eed06 100644 --- a/internal/examples/thrift-hello/hello/echo/hellotest/client.go +++ b/internal/examples/thrift-hello/hello/echo/hellotest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/echo/types_yarpc.go b/internal/examples/thrift-hello/hello/echo/types_yarpc.go index 0776e8961..c64fb0f9b 100644 --- a/internal/examples/thrift-hello/hello/echo/types_yarpc.go +++ b/internal/examples/thrift-hello/hello/echo/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-hello/hello/main.go b/internal/examples/thrift-hello/hello/main.go index c627d5bb4..20b6acdde 100644 --- a/internal/examples/thrift-hello/hello/main.go +++ b/internal/examples/thrift-hello/hello/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/client/cache.go b/internal/examples/thrift-keyvalue/keyvalue/client/cache.go index 3a5e345a1..69273001f 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/client/cache.go +++ b/internal/examples/thrift-keyvalue/keyvalue/client/cache.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/client/main.go b/internal/examples/thrift-keyvalue/keyvalue/client/main.go index 24e5a2434..2808802ad 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/client/main.go +++ b/internal/examples/thrift-keyvalue/keyvalue/client/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueclient/client.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueclient/client.go index 82efa90ce..fd4f3d5f7 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueclient/client.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/client.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/client.go index a33feadab..ec49bbabd 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/client.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/doc.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/doc.go index 542e2896c..faef484d2 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/doc.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/server.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/server.go index 8f5ee36c7..ce2a08d3c 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/server.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluefx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueserver/server.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueserver/server.go index 876cb99af..5c8d38719 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueserver/server.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvalueserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluetest/client.go b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluetest/client.go index 4752640a7..bc4a68ee7 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluetest/client.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/keyvaluetest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/kv.go b/internal/examples/thrift-keyvalue/keyvalue/kv/kv.go index 5e2fbb579..8191796b7 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/kv.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/kv.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/kv/types_yarpc.go b/internal/examples/thrift-keyvalue/keyvalue/kv/types_yarpc.go index 754053443..b193bdcdd 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/kv/types_yarpc.go +++ b/internal/examples/thrift-keyvalue/keyvalue/kv/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-keyvalue/keyvalue/server/main.go b/internal/examples/thrift-keyvalue/keyvalue/server/main.go index d41fdf0a2..c66b51d68 100644 --- a/internal/examples/thrift-keyvalue/keyvalue/server/main.go +++ b/internal/examples/thrift-keyvalue/keyvalue/server/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/main.go b/internal/examples/thrift-oneway/main.go index 445abcc9b..d2ee07abb 100644 --- a/internal/examples/thrift-oneway/main.go +++ b/internal/examples/thrift-oneway/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/helloclient/client.go b/internal/examples/thrift-oneway/sink/helloclient/client.go index 4c3422fee..9670b18e2 100644 --- a/internal/examples/thrift-oneway/sink/helloclient/client.go +++ b/internal/examples/thrift-oneway/sink/helloclient/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/hellofx/client.go b/internal/examples/thrift-oneway/sink/hellofx/client.go index 577e74156..28a5bd633 100644 --- a/internal/examples/thrift-oneway/sink/hellofx/client.go +++ b/internal/examples/thrift-oneway/sink/hellofx/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/hellofx/doc.go b/internal/examples/thrift-oneway/sink/hellofx/doc.go index 9cf35109a..3b1147f19 100644 --- a/internal/examples/thrift-oneway/sink/hellofx/doc.go +++ b/internal/examples/thrift-oneway/sink/hellofx/doc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/hellofx/server.go b/internal/examples/thrift-oneway/sink/hellofx/server.go index a4a1a1792..2b3e3ec80 100644 --- a/internal/examples/thrift-oneway/sink/hellofx/server.go +++ b/internal/examples/thrift-oneway/sink/hellofx/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/helloserver/server.go b/internal/examples/thrift-oneway/sink/helloserver/server.go index cca7666ee..c291738fd 100644 --- a/internal/examples/thrift-oneway/sink/helloserver/server.go +++ b/internal/examples/thrift-oneway/sink/helloserver/server.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/hellotest/client.go b/internal/examples/thrift-oneway/sink/hellotest/client.go index 4b873a570..9c3edffbb 100644 --- a/internal/examples/thrift-oneway/sink/hellotest/client.go +++ b/internal/examples/thrift-oneway/sink/hellotest/client.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/sink.go b/internal/examples/thrift-oneway/sink/sink.go index 0bc0df347..ef2c73abe 100644 --- a/internal/examples/thrift-oneway/sink/sink.go +++ b/internal/examples/thrift-oneway/sink/sink.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/examples/thrift-oneway/sink/types_yarpc.go b/internal/examples/thrift-oneway/sink/types_yarpc.go index e756cd165..11e559823 100644 --- a/internal/examples/thrift-oneway/sink/types_yarpc.go +++ b/internal/examples/thrift-oneway/sink/types_yarpc.go @@ -1,7 +1,7 @@ // Code generated by thriftrw-plugin-yarpc // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/firstoutboundmiddleware/middleware.go b/internal/firstoutboundmiddleware/middleware.go index 25dbe7ffd..76e789dd1 100644 --- a/internal/firstoutboundmiddleware/middleware.go +++ b/internal/firstoutboundmiddleware/middleware.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/firstoutboundmiddleware/middleware_test.go b/internal/firstoutboundmiddleware/middleware_test.go index 476d4966b..447efd64d 100644 --- a/internal/firstoutboundmiddleware/middleware_test.go +++ b/internal/firstoutboundmiddleware/middleware_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/grpcctx/grpcctx.go b/internal/grpcctx/grpcctx.go index de52ab78c..dd8090cda 100644 --- a/internal/grpcctx/grpcctx.go +++ b/internal/grpcctx/grpcctx.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/grpcctx/grpcctx_test.go b/internal/grpcctx/grpcctx_test.go index 6e0fa2bd8..520cc6b1a 100644 --- a/internal/grpcctx/grpcctx_test.go +++ b/internal/grpcctx/grpcctx_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/grpcerrorcodes/codes.go b/internal/grpcerrorcodes/codes.go index d5f09d49d..6fb25ea1d 100644 --- a/internal/grpcerrorcodes/codes.go +++ b/internal/grpcerrorcodes/codes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/grpcerrorcodes/codes_test.go b/internal/grpcerrorcodes/codes_test.go index 881dea20e..53ec5613a 100644 --- a/internal/grpcerrorcodes/codes_test.go +++ b/internal/grpcerrorcodes/codes_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/humanize/join.go b/internal/humanize/join.go index 0895fa6b4..f0382497c 100644 --- a/internal/humanize/join.go +++ b/internal/humanize/join.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/humanize/join_test.go b/internal/humanize/join_test.go index e309f5e0a..c2ecc199c 100644 --- a/internal/humanize/join_test.go +++ b/internal/humanize/join_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/inboundcall/metadata.go b/internal/inboundcall/metadata.go index bd56f337d..755b7dfff 100644 --- a/internal/inboundcall/metadata.go +++ b/internal/inboundcall/metadata.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/inboundcall/metadata_test.go b/internal/inboundcall/metadata_test.go index a6d73b492..646e48678 100644 --- a/internal/inboundcall/metadata_test.go +++ b/internal/inboundcall/metadata_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/inboundmiddleware/chain.go b/internal/inboundmiddleware/chain.go index b592f080d..2371e6540 100644 --- a/internal/inboundmiddleware/chain.go +++ b/internal/inboundmiddleware/chain.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/inboundmiddleware/chain_test.go b/internal/inboundmiddleware/chain_test.go index c409a512d..aa8fadec8 100644 --- a/internal/inboundmiddleware/chain_test.go +++ b/internal/inboundmiddleware/chain_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/integrationtest/util.go b/internal/integrationtest/util.go index b54038814..460808cfd 100644 --- a/internal/integrationtest/util.go +++ b/internal/integrationtest/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/integrationtest/util_test.go b/internal/integrationtest/util_test.go index dca1ec6f3..29402c1ae 100644 --- a/internal/integrationtest/util_test.go +++ b/internal/integrationtest/util_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/doc.go b/internal/interpolate/doc.go index 1b2b4d5ec..3d979b4ad 100644 --- a/internal/interpolate/doc.go +++ b/internal/interpolate/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/example_test.go b/internal/interpolate/example_test.go index de682188a..0476b36d2 100644 --- a/internal/interpolate/example_test.go +++ b/internal/interpolate/example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/parse.go b/internal/interpolate/parse.go index 677a069a0..e5fda4302 100644 --- a/internal/interpolate/parse.go +++ b/internal/interpolate/parse.go @@ -1,7 +1,7 @@ // Code generated by ragel // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/parse_test.go b/internal/interpolate/parse_test.go index 750aaaa19..f40d46ae0 100644 --- a/internal/interpolate/parse_test.go +++ b/internal/interpolate/parse_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/types.go b/internal/interpolate/types.go index 56a6eb8b6..0b95515a3 100644 --- a/internal/interpolate/types.go +++ b/internal/interpolate/types.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/types_test.go b/internal/interpolate/types_test.go index f22699c13..e2095de23 100644 --- a/internal/interpolate/types_test.go +++ b/internal/interpolate/types_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/interpolate/utils_for_test.go b/internal/interpolate/utils_for_test.go index afbcc60e8..d7796ca7d 100644 --- a/internal/interpolate/utils_for_test.go +++ b/internal/interpolate/utils_for_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/introspection/dispatcher.go b/internal/introspection/dispatcher.go index 3b3d5e0d2..803207519 100644 --- a/internal/introspection/dispatcher.go +++ b/internal/introspection/dispatcher.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/introspection/package.go b/internal/introspection/package.go index 897efdf7d..366a010a5 100644 --- a/internal/introspection/package.go +++ b/internal/introspection/package.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/introspection/router.go b/internal/introspection/router.go index 26a513f3f..d5a650e68 100644 --- a/internal/introspection/router.go +++ b/internal/introspection/router.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/introspection/router_test.go b/internal/introspection/router_test.go index e70ff1d74..4cc7f3758 100644 --- a/internal/introspection/router_test.go +++ b/internal/introspection/router_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/iopool/copy.go b/internal/iopool/copy.go index f4dc7b636..6f8f48e63 100644 --- a/internal/iopool/copy.go +++ b/internal/iopool/copy.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/iopool/copy_test.go b/internal/iopool/copy_test.go index 47b1b49ed..aa272423b 100644 --- a/internal/iopool/copy_test.go +++ b/internal/iopool/copy_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/net/httpserver.go b/internal/net/httpserver.go index fd3a137c8..d13ea032a 100644 --- a/internal/net/httpserver.go +++ b/internal/net/httpserver.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/net/httpserver_test.go b/internal/net/httpserver_test.go index e7f13fbe8..4d19c9992 100644 --- a/internal/net/httpserver_test.go +++ b/internal/net/httpserver_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/call.go b/internal/observability/call.go index b9fe0014e..ef513ff35 100644 --- a/internal/observability/call.go +++ b/internal/observability/call.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/common_test.go b/internal/observability/common_test.go index 362eae37c..fd40bdf88 100644 --- a/internal/observability/common_test.go +++ b/internal/observability/common_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/ctx_middleware_test.go b/internal/observability/ctx_middleware_test.go index ec5936309..45f1f3696 100644 --- a/internal/observability/ctx_middleware_test.go +++ b/internal/observability/ctx_middleware_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/doc.go b/internal/observability/doc.go index 31e7f5e02..6bb2da2de 100644 --- a/internal/observability/doc.go +++ b/internal/observability/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/extractor.go b/internal/observability/extractor.go index 78d1f9608..8dfbdad9c 100644 --- a/internal/observability/extractor.go +++ b/internal/observability/extractor.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/graph.go b/internal/observability/graph.go index 869b3603d..c72466eb3 100644 --- a/internal/observability/graph.go +++ b/internal/observability/graph.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/graph_test.go b/internal/observability/graph_test.go index 6053112ea..8c8def3f4 100644 --- a/internal/observability/graph_test.go +++ b/internal/observability/graph_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/middleware.go b/internal/observability/middleware.go index 1dfd56294..b6d427e74 100644 --- a/internal/observability/middleware.go +++ b/internal/observability/middleware.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/middleware_test.go b/internal/observability/middleware_test.go index 9dd980966..e52027e64 100644 --- a/internal/observability/middleware_test.go +++ b/internal/observability/middleware_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/observability/stream.go b/internal/observability/stream.go index 5fe5272e3..908b3a15f 100644 --- a/internal/observability/stream.go +++ b/internal/observability/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/outboundmiddleware/chain.go b/internal/outboundmiddleware/chain.go index e4291386a..244c834fc 100644 --- a/internal/outboundmiddleware/chain.go +++ b/internal/outboundmiddleware/chain.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/outboundmiddleware/chain_test.go b/internal/outboundmiddleware/chain_test.go index 2f008c240..cb5fc975d 100644 --- a/internal/outboundmiddleware/chain_test.go +++ b/internal/outboundmiddleware/chain_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/generator.go b/internal/protoplugin-v2/generator.go index 35672a3fc..3ad36f89f 100644 --- a/internal/protoplugin-v2/generator.go +++ b/internal/protoplugin-v2/generator.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/multi_runner.go b/internal/protoplugin-v2/multi_runner.go index 9fbbb4e1c..8ea7b1f6d 100644 --- a/internal/protoplugin-v2/multi_runner.go +++ b/internal/protoplugin-v2/multi_runner.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/multi_runner_test.go b/internal/protoplugin-v2/multi_runner_test.go index 2cf7777e2..afd4aaa3a 100644 --- a/internal/protoplugin-v2/multi_runner_test.go +++ b/internal/protoplugin-v2/multi_runner_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/protoplugin.go b/internal/protoplugin-v2/protoplugin.go index 51b118eb1..9ac7116e2 100644 --- a/internal/protoplugin-v2/protoplugin.go +++ b/internal/protoplugin-v2/protoplugin.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/registry.go b/internal/protoplugin-v2/registry.go index 35ae4b9af..961818442 100644 --- a/internal/protoplugin-v2/registry.go +++ b/internal/protoplugin-v2/registry.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/registry_test.go b/internal/protoplugin-v2/registry_test.go index 7e1a56c0f..2f8c1e554 100644 --- a/internal/protoplugin-v2/registry_test.go +++ b/internal/protoplugin-v2/registry_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/runner.go b/internal/protoplugin-v2/runner.go index c1a94be30..d4a62462e 100644 --- a/internal/protoplugin-v2/runner.go +++ b/internal/protoplugin-v2/runner.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/utils.go b/internal/protoplugin-v2/utils.go index c7d68a56c..a983e2a1f 100644 --- a/internal/protoplugin-v2/utils.go +++ b/internal/protoplugin-v2/utils.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin-v2/utils_test.go b/internal/protoplugin-v2/utils_test.go index 5c9509212..841d4bfa2 100644 --- a/internal/protoplugin-v2/utils_test.go +++ b/internal/protoplugin-v2/utils_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/generator.go b/internal/protoplugin/generator.go index aaa91a086..9c42ccae4 100644 --- a/internal/protoplugin/generator.go +++ b/internal/protoplugin/generator.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/multi_runner.go b/internal/protoplugin/multi_runner.go index 64526b4fa..a91df3912 100644 --- a/internal/protoplugin/multi_runner.go +++ b/internal/protoplugin/multi_runner.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/multi_runner_test.go b/internal/protoplugin/multi_runner_test.go index 019c37aba..27422b3ff 100644 --- a/internal/protoplugin/multi_runner_test.go +++ b/internal/protoplugin/multi_runner_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/protoplugin.go b/internal/protoplugin/protoplugin.go index c6d0b7538..24181aab9 100644 --- a/internal/protoplugin/protoplugin.go +++ b/internal/protoplugin/protoplugin.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/registry.go b/internal/protoplugin/registry.go index 0b9ba0321..8115f2a09 100644 --- a/internal/protoplugin/registry.go +++ b/internal/protoplugin/registry.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/registry_test.go b/internal/protoplugin/registry_test.go index 3090758a6..4baa6a0f7 100644 --- a/internal/protoplugin/registry_test.go +++ b/internal/protoplugin/registry_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/protoplugin/runner.go b/internal/protoplugin/runner.go index bb5927d7e..b76b0ef34 100644 --- a/internal/protoplugin/runner.go +++ b/internal/protoplugin/runner.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/prototest/example/example.go b/internal/prototest/example/example.go index 667c302ec..83c3eaa8b 100644 --- a/internal/prototest/example/example.go +++ b/internal/prototest/example/example.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/prototest/exampleutil/exampleutil.go b/internal/prototest/exampleutil/exampleutil.go index 012eb888d..c32cea08f 100644 --- a/internal/prototest/exampleutil/exampleutil.go +++ b/internal/prototest/exampleutil/exampleutil.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/request/validator_outbound.go b/internal/request/validator_outbound.go index 1ed136cef..eee5cca5b 100644 --- a/internal/request/validator_outbound.go +++ b/internal/request/validator_outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/request/validator_outbound_test.go b/internal/request/validator_outbound_test.go index efa3721f4..0920a9607 100644 --- a/internal/request/validator_outbound_test.go +++ b/internal/request/validator_outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/routertest/matcher.go b/internal/routertest/matcher.go index a83f470aa..9413b403e 100644 --- a/internal/routertest/matcher.go +++ b/internal/routertest/matcher.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/service-test/cmd.go b/internal/service-test/cmd.go index 9df87bf62..c8502ed69 100644 --- a/internal/service-test/cmd.go +++ b/internal/service-test/cmd.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/service-test/config.go b/internal/service-test/config.go index ab09bf9c2..0bec77ec5 100644 --- a/internal/service-test/config.go +++ b/internal/service-test/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/service-test/main.go b/internal/service-test/main.go index 939981968..2b52cdcea 100644 --- a/internal/service-test/main.go +++ b/internal/service-test/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/servicename.go b/internal/servicename.go index 0d48a5dc1..2d611c1c8 100644 --- a/internal/servicename.go +++ b/internal/servicename.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/servicename_test.go b/internal/servicename_test.go index e62127b18..60bd84bf6 100644 --- a/internal/servicename_test.go +++ b/internal/servicename_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/shard/main.go b/internal/shard/main.go index 3727e15f0..ebd6eec85 100644 --- a/internal/shard/main.go +++ b/internal/shard/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/shard/main_test.go b/internal/shard/main_test.go index d3e4823b2..c863e9e26 100644 --- a/internal/shard/main_test.go +++ b/internal/shard/main_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/stresstest/main.go b/internal/stresstest/main.go index 34ff464a9..20d3fe525 100644 --- a/internal/stresstest/main.go +++ b/internal/stresstest/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/testtime/scale.go b/internal/testtime/scale.go index bd5fde7dc..d09e450ce 100644 --- a/internal/testtime/scale.go +++ b/internal/testtime/scale.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/testutils/metricutils.go b/internal/testutils/metricutils.go index e45b8bb30..f7d1a9ea1 100644 --- a/internal/testutils/metricutils.go +++ b/internal/testutils/metricutils.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/testutils/testutils.go b/internal/testutils/testutils.go index 5c591c9a8..408085786 100644 --- a/internal/testutils/testutils.go +++ b/internal/testutils/testutils.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/whitespace/expand.go b/internal/whitespace/expand.go index 06513ad78..5134296fc 100644 --- a/internal/whitespace/expand.go +++ b/internal/whitespace/expand.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/yarpcerrors/yarpcerrors.go b/internal/yarpcerrors/yarpcerrors.go index e130b8347..2a90733e1 100644 --- a/internal/yarpcerrors/yarpcerrors.go +++ b/internal/yarpcerrors/yarpcerrors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/yarpcerrors/yarpcerrors_test.go b/internal/yarpcerrors/yarpcerrors_test.go index 3d8f9abc5..60c831296 100644 --- a/internal/yarpcerrors/yarpcerrors_test.go +++ b/internal/yarpcerrors/yarpcerrors_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/yarpctest/hostport.go b/internal/yarpctest/hostport.go index 13ce44c29..b4c2e1609 100644 --- a/internal/yarpctest/hostport.go +++ b/internal/yarpctest/hostport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/yarpctest/hostport_test.go b/internal/yarpctest/hostport_test.go index abb761920..52cdb0de3 100644 --- a/internal/yarpctest/hostport_test.go +++ b/internal/yarpctest/hostport_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/internal/yarpctest/testing.go b/internal/yarpctest/testing.go index 75fe5b960..29396ded8 100644 --- a/internal/yarpctest/testing.go +++ b/internal/yarpctest/testing.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/middleware.go b/middleware.go index 47bd4995d..f50990759 100644 --- a/middleware.go +++ b/middleware.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/middleware_test.go b/middleware_test.go index c6d156773..11e99e615 100644 --- a/middleware_test.go +++ b/middleware_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractlist/doc.go b/peer/abstractlist/doc.go index d8a8550ba..9a9494263 100644 --- a/peer/abstractlist/doc.go +++ b/peer/abstractlist/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractlist/list.go b/peer/abstractlist/list.go index 9e5624e9a..f616d50b0 100644 --- a/peer/abstractlist/list.go +++ b/peer/abstractlist/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractlist/list_test.go b/peer/abstractlist/list_test.go index e0913abe9..92a71da49 100644 --- a/peer/abstractlist/list_test.go +++ b/peer/abstractlist/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractlist/peer.go b/peer/abstractlist/peer.go index c03682c3e..9c38ec8b1 100644 --- a/peer/abstractlist/peer.go +++ b/peer/abstractlist/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractpeer/peer.go b/peer/abstractpeer/peer.go index e0b68dc90..ba87445b4 100644 --- a/peer/abstractpeer/peer.go +++ b/peer/abstractpeer/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractpeer/peer_test.go b/peer/abstractpeer/peer_test.go index 5e22bb727..a78aae803 100644 --- a/peer/abstractpeer/peer_test.go +++ b/peer/abstractpeer/peer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/abstractpeer/peeraction_test.go b/peer/abstractpeer/peeraction_test.go index d716a9196..54d4943bd 100644 --- a/peer/abstractpeer/peeraction_test.go +++ b/peer/abstractpeer/peeraction_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/bind.go b/peer/bind.go index b69833178..27ce3b3b8 100644 --- a/peer/bind.go +++ b/peer/bind.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/bind_test.go b/peer/bind_test.go index 435a7d1b3..2807d73a3 100644 --- a/peer/bind_test.go +++ b/peer/bind_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/direct/config.go b/peer/direct/config.go index 299694ee7..e4321d5c4 100644 --- a/peer/direct/config.go +++ b/peer/direct/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/direct/config_test.go b/peer/direct/config_test.go index ce5e592a8..e5aa97301 100644 --- a/peer/direct/config_test.go +++ b/peer/direct/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/direct/direct.go b/peer/direct/direct.go index 62105b64d..d87bf8411 100644 --- a/peer/direct/direct.go +++ b/peer/direct/direct.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/direct/direct_test.go b/peer/direct/direct_test.go index c765d6797..c85594b77 100644 --- a/peer/direct/direct_test.go +++ b/peer/direct/direct_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/doc.go b/peer/doc.go index 0558be420..2e97c425c 100644 --- a/peer/doc.go +++ b/peer/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/config.go b/peer/hashring32/config.go index ee8f4c040..ce328bdba 100644 --- a/peer/hashring32/config.go +++ b/peer/hashring32/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/config_test.go b/peer/hashring32/config_test.go index 108b2cfd3..12b07673f 100644 --- a/peer/hashring32/config_test.go +++ b/peer/hashring32/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/farmhashring/fingerprint32.go b/peer/hashring32/internal/farmhashring/fingerprint32.go index 3524a3922..18901be16 100644 --- a/peer/hashring32/internal/farmhashring/fingerprint32.go +++ b/peer/hashring32/internal/farmhashring/fingerprint32.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/farmhashring/fingerprint32_test.go b/peer/hashring32/internal/farmhashring/fingerprint32_test.go index 519dcb6b1..233b0546e 100644 --- a/peer/hashring32/internal/farmhashring/fingerprint32_test.go +++ b/peer/hashring32/internal/farmhashring/fingerprint32_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/hashring32/hashring32.go b/peer/hashring32/internal/hashring32/hashring32.go index 561581d36..fbc3cff85 100644 --- a/peer/hashring32/internal/hashring32/hashring32.go +++ b/peer/hashring32/internal/hashring32/hashring32.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/hashring32/hashring32_test.go b/peer/hashring32/internal/hashring32/hashring32_test.go index e5ba36851..a99efce3a 100644 --- a/peer/hashring32/internal/hashring32/hashring32_test.go +++ b/peer/hashring32/internal/hashring32/hashring32_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/hashring32/ringpop_test.go b/peer/hashring32/internal/hashring32/ringpop_test.go index 135ad8e09..3442ec155 100644 --- a/peer/hashring32/internal/hashring32/ringpop_test.go +++ b/peer/hashring32/internal/hashring32/ringpop_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/hashring32/types.go b/peer/hashring32/internal/hashring32/types.go index 6a78cb2bb..796d4e50c 100644 --- a/peer/hashring32/internal/hashring32/types.go +++ b/peer/hashring32/internal/hashring32/types.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/radixsort32/radixsort.go b/peer/hashring32/internal/radixsort32/radixsort.go index 76bcfa3d7..21edbdcdd 100644 --- a/peer/hashring32/internal/radixsort32/radixsort.go +++ b/peer/hashring32/internal/radixsort32/radixsort.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/internal/radixsort32/radixsort_test.go b/peer/hashring32/internal/radixsort32/radixsort_test.go index 05921ab36..b89545fca 100644 --- a/peer/hashring32/internal/radixsort32/radixsort_test.go +++ b/peer/hashring32/internal/radixsort32/radixsort_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/list.go b/peer/hashring32/list.go index 85db38aff..e2ab959ef 100644 --- a/peer/hashring32/list.go +++ b/peer/hashring32/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/list_test.go b/peer/hashring32/list_test.go index 2e7db6b1f..079de9d3d 100644 --- a/peer/hashring32/list_test.go +++ b/peer/hashring32/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/ring.go b/peer/hashring32/ring.go index aaf601695..0c8e6c95a 100644 --- a/peer/hashring32/ring.go +++ b/peer/hashring32/ring.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hashring32/utils_for_test.go b/peer/hashring32/utils_for_test.go index 01431ad55..eed67ccd3 100644 --- a/peer/hashring32/utils_for_test.go +++ b/peer/hashring32/utils_for_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hostport/hostport.go b/peer/hostport/hostport.go index 0588a7b71..13821d1cb 100644 --- a/peer/hostport/hostport.go +++ b/peer/hostport/hostport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hostport/hostport_test.go b/peer/hostport/hostport_test.go index 74646e1e4..ed88d6f88 100644 --- a/peer/hostport/hostport_test.go +++ b/peer/hostport/hostport_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/hostport/peeraction_test.go b/peer/hostport/peeraction_test.go index 5c8f038cb..fcaea061d 100644 --- a/peer/hostport/peeraction_test.go +++ b/peer/hostport/peeraction_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/doc.go b/peer/peerlist/doc.go index ca39ad01d..a16f7d022 100644 --- a/peer/peerlist/doc.go +++ b/peer/peerlist/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/list.go b/peer/peerlist/list.go index a55f3321a..4e5c9ae20 100644 --- a/peer/peerlist/list.go +++ b/peer/peerlist/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/list_test.go b/peer/peerlist/list_test.go index 185a5bb44..64a8d7c93 100644 --- a/peer/peerlist/list_test.go +++ b/peer/peerlist/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/peer.go b/peer/peerlist/peer.go index 5e5348d5a..4409b8978 100644 --- a/peer/peerlist/peer.go +++ b/peer/peerlist/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/v2/doc.go b/peer/peerlist/v2/doc.go index 880799d30..e7c4fcc92 100644 --- a/peer/peerlist/v2/doc.go +++ b/peer/peerlist/v2/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/v2/list.go b/peer/peerlist/v2/list.go index b4698ad00..6ddca3b61 100644 --- a/peer/peerlist/v2/list.go +++ b/peer/peerlist/v2/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/v2/list_test.go b/peer/peerlist/v2/list_test.go index e646d233a..a41533ea8 100644 --- a/peer/peerlist/v2/list_test.go +++ b/peer/peerlist/v2/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/peerlist/v2/peer.go b/peer/peerlist/v2/peer.go index 543e392c0..20652ec70 100644 --- a/peer/peerlist/v2/peer.go +++ b/peer/peerlist/v2/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/config.go b/peer/pendingheap/config.go index c1b189f6d..4ab56e763 100644 --- a/peer/pendingheap/config.go +++ b/peer/pendingheap/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/config_test.go b/peer/pendingheap/config_test.go index 02a59c4c6..95f4832dc 100644 --- a/peer/pendingheap/config_test.go +++ b/peer/pendingheap/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/doc.go b/peer/pendingheap/doc.go index 70f492426..96ef9e482 100644 --- a/peer/pendingheap/doc.go +++ b/peer/pendingheap/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/heap.go b/peer/pendingheap/heap.go index e7c818aec..57f93ac1d 100644 --- a/peer/pendingheap/heap.go +++ b/peer/pendingheap/heap.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/heap_test.go b/peer/pendingheap/heap_test.go index e3a4767c5..afcf2538e 100644 --- a/peer/pendingheap/heap_test.go +++ b/peer/pendingheap/heap_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/list.go b/peer/pendingheap/list.go index 0ecc3e91b..2aec69f66 100644 --- a/peer/pendingheap/list.go +++ b/peer/pendingheap/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/list_test.go b/peer/pendingheap/list_test.go index ea34cebff..45e4eb49e 100644 --- a/peer/pendingheap/list_test.go +++ b/peer/pendingheap/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/pendingheap/score.go b/peer/pendingheap/score.go index 62c2b8e65..81a0d6768 100644 --- a/peer/pendingheap/score.go +++ b/peer/pendingheap/score.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/randpeer/config.go b/peer/randpeer/config.go index 0513dba57..41253441d 100644 --- a/peer/randpeer/config.go +++ b/peer/randpeer/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/randpeer/config_test.go b/peer/randpeer/config_test.go index e4e250407..7d4e20e0d 100644 --- a/peer/randpeer/config_test.go +++ b/peer/randpeer/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/randpeer/list.go b/peer/randpeer/list.go index 3bdfda944..895338bd1 100644 --- a/peer/randpeer/list.go +++ b/peer/randpeer/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/randpeer/list_test.go b/peer/randpeer/list_test.go index 5a1fdedb6..b3e47291f 100644 --- a/peer/randpeer/list_test.go +++ b/peer/randpeer/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/randpeer/random.go b/peer/randpeer/random.go index 7b447192f..b23656c0a 100644 --- a/peer/randpeer/random.go +++ b/peer/randpeer/random.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/roundrobin/config.go b/peer/roundrobin/config.go index 4d3950196..3d399758e 100644 --- a/peer/roundrobin/config.go +++ b/peer/roundrobin/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/roundrobin/config_test.go b/peer/roundrobin/config_test.go index b7281d8ef..3ba71df3a 100644 --- a/peer/roundrobin/config_test.go +++ b/peer/roundrobin/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/roundrobin/list.go b/peer/roundrobin/list.go index 34751020a..e826e80be 100644 --- a/peer/roundrobin/list.go +++ b/peer/roundrobin/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/roundrobin/list_test.go b/peer/roundrobin/list_test.go index a87ac2ff8..ab11e8e6a 100644 --- a/peer/roundrobin/list_test.go +++ b/peer/roundrobin/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/roundrobin/peerring.go b/peer/roundrobin/peerring.go index c38126017..e96a67fe8 100644 --- a/peer/roundrobin/peerring.go +++ b/peer/roundrobin/peerring.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/single.go b/peer/single.go index 9695736ec..d3f06848a 100644 --- a/peer/single.go +++ b/peer/single.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/single_test.go b/peer/single_test.go index ed6b35aa6..7d8391201 100644 --- a/peer/single_test.go +++ b/peer/single_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/config.go b/peer/tworandomchoices/config.go index 59f4f9c95..13b0ce37f 100644 --- a/peer/tworandomchoices/config.go +++ b/peer/tworandomchoices/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/config_test.go b/peer/tworandomchoices/config_test.go index 3059cb2b7..5eaae0eb5 100644 --- a/peer/tworandomchoices/config_test.go +++ b/peer/tworandomchoices/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/doc.go b/peer/tworandomchoices/doc.go index f7284fa17..961728874 100644 --- a/peer/tworandomchoices/doc.go +++ b/peer/tworandomchoices/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/list.go b/peer/tworandomchoices/list.go index aed94b4e3..c512b6164 100644 --- a/peer/tworandomchoices/list.go +++ b/peer/tworandomchoices/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/list_test.go b/peer/tworandomchoices/list_test.go index 5563afb02..223a8374a 100644 --- a/peer/tworandomchoices/list_test.go +++ b/peer/tworandomchoices/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/tworandomchoices/tworandomchoices.go b/peer/tworandomchoices/tworandomchoices.go index af4762a9c..8a14d27bd 100644 --- a/peer/tworandomchoices/tworandomchoices.go +++ b/peer/tworandomchoices/tworandomchoices.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/doc.go b/peer/x/doc.go index da8ee0458..b7d0238e9 100644 --- a/peer/x/doc.go +++ b/peer/x/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/config.go b/peer/x/peerheap/config.go index b1414f3f2..dc3a759f5 100644 --- a/peer/x/peerheap/config.go +++ b/peer/x/peerheap/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/heap.go b/peer/x/peerheap/heap.go index e74f0029a..911f2a05b 100644 --- a/peer/x/peerheap/heap.go +++ b/peer/x/peerheap/heap.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/heap_test.go b/peer/x/peerheap/heap_test.go index 26a4fab4d..720355531 100644 --- a/peer/x/peerheap/heap_test.go +++ b/peer/x/peerheap/heap_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/list.go b/peer/x/peerheap/list.go index 5a70a01cf..ed8ed4572 100644 --- a/peer/x/peerheap/list.go +++ b/peer/x/peerheap/list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/list_test.go b/peer/x/peerheap/list_test.go index 66de7af8e..b19ceb805 100644 --- a/peer/x/peerheap/list_test.go +++ b/peer/x/peerheap/list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/peerheap/score.go b/peer/x/peerheap/score.go index 9f233383b..8cbb28942 100644 --- a/peer/x/peerheap/score.go +++ b/peer/x/peerheap/score.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/roundrobin/deprecated.go b/peer/x/roundrobin/deprecated.go index c5994603f..ed096df4b 100644 --- a/peer/x/roundrobin/deprecated.go +++ b/peer/x/roundrobin/deprecated.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/peer/x/roundrobin/deprecated_test.go b/peer/x/roundrobin/deprecated_test.go index d4af1ea04..0bb6b3cc7 100644 --- a/peer/x/roundrobin/deprecated_test.go +++ b/peer/x/roundrobin/deprecated_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/encoding/encoding.go b/pkg/encoding/encoding.go index 5578b1f6a..014fdeffd 100644 --- a/pkg/encoding/encoding.go +++ b/pkg/encoding/encoding.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/errors/client.go b/pkg/errors/client.go index 793ba8176..300074305 100644 --- a/pkg/errors/client.go +++ b/pkg/errors/client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/errors/errors.go b/pkg/errors/errors.go index a88a3d698..afd2f344c 100644 --- a/pkg/errors/errors.go +++ b/pkg/errors/errors.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/errors/errors_test.go b/pkg/errors/errors_test.go index 3f9436cd5..a0bb8ccd9 100644 --- a/pkg/errors/errors_test.go +++ b/pkg/errors/errors_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/errors/server.go b/pkg/errors/server.go index 0e4a5c38b..4786ffbcd 100644 --- a/pkg/errors/server.go +++ b/pkg/errors/server.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/action_test.go b/pkg/lifecycle/action_test.go index 757bdd0db..9b7854592 100644 --- a/pkg/lifecycle/action_test.go +++ b/pkg/lifecycle/action_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/doc.go b/pkg/lifecycle/doc.go index 740b55071..353d7887b 100644 --- a/pkg/lifecycle/doc.go +++ b/pkg/lifecycle/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/once.go b/pkg/lifecycle/once.go index 058953567..3e313f907 100644 --- a/pkg/lifecycle/once.go +++ b/pkg/lifecycle/once.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/once_example_test.go b/pkg/lifecycle/once_example_test.go index 320050257..501786480 100644 --- a/pkg/lifecycle/once_example_test.go +++ b/pkg/lifecycle/once_example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/once_test.go b/pkg/lifecycle/once_test.go index c86b694c2..0968d42f2 100644 --- a/pkg/lifecycle/once_test.go +++ b/pkg/lifecycle/once_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycle/state_string.go b/pkg/lifecycle/state_string.go index 64ec0cfe3..3af2a0501 100644 --- a/pkg/lifecycle/state_string.go +++ b/pkg/lifecycle/state_string.go @@ -1,6 +1,6 @@ // Code generated by "stringer -type=State ./pkg/lifecycle"; DO NOT EDIT. -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/lifecycletest/nop.go b/pkg/lifecycletest/nop.go index cf67d1440..1c229b172 100644 --- a/pkg/lifecycletest/nop.go +++ b/pkg/lifecycletest/nop.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/multiaddrpassthrough/multiaddrpassthrough.go b/pkg/multiaddrpassthrough/multiaddrpassthrough.go index 480502d15..26ec6eb90 100644 --- a/pkg/multiaddrpassthrough/multiaddrpassthrough.go +++ b/pkg/multiaddrpassthrough/multiaddrpassthrough.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/multiaddrpassthrough/multiaddrpassthrough_test.go b/pkg/multiaddrpassthrough/multiaddrpassthrough_test.go index ba2b3da52..e7c0f6990 100644 --- a/pkg/multiaddrpassthrough/multiaddrpassthrough_test.go +++ b/pkg/multiaddrpassthrough/multiaddrpassthrough_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/noopresolver/noopresolver.go b/pkg/noopresolver/noopresolver.go index ca24dbe19..b0a79324a 100644 --- a/pkg/noopresolver/noopresolver.go +++ b/pkg/noopresolver/noopresolver.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/noopresolver/noopresolver_test.go b/pkg/noopresolver/noopresolver_test.go index fb545c2c9..a0fff44d4 100644 --- a/pkg/noopresolver/noopresolver_test.go +++ b/pkg/noopresolver/noopresolver_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/procedure/procedure.go b/pkg/procedure/procedure.go index 76780b0d8..76b98ae57 100644 --- a/pkg/procedure/procedure.go +++ b/pkg/procedure/procedure.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/pkg/procedure/procedure_test.go b/pkg/procedure/procedure_test.go index 83d508734..f8bc4b41c 100644 --- a/pkg/procedure/procedure_test.go +++ b/pkg/procedure/procedure_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/router.go b/router.go index aebab0e8e..a08a61b2f 100644 --- a/router.go +++ b/router.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/router_test.go b/router_test.go index 10291b189..68c4de473 100644 --- a/router_test.go +++ b/router_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/serialize/internal/internal.go b/serialize/internal/internal.go index 4d0ba6e84..e0e3223b6 100644 --- a/serialize/internal/internal.go +++ b/serialize/internal/internal.go @@ -1,7 +1,7 @@ // Code generated by thriftrw v1.32.0. DO NOT EDIT. // @generated -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/serialize/serialize.go b/serialize/serialize.go index 90cb29b41..0c107e268 100644 --- a/serialize/serialize.go +++ b/serialize/serialize.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/serialize/serialize_test.go b/serialize/serialize_test.go index 321e0919a..0109db294 100644 --- a/serialize/serialize_test.go +++ b/serialize/serialize_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/tools_test.go b/tools_test.go index c476fa612..8df849d92 100644 --- a/tools_test.go +++ b/tools_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/tracing.go b/tracing.go index 0d815dba4..f8f3cbcc0 100644 --- a/tracing.go +++ b/tracing.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/doc.go b/transport/doc.go index 8032c9d59..ebf418a8c 100644 --- a/transport/doc.go +++ b/transport/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/codec.go b/transport/grpc/codec.go index 0c7b9ac02..e9cc1a18b 100644 --- a/transport/grpc/codec.go +++ b/transport/grpc/codec.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/codec_test.go b/transport/grpc/codec_test.go index 399cde84b..8ef9c405d 100644 --- a/transport/grpc/codec_test.go +++ b/transport/grpc/codec_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/config.go b/transport/grpc/config.go index 8c91d0b31..2697582da 100644 --- a/transport/grpc/config.go +++ b/transport/grpc/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/config_test.go b/transport/grpc/config_test.go index e9dac1d7d..e550c9763 100644 --- a/transport/grpc/config_test.go +++ b/transport/grpc/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/constants.go b/transport/grpc/constants.go index d143e0268..d3a808add 100644 --- a/transport/grpc/constants.go +++ b/transport/grpc/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/dialer.go b/transport/grpc/dialer.go index 38d295f6c..b09245b4c 100644 --- a/transport/grpc/dialer.go +++ b/transport/grpc/dialer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/doc.go b/transport/grpc/doc.go index eba62cf01..8080b14e3 100644 --- a/transport/grpc/doc.go +++ b/transport/grpc/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/external_integration_test.go b/transport/grpc/external_integration_test.go index 883e1b75a..ac273f300 100644 --- a/transport/grpc/external_integration_test.go +++ b/transport/grpc/external_integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/globals_for_test.go b/transport/grpc/globals_for_test.go index bcd450c1a..c61dabb48 100644 --- a/transport/grpc/globals_for_test.go +++ b/transport/grpc/globals_for_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/handler.go b/transport/grpc/handler.go index 86ea56660..42afc6bd9 100644 --- a/transport/grpc/handler.go +++ b/transport/grpc/handler.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/handler_test.go b/transport/grpc/handler_test.go index f82ff10d0..32715102e 100644 --- a/transport/grpc/handler_test.go +++ b/transport/grpc/handler_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/headers.go b/transport/grpc/headers.go index 95e8d2713..ce8eae62f 100644 --- a/transport/grpc/headers.go +++ b/transport/grpc/headers.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/headers_test.go b/transport/grpc/headers_test.go index b23c7eab3..30834b471 100644 --- a/transport/grpc/headers_test.go +++ b/transport/grpc/headers_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/inbound.go b/transport/grpc/inbound.go index 58b42228f..165344d6d 100644 --- a/transport/grpc/inbound.go +++ b/transport/grpc/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/inbound_test.go b/transport/grpc/inbound_test.go index 33cb18aca..5d98bd23b 100644 --- a/transport/grpc/inbound_test.go +++ b/transport/grpc/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/integration_test.go b/transport/grpc/integration_test.go index c72be9630..1075076ce 100644 --- a/transport/grpc/integration_test.go +++ b/transport/grpc/integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/leak_test.go b/transport/grpc/leak_test.go index 50f2f3b73..584619cf0 100644 --- a/transport/grpc/leak_test.go +++ b/transport/grpc/leak_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/marshal.go b/transport/grpc/marshal.go index 8e35cc2fb..86b3bb888 100644 --- a/transport/grpc/marshal.go +++ b/transport/grpc/marshal.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/options.go b/transport/grpc/options.go index 4af1ba84c..c18f33a65 100644 --- a/transport/grpc/options.go +++ b/transport/grpc/options.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/outbound.go b/transport/grpc/outbound.go index 7b585ecaa..18c62faee 100644 --- a/transport/grpc/outbound.go +++ b/transport/grpc/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/outbound_test.go b/transport/grpc/outbound_test.go index 53ef4948f..b3bc72637 100644 --- a/transport/grpc/outbound_test.go +++ b/transport/grpc/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/peer.go b/transport/grpc/peer.go index 914437b75..de7afd92f 100644 --- a/transport/grpc/peer.go +++ b/transport/grpc/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/peer_test.go b/transport/grpc/peer_test.go index 2e57ca79b..b706447ee 100644 --- a/transport/grpc/peer_test.go +++ b/transport/grpc/peer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/response_writer.go b/transport/grpc/response_writer.go index c60e20ba5..dec5182fc 100644 --- a/transport/grpc/response_writer.go +++ b/transport/grpc/response_writer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/stream.go b/transport/grpc/stream.go index aa92325f9..c770a1fac 100644 --- a/transport/grpc/stream.go +++ b/transport/grpc/stream.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/stream_integration_test.go b/transport/grpc/stream_integration_test.go index 342e39eee..2bfbcc291 100644 --- a/transport/grpc/stream_integration_test.go +++ b/transport/grpc/stream_integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/stream_test.go b/transport/grpc/stream_test.go index 9f5ff131a..ca58040d2 100644 --- a/transport/grpc/stream_test.go +++ b/transport/grpc/stream_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/transport.go b/transport/grpc/transport.go index c045334dd..396ab3b96 100644 --- a/transport/grpc/transport.go +++ b/transport/grpc/transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/transport_test.go b/transport/grpc/transport_test.go index 6db2b9cf5..90f35ade5 100644 --- a/transport/grpc/transport_test.go +++ b/transport/grpc/transport_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/util.go b/transport/grpc/util.go index 0553121b0..1028c3984 100644 --- a/transport/grpc/util.go +++ b/transport/grpc/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/grpc/util_test.go b/transport/grpc/util_test.go index b64b4e134..7e1c4f477 100644 --- a/transport/grpc/util_test.go +++ b/transport/grpc/util_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/close_idle_go112.go b/transport/http/close_idle_go112.go deleted file mode 100644 index 8fe80e2da..000000000 --- a/transport/http/close_idle_go112.go +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2024 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -//go:build go1.12 -// +build go1.12 - -package http - -import "net/http" - -// Once YARPC only supports Go1.12+, we can inline this into the callers. -func closeIdleConnections(client *http.Client) { - client.CloseIdleConnections() -} diff --git a/transport/http/close_idle_pre_go112.go b/transport/http/close_idle_pre_go112.go deleted file mode 100644 index 7b50d041b..000000000 --- a/transport/http/close_idle_pre_go112.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) 2024 Uber Technologies, Inc. -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. - -//go:build !go1.12 -// +build !go1.12 - -package http - -import "net/http" - -func closeIdleConnections(client *http.Client) {} diff --git a/transport/http/codes.go b/transport/http/codes.go index 4fb10a49e..b73d70217 100644 --- a/transport/http/codes.go +++ b/transport/http/codes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/codes_test.go b/transport/http/codes_test.go index 4a487f89a..abf25935b 100644 --- a/transport/http/codes_test.go +++ b/transport/http/codes_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/config.go b/transport/http/config.go index d34e71484..d355f11a0 100644 --- a/transport/http/config.go +++ b/transport/http/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/config_test.go b/transport/http/config_test.go index cf6f49f21..949a14a6e 100644 --- a/transport/http/config_test.go +++ b/transport/http/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/constants.go b/transport/http/constants.go index 9e3fbb1eb..b69cf3199 100644 --- a/transport/http/constants.go +++ b/transport/http/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/doc.go b/transport/http/doc.go index 1d247420a..3b29b710d 100644 --- a/transport/http/doc.go +++ b/transport/http/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/handler.go b/transport/http/handler.go index 58969c0e2..e2dff02e8 100644 --- a/transport/http/handler.go +++ b/transport/http/handler.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/handler_test.go b/transport/http/handler_test.go index 65e871ac1..6578c1619 100644 --- a/transport/http/handler_test.go +++ b/transport/http/handler_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/header.go b/transport/http/header.go index b8487cc1e..6963a4b05 100644 --- a/transport/http/header.go +++ b/transport/http/header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/header_test.go b/transport/http/header_test.go index 1c1d186dc..ec3475d5c 100644 --- a/transport/http/header_test.go +++ b/transport/http/header_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/inbound.go b/transport/http/inbound.go index 4cacae5c1..e79f7e388 100644 --- a/transport/http/inbound.go +++ b/transport/http/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/inbound_example_test.go b/transport/http/inbound_example_test.go index f25f4ac57..1fec108cd 100644 --- a/transport/http/inbound_example_test.go +++ b/transport/http/inbound_example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/inbound_test.go b/transport/http/inbound_test.go index 16af4a632..db481f833 100644 --- a/transport/http/inbound_test.go +++ b/transport/http/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/integration_test.go b/transport/http/integration_test.go index 49e0eaddd..7ad3c3675 100644 --- a/transport/http/integration_test.go +++ b/transport/http/integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/leak_test.go b/transport/http/leak_test.go index c3294fd46..590c2b7ee 100644 --- a/transport/http/leak_test.go +++ b/transport/http/leak_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/option.go b/transport/http/option.go index bf6cd9692..eeab461d8 100644 --- a/transport/http/option.go +++ b/transport/http/option.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/outbound.go b/transport/http/outbound.go index 231a3eb17..071c42d76 100644 --- a/transport/http/outbound.go +++ b/transport/http/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/outbound_example_test.go b/transport/http/outbound_example_test.go index 9b23758b9..83c719601 100644 --- a/transport/http/outbound_example_test.go +++ b/transport/http/outbound_example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/outbound_test.go b/transport/http/outbound_test.go index efe790d4f..7f677f1ce 100644 --- a/transport/http/outbound_test.go +++ b/transport/http/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/peer.go b/transport/http/peer.go index 18d61651f..19d027b27 100644 --- a/transport/http/peer.go +++ b/transport/http/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/peer_test.go b/transport/http/peer_test.go index 606c85f81..40cde17d0 100644 --- a/transport/http/peer_test.go +++ b/transport/http/peer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/request_sender.go b/transport/http/request_sender.go index 5b61be31f..94dc9bb47 100644 --- a/transport/http/request_sender.go +++ b/transport/http/request_sender.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/request_sender_test.go b/transport/http/request_sender_test.go index bd1abe168..da6b2a850 100644 --- a/transport/http/request_sender_test.go +++ b/transport/http/request_sender_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/roundtrip_test.go b/transport/http/roundtrip_test.go index e526d1a8c..482f4447c 100644 --- a/transport/http/roundtrip_test.go +++ b/transport/http/roundtrip_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/transport.go b/transport/http/transport.go index 3cf1c3d31..661cd23d5 100644 --- a/transport/http/transport.go +++ b/transport/http/transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -345,7 +345,7 @@ func (a *Transport) Start() error { // Stop stops the HTTP transport. func (a *Transport) Stop() error { return a.once.Stop(func() error { - closeIdleConnections(a.client) + a.client.CloseIdleConnections() a.connectorsGroup.Wait() return nil }) diff --git a/transport/http/transport_test.go b/transport/http/transport_test.go index 50e70591f..97442e4fb 100644 --- a/transport/http/transport_test.go +++ b/transport/http/transport_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/ttl.go b/transport/http/ttl.go index 474fea42c..90bc2c263 100644 --- a/transport/http/ttl.go +++ b/transport/http/ttl.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/http/ttl_test.go b/transport/http/ttl_test.go index c6c1982fa..781df0f38 100644 --- a/transport/http/ttl_test.go +++ b/transport/http/ttl_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/dialer/dialer.go b/transport/internal/tls/dialer/dialer.go index 6a0076c46..b4f59c922 100644 --- a/transport/internal/tls/dialer/dialer.go +++ b/transport/internal/tls/dialer/dialer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/dialer/dialer_test.go b/transport/internal/tls/dialer/dialer_test.go index 3ab43eae3..b23431906 100644 --- a/transport/internal/tls/dialer/dialer_test.go +++ b/transport/internal/tls/dialer/dialer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/metrics/observer.go b/transport/internal/tls/metrics/observer.go index ebe9b0bbf..5bae5c308 100644 --- a/transport/internal/tls/metrics/observer.go +++ b/transport/internal/tls/metrics/observer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/metrics/observer_test.go b/transport/internal/tls/metrics/observer_test.go index 6d6586510..1b81e0c96 100644 --- a/transport/internal/tls/metrics/observer_test.go +++ b/transport/internal/tls/metrics/observer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/conn_sniffer.go b/transport/internal/tls/muxlistener/conn_sniffer.go index a3741d6d8..b6be6965f 100644 --- a/transport/internal/tls/muxlistener/conn_sniffer.go +++ b/transport/internal/tls/muxlistener/conn_sniffer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/conn_sniffer_test.go b/transport/internal/tls/muxlistener/conn_sniffer_test.go index a22948736..12838795c 100644 --- a/transport/internal/tls/muxlistener/conn_sniffer_test.go +++ b/transport/internal/tls/muxlistener/conn_sniffer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/listener.go b/transport/internal/tls/muxlistener/listener.go index 4e3227045..cef937e81 100644 --- a/transport/internal/tls/muxlistener/listener.go +++ b/transport/internal/tls/muxlistener/listener.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/listener_test.go b/transport/internal/tls/muxlistener/listener_test.go index 65114bd10..4aa6b6087 100644 --- a/transport/internal/tls/muxlistener/listener_test.go +++ b/transport/internal/tls/muxlistener/listener_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/tls_checker.go b/transport/internal/tls/muxlistener/tls_checker.go index 1715b706b..533875e27 100644 --- a/transport/internal/tls/muxlistener/tls_checker.go +++ b/transport/internal/tls/muxlistener/tls_checker.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/muxlistener/tls_checker_test.go b/transport/internal/tls/muxlistener/tls_checker_test.go index 725ed5e1e..45e4d5779 100644 --- a/transport/internal/tls/muxlistener/tls_checker_test.go +++ b/transport/internal/tls/muxlistener/tls_checker_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/internal/tls/testscenario/tlsscenario.go b/transport/internal/tls/testscenario/tlsscenario.go index 091fd0480..647d7ba0a 100644 --- a/transport/internal/tls/testscenario/tlsscenario.go +++ b/transport/internal/tls/testscenario/tlsscenario.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/roundtrip_test.go b/transport/roundtrip_test.go index 008e50878..a902ddc2c 100644 --- a/transport/roundtrip_test.go +++ b/transport/roundtrip_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel.go b/transport/tchannel/channel.go index 9bd0c022f..f2de251e0 100644 --- a/transport/tchannel/channel.go +++ b/transport/tchannel/channel.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_example_test.go b/transport/tchannel/channel_example_test.go index 72ec3ec52..321ea7741 100644 --- a/transport/tchannel/channel_example_test.go +++ b/transport/tchannel/channel_example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_inbound.go b/transport/tchannel/channel_inbound.go index a0ab1be83..695613bda 100644 --- a/transport/tchannel/channel_inbound.go +++ b/transport/tchannel/channel_inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_inbound_test.go b/transport/tchannel/channel_inbound_test.go index 5f0357489..fdf885b96 100644 --- a/transport/tchannel/channel_inbound_test.go +++ b/transport/tchannel/channel_inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_outbound.go b/transport/tchannel/channel_outbound.go index c5ab0a8ee..0083a5b70 100644 --- a/transport/tchannel/channel_outbound.go +++ b/transport/tchannel/channel_outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_outbound_test.go b/transport/tchannel/channel_outbound_test.go index fbd238986..cf4c18caf 100644 --- a/transport/tchannel/channel_outbound_test.go +++ b/transport/tchannel/channel_outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/channel_transport.go b/transport/tchannel/channel_transport.go index 5faf47173..9047af9d5 100644 --- a/transport/tchannel/channel_transport.go +++ b/transport/tchannel/channel_transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/codes.go b/transport/tchannel/codes.go index 57615e447..0b7acec34 100644 --- a/transport/tchannel/codes.go +++ b/transport/tchannel/codes.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/config.go b/transport/tchannel/config.go index 003068d63..ad8c0071f 100644 --- a/transport/tchannel/config.go +++ b/transport/tchannel/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/config_test.go b/transport/tchannel/config_test.go index 74f8ecaf2..c90d2863c 100644 --- a/transport/tchannel/config_test.go +++ b/transport/tchannel/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/constants.go b/transport/tchannel/constants.go index e1ea1c830..586cdeb28 100644 --- a/transport/tchannel/constants.go +++ b/transport/tchannel/constants.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/doc.go b/transport/tchannel/doc.go index b93c4b6fd..fda786a2d 100644 --- a/transport/tchannel/doc.go +++ b/transport/tchannel/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/error.go b/transport/tchannel/error.go index dec852498..91e6f7b58 100644 --- a/transport/tchannel/error.go +++ b/transport/tchannel/error.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/error_external_test.go b/transport/tchannel/error_external_test.go index f237316a3..6f98babe9 100644 --- a/transport/tchannel/error_external_test.go +++ b/transport/tchannel/error_external_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/error_test.go b/transport/tchannel/error_test.go index 91908e7a7..f747cf743 100644 --- a/transport/tchannel/error_test.go +++ b/transport/tchannel/error_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/example_test.go b/transport/tchannel/example_test.go index 79e30f975..7db92d95a 100644 --- a/transport/tchannel/example_test.go +++ b/transport/tchannel/example_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/handler.go b/transport/tchannel/handler.go index 421b9aa27..abcc1637c 100644 --- a/transport/tchannel/handler.go +++ b/transport/tchannel/handler.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/handler_test.go b/transport/tchannel/handler_test.go index cae62a451..24dfb6554 100644 --- a/transport/tchannel/handler_test.go +++ b/transport/tchannel/handler_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/header.go b/transport/tchannel/header.go index 28cff1e3c..fc538683f 100644 --- a/transport/tchannel/header.go +++ b/transport/tchannel/header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/header_test.go b/transport/tchannel/header_test.go index f8d686bea..61c955b5a 100644 --- a/transport/tchannel/header_test.go +++ b/transport/tchannel/header_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/inbound.go b/transport/tchannel/inbound.go index 449078a4a..afcbedb9b 100644 --- a/transport/tchannel/inbound.go +++ b/transport/tchannel/inbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/inbound_test.go b/transport/tchannel/inbound_test.go index afa846429..f38ba7c6a 100644 --- a/transport/tchannel/inbound_test.go +++ b/transport/tchannel/inbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/internal/reader.go b/transport/tchannel/internal/reader.go index 6a025f075..85b525cfe 100644 --- a/transport/tchannel/internal/reader.go +++ b/transport/tchannel/internal/reader.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/internal/reader_test.go b/transport/tchannel/internal/reader_test.go index 22a7c46e8..ff0495952 100644 --- a/transport/tchannel/internal/reader_test.go +++ b/transport/tchannel/internal/reader_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/leak_test.go b/transport/tchannel/leak_test.go index c0702d3ca..e696bee7f 100644 --- a/transport/tchannel/leak_test.go +++ b/transport/tchannel/leak_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/options.go b/transport/tchannel/options.go index 2600ae9cb..24e386883 100644 --- a/transport/tchannel/options.go +++ b/transport/tchannel/options.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/outbound.go b/transport/tchannel/outbound.go index 7676a9db3..0126123fb 100644 --- a/transport/tchannel/outbound.go +++ b/transport/tchannel/outbound.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/outbound_channel.go b/transport/tchannel/outbound_channel.go index 81bfb3251..651c3d0a8 100644 --- a/transport/tchannel/outbound_channel.go +++ b/transport/tchannel/outbound_channel.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/outbound_channel_test.go b/transport/tchannel/outbound_channel_test.go index aa313179e..3336fa13e 100644 --- a/transport/tchannel/outbound_channel_test.go +++ b/transport/tchannel/outbound_channel_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/outbound_test.go b/transport/tchannel/outbound_test.go index 66d277cca..bbc0a8cdc 100644 --- a/transport/tchannel/outbound_test.go +++ b/transport/tchannel/outbound_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/peer.go b/transport/tchannel/peer.go index 328659705..1bd7535f4 100644 --- a/transport/tchannel/peer.go +++ b/transport/tchannel/peer.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/peer_test.go b/transport/tchannel/peer_test.go index 790c83863..c63c292db 100644 --- a/transport/tchannel/peer_test.go +++ b/transport/tchannel/peer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/tchannel_integration_test.go b/transport/tchannel/tchannel_integration_test.go index 849c3ba59..754e65b33 100644 --- a/transport/tchannel/tchannel_integration_test.go +++ b/transport/tchannel/tchannel_integration_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/tchannel_utils_test.go b/transport/tchannel/tchannel_utils_test.go index bed8866fb..136a032b9 100644 --- a/transport/tchannel/tchannel_utils_test.go +++ b/transport/tchannel/tchannel_utils_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tchannel/transport.go b/transport/tchannel/transport.go index b90e6db2e..93d480fcc 100644 --- a/transport/tchannel/transport.go +++ b/transport/tchannel/transport.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/tracer_test.go b/transport/tracer_test.go index 88f1cf66f..569dae163 100644 --- a/transport/tracer_test.go +++ b/transport/tracer_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/transport/transports_test.go b/transport/transports_test.go index aeeb9131a..f87220c95 100644 --- a/transport/transports_test.go +++ b/transport/transports_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/version.go b/version.go index b49efa711..9d066dcfa 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -21,4 +21,4 @@ package yarpc // import "go.uber.org/yarpc" // Version is the current version of YARPC. -const Version = "1.75.3" +const Version = "1.75.4" diff --git a/x/debug/debug.go b/x/debug/debug.go index 9ea9f412b..53ea83d14 100644 --- a/x/debug/debug.go +++ b/x/debug/debug.go @@ -1,4 +1,4 @@ -// Copyright (c) 2024 Uber Technologies, Inc. +// Copyright (c) 2025 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -142,6 +142,7 @@ var (