Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Merge latest from honeycomb #1

Open
wants to merge 299 commits into
base: master
Choose a base branch
from
Open

Conversation

edumansky
Copy link

No description provided.

Luke Mallon (Nalum) and others added 30 commits June 25, 2020 16:20
Middleware now takes a map[string]struct{} of known GET Query Params in
order to limit the data that is stored from a request to expected
details.

Move the key used in the gin.Context that holds the context created from
the StartSpan function into a constant.
This commit adds four new functions:

* MarshalAmazonTraceContext
* UnmarshalAmazonTraceContext
* MarshalW3CTraceContext
* UnmarshalW3CTraceContext

These are intended to support parsing and propagating trace context
information in Amazon and W3C Trace Context format. They will be
exposed to users in the form of configurable hooks in a future PR.
Also run go mod tidy and go mod verify
Add Middleware for gin-gonic
Co-authored-by: Paul Osman <[email protected]>
Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo) from 4.1.15 to 4.1.16.
- [Release notes](https://github.com/labstack/echo/releases)
- [Commits](labstack/echo@v4.1.15...v4.1.16)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…ntelemetry.io/otel-0.8.0

Bump go.opentelemetry.io/otel from 0.6.0 to 0.8.0
Allow users of the beeline to create custom hooks that define how
request headers can be mapped to propagation context on incoming HTTP
requests and how a propagation context can map to trace context headers
on outgoing HTTP requests.
Parse Self when both Parent and Self are present in AWS headers.

Additionally, always propagate the Parent segment in the X-Amzn-Trace-Id header.
update changelog and contributors
The IsValid() function on propagation.PropagationContext is intended to
validate PropagationContext objects that are either created from
incoming trace context headers, or used to generate outgoing trace
context headers. In either case, the context had better contain a
ParentID or it is not valid.

There is a use case, however, with Honeycomb headers, where a user of
older beeline versions would create a PropagationContext (aliased as
Propagation) manually, and then serialize it as a Honeycomb header to
create a new trace.Trace. In this case, the PropagationContext would not
necessarily have a TraceID or a ParentId, and so it would fail IsValid.
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.30.0 to 1.31.0.
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.30.0...v1.31.0)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paul Osman <[email protected]>
Bumps [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) from 0.8.0 to 0.10.0.
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/master/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v0.8.0...v0.10.0)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paul Osman <[email protected]>
Our deterministic sampler test is failing sporadically. Disable random
seeding in attempt to make the tests less flaky.
…xt (#131)

There are two ways to get propagation headers out of the go beeline. The function to serialize headers (that returns the beeline header format) and the newer request for a PropagationContext object which can then be serialized into custom formats using the wrapper's propagation hooks.

Unfortunately the latter form does not protect the trace level fields map from concurrent access. The effect is that if one gets a propagation context object and simultaneously adds a trace level field, a data race on that map access can occur.

The first commit in this PR adds a test that confirms this race can happen. Switching your git checkout to f22a86c and running go test ./... -race will spit out the dreaded WARNING: DATA RACE message. Moving back to past the second commit in this PR and re-running the tests will show that moving the portion that works on the trace level fields into the Trace-attached method and making a copy of the fields protects against that race.

The interface for calling either of these methods is unchanged.
dependabot bot and others added 30 commits November 27, 2023 14:13
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.12.0 to
0.17.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/net/commit/b225e7ca6dde1ef5a5ae5ce922861bda011cfabd"><code>b225e7c</code></a>
http2: limit maximum handler goroutines to MaxConcurrentStreams</li>
<li><a
href="https://github.com/golang/net/commit/88194ad8ab44a02ea952c169883c3f57db6cf9f4"><code>88194ad</code></a>
go.mod: update golang.org/x dependencies</li>
<li><a
href="https://github.com/golang/net/commit/2b60a61f1e4cf3a5ecded0bd7e77ea168289e6de"><code>2b60a61</code></a>
quic: fix several bugs in flow control accounting</li>
<li><a
href="https://github.com/golang/net/commit/73d82efb96cacc0c378bc150b56675fc191894b9"><code>73d82ef</code></a>
quic: handle DATA_BLOCKED frames</li>
<li><a
href="https://github.com/golang/net/commit/5d5a036a503f8accd748f7453c0162115187be13"><code>5d5a036</code></a>
quic: handle streams moving from the data queue to the meta queue</li>
<li><a
href="https://github.com/golang/net/commit/350aad2603e57013fafb1a9e2089a382fe67dc80"><code>350aad2</code></a>
quic: correctly extend peer's flow control window after MAX_DATA</li>
<li><a
href="https://github.com/golang/net/commit/21814e71db756f39b69fb1a3e06350fa555a79b1"><code>21814e7</code></a>
quic: validate connection id transport parameters</li>
<li><a
href="https://github.com/golang/net/commit/a600b3518eed7a9a4e24380b4b249cb986d9b64d"><code>a600b35</code></a>
quic: avoid redundant MAX_DATA updates</li>
<li><a
href="https://github.com/golang/net/commit/ea633599b58dc6a50d33c7f5438edfaa8bc313df"><code>ea63359</code></a>
http2: check stream body is present on read timeout</li>
<li><a
href="https://github.com/golang/net/commit/ddd8598e5694aa5e966e44573a53e895f6fa5eb2"><code>ddd8598</code></a>
quic: version negotiation</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/net/compare/v0.12.0...v0.17.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.12.0&new-version=0.17.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/honeycombio/beeline-go/network/alerts).

</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…403)

Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo)
from 4.11.1 to 4.11.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/labstack/echo/releases">github.com/labstack/echo/v4's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.3</h2>
<p><strong>Security</strong></p>
<ul>
<li>'c.Attachment' and 'c.Inline' should escape filename in
'Content-Disposition' header to avoid 'Reflect File Download'
vulnerability. <a
href="https://redirect.github.com/labstack/echo/pull/2541">#2541</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Tests: refactor context tests to be separate functions <a
href="https://redirect.github.com/labstack/echo/pull/2540">#2540</a></li>
<li>Proxy middleware: reuse echo request context <a
href="https://redirect.github.com/labstack/echo/pull/2537">#2537</a></li>
<li>Mark unmarshallable yaml struct tags as ignored <a
href="https://redirect.github.com/labstack/echo/pull/2536">#2536</a></li>
</ul>
<h2>v4.11.2</h2>
<p><strong>Security</strong></p>
<ul>
<li>Bump golang.org/x/net to prevent CVE-2023-39325 / CVE-2023-44487
HTTP/2 Rapid Reset Attack <a
href="https://redirect.github.com/labstack/echo/pull/2527">#2527</a></li>
<li>fix(sec): randomString bias introduced by <a
href="https://redirect.github.com/labstack/echo/issues/2490">#2490</a>
<a
href="https://redirect.github.com/labstack/echo/pull/2492">#2492</a></li>
<li>CSRF/RequestID mw: switch math/random usage to crypto/random <a
href="https://redirect.github.com/labstack/echo/pull/2490">#2490</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Delete unused context in body_limit.go <a
href="https://redirect.github.com/labstack/echo/pull/2483">#2483</a></li>
<li>Use Go 1.21 in CI <a
href="https://redirect.github.com/labstack/echo/pull/2505">#2505</a></li>
<li>Fix some typos <a
href="https://redirect.github.com/labstack/echo/pull/2511">#2511</a></li>
<li>Allow CORS middleware to send Access-Control-Max-Age: 0 <a
href="https://redirect.github.com/labstack/echo/pull/2518">#2518</a></li>
<li>Bump dependancies <a
href="https://redirect.github.com/labstack/echo/pull/2522">#2522</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/labstack/echo/blob/master/CHANGELOG.md">github.com/labstack/echo/v4's
changelog</a>.</em></p>
<blockquote>
<h2>v4.11.3 - 2023-11-07</h2>
<p><strong>Security</strong></p>
<ul>
<li>'c.Attachment' and 'c.Inline' should escape filename in
'Content-Disposition' header to avoid 'Reflect File Download'
vulnerability. <a
href="https://redirect.github.com/labstack/echo/pull/2541">#2541</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Tests: refactor context tests to be separate functions <a
href="https://redirect.github.com/labstack/echo/pull/2540">#2540</a></li>
<li>Proxy middleware: reuse echo request context <a
href="https://redirect.github.com/labstack/echo/pull/2537">#2537</a></li>
<li>Mark unmarshallable yaml struct tags as ignored <a
href="https://redirect.github.com/labstack/echo/pull/2536">#2536</a></li>
</ul>
<h2>v4.11.2 - 2023-10-11</h2>
<p><strong>Security</strong></p>
<ul>
<li>Bump golang.org/x/net to prevent CVE-2023-39325 / CVE-2023-44487
HTTP/2 Rapid Reset Attack <a
href="https://redirect.github.com/labstack/echo/pull/2527">#2527</a></li>
<li>fix(sec): randomString bias introduced by <a
href="https://redirect.github.com/labstack/echo/issues/2490">#2490</a>
<a
href="https://redirect.github.com/labstack/echo/pull/2492">#2492</a></li>
<li>CSRF/RequestID mw: switch math/random usage to crypto/random <a
href="https://redirect.github.com/labstack/echo/pull/2490">#2490</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Delete unused context in body_limit.go <a
href="https://redirect.github.com/labstack/echo/pull/2483">#2483</a></li>
<li>Use Go 1.21 in CI <a
href="https://redirect.github.com/labstack/echo/pull/2505">#2505</a></li>
<li>Fix some typos <a
href="https://redirect.github.com/labstack/echo/pull/2511">#2511</a></li>
<li>Allow CORS middleware to send Access-Control-Max-Age: 0 <a
href="https://redirect.github.com/labstack/echo/pull/2518">#2518</a></li>
<li>Bump dependancies <a
href="https://redirect.github.com/labstack/echo/pull/2522">#2522</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/labstack/echo/commit/4b26cde851bc7a51e624c04dcc5d37be1ce0c84f"><code>4b26cde</code></a>
Changelog for v4.11.3 (<a
href="https://redirect.github.com/labstack/echo/issues/2542">#2542</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/14daeb968049b71296a80b91abd3883afd02b4d1"><code>14daeb9</code></a>
Security: c.Attachment and c.Inline should escape name in
`Content-Dispositio...</li>
<li><a
href="https://github.com/labstack/echo/commit/50ebcd8d7c17457489df7bcbbcaa3745c687fd32"><code>50ebcd8</code></a>
refactor context tests to be separate functions (<a
href="https://redirect.github.com/labstack/echo/issues/2540">#2540</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/c7d6d4373fdfbef5d6f44df0a8ef410c198420ee"><code>c7d6d43</code></a>
proxy middleware: reuse echo request context (<a
href="https://redirect.github.com/labstack/echo/issues/2537">#2537</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/69a0de84158fd7cad326599d145c2248bcc15a69"><code>69a0de8</code></a>
Mark unmarshallable yaml struct tags as ignored (<a
href="https://redirect.github.com/labstack/echo/issues/2536">#2536</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/98a523756d875bc13475bcb6237f09e771cbe321"><code>98a5237</code></a>
Changelog for v4.11.2 (<a
href="https://redirect.github.com/labstack/echo/issues/2529">#2529</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/89ae0e5f2ca6d01665255fd2e479ba98ab5ff4c8"><code>89ae0e5</code></a>
Bump dependancies (<a
href="https://redirect.github.com/labstack/echo/issues/2522">#2522</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/5780908c7cb110a8c4d56a62e32dc5cbc030a5ab"><code>5780908</code></a>
Fix CVE-2023-39325 / CVE-2023-44487 (<a
href="https://redirect.github.com/labstack/echo/issues/2527">#2527</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/4bc3e475e3137b6402933eec5e6fde641e0d2320"><code>4bc3e47</code></a>
cors middleware: allow sending <code>Access-Control-Max-Age: 0</code>
value with config....</li>
<li><a
href="https://github.com/labstack/echo/commit/3950c444b726c1de9131d4dee4c9ae708768f26c"><code>3950c44</code></a>
fix some typos (<a
href="https://redirect.github.com/labstack/echo/issues/2511">#2511</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/labstack/echo/compare/v4.11.1...v4.11.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/labstack/echo/v4&package-manager=go_modules&previous-version=4.11.1&new-version=4.11.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…y prefixed with "app." (#406)

## Which problem is this PR solving?

- Closes #401 

There is a remarkable amount of memory allocation occurring under load
to perform the "app." prefixing of field names by the Beeline.

## Short description of the changes

This change skips the memory allocations needed for string concat and
usage if the "app." prefix is already present on the field name
provided.

* doc comments updated to recommend users prefix their field names
  with "app." when calling these beeline.AddField*() functions
* doc comments also updated to make the handling of Error as value
  more clear

### Benchmarks

Existing behavior is no slower or memory hungry, but for every field
name provided by the Beeline user that starts with "app.", that is one
less memory allocation of the size of the field name string.

```
BenchmarkBeelineAddField/oldAddField/whatever
BenchmarkBeelineAddField/oldAddField/whatever-12                19654003                60.52 ns/op            8 B/op          1 allocs/op
BenchmarkBeelineAddField/AddField/no-prefix
BenchmarkBeelineAddField/AddField/no-prefix-12                  18939754                60.65 ns/op            8 B/op          1 allocs/op
BenchmarkBeelineAddField/AddField/half-prefixed
BenchmarkBeelineAddField/AddField/half-prefixed-12              22405790                51.22 ns/op            4 B/op          0 allocs/op
BenchmarkBeelineAddField/AddField/all-prefixed
BenchmarkBeelineAddField/AddField/all-prefixed-12               27381916                42.88 ns/op            0 B/op          0 allocs/op
```

---------

Co-authored-by: JamieDanielson <[email protected]>
Bumps [github.com/gorilla/mux](https://github.com/gorilla/mux) from
1.8.0 to 1.8.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gorilla/mux/releases">github.com/gorilla/mux's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.8.1</h2>
<h2>What's Changed</h2>
<ul>
<li>build: CircleCI 2.1 + build matrix by <a
href="https://github.com/elithrar"><code>@​elithrar</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/595">gorilla/mux#595</a></li>
<li>Include &quot;404&quot; and &quot;405&quot; in the docs by <a
href="https://github.com/Jille"><code>@​Jille</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/602">gorilla/mux#602</a></li>
<li>docs: update README w.r.t new maintainer ask by <a
href="https://github.com/elithrar"><code>@​elithrar</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/660">gorilla/mux#660</a></li>
<li>regexp: use iota instead of hardcoded values for regexType* by <a
href="https://github.com/michaelgrigoryan25"><code>@​michaelgrigoryan25</code></a>
in <a
href="https://redirect.github.com/gorilla/mux/pull/679">gorilla/mux#679</a></li>
<li>Fix <code>authenticationMiddleware</code> initialization in the
<code>README.md</code> file by <a
href="https://github.com/amustaque97"><code>@​amustaque97</code></a> in
<a
href="https://redirect.github.com/gorilla/mux/pull/693">gorilla/mux#693</a></li>
<li>Update README.md by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/713">gorilla/mux#713</a></li>
<li>[GPT-95] Update go version, add tools for verification and testing
by <a
href="https://github.com/apoorvajagtap"><code>@​apoorvajagtap</code></a>
in <a
href="https://redirect.github.com/gorilla/mux/pull/718">gorilla/mux#718</a></li>
<li>Delete release-drafter.yml by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/719">gorilla/mux#719</a></li>
<li>Delete stale.yml by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/720">gorilla/mux#720</a></li>
<li>Delete AUTHORS by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/721">gorilla/mux#721</a></li>
<li>Update LICENSE by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/722">gorilla/mux#722</a></li>
<li>Updated the logo in README.md by <a
href="https://github.com/shamkarthik"><code>@​shamkarthik</code></a> in
<a
href="https://redirect.github.com/gorilla/mux/pull/724">gorilla/mux#724</a></li>
<li>Update LICENSE by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/723">gorilla/mux#723</a></li>
<li>Update issues.yml by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/726">gorilla/mux#726</a></li>
<li>Update issues.yml by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/727">gorilla/mux#727</a></li>
<li>run go fmt with Go 1.20 by <a
href="https://github.com/shogo82148"><code>@​shogo82148</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/725">gorilla/mux#725</a></li>
<li>Fix <code>Single Page Application</code> example in
<code>README.md</code> file by <a
href="https://github.com/amustaque97"><code>@​amustaque97</code></a> in
<a
href="https://redirect.github.com/gorilla/mux/pull/678">gorilla/mux#678</a></li>
<li>[BUG] Inconsistent HTTP status code on query mismatch by <a
href="https://github.com/soheilrt"><code>@​soheilrt</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/712">gorilla/mux#712</a></li>
<li>Clarify documentation examples of Route methods by <a
href="https://github.com/andrew-werdna"><code>@​andrew-werdna</code></a>
in <a
href="https://redirect.github.com/gorilla/mux/pull/672">gorilla/mux#672</a></li>
<li>changed the routeVariables text content. by <a
href="https://github.com/sumanpaikdev"><code>@​sumanpaikdev</code></a>
in <a
href="https://redirect.github.com/gorilla/mux/pull/708">gorilla/mux#708</a></li>
<li>Add GetVarNames() by <a
href="https://github.com/eh-steve"><code>@​eh-steve</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/676">gorilla/mux#676</a></li>
<li>fix SPA handler in README.md by <a
href="https://github.com/sy9"><code>@​sy9</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/733">gorilla/mux#733</a></li>
<li>update GitHub workflows by <a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> in <a
href="https://redirect.github.com/gorilla/mux/pull/734">gorilla/mux#734</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Jille"><code>@​Jille</code></a> made
their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/602">gorilla/mux#602</a></li>
<li><a
href="https://github.com/michaelgrigoryan25"><code>@​michaelgrigoryan25</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/679">gorilla/mux#679</a></li>
<li><a
href="https://github.com/amustaque97"><code>@​amustaque97</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/693">gorilla/mux#693</a></li>
<li><a
href="https://github.com/coreydaley"><code>@​coreydaley</code></a> made
their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/713">gorilla/mux#713</a></li>
<li><a
href="https://github.com/apoorvajagtap"><code>@​apoorvajagtap</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/718">gorilla/mux#718</a></li>
<li><a
href="https://github.com/shamkarthik"><code>@​shamkarthik</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/724">gorilla/mux#724</a></li>
<li><a
href="https://github.com/shogo82148"><code>@​shogo82148</code></a> made
their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/725">gorilla/mux#725</a></li>
<li><a href="https://github.com/soheilrt"><code>@​soheilrt</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/712">gorilla/mux#712</a></li>
<li><a
href="https://github.com/andrew-werdna"><code>@​andrew-werdna</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/672">gorilla/mux#672</a></li>
<li><a
href="https://github.com/sumanpaikdev"><code>@​sumanpaikdev</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/708">gorilla/mux#708</a></li>
<li><a href="https://github.com/eh-steve"><code>@​eh-steve</code></a>
made their first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/676">gorilla/mux#676</a></li>
<li><a href="https://github.com/sy9"><code>@​sy9</code></a> made their
first contribution in <a
href="https://redirect.github.com/gorilla/mux/pull/733">gorilla/mux#733</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/gorilla/mux/compare/v1.8.0...v1.8.1">https://github.com/gorilla/mux/compare/v1.8.0...v1.8.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/gorilla/mux/commit/b4617d0b9670ad14039b2739167fd35a60f557c5"><code>b4617d0</code></a>
update GitHub workflows (<a
href="https://redirect.github.com/gorilla/mux/issues/734">#734</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/3401478badc7aa55470bc806ee8cd185a16f9298"><code>3401478</code></a>
fix SPA handler in README.md (<a
href="https://redirect.github.com/gorilla/mux/issues/733">#733</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/4a671cbc5162efa2ecb1b353e6a704a62737d66c"><code>4a671cb</code></a>
Add GetVarNames() (<a
href="https://redirect.github.com/gorilla/mux/issues/676">#676</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/85123bf20e069b156415b871dea10517f6a8938a"><code>85123bf</code></a>
changed the routeVariables text content. (<a
href="https://redirect.github.com/gorilla/mux/issues/708">#708</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/79f2f457ca5017e08de9f86ada03939a82dbf714"><code>79f2f45</code></a>
Clarify documentation examples of Route methods (<a
href="https://redirect.github.com/gorilla/mux/issues/672">#672</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/395ad81d0ebffa0c5a36f3e5a2e720a7d5870d92"><code>395ad81</code></a>
[BUG] Inconsistent HTTP status code on query mismatch (<a
href="https://redirect.github.com/gorilla/mux/issues/712">#712</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/24c3e7f499efd8b1429cfe789c7e6a3631357045"><code>24c3e7f</code></a>
Fix <code>Single Page Application</code> example in
<code>README.md</code> file (<a
href="https://redirect.github.com/gorilla/mux/issues/678">#678</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/546dd0cc9f3ecdef8b065ac6336b4c6ed99887d4"><code>546dd0c</code></a>
run go fmt with Go 1.20 (<a
href="https://redirect.github.com/gorilla/mux/issues/725">#725</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/651928c42f7b60c7942e46d5f651dd1ece444246"><code>651928c</code></a>
Update issues.yml (<a
href="https://redirect.github.com/gorilla/mux/issues/727">#727</a>)</li>
<li><a
href="https://github.com/gorilla/mux/commit/cfc696d6d239ff68ceb71ee35c9a4e4ef3f30ed9"><code>cfc696d</code></a>
Update issues.yml (<a
href="https://redirect.github.com/gorilla/mux/issues/726">#726</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/gorilla/mux/compare/v1.8.0...v1.8.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/gorilla/mux&package-manager=go_modules&previous-version=1.8.0&new-version=1.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
)

Bumps
[github.com/felixge/httpsnoop](https://github.com/felixge/httpsnoop)
from 1.0.3 to 1.0.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/felixge/httpsnoop/releases">github.com/felixge/httpsnoop's
releases</a>.</em></p>
<blockquote>
<h2>v1.0.4</h2>
<p><a
href="https://github.com/felixge/httpsnoop/compare/v1.0.3...v1.0.4">https://github.com/felixge/httpsnoop/compare/v1.0.3...v1.0.4</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/felixge/httpsnoop/commit/c5817c27ec125409c069052fdd171023c353501c"><code>c5817c2</code></a>
codegen: fix generated header comment (<a
href="https://redirect.github.com/felixge/httpsnoop/issues/25">#25</a>)</li>
<li><a
href="https://github.com/felixge/httpsnoop/commit/661666ca196d6ac0883f7bd63976a8ff84ab5d18"><code>661666c</code></a>
Support (ignore) 1xx status codes. (<a
href="https://redirect.github.com/felixge/httpsnoop/issues/24">#24</a>)</li>
<li><a
href="https://github.com/felixge/httpsnoop/commit/8b7a3718bcc5cce0a251b2d21eb77c58bcb1f788"><code>8b7a371</code></a>
tests: refactor benchmarks to remove test server overhead (<a
href="https://redirect.github.com/felixge/httpsnoop/issues/20">#20</a>)</li>
<li><a
href="https://github.com/felixge/httpsnoop/commit/dcf093deb67646fbd12edcb12fdf173b8fd90aa2"><code>dcf093d</code></a>
chore: switch to github actions (<a
href="https://redirect.github.com/felixge/httpsnoop/issues/21">#21</a>)</li>
<li>See full diff in <a
href="https://github.com/felixge/httpsnoop/compare/v1.0.3...v1.0.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/felixge/httpsnoop&package-manager=go_modules&previous-version=1.0.3&new-version=1.0.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
## Which problem is this PR solving?
Prepares the v1.14.0 release.

## Short description of the changes
- Update version to 1.14.0 in version.go
- Add changelog entry

---------

Co-authored-by: Robb Kidd <[email protected]>
update codeowners to pipeline
update codeowners to pipeline-team
Bumps [github.com/google/uuid](https://github.com/google/uuid) from
1.4.0 to 1.5.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/releases">github.com/google/uuid's
releases</a>.</em></p>
<blockquote>
<h2>v1.5.0</h2>
<h2><a
href="https://github.com/google/uuid/compare/v1.4.0...v1.5.0">1.5.0</a>
(2023-12-12)</h2>
<h3>Features</h3>
<ul>
<li>Validate UUID without creating new UUID (<a
href="https://redirect.github.com/google/uuid/issues/141">#141</a>) (<a
href="https://github.com/google/uuid/commit/9ee7366e66c9ad96bab89139418a713dc584ae29">9ee7366</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/blob/master/CHANGELOG.md">github.com/google/uuid's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/google/uuid/compare/v1.4.0...v1.5.0">1.5.0</a>
(2023-12-12)</h2>
<h3>Features</h3>
<ul>
<li>Validate UUID without creating new UUID (<a
href="https://redirect.github.com/google/uuid/issues/141">#141</a>) (<a
href="https://github.com/google/uuid/commit/9ee7366e66c9ad96bab89139418a713dc584ae29">9ee7366</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/google/uuid/commit/4d47f8eb066f43cfaedd728a543479d9c9dfa8f6"><code>4d47f8e</code></a>
chore(master): release 1.5.0 (<a
href="https://redirect.github.com/google/uuid/issues/145">#145</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/9ee7366e66c9ad96bab89139418a713dc584ae29"><code>9ee7366</code></a>
feat: Validate UUID without creating new UUID (<a
href="https://redirect.github.com/google/uuid/issues/141">#141</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/b35aa6a595277504b1ec94c520d4091ec050b9d5"><code>b35aa6a</code></a>
add uuid version 6 and 7 (<a
href="https://redirect.github.com/google/uuid/issues/139">#139</a>)</li>
<li>See full diff in <a
href="https://github.com/google/uuid/compare/v1.4.0...v1.5.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/uuid&package-manager=go_modules&previous-version=1.4.0&new-version=1.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…414)

Bumps [github.com/labstack/echo/v4](https://github.com/labstack/echo)
from 4.11.3 to 4.11.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/labstack/echo/releases">github.com/labstack/echo/v4's
releases</a>.</em></p>
<blockquote>
<h2>v4.11.4 upgrade dependencies</h2>
<p><strong>Security</strong></p>
<ul>
<li>Upgrade golang.org/x/crypto to v0.17.0 to fix vulnerability <a
href="https://pkg.go.dev/vuln/GO-2023-2402">issue</a> <a
href="https://redirect.github.com/labstack/echo/pull/2562">#2562</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Update deps and mark Go version to 1.18 as this is what
golang.org/x/* use <a
href="https://redirect.github.com/labstack/echo/pull/2563">#2563</a></li>
<li>Request logger: add example for Slog <a
href="https://pkg.go.dev/log/slog">https://pkg.go.dev/log/slog</a> <a
href="https://redirect.github.com/labstack/echo/pull/2543">#2543</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/labstack/echo/blob/master/CHANGELOG.md">github.com/labstack/echo/v4's
changelog</a>.</em></p>
<blockquote>
<h2>v4.11.4 - 2023-12-20</h2>
<p><strong>Security</strong></p>
<ul>
<li>Upgrade golang.org/x/crypto to v0.17.0 to fix vulnerability <a
href="https://pkg.go.dev/vuln/GO-2023-2402">issue</a> <a
href="https://redirect.github.com/labstack/echo/pull/2562">#2562</a></li>
</ul>
<p><strong>Enhancements</strong></p>
<ul>
<li>Update deps and mark Go version to 1.18 as this is what
golang.org/x/* use <a
href="https://redirect.github.com/labstack/echo/pull/2563">#2563</a></li>
<li>Request logger: add example for Slog <a
href="https://pkg.go.dev/log/slog">https://pkg.go.dev/log/slog</a> <a
href="https://redirect.github.com/labstack/echo/pull/2543">#2543</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/labstack/echo/commit/226e4f076a69de85b71cf059d8a3c0fa8feafcaf"><code>226e4f0</code></a>
Changelog for v4.11.4 (<a
href="https://redirect.github.com/labstack/echo/issues/2564">#2564</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/209c6a199af0d6443f640528351064ba31b5f864"><code>209c6a1</code></a>
Update deps and mark Go version to 1.18 as this is what golang.org/x/*
use. (...</li>
<li><a
href="https://github.com/labstack/echo/commit/287a82c228efce23fac50e84d37e8690896bf5a5"><code>287a82c</code></a>
Upgrade golang.org/x/crypto to v0.17.0 to fix vulnerability issue (<a
href="https://redirect.github.com/labstack/echo/issues/2562">#2562</a>)</li>
<li><a
href="https://github.com/labstack/echo/commit/584cb85a6b749846ac26a8cd151244ab281f2abc"><code>584cb85</code></a>
request logger: add example for Slog <a
href="https://pkg.go.dev/log/slog">https://pkg.go.dev/log/slog</a> (<a
href="https://redirect.github.com/labstack/echo/issues/2543">#2543</a>)</li>
<li>See full diff in <a
href="https://github.com/labstack/echo/compare/v4.11.3...v4.11.4">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/labstack/echo/v4&package-manager=go_modules&previous-version=4.11.3&new-version=4.11.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…417)

Bumps
[github.com/DATA-DOG/go-sqlmock](https://github.com/DATA-DOG/go-sqlmock)
from 1.5.0 to 1.5.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/DATA-DOG/go-sqlmock/releases">github.com/DATA-DOG/go-sqlmock's
releases</a>.</em></p>
<blockquote>
<h2>v1.5.2</h2>
<h2>What's Changed</h2>
<h3>Fixes breaking change from: <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/295">DATA-DOG/go-sqlmock#295</a></h3>
<ul>
<li>fix: make no argument passed validation opt-in by <a
href="https://github.com/IvoGoman"><code>@​IvoGoman</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/329">DATA-DOG/go-sqlmock#329</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.1...v1.5.2">https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.1...v1.5.2</a></p>
<h2>v1.5.1</h2>
<p>Release was tested &amp; verified using <a
href="https://redirect.github.com/aws/aws-xray-sdk-go/pull/450">aws-sqk
</a></p>
<h2>What's Changed</h2>
<ul>
<li>Add go 1.15 in travis by <a
href="https://github.com/gold-kou"><code>@​gold-kou</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/234">DATA-DOG/go-sqlmock#234</a></li>
<li>Update code sample by <a
href="https://github.com/ashhadsheikh"><code>@​ashhadsheikh</code></a>
in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/244">DATA-DOG/go-sqlmock#244</a></li>
<li>Fix ExpectedExec Stringer implementation by <a
href="https://github.com/maguro"><code>@​maguro</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/249">DATA-DOG/go-sqlmock#249</a></li>
<li>Add Multi Row Support by <a
href="https://github.com/asahasrabuddhe"><code>@​asahasrabuddhe</code></a>
in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/263">DATA-DOG/go-sqlmock#263</a></li>
<li>Add Go 1.16 and 1.17 to Travis by <a
href="https://github.com/gliptak"><code>@​gliptak</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/279">DATA-DOG/go-sqlmock#279</a></li>
<li>fix package by <a
href="https://github.com/col3name"><code>@​col3name</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/284">DATA-DOG/go-sqlmock#284</a></li>
<li>[Chore]: Add Issue Template by <a
href="https://github.com/Ghvstcode"><code>@​Ghvstcode</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/289">DATA-DOG/go-sqlmock#289</a></li>
<li>Fix args passed not exp by <a
href="https://github.com/IvoGoman"><code>@​IvoGoman</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/295">DATA-DOG/go-sqlmock#295</a></li>
<li>fixes csv parse errors being silently ignored by <a
href="https://github.com/IvoGoman"><code>@​IvoGoman</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/315">DATA-DOG/go-sqlmock#315</a></li>
<li>CSVColParser: correctly set nil values in Rows by <a
href="https://github.com/IvoGoman"><code>@​IvoGoman</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/318">DATA-DOG/go-sqlmock#318</a></li>
<li>Modify: existing panic in AddRow to give a hint to the issue by <a
href="https://github.com/co60ca"><code>@​co60ca</code></a> in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/326">DATA-DOG/go-sqlmock#326</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/gold-kou"><code>@​gold-kou</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/234">DATA-DOG/go-sqlmock#234</a></li>
<li><a
href="https://github.com/ashhadsheikh"><code>@​ashhadsheikh</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/244">DATA-DOG/go-sqlmock#244</a></li>
<li><a href="https://github.com/maguro"><code>@​maguro</code></a> made
their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/249">DATA-DOG/go-sqlmock#249</a></li>
<li><a
href="https://github.com/asahasrabuddhe"><code>@​asahasrabuddhe</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/263">DATA-DOG/go-sqlmock#263</a></li>
<li><a href="https://github.com/col3name"><code>@​col3name</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/284">DATA-DOG/go-sqlmock#284</a></li>
<li><a href="https://github.com/Ghvstcode"><code>@​Ghvstcode</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/289">DATA-DOG/go-sqlmock#289</a></li>
<li><a href="https://github.com/IvoGoman"><code>@​IvoGoman</code></a>
made their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/295">DATA-DOG/go-sqlmock#295</a></li>
<li><a href="https://github.com/co60ca"><code>@​co60ca</code></a> made
their first contribution in <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/pull/326">DATA-DOG/go-sqlmock#326</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.0...v1.5.1">https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.0...v1.5.1</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/13767dc13af128db29eaa5622178abcd9729daec"><code>13767dc</code></a>
Merge pull request <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/issues/329">#329</a>
from IvoGoman/optionalNoArgs</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/a6a27b71b91fa833474353571363d22b4541c687"><code>a6a27b7</code></a>
fix: make no argument passed validation opt-in</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/b2d135c5e4bca66a3e7055ff43f64b245a5bc612"><code>b2d135c</code></a>
Merge pull request <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/issues/326">#326</a>
from co60ca/master</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/e4270300ef8b76cff7217fbe408b28adbf52fde6"><code>e427030</code></a>
Modify: existing panic in AddRow to give a hint to the issue</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/b2f0b45ee89df7dfd29e32a5f9bf087791c9a61f"><code>b2f0b45</code></a>
Merge pull request <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/issues/318">#318</a>
from IvoGoman/fix/nilonstringpointer</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/4a9308e2e87ec768ea28c81f46fdf3543454c16c"><code>4a9308e</code></a>
Update rows_test.go</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/fd971def423315aacad9923a9a9eb8e4ab86ce11"><code>fd971de</code></a>
CSVColParser: correctly set nil values in Rows</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/3476f31d8fc4d652040f8d534380f5b54a8d3a42"><code>3476f31</code></a>
Merge pull request <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/issues/315">#315</a>
from IvoGoman/fix/invalidcsvstring</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/a1ad26d1102880d2124d764aa0a80707f95dffee"><code>a1ad26d</code></a>
fixes csv parse errors being silently ignored</li>
<li><a
href="https://github.com/DATA-DOG/go-sqlmock/commit/44e746a20e094153210b5b25fea30c38804a8b29"><code>44e746a</code></a>
Merge pull request <a
href="https://redirect.github.com/DATA-DOG/go-sqlmock/issues/295">#295</a>
from IvoGoman/fix-args-passed-not-exp</li>
<li>Additional commits viewable in <a
href="https://github.com/DATA-DOG/go-sqlmock/compare/v1.5.0...v1.5.2">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/DATA-DOG/go-sqlmock&package-manager=go_modules&previous-version=1.5.0&new-version=1.5.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [github.com/google/uuid](https://github.com/google/uuid) from
1.5.0 to 1.6.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/releases">github.com/google/uuid's
releases</a>.</em></p>
<blockquote>
<h2>v1.6.0</h2>
<h2><a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">1.6.0</a>
(2024-01-16)</h2>
<h3>Features</h3>
<ul>
<li>add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>) (<a
href="https://github.com/google/uuid/commit/c58770eb495f55fe2ced6284f93c5158a62e53e3">c58770e</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>) (<a
href="https://github.com/google/uuid/commit/016b199544692f745ffc8867b914129ecb47ef06">016b199</a>)</li>
<li>Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>) (<a
href="https://github.com/google/uuid/commit/a2b2b32373ff0b1a312b7fdf6d38a977099698a6">a2b2b32</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/google/uuid/blob/master/CHANGELOG.md">github.com/google/uuid's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">1.6.0</a>
(2024-01-16)</h2>
<h3>Features</h3>
<ul>
<li>add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>) (<a
href="https://github.com/google/uuid/commit/c58770eb495f55fe2ced6284f93c5158a62e53e3">c58770e</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>) (<a
href="https://github.com/google/uuid/commit/016b199544692f745ffc8867b914129ecb47ef06">016b199</a>)</li>
<li>Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>) (<a
href="https://github.com/google/uuid/commit/a2b2b32373ff0b1a312b7fdf6d38a977099698a6">a2b2b32</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/google/uuid/commit/0f11ee6918f41a04c201eceeadf612a377bc7fbc"><code>0f11ee6</code></a>
chore(master): release 1.6.0 (<a
href="https://redirect.github.com/google/uuid/issues/151">#151</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/16939dafc37a38d2743810a8bdf60fdad6a0f3a3"><code>16939da</code></a>
chore(tests): add strict monotonicity test case for uuid v7. (<a
href="https://redirect.github.com/google/uuid/issues/154">#154</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/016b199544692f745ffc8867b914129ecb47ef06"><code>016b199</code></a>
fix: fix typo in version 7 uuid documentation (<a
href="https://redirect.github.com/google/uuid/issues/153">#153</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/1d8b6ea0990d688105843a9a67b1d07222350502"><code>1d8b6ea</code></a>
ci: set token permissions to github workflows (<a
href="https://redirect.github.com/google/uuid/issues/143">#143</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/a2b2b32373ff0b1a312b7fdf6d38a977099698a6"><code>a2b2b32</code></a>
fix: Monotonicity in UUIDv7 (<a
href="https://redirect.github.com/google/uuid/issues/150">#150</a>)</li>
<li><a
href="https://github.com/google/uuid/commit/c58770eb495f55fe2ced6284f93c5158a62e53e3"><code>c58770e</code></a>
feat: add Max UUID constant (<a
href="https://redirect.github.com/google/uuid/issues/149">#149</a>)</li>
<li>See full diff in <a
href="https://github.com/google/uuid/compare/v1.5.0...v1.6.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/google/uuid&package-manager=go_modules&previous-version=1.5.0&new-version=1.6.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
)

Bumps google.golang.org/protobuf from 1.31.0 to 1.32.0.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.31.0&new-version=1.32.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
## Which problem is this PR solving?

We've now released Ingest Keys, but in order for them to work with
Classic environments properly we need to update the key detection logic.

## Short description of the changes

- Updates the logic of the existing `IsClassicKey` function to support
Classic Ingest Keys
- upgrades `libhoney-go` to 1.22.0
## Which problem is this PR solving?
Prepares the next release of beeline-go

## Short description of the changes
- Add changelog entry
- Update version to 1.15.0
update release.yml that gets used for generating release notes to
include labels of type: dependencies and type: documentation
## Which problem is this PR solving?

Reduce the number of dependabot PRs

## Short description of the changes

- Groups minor and patch dependency updates into a single group.

Signed-off-by: Alex Boten <[email protected]>
## Which problem is this PR solving?

- sparked by #431
- 1.18 has been out of official support since 2023-02-01, when 1.20 was
released

## Short description of the changes

- bump minimum go version to 1.19
- run `go mod tidy`

Signed-off-by: Alex Boten <[email protected]>
Bumps the minor-patch group with 4 updates:
[github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql),
[github.com/stretchr/testify](https://github.com/stretchr/testify),
[google.golang.org/grpc](https://github.com/grpc/grpc-go) and
google.golang.org/protobuf.

Updates `github.com/go-sql-driver/mysql` from 1.7.1 to 1.8.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/go-sql-driver/mysql/releases">github.com/go-sql-driver/mysql's
releases</a>.</em></p>
<blockquote>
<h2>v1.8.0</h2>
<h2>What's Changed</h2>
<h2>Major changes</h2>
<ul>
<li>
<p>Use <code>SET NAMES charset COLLATE collation</code>. by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1437">go-sql-driver/mysql#1437</a></p>
<ul>
<li>Older go-mysql-driver used <code>collation_id</code> in the
handshake packet. But it caused collation mismatch in some
situation.</li>
<li>If you don't specify charset nor collation, go-mysql-driver sends
<code>SET NAMES utf8mb4</code> for new connection. This uses server's
default collation for utf8mb4.</li>
<li>If you specify charset, go-mysql-driver sends <code>SET NAMES
&lt;charset&gt;</code>. This uses the server's default collation for
<code>&lt;charset&gt;</code>.</li>
<li>If you specify collation and/or charset, go-mysql-driver sends
<code>SET NAMES charset COLLATE collation</code>.</li>
</ul>
</li>
<li>
<p>PathEscape dbname in DSN. by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1432">go-sql-driver/mysql#1432</a></p>
<ul>
<li>This is backward incompatible in rare case. Check your DSN.</li>
</ul>
</li>
<li>
<p>Drop Go 1.13-17 support by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1420">go-sql-driver/mysql#1420</a></p>
<ul>
<li>Use Go 1.18+</li>
</ul>
</li>
<li>
<p>Parse numbers on text protocol too by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1452">go-sql-driver/mysql#1452</a></p>
<ul>
<li>When text protocol is used, go-mysql-driver passed bare
<code>[]byte</code> to database/sql for avoid unnecessary allocation and
conversion.</li>
<li>If user specified <code>*any</code> to <code>Scan()</code>,
database/sql passed the <code>[]byte</code> into the target
variabe.</li>
<li>This confused users because most user doesn't know when text/binary
protocol used.</li>
<li>go-mysql-driver 1.8 converts integer/float values into int64/double
even in text protocol. This doesn't increase allocation compared to
<code>[]byte</code> and conversion cost is negilible.</li>
</ul>
</li>
<li>
<p>New options start using the Functional Option Pattern to avoid
increasing technical debt in the Config object. Future version may
introduce Functional Option for existing options, but not for now.</p>
<ul>
<li>Make TimeTruncate functional option by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1552">go-sql-driver/mysql#1552</a></li>
<li>Add BeforeConnect callback to configuration object by <a
href="https://github.com/ItalyPaleAle"><code>@​ItalyPaleAle</code></a>
in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1469">go-sql-driver/mysql#1469</a></li>
</ul>
</li>
</ul>
<h3>Other changes</h3>
<ul>
<li>
<p>Adding DeregisterDialContext to prevent memory leaks with dialers we
don't need anymore by <a
href="https://github.com/jypelle"><code>@​jypelle</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1422">go-sql-driver/mysql#1422</a></p>
</li>
<li>
<p>Make logger configurable per connection by <a
href="https://github.com/frozenbonito"><code>@​frozenbonito</code></a>
in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1408">go-sql-driver/mysql#1408</a></p>
</li>
<li>
<p>Fix ColumnType.DatabaseTypeName for mediumint unsigned by <a
href="https://github.com/evanelias"><code>@​evanelias</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1428">go-sql-driver/mysql#1428</a></p>
</li>
<li>
<p>Add connection attributes by <a
href="https://github.com/Daemonxiao"><code>@​Daemonxiao</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1389">go-sql-driver/mysql#1389</a></p>
</li>
<li>
<p>Stop <code>ColumnTypeScanType()</code> from returning
<code>sql.RawBytes</code> by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1424">go-sql-driver/mysql#1424</a></p>
</li>
<li>
<p>Exec() now provides access to status of multiple statements. by <a
href="https://github.com/mherr-google"><code>@​mherr-google</code></a>
in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1309">go-sql-driver/mysql#1309</a></p>
</li>
<li>
<p>Allow to change (or disable) the default driver name for registration
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1499">go-sql-driver/mysql#1499</a></p>
</li>
<li>
<p>Add default connection attribute '_server_host' by <a
href="https://github.com/oblitorum"><code>@​oblitorum</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1506">go-sql-driver/mysql#1506</a></p>
</li>
<li>
<p>QueryUnescape DSN ConnectionAttribute value by <a
href="https://github.com/zhangyangyu"><code>@​zhangyangyu</code></a> in
<a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1470">go-sql-driver/mysql#1470</a></p>
</li>
<li>
<p>Add client_ed25519 authentication by <a
href="https://github.com/Gusted"><code>@​Gusted</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1518">go-sql-driver/mysql#1518</a></p>
</li>
<li>
<p>Reduced allocation on connection.go by <a
href="https://github.com/EPuncker"><code>@​EPuncker</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1421">go-sql-driver/mysql#1421</a></p>
</li>
<li>
<p>Avoid panic in TestRowsColumnTypes by <a
href="https://github.com/wayyoungboy"><code>@​wayyoungboy</code></a> in
<a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1426">go-sql-driver/mysql#1426</a></p>
</li>
<li>
<p>Add benchmark to receive massive rows. by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1415">go-sql-driver/mysql#1415</a></p>
</li>
<li>
<p>README: Update multistatement by <a
href="https://github.com/methane"><code>@​methane</code></a> in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1431">go-sql-driver/mysql#1431</a></p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/33b7747a9144946e50399904d3f27ecc0f96c2b6"><code>33b7747</code></a>
Add BeforeConnect callback to configuration object (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1469">#1469</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/6964272ffd13a41ad66383cd2ea738fded75ad06"><code>6964272</code></a>
Make TimeTruncate functional option (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1552">#1552</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/097fe6e3ad83bbd7c84debe810aec4c4a533bcaa"><code>097fe6e</code></a>
Update workflows (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1547">#1547</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/f019727e4706bf9c4f60579382f6e72b94bd0305"><code>f019727</code></a>
add TiDB support in README.md (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1333">#1333</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/743e263bab87912dfb61789f36c21d9685887c76"><code>743e263</code></a>
Introduce <code>timeTruncate</code> parameter for <code>time.Time</code>
arguments (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1541">#1541</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/c48c0e7da17e8fc06133e431ce7c10e7a3e94f06"><code>c48c0e7</code></a>
Fix unsigned int overflow (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1530">#1530</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/0004702b931d3429afb3e16df444ed80be24d1f4"><code>0004702</code></a>
Parallelize test (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1525">#1525</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/d4517c5d905ccd3cc1e750f592edfa88d774d908"><code>d4517c5</code></a>
Support ENUM and SET type in DatabaseTypeName() (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1520">#1520</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/2cdf62442f2edb873d1270897d994fc83b78f118"><code>2cdf624</code></a>
Fix sql.RawBytes corruption issue (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1523">#1523</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/fc589cbaba22032382488393c72b9b3b5366917c"><code>fc589cb</code></a>
Add client_ed25519 authentication (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1518">#1518</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/go-sql-driver/mysql/compare/v1.7.1...v1.8.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `github.com/stretchr/testify` from 1.8.4 to 1.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/stretchr/testify/releases">github.com/stretchr/testify's
releases</a>.</em></p>
<blockquote>
<h2>v1.9.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix Go modules version by <a
href="https://github.com/SuperQ"><code>@​SuperQ</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1394">stretchr/testify#1394</a></li>
<li>Document that require is not safe to call in created goroutines by
<a
href="https://github.com/programmer04"><code>@​programmer04</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1392">stretchr/testify#1392</a></li>
<li>Remove myself from MAINTAINERS.md by <a
href="https://github.com/mvdkleijn"><code>@​mvdkleijn</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1367">stretchr/testify#1367</a></li>
<li>Correct spelling/grammar by <a
href="https://github.com/echarrod"><code>@​echarrod</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1389">stretchr/testify#1389</a></li>
<li>docs: Update URLs in README by <a
href="https://github.com/davidjb"><code>@​davidjb</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1349">stretchr/testify#1349</a></li>
<li>Update mockery link to Github Pages in README by <a
href="https://github.com/LandonTClipp"><code>@​LandonTClipp</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1346">stretchr/testify#1346</a></li>
<li>docs: Fix typos in tests and comments by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1410">stretchr/testify#1410</a></li>
<li>CI: tests from go1.17 by <a
href="https://github.com/SuperQ"><code>@​SuperQ</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1409">stretchr/testify#1409</a></li>
<li>Fix adding ? when no values passed by <a
href="https://github.com/lesichkovm"><code>@​lesichkovm</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1320">stretchr/testify#1320</a></li>
<li>codegen: use standard header for generated files by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1406">stretchr/testify#1406</a></li>
<li>mock: AssertExpectations log reason only on failure by <a
href="https://github.com/hikyaru-suzuki"><code>@​hikyaru-suzuki</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1360">stretchr/testify#1360</a></li>
<li>assert: fix flaky TestNeverTrue by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1417">stretchr/testify#1417</a></li>
<li>README: fix typos &quot;set up&quot; vs &quot;setup&quot; by <a
href="https://github.com/ossan-dev"><code>@​ossan-dev</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1428">stretchr/testify#1428</a></li>
<li>mock: move regexp compilation outside of <code>Called</code> by <a
href="https://github.com/aud10slave"><code>@​aud10slave</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/631">stretchr/testify#631</a></li>
<li>assert: refactor internal func getLen() by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1445">stretchr/testify#1445</a></li>
<li>mock: deprecate type AnythingOfTypeArgument (<a
href="https://redirect.github.com/stretchr/testify/issues/1434">#1434</a>)
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1441">stretchr/testify#1441</a></li>
<li>Remove no longer needed assert.canConvert by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1470">stretchr/testify#1470</a></li>
<li>assert: ObjectsAreEqual: use time.Equal for time.Time types by <a
href="https://github.com/tscales"><code>@​tscales</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1464">stretchr/testify#1464</a></li>
<li>Bump actions/checkout from 3 to 4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1466">stretchr/testify#1466</a></li>
<li>Bump actions/setup-go from 3.2.0 to 4.1.0 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1451">stretchr/testify#1451</a></li>
<li>fix: make EventuallyWithT concurrency safe by <a
href="https://github.com/czeslavo"><code>@​czeslavo</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1395">stretchr/testify#1395</a></li>
<li>assert: fix httpCode and HTTPBody occur panic when http.Handler read
Body by <a href="https://github.com/hidu"><code>@​hidu</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1484">stretchr/testify#1484</a></li>
<li>assert.EqualExportedValues: fix handling of arrays by <a
href="https://github.com/zrbecker"><code>@​zrbecker</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1473">stretchr/testify#1473</a></li>
<li>.github: use latest Go versions by <a
href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1489">stretchr/testify#1489</a></li>
<li>assert: Deprecate EqualExportedValues by <a
href="https://github.com/HaraldNordgren"><code>@​HaraldNordgren</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1488">stretchr/testify#1488</a></li>
<li>suite: refactor test assertions by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1474">stretchr/testify#1474</a></li>
<li>suite: fix SetupSubTest and TearDownSubTest execution order by <a
href="https://github.com/linusbarth"><code>@​linusbarth</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1471">stretchr/testify#1471</a></li>
<li>docs: Fix deprecation comments for http package by <a
href="https://github.com/alexandear"><code>@​alexandear</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1335">stretchr/testify#1335</a></li>
<li>Add map support doc comments to Subset and NotSubset by <a
href="https://github.com/jedevc"><code>@​jedevc</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1306">stretchr/testify#1306</a></li>
<li>TestErrorIs/TestNotErrorIs: check error message contents by <a
href="https://github.com/craig65535"><code>@​craig65535</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1435">stretchr/testify#1435</a></li>
<li>suite: fix subtest names (fix <a
href="https://redirect.github.com/stretchr/testify/issues/1501">#1501</a>)
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1504">stretchr/testify#1504</a></li>
<li>assert: improve unsafe.Pointer tests by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1505">stretchr/testify#1505</a></li>
<li>assert: simplify isNil implementation by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1506">stretchr/testify#1506</a></li>
<li>assert.InEpsilonSlice: fix expected/actual order and other
improvements by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1483">stretchr/testify#1483</a></li>
<li>Fix dependency cycle with objx <a
href="https://redirect.github.com/stretchr/testify/issues/1292">#1292</a>
by <a href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1453">stretchr/testify#1453</a></li>
<li>mock: refactor TestIsArgsEqual by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1444">stretchr/testify#1444</a></li>
<li>mock: optimize argument matching checks by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1416">stretchr/testify#1416</a></li>
<li>assert: fix TestEventuallyTimeout by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1412">stretchr/testify#1412</a></li>
<li>CI: add go 1.21 in GitHub Actions by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1450">stretchr/testify#1450</a></li>
<li>suite: fix recoverAndFailOnPanic to report test failure at the right
location by <a
href="https://github.com/dolmen"><code>@​dolmen</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1502">stretchr/testify#1502</a></li>
<li>Update maintainers by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1533">stretchr/testify#1533</a></li>
<li>assert: Fix EqualValues to handle overflow/underflow by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1531">stretchr/testify#1531</a></li>
<li>assert: better formatting for Len() error by <a
href="https://github.com/kevinburkesegment"><code>@​kevinburkesegment</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1485">stretchr/testify#1485</a></li>
<li>Ensure AssertExpectations does not fail in skipped tests by <a
href="https://github.com/ianrose14"><code>@​ianrose14</code></a> in <a
href="https://redirect.github.com/stretchr/testify/pull/1331">stretchr/testify#1331</a></li>
<li>suite: fix deadlock in suite.Require()/Assert() by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1535">stretchr/testify#1535</a></li>
<li>Revert &quot;assert: ObjectsAreEqual: use time.Equal for time.Time
type&quot; by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1537">stretchr/testify#1537</a></li>
<li>[chore] Add issue templates by <a
href="https://github.com/arjunmahishi"><code>@​arjunmahishi</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1538">stretchr/testify#1538</a></li>
<li>Update the build status badge by <a
href="https://github.com/brackendawson"><code>@​brackendawson</code></a>
in <a
href="https://redirect.github.com/stretchr/testify/pull/1540">stretchr/testify#1540</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/stretchr/testify/commit/bb548d0473d4e1c9b7bbfd6602c7bf12f7a84dd2"><code>bb548d0</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1552">#1552</a>
from stretchr/dependabot/go_modules/github.com/stret...</li>
<li><a
href="https://github.com/stretchr/testify/commit/814075f391adffd2bf2b5110a74c51827ba132c4"><code>814075f</code></a>
build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2</li>
<li><a
href="https://github.com/stretchr/testify/commit/e0456122451b1839c8d58d32df6364e4d0f0a709"><code>e045612</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1339">#1339</a>
from bogdandrutu/uintptr</li>
<li><a
href="https://github.com/stretchr/testify/commit/5b6926d686d412518f50e888b9ae9b938355e011"><code>5b6926d</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1385">#1385</a>
from hslatman/not-implements</li>
<li><a
href="https://github.com/stretchr/testify/commit/9f97d67703eff02136d487e6c907e76fdea31a8b"><code>9f97d67</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1550">#1550</a>
from stretchr/release-notes</li>
<li><a
href="https://github.com/stretchr/testify/commit/bcb0d3fe49ff300fb78288cc144bc61a881f58ec"><code>bcb0d3f</code></a>
Include the auto-release notes in releases</li>
<li><a
href="https://github.com/stretchr/testify/commit/fb770f8238261aa22f8e0c56f18168ccb90f4a09"><code>fb770f8</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1247">#1247</a>
from ccoVeille/typos</li>
<li><a
href="https://github.com/stretchr/testify/commit/85d8bb6eea715dcbbb68f7c87b50e1956e20f892"><code>85d8bb6</code></a>
fix typos in comments, tests and github templates</li>
<li><a
href="https://github.com/stretchr/testify/commit/e2741fa4e9bf2fdfe3ed48d976a7eeebe76c5009"><code>e2741fa</code></a>
Merge pull request <a
href="https://redirect.github.com/stretchr/testify/issues/1548">#1548</a>
from arjunmahishi/msgAndArgs</li>
<li><a
href="https://github.com/stretchr/testify/commit/6e59f20c0d3883d2bdc589a9e48374ea30601851"><code>6e59f20</code></a>
http_assertions: assert that the msgAndArgs actually works in tests</li>
<li>Additional commits viewable in <a
href="https://github.com/stretchr/testify/compare/v1.8.4...v1.9.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `google.golang.org/grpc` from 1.57.0 to 1.62.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's
releases</a>.</em></p>
<blockquote>
<h2>Release 1.62.1</h2>
<h1>Bug Fixes</h1>
<ul>
<li>xds: fix a bug that results in <code>no matching virtual host
found</code> RPC errors due to a difference between the target and LDS
resource names (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6997">#6997</a>)</li>
<li>server: fixed stats handler data <code>InPayload.Length</code> for
unary RPC calls (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6766">#6766</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/hueypark"><code>@​hueypark</code></a></li>
</ul>
</li>
<li>grpc: the experimental <code>RecvBufferPool</code>
<code>DialOption</code> and <code>ServerOption</code> are now active
during unary RPCs with compression (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6766">#6766</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/hueypark"><code>@​hueypark</code></a></li>
</ul>
</li>
<li>grpc: trim whitespaces in <code>accept-encoding</code> header before
determining compressors
<ul>
<li>Special Thanks: <a
href="https://github.com/sercand"><code>@​sercand</code></a></li>
</ul>
</li>
</ul>
<h2>Release 1.62.0</h2>
<h1>New Features</h1>
<ul>
<li>grpc: Add StaticMethod CallOption as a signal to stats handler that
a method is safe to use as an instrument key (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6986">#6986</a>)</li>
</ul>
<h1>Behavior Changes</h1>
<ul>
<li>grpc: Return canonical target string from ClientConn.Target() and
resolver.Address.String() (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6923">#6923</a>)</li>
</ul>
<h1>Bug Fixes</h1>
<ul>
<li>server: wait to close connection until incoming socket is drained
(with timeout) to prevent data loss on client-side (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6977">#6977</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/s-matyukevich"><code>@​s-matyukevich</code></a>
for discovering the root cause</li>
</ul>
</li>
</ul>
<h1>Performance Improvements</h1>
<ul>
<li>*: Allow building without <code>x/net/trace</code> by using
<code>grpcnotrace</code> to enable dead code elimination (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6954">#6954</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/hugelgupf"><code>@​hugelgupf</code></a></li>
</ul>
</li>
<li>rand: improve performance and simplify implementation of
<code>grpcrand</code> by adopting <code>math/rand</code>'s top-level
functions for go version 1.21.0 and newer. (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6925">#6925</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/kmirzavaziri"><code>@​kmirzavaziri</code></a></li>
</ul>
</li>
</ul>
<h1>Dependencies</h1>
<ul>
<li>*: Use google.golang.org/protobuf/proto instead of
github.com/golang/protobuf. (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6919">#6919</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/Clement-Jean"><code>@​Clement-Jean</code></a></li>
</ul>
</li>
</ul>
<blockquote>
<p>[!NOTE]
The above change in proto library usage introduces a minor behavior
change within those libraries. The old
<code>github.com/golang/protobuf</code> library would error if given a
<code>nil</code> message to <code>Marshal</code>, while the new
<code>google.golang.org/protobuf</code> library will successfully output
zero bytes in this case. This means server method handlers that did
<code>return nil, nil</code> will now return an empty message and no
error, while it used to return an error. This also affects the client
side, where clients sending <code>nil</code> messages used to fail
without sending the RPC, and now they will send an empty message.</p>
</blockquote>
<h2>Release 1.61.1</h2>
<h1>Bug Fixes</h1>
<ul>
<li>server: wait to close connection until incoming socket is drained
(with timeout) to prevent data loss on client-side (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6977">#6977</a>)
<ul>
<li>Special Thanks: <a
href="https://github.com/s-matyukevich"><code>@​s-matyukevich</code></a>
for discovering the root cause</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/grpc/grpc-go/commit/9952aa83979822b5915c3fcb2bb0f60afe55aa7d"><code>9952aa8</code></a>
Change version to 1.62.1 (<a
href="https://redirect.github.com/grpc/grpc-go/issues/7020">#7020</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/d7334c477d1ea670fa8d5fa12f06a2bfe4f41d4f"><code>d7334c4</code></a>
fix enabling compression by trimming whitespaces in accept encoding
header (#...</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/d076e14b4849f4262f6f50042a9370ec5ce0116d"><code>d076e14</code></a>
rpc_util: Fix RecvBufferPool deactivation issues (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6766">#6766</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/9d981b0eb01a1ccd61f16593461277e95e83a34b"><code>9d981b0</code></a>
cherry-pick <a
href="https://redirect.github.com/grpc/grpc-go/issues/6997">#6997</a> to
1.62.x release branch (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6979">#6979</a>)
(<a
href="https://redirect.github.com/grpc/grpc-go/issues/7018">#7018</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/7c4b5533d07d5d7d01aa71145c32af27ac6e1a4d"><code>7c4b553</code></a>
Switch version to 1.62.1-dev (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6995">#6995</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/d715b2ef0602fe2133221519cba0642ac282cc3f"><code>d715b2e</code></a>
Change version to 1.62.0 (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6994">#6994</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/d706a42d29ab785cc1ad86a09fe828ef0a196f26"><code>d706a42</code></a>
cherry-pick <a
href="https://redirect.github.com/grpc/grpc-go/issues/6926">#6926</a> to
1.62 release branch (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6986">#6986</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/8a4ca0cc41ceb5bd0763c865cc4094650df9f95f"><code>8a4ca0c</code></a>
cherry-pick <a
href="https://redirect.github.com/grpc/grpc-go/issues/6977">#6977</a> to
1.62.x release branch (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6979">#6979</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/d41b01db97ca2e3627b2c9949fffe8f152a4255d"><code>d41b01d</code></a>
encoding: fix typo (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6966">#6966</a>)</li>
<li><a
href="https://github.com/grpc/grpc-go/commit/c2b50ee081682eca4b995d2fb79e642019f78aea"><code>c2b50ee</code></a>
deps: fix backwards compatibility with encoding (<a
href="https://redirect.github.com/grpc/grpc-go/issues/6965">#6965</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/grpc/grpc-go/compare/v1.57.0...v1.62.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `google.golang.org/protobuf` from 1.32.0 to 1.33.0


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the minor-patch group with 1 update:
[github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql).

Updates `github.com/go-sql-driver/mysql` from 1.8.0 to 1.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/go-sql-driver/mysql/releases">github.com/go-sql-driver/mysql's
releases</a>.</em></p>
<blockquote>
<h2>v1.8.1</h2>
<h2>What's Changed</h2>
<p>Bugfixes:</p>
<ul>
<li>fix race condition when context is canceled in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1562">#1562</a>
and <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1570">#1570</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1">https://github.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/go-sql-driver/mysql/blob/v1.8.1/CHANGELOG.md">github.com/go-sql-driver/mysql's
changelog</a>.</em></p>
<blockquote>
<h2>Version 1.8.1 (2024-03-26)</h2>
<p>Bugfixes:</p>
<ul>
<li>fix race condition when context is canceled in <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1562">#1562</a>
and <a
href="https://redirect.github.com/go-sql-driver/mysql/pull/1570">#1570</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/4395c45fd098a81c5251667cda111f94c693ab14"><code>4395c45</code></a>
update changelog for releasing v1.8.1 (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1576">#1576</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/7eeaba63c539337ee3c37d40164a0b69606f5a37"><code>7eeaba6</code></a>
Fix issue 1567 (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1570">#1570</a>)
(<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1571">#1571</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/65395d853d2cff602f26e79becb84ff116948c8f"><code>65395d8</code></a>
fix race condition when context is canceled (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1565">#1565</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/1e75613eb1d182b7a682f06607e4d5a8afd52546"><code>1e75613</code></a>
add wrapper method to call mc.cfg.Logger (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1564">#1564</a>)</li>
<li><a
href="https://github.com/go-sql-driver/mysql/commit/33fa6e529246e1e6b77a4611bd9338694dca87ff"><code>33fa6e5</code></a>
replace interface{} with any (<a
href="https://redirect.github.com/go-sql-driver/mysql/issues/1561">#1561</a>)</li>
<li>See full diff in <a
href="https://github.com/go-sql-driver/mysql/compare/v1.8.0...v1.8.1">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/go-sql-driver/mysql&package-manager=go_modules&previous-version=1.8.0&new-version=1.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
## Which problem is this PR solving?
Prepares the next release of beeline-go library.

## Short description of the changes
- Add changelog entry
- Update version to 1.16.0
## Which problem is this PR solving?
Adds golang 1.22 to test matrix versions.

## Short description of the changes
- Add 1.22 to list of go versions in circle CI
## Which problem is this PR solving?

Updates libhoney-go to latest version. Includes URL encoding dataset
name for /event and /batch endpoints.

## Short description of the changes
- Update libhoney-go to 1.23.0 and run go mod tidy
## Which problem is this PR solving?

Prepares the next release of this package for publishing.

## Short description of the changes
- Add changelog entry
- Update version to 1.17.0
Updating outdated link
Updating the vulnerability reporting process doc for this repo, ref
[honeycombio/.github#20](honeycombio/.github#20).
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.20.0 to
0.23.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/golang/net/commit/c48da131589f122489348be5dfbcb6457640046f"><code>c48da13</code></a>
http2: fix TestServerContinuationFlood flakes</li>
<li><a
href="https://github.com/golang/net/commit/762b58d1cf6e0779780decad89c6c1523386638d"><code>762b58d</code></a>
http2: fix tipos in comment</li>
<li><a
href="https://github.com/golang/net/commit/ba872109ef2dc8f1da778651bd1fd3792d0e4587"><code>ba87210</code></a>
http2: close connections when receiving too many headers</li>
<li><a
href="https://github.com/golang/net/commit/ebc8168ac8ac742194df729305175940790c55a2"><code>ebc8168</code></a>
all: fix some typos</li>
<li><a
href="https://github.com/golang/net/commit/3678185f8a652e52864c44049a9ea96b7bcc066a"><code>3678185</code></a>
http2: make TestCanonicalHeaderCacheGrowth faster</li>
<li><a
href="https://github.com/golang/net/commit/448c44f9287b6745f958d74aa2a17ec7761c2f13"><code>448c44f</code></a>
http2: remove clientTester</li>
<li><a
href="https://github.com/golang/net/commit/c7877ac4213b2f859831366f5a35b353e0dc9f66"><code>c7877ac</code></a>
http2: convert the remaining clientTester tests to testClientConn</li>
<li><a
href="https://github.com/golang/net/commit/d8870b0bf2f2426fc8d19a9332f652da5c25418f"><code>d8870b0</code></a>
http2: use synthetic time in TestIdleConnTimeout</li>
<li><a
href="https://github.com/golang/net/commit/d73acffdc9493532acb85777105bb4a351eea702"><code>d73acff</code></a>
http2: only set up deadline when Server.IdleTimeout is positive</li>
<li><a
href="https://github.com/golang/net/commit/89f602b7bbf237abe0467031a18b42fc742ced08"><code>89f602b</code></a>
http2: validate client/outgoing trailers</li>
<li>Additional commits viewable in <a
href="https://github.com/golang/net/compare/v0.20.0...v0.23.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/net&package-manager=go_modules&previous-version=0.20.0&new-version=0.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/honeycombio/beeline-go/network/alerts).

</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
## Which problem is this PR solving?

Updates libhoney-go to latest version.

## Short description of the changes
- Update libhoney-go in go.mod/sum to 1.24.0
## Which problem is this PR solving?

Prepares the next release of beeline-go.

## Short description of the changes
- Add changelog entry
- Update version to 1.18.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.