Nick
4cf9582a49
test(server): Decompose base URL to URI to helper and add test ( #3839 )
...
Decompose the logic for parsing base URL into the URI for client dial.
Add a unit test for the new helper.
2024-05-02 18:01:28 +00:00
dependabot[bot]
0fc8b1ba88
build(deps-dev): bump ejs from 3.1.9 to 3.1.10 in /app ( #3841 )
...
Bumps [ejs](https://github.com/mde/ejs ) from 3.1.9 to 3.1.10.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/mde/ejs/releases ">ejs's
releases</a>.</em></p>
<blockquote>
<h2>v3.1.10</h2>
<p>Version 3.1.10</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d3f807dea9 "><code>d3f807d</code></a>
Version 3.1.10</li>
<li><a
href="9ee26dde5d "><code>9ee26dd</code></a>
Mocha TDD</li>
<li><a
href="e469741dca "><code>e469741</code></a>
Basic pollution protection</li>
<li><a
href="715e9507fa "><code>715e950</code></a>
Merge pull request <a
href="https://redirect.github.com/mde/ejs/issues/756 ">#756</a> from
Jeffrey-mu/main</li>
<li><a
href="cabe3146ad "><code>cabe314</code></a>
Include advanced usage examples</li>
<li><a
href="29b076cdbb "><code>29b076c</code></a>
Added header</li>
<li><a
href="11503c79af "><code>11503c7</code></a>
Merge branch 'main' of github.com:mde/ejs into main</li>
<li><a
href="7690404e2f "><code>7690404</code></a>
Added security banner to README</li>
<li><a
href="f47d7aedd5 "><code>f47d7ae</code></a>
Update SECURITY.md</li>
<li><a
href="828cea1687 "><code>828cea1</code></a>
Update SECURITY.md</li>
<li>Additional commits viewable in <a
href="https://github.com/mde/ejs/compare/v3.1.9...v3.1.10 ">compare
view</a></li>
</ul>
</details>
<br />
[](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/kopia/kopia/network/alerts ).
</details>
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-02 10:34:40 -07:00
Mark Severson
3fcdb9b185
refactor(general): avoid using empty master keys ( #3835 )
...
Previously, empty master keys were passed to the underlying
cryptographic primitives (HKDF, AEAD, etc.).
While this worked because the authentication mechanisms returned an
error, it's best to avoid passing empty master keys to these primitives
in the first place. This refactor avoids passing empty master keys and
enforces this via an assertion in the key derivation function.
2024-05-01 14:50:01 -07:00
Julio López
ad06bb20b1
refactor(general): remove ability to enable compaction on index load ( #3834 )
...
Cleanup.
- Fixes : #3638
- #3639
2024-05-01 14:33:46 -07:00
Julio López
f4b2034898
refactor(general): remove unused receiver ( #3833 )
...
No functional changes
2024-05-01 08:01:22 -07:00
Julio López
065e0adbfd
refactor(general): make key derivers available in tests ( #3826 )
...
- Re-introduces the **insecure**, lightweight key deriver for
testing **only**.
- Makes `scrypt` and `pbkdf2` derivers available in tests as well.
2024-04-30 17:21:11 -07:00
Nick
dc0dea4419
fix(cli): Fix client IPv6 URI generation for gRPC connections ( #3830 )
...
Connecting to gRPC repository API using an IPv6 address does not
correctly configure the URI for the client's dial. Reconstructing the
parsed URL into `hostname + ":" + port` will remove the square brackets
required for IPv6 addressing, resulting in a `too many colons in
address` error.
Fix the issue by instead using the helper `net.JoinHostPort()`, which
will add square brackets for IPv6 hostnames.
Tested by running `TestServer` with `httptest.serve` flag set, forcing
the test server to listen on the IPv6 loopback:
```
cd internal/server
go test -v -run=TestServer$ --httptest.serve=[::1]:0 ./server
```
Fails without fix:
```
server_test.go:48:
Error Trace: /workspaces/kopia/internal/server/server_test.go:48
Error: Received unexpected error:
failed to exit idle mode: invalid target address ::1:45373, error info: address ::1:45373:443: too many colons in address
```
Passes with fix:
```
--- PASS: TestServer (0.81s)
PASS
```
2024-04-29 19:32:59 -07:00
dependabot[bot]
95c38a3de7
build(deps): bump the github-actions group with 3 updates ( #3828 )
...
Bumps the github-actions group with 3 updates:
[actions/checkout](https://github.com/actions/checkout ),
[actions/download-artifact](https://github.com/actions/download-artifact )
and [github/codeql-action](https://github.com/github/codeql-action ).
Updates `actions/checkout` from 4.1.3 to 4.1.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/checkout/releases ">actions/checkout's
releases</a>.</em></p>
<blockquote>
<h2>v4.1.4</h2>
<h2>What's Changed</h2>
<ul>
<li>Disable <code>extensions.worktreeConfig</code> when disabling
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1692 ">actions/checkout#1692</a></li>
<li>Add dependabot config by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1688 ">actions/checkout#1688</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.5 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1643 ">actions/checkout#1643</a></li>
<li>Bump the minor-actions-dependencies group with 2 updates by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1693 ">actions/checkout#1693</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v4.1.3...v4.1.4 ">https://github.com/actions/checkout/compare/v4.1.3...v4.1.4 </a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/actions/checkout/blob/main/CHANGELOG.md ">actions/checkout's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h2>v4.1.4</h2>
<ul>
<li>Disable <code>extensions.worktreeConfig</code> when disabling
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1692 ">actions/checkout#1692</a></li>
<li>Add dependabot config by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1688 ">actions/checkout#1688</a></li>
<li>Bump the minor-actions-dependencies group with 2 updates by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1693 ">actions/checkout#1693</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.5 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1643 ">actions/checkout#1643</a></li>
</ul>
<h2>v4.1.3</h2>
<ul>
<li>Check git version before attempting to disable
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1656 ">actions/checkout#1656</a></li>
<li>Add SSH user parameter by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1685 ">actions/checkout#1685</a></li>
<li>Update <code>actions/checkout</code> version in
<code>update-main-version.yml</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1650 ">actions/checkout#1650</a></li>
</ul>
<h2>v4.1.2</h2>
<ul>
<li>Fix: Disable sparse checkout whenever <code>sparse-checkout</code>
option is not present <a
href="https://github.com/dscho "><code>@dscho</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1598 ">actions/checkout#1598</a></li>
</ul>
<h2>v4.1.1</h2>
<ul>
<li>Correct link to GitHub Docs by <a
href="https://github.com/peterbe "><code>@peterbe</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1511 ">actions/checkout#1511</a></li>
<li>Link to release page from what's new section by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1514 ">actions/checkout#1514</a></li>
</ul>
<h2>v4.1.0</h2>
<ul>
<li><a href="https://redirect.github.com/actions/checkout/pull/1396 ">Add
support for partial checkout filters</a></li>
</ul>
<h2>v4.0.0</h2>
<ul>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1067 ">Support
fetching without the --progress option</a></li>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1436 ">Update to
node20</a></li>
</ul>
<h2>v3.6.0</h2>
<ul>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1377 ">Fix: Mark
test scripts with Bash'isms to be run via Bash</a></li>
<li><a href="https://redirect.github.com/actions/checkout/pull/579 ">Add
option to fetch tags even if fetch-depth > 0</a></li>
</ul>
<h2>v3.5.3</h2>
<ul>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1196 ">Fix:
Checkout fail in self-hosted runners when faulty submodule are
checked-in</a></li>
<li><a href="https://redirect.github.com/actions/checkout/pull/1287 ">Fix
typos found by codespell</a></li>
<li><a href="https://redirect.github.com/actions/checkout/pull/1369 ">Add
support for sparse checkouts</a></li>
</ul>
<h2>v3.5.2</h2>
<ul>
<li><a href="https://redirect.github.com/actions/checkout/pull/1289 ">Fix
api endpoint for GHES</a></li>
</ul>
<h2>v3.5.1</h2>
<ul>
<li><a href="https://redirect.github.com/actions/checkout/pull/1246 ">Fix
slow checkout on Windows</a></li>
</ul>
<h2>v3.5.0</h2>
<ul>
<li><a href="https://redirect.github.com/actions/checkout/pull/1237 ">Add
new public key for known_hosts</a></li>
</ul>
<h2>v3.4.0</h2>
<ul>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1209 ">Upgrade
codeql actions to v2</a></li>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1210 ">Upgrade
dependencies</a></li>
<li><a
href="https://redirect.github.com/actions/checkout/pull/1225 ">Upgrade
<code>@actions/io</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="0ad4b8fada "><code>0ad4b8f</code></a>
Prep Release v4.1.4 (<a
href="https://redirect.github.com/actions/checkout/issues/1704 ">#1704</a>)</li>
<li><a
href="43045ae669 "><code>43045ae</code></a>
Disable <code>extensions.worktreeConfig</code> when disabling
<code>sparse-checkout</code> (<a
href="https://redirect.github.com/actions/checkout/issues/1692 ">#1692</a>)</li>
<li><a
href="37b082107b "><code>37b0821</code></a>
Bump the minor-actions-dependencies group with 2 updates (<a
href="https://redirect.github.com/actions/checkout/issues/1693 ">#1693</a>)</li>
<li><a
href="9839dc14a0 "><code>9839dc1</code></a>
Add dependabot config (<a
href="https://redirect.github.com/actions/checkout/issues/1688 ">#1688</a>)</li>
<li><a
href="9b4c13b0bf "><code>9b4c13b</code></a>
Bump word-wrap from 1.2.3 to 1.2.5 (<a
href="https://redirect.github.com/actions/checkout/issues/1643 ">#1643</a>)</li>
<li>See full diff in <a
href="1d96c772d1...0ad4b8fada ">compare
view</a></li>
</ul>
</details>
<br />
Updates `actions/download-artifact` from 4.1.6 to 4.1.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/download-artifact/releases ">actions/download-artifact's
releases</a>.</em></p>
<blockquote>
<h2>v4.1.7</h2>
<h2>What's Changed</h2>
<ul>
<li>Update <code>@actions/artifact</code> dependency by <a
href="https://github.com/bethanyj28 "><code>@bethanyj28</code></a> in <a
href="https://redirect.github.com/actions/download-artifact/pull/325 ">actions/download-artifact#325</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 ">https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="65a9edc588 "><code>65a9edc</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/325 ">#325</a>
from bethanyj28/main</li>
<li><a
href="fdd1595981 "><code>fdd1595</code></a>
licensed</li>
<li><a
href="c13dba102f "><code>c13dba1</code></a>
update <code>@actions/artifact</code> dependency</li>
<li><a
href="0daa75ebea "><code>0daa75e</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/324 ">#324</a>
from actions/eggyhead/use-artifact-v2.1.6</li>
<li>See full diff in <a
href="9c19ed7fe5...65a9edc588 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github/codeql-action` from 3.25.2 to 3.25.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md ">github/codeql-action's
changelog</a>.</em></p>
<blockquote>
<h1>CodeQL Action Changelog</h1>
<p>See the <a
href="https://github.com/github/codeql-action/releases ">releases
page</a> for the relevant changes to the CodeQL CLI and language
packs.</p>
<p>Note that the only difference between <code>v2</code> and
<code>v3</code> of the CodeQL Action is the node version they support,
with <code>v3</code> running on node 20 while we continue to release
<code>v2</code> to support running on node 16. For example
<code>3.22.11</code> was the first <code>v3</code> release and is
functionally identical to <code>2.22.11</code>. This approach ensures an
easy way to track exactly which features are included in different
versions, indicated by the minor and patch version numbers.</p>
<h2>[UNRELEASED]</h2>
<p>No user facing changes.</p>
<h2>3.25.3 - 25 Apr 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.17.1. <a
href="https://redirect.github.com/github/codeql-action/pull/2247 ">#2247</a></li>
<li>Workflows running on <code>macos-latest</code> using CodeQL CLI
versions before v2.15.1 will need to either upgrade their CLI version to
v2.15.1 or newer, or change the platform to an Intel MacOS runner, such
as <code>macos-12</code>. ARM machines with SIP disabled, including the
newest <code>macos-latest</code> image, are unsupported for CLI versions
before 2.15.1. <a
href="https://redirect.github.com/github/codeql-action/pull/2261 ">#2261</a></li>
</ul>
<h2>3.25.2 - 22 Apr 2024</h2>
<p>No user facing changes.</p>
<h2>3.25.1 - 17 Apr 2024</h2>
<ul>
<li>We are rolling out a feature in April/May 2024 that improves the
reliability and performance of analyzing code when analyzing a compiled
language with the <code>autobuild</code> <a
href="https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#codeql-build-modes ">build
mode</a>. <a
href="https://redirect.github.com/github/codeql-action/pull/2235 ">#2235</a></li>
<li>Fix a bug where the <code>init</code> Action would fail if
<code>--overwrite</code> was specified in
<code>CODEQL_ACTION_EXTRA_OPTIONS</code>. <a
href="https://redirect.github.com/github/codeql-action/pull/2245 ">#2245</a></li>
</ul>
<h2>3.25.0 - 15 Apr 2024</h2>
<ul>
<li>
<p>The deprecated feature for extracting dependencies for a Python
analysis has been removed. <a
href="https://redirect.github.com/github/codeql-action/pull/2224 ">#2224</a></p>
<p>As a result, the following inputs and environment variables are now
ignored:</p>
<ul>
<li>The <code>setup-python-dependencies</code> input to the
<code>init</code> Action</li>
<li>The
<code>CODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION</code>
environment variable</li>
</ul>
<p>We recommend removing any references to these from your workflows.
For more information, see the release notes for CodeQL Action v3.23.0
and v2.23.0.</p>
</li>
<li>
<p>Automatically overwrite an existing database if found on the
filesystem. <a
href="https://redirect.github.com/github/codeql-action/pull/2229 ">#2229</a></p>
</li>
<li>
<p>Bump the minimum CodeQL bundle version to 2.12.6. <a
href="https://redirect.github.com/github/codeql-action/pull/2232 ">#2232</a></p>
</li>
<li>
<p>A more relevant log message and a diagnostic are now emitted when the
<code>file</code> program is not installed on a Linux runner, but is
required for Go tracing to succeed. <a
href="https://redirect.github.com/github/codeql-action/pull/2234 ">#2234</a></p>
</li>
</ul>
<h2>3.24.10 - 05 Apr 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.17.0. <a
href="https://redirect.github.com/github/codeql-action/pull/2219 ">#2219</a></li>
<li>Add a deprecation warning for customers using CodeQL version 2.12.5
and earlier. These versions of CodeQL were discontinued on 26 March 2024
alongside GitHub Enterprise Server 3.8, and will be unsupported by
CodeQL Action versions 3.25.0 and later and versions 2.25.0 and later.
<a
href="https://redirect.github.com/github/codeql-action/pull/2220 ">#2220</a>
<ul>
<li>If you are using one of these versions, please update to CodeQL CLI
version 2.12.6 or later. For instance, if you have specified a custom
version of the CLI using the 'tools' input to the 'init' Action, you can
remove this input to use the default version.</li>
<li>Alternatively, if you want to continue using a version of the CodeQL
CLI between 2.11.6 and 2.12.5, you can replace
<code>github/codeql-action/*@v3</code> by
<code>github/codeql-action/*@v3.24.10 </code> and
<code>github/codeql-action/*@v2</code> by
<code>github/codeql-action/*@v2.24.10 </code> in your code scanning
workflow to ensure you continue using this version of the CodeQL
Action.</li>
</ul>
</li>
</ul>
<h2>3.24.9 - 22 Mar 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.16.5. <a
href="https://redirect.github.com/github/codeql-action/pull/2203 ">#2203</a></li>
</ul>
<h2>3.24.8 - 18 Mar 2024</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d39d31e687 "><code>d39d31e</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2262 ">#2262</a>
from github/update-v3.25.3-ac2f82a1f</li>
<li><a
href="a7278252c7 "><code>a727825</code></a>
Move changenote to most recent section</li>
<li><a
href="1efa8597b1 "><code>1efa859</code></a>
Update changelog for v3.25.3</li>
<li><a
href="ac2f82a1ff "><code>ac2f82a</code></a>
Log warning if SIP is disabled and CLI version is < 2.15.1 (<a
href="https://redirect.github.com/github/codeql-action/issues/2261 ">#2261</a>)</li>
<li><a
href="0ad7791640 "><code>0ad7791</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2247 ">#2247</a>
from github/update-bundle/codeql-bundle-v2.17.1</li>
<li><a
href="79d9ee7f07 "><code>79d9ee7</code></a>
Merge branch 'main' into update-bundle/codeql-bundle-v2.17.1</li>
<li><a
href="dbf2b1706b "><code>dbf2b17</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2255 ">#2255</a>
from github/mergeback/v3.25.2-to-main-8f596b4a</li>
<li><a
href="ff6a3c42a5 "><code>ff6a3c4</code></a>
Update checked-in dependencies</li>
<li><a
href="619dc0c4b8 "><code>619dc0c</code></a>
Update changelog and version after v3.25.2</li>
<li><a
href="39e1e6509e "><code>39e1e65</code></a>
Add changelog note</li>
<li>Additional commits viewable in <a
href="8f596b4ae3...d39d31e687 ">compare
view</a></li>
</ul>
</details>
<br />
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] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 17:27:27 -07:00
dependabot[bot]
7f836f1ca1
build(deps): bump the common-golang-dependencies group with 6 updates ( #3829 )
...
Bumps the common-golang-dependencies group with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/minio/minio-go/v7](https://github.com/minio/minio-go ) |
`7.0.69` | `7.0.70` |
|
[go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go )
| `1.25.0` | `1.26.0` |
|
[go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go )
| `1.25.0` | `1.26.0` |
|
[go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go )
| `1.25.0` | `1.26.0` |
|
[go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go )
| `1.25.0` | `1.26.0` |
|
[google.golang.org/api](https://github.com/googleapis/google-api-go-client )
| `0.176.0` | `0.176.1` |
Updates `github.com/minio/minio-go/v7` from 7.0.69 to 7.0.70
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/minio/minio-go/releases ">github.com/minio/minio-go/v7's
releases</a>.</em></p>
<blockquote>
<h2>Bugfix Release</h2>
<h2>What's Changed</h2>
<ul>
<li>add support for authentication with EKS Pod Identities by <a
href="https://github.com/saweber "><code>@saweber</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1944 ">minio/minio-go#1944</a></li>
<li>Allow disabling dual-stack endpoints for Amazon S3 by <a
href="https://github.com/narqo "><code>@narqo</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1945 ">minio/minio-go#1945</a></li>
<li>Added <code>x-minio-replication-actual-object-size</code> to allowed
headers by <a
href="https://github.com/shtripat "><code>@shtripat</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1946 ">minio/minio-go#1946</a></li>
<li>Update vulncheck Go version to 1.22.x by <a
href="https://github.com/klauspost "><code>@klauspost</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1953 ">minio/minio-go#1953</a></li>
<li>fix: non md5 etags by <a
href="https://github.com/niger-prequel "><code>@niger-prequel</code></a>
in <a
href="https://redirect.github.com/minio/minio-go/pull/1952 ">minio/minio-go#1952</a></li>
<li>Bump golang.org/x/net from 0.21.0 to 0.23.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1954 ">minio/minio-go#1954</a></li>
<li>Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/minio by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/minio/minio-go/pull/1955 ">minio/minio-go#1955</a></li>
<li>remove sha256-simd support we do not need it anymore by <a
href="https://github.com/harshavardhana "><code>@harshavardhana</code></a>
in <a
href="https://redirect.github.com/minio/minio-go/pull/1958 ">minio/minio-go#1958</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/saweber "><code>@saweber</code></a> made
their first contribution in <a
href="https://redirect.github.com/minio/minio-go/pull/1944 ">minio/minio-go#1944</a></li>
<li><a href="https://github.com/narqo "><code>@narqo</code></a> made
their first contribution in <a
href="https://redirect.github.com/minio/minio-go/pull/1945 ">minio/minio-go#1945</a></li>
<li><a
href="https://github.com/niger-prequel "><code>@niger-prequel</code></a>
made their first contribution in <a
href="https://redirect.github.com/minio/minio-go/pull/1952 ">minio/minio-go#1952</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/minio/minio-go/compare/v7.0.68...v7.0.70 ">https://github.com/minio/minio-go/compare/v7.0.68...v7.0.70 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="c2fe17945c "><code>c2fe179</code></a>
remove sha256-simd support we do not need it anymore (<a
href="https://redirect.github.com/minio/minio-go/issues/1958 ">#1958</a>)</li>
<li><a
href="0e5a768b1a "><code>0e5a768</code></a>
avoid trailing checksums for zero byte objects</li>
<li><a
href="afa8d5979f "><code>afa8d59</code></a>
Bump golang.org/x/net from 0.21.0 to 0.23.0 in /examples/minio (<a
href="https://redirect.github.com/minio/minio-go/issues/1955 ">#1955</a>)</li>
<li><a
href="0558c7e653 "><code>0558c7e</code></a>
Bump golang.org/x/net from 0.21.0 to 0.23.0 (<a
href="https://redirect.github.com/minio/minio-go/issues/1954 ">#1954</a>)</li>
<li><a
href="bfc8151b74 "><code>bfc8151</code></a>
remove broken codeql integration from GitHub</li>
<li><a
href="e44abd363b "><code>e44abd3</code></a>
fix: non md5 etags (<a
href="https://redirect.github.com/minio/minio-go/issues/1952 ">#1952</a>)</li>
<li><a
href="18e8073b02 "><code>18e8073</code></a>
Update vulncheck Go version to 1.22.x (<a
href="https://redirect.github.com/minio/minio-go/issues/1953 ">#1953</a>)</li>
<li><a
href="e8ddcf0238 "><code>e8ddcf0</code></a>
Update version to next release</li>
<li>See full diff in <a
href="https://github.com/minio/minio-go/compare/v7.0.69...v7.0.70 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `go.opentelemetry.io/otel` from 1.25.0 to 1.26.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md ">go.opentelemetry.io/otel's
changelog</a>.</em></p>
<blockquote>
<h2>[1.26.0/0.48.0/0.2.0-alpha] 2024-04-24</h2>
<h3>Added</h3>
<ul>
<li>Add <code>Recorder</code> in
<code>go.opentelemetry.io/otel/log/logtest</code> to facilitate testing
the log bridge implementations. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5134 ">#5134</a>)</li>
<li>Add span flags to OTLP spans and links exported by
<code>go.opentelemetry.io/otel/exporters/otlp/otlptrace</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5194 ">#5194</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/sdk/log</code>.
This new module contains the Go implementation of the OpenTelemetry Logs
SDK.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp</code>.
This new module contains an OTLP exporter that transmits log telemetry
using HTTP.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/stdout/stdoutlog</code>.
This new module contains an exporter prints log records to STDOUT.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>The <code>go.opentelemetry.io/otel/semconv/v1.25.0</code> package.
The package contains semantic conventions from the <code>v1.25.0</code>
version of the OpenTelemetry Semantic Conventions. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Update <code>go.opentelemetry.io/proto/otlp</code> from v1.1.0 to
v1.2.0. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5177 ">#5177</a>)</li>
<li>Improve performance of baggage member character validation in
<code>go.opentelemetry.io/otel/baggage</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5214 ">#5214</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9656d0afa7 "><code>9656d0a</code></a>
Release 1.26.0/0.48.0/0.2.0-alpha (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5260 ">#5260</a>)</li>
<li><a
href="29e1c7e3e4 "><code>29e1c7e</code></a>
Add custom ring implementation to the BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5237 ">#5237</a>)</li>
<li><a
href="baeb560673 "><code>baeb560</code></a>
sdk/log: Fix doc for LoggerProvider.ForceFlush and
LoggerProvider.Shutdown (#...</li>
<li><a
href="ae55e29744 "><code>ae55e29</code></a>
Remove left-over TODO in otlploghttp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5256 ">#5256</a>)</li>
<li><a
href="fe8e3a1b42 "><code>fe8e3a1</code></a>
Semconv v1.25.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
<li><a
href="bf37c5a3a4 "><code>bf37c5a</code></a>
Revert the usage of <code>go.opentelemetry.io/proto/slim</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5253 ">#5253</a>)</li>
<li><a
href="b34cfc47c4 "><code>b34cfc4</code></a>
Default implementation for empty BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5239 ">#5239</a>)</li>
<li><a
href="9370c5a01f "><code>9370c5a</code></a>
Implement resource serialization for stdoutlog (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5213 ">#5213</a>)</li>
<li><a
href="6e92163d6a "><code>6e92163</code></a>
otlpmetrichttp: Use go.opentelemetry.io/proto/slim/otlp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5222 ">#5222</a>)</li>
<li><a
href="f88533381b "><code>f885333</code></a>
build(deps): bump golang.org/x/vuln in /internal/tools (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5245 ">#5245</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.25.0...v1.26.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates
`go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from
1.25.0 to 1.26.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md ">go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc's
changelog</a>.</em></p>
<blockquote>
<h2>[1.26.0/0.48.0/0.2.0-alpha] 2024-04-24</h2>
<h3>Added</h3>
<ul>
<li>Add <code>Recorder</code> in
<code>go.opentelemetry.io/otel/log/logtest</code> to facilitate testing
the log bridge implementations. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5134 ">#5134</a>)</li>
<li>Add span flags to OTLP spans and links exported by
<code>go.opentelemetry.io/otel/exporters/otlp/otlptrace</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5194 ">#5194</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/sdk/log</code>.
This new module contains the Go implementation of the OpenTelemetry Logs
SDK.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp</code>.
This new module contains an OTLP exporter that transmits log telemetry
using HTTP.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/stdout/stdoutlog</code>.
This new module contains an exporter prints log records to STDOUT.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>The <code>go.opentelemetry.io/otel/semconv/v1.25.0</code> package.
The package contains semantic conventions from the <code>v1.25.0</code>
version of the OpenTelemetry Semantic Conventions. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Update <code>go.opentelemetry.io/proto/otlp</code> from v1.1.0 to
v1.2.0. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5177 ">#5177</a>)</li>
<li>Improve performance of baggage member character validation in
<code>go.opentelemetry.io/otel/baggage</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5214 ">#5214</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9656d0afa7 "><code>9656d0a</code></a>
Release 1.26.0/0.48.0/0.2.0-alpha (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5260 ">#5260</a>)</li>
<li><a
href="29e1c7e3e4 "><code>29e1c7e</code></a>
Add custom ring implementation to the BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5237 ">#5237</a>)</li>
<li><a
href="baeb560673 "><code>baeb560</code></a>
sdk/log: Fix doc for LoggerProvider.ForceFlush and
LoggerProvider.Shutdown (#...</li>
<li><a
href="ae55e29744 "><code>ae55e29</code></a>
Remove left-over TODO in otlploghttp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5256 ">#5256</a>)</li>
<li><a
href="fe8e3a1b42 "><code>fe8e3a1</code></a>
Semconv v1.25.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
<li><a
href="bf37c5a3a4 "><code>bf37c5a</code></a>
Revert the usage of <code>go.opentelemetry.io/proto/slim</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5253 ">#5253</a>)</li>
<li><a
href="b34cfc47c4 "><code>b34cfc4</code></a>
Default implementation for empty BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5239 ">#5239</a>)</li>
<li><a
href="9370c5a01f "><code>9370c5a</code></a>
Implement resource serialization for stdoutlog (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5213 ">#5213</a>)</li>
<li><a
href="6e92163d6a "><code>6e92163</code></a>
otlpmetrichttp: Use go.opentelemetry.io/proto/slim/otlp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5222 ">#5222</a>)</li>
<li><a
href="f88533381b "><code>f885333</code></a>
build(deps): bump golang.org/x/vuln in /internal/tools (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5245 ">#5245</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.25.0...v1.26.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `go.opentelemetry.io/otel/sdk` from 1.25.0 to 1.26.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md ">go.opentelemetry.io/otel/sdk's
changelog</a>.</em></p>
<blockquote>
<h2>[1.26.0/0.48.0/0.2.0-alpha] 2024-04-24</h2>
<h3>Added</h3>
<ul>
<li>Add <code>Recorder</code> in
<code>go.opentelemetry.io/otel/log/logtest</code> to facilitate testing
the log bridge implementations. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5134 ">#5134</a>)</li>
<li>Add span flags to OTLP spans and links exported by
<code>go.opentelemetry.io/otel/exporters/otlp/otlptrace</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5194 ">#5194</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/sdk/log</code>.
This new module contains the Go implementation of the OpenTelemetry Logs
SDK.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp</code>.
This new module contains an OTLP exporter that transmits log telemetry
using HTTP.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/stdout/stdoutlog</code>.
This new module contains an exporter prints log records to STDOUT.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>The <code>go.opentelemetry.io/otel/semconv/v1.25.0</code> package.
The package contains semantic conventions from the <code>v1.25.0</code>
version of the OpenTelemetry Semantic Conventions. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Update <code>go.opentelemetry.io/proto/otlp</code> from v1.1.0 to
v1.2.0. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5177 ">#5177</a>)</li>
<li>Improve performance of baggage member character validation in
<code>go.opentelemetry.io/otel/baggage</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5214 ">#5214</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9656d0afa7 "><code>9656d0a</code></a>
Release 1.26.0/0.48.0/0.2.0-alpha (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5260 ">#5260</a>)</li>
<li><a
href="29e1c7e3e4 "><code>29e1c7e</code></a>
Add custom ring implementation to the BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5237 ">#5237</a>)</li>
<li><a
href="baeb560673 "><code>baeb560</code></a>
sdk/log: Fix doc for LoggerProvider.ForceFlush and
LoggerProvider.Shutdown (#...</li>
<li><a
href="ae55e29744 "><code>ae55e29</code></a>
Remove left-over TODO in otlploghttp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5256 ">#5256</a>)</li>
<li><a
href="fe8e3a1b42 "><code>fe8e3a1</code></a>
Semconv v1.25.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
<li><a
href="bf37c5a3a4 "><code>bf37c5a</code></a>
Revert the usage of <code>go.opentelemetry.io/proto/slim</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5253 ">#5253</a>)</li>
<li><a
href="b34cfc47c4 "><code>b34cfc4</code></a>
Default implementation for empty BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5239 ">#5239</a>)</li>
<li><a
href="9370c5a01f "><code>9370c5a</code></a>
Implement resource serialization for stdoutlog (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5213 ">#5213</a>)</li>
<li><a
href="6e92163d6a "><code>6e92163</code></a>
otlpmetrichttp: Use go.opentelemetry.io/proto/slim/otlp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5222 ">#5222</a>)</li>
<li><a
href="f88533381b "><code>f885333</code></a>
build(deps): bump golang.org/x/vuln in /internal/tools (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5245 ">#5245</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.25.0...v1.26.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `go.opentelemetry.io/otel/trace` from 1.25.0 to 1.26.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md ">go.opentelemetry.io/otel/trace's
changelog</a>.</em></p>
<blockquote>
<h2>[1.26.0/0.48.0/0.2.0-alpha] 2024-04-24</h2>
<h3>Added</h3>
<ul>
<li>Add <code>Recorder</code> in
<code>go.opentelemetry.io/otel/log/logtest</code> to facilitate testing
the log bridge implementations. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5134 ">#5134</a>)</li>
<li>Add span flags to OTLP spans and links exported by
<code>go.opentelemetry.io/otel/exporters/otlp/otlptrace</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5194 ">#5194</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/sdk/log</code>.
This new module contains the Go implementation of the OpenTelemetry Logs
SDK.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp</code>.
This new module contains an OTLP exporter that transmits log telemetry
using HTTP.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>Make the initial alpha release of
<code>go.opentelemetry.io/otel/exporters/stdout/stdoutlog</code>.
This new module contains an exporter prints log records to STDOUT.
This module is unstable and breaking changes may be introduced.
See our <a
href="https://github.com/open-telemetry/opentelemetry-go/blob/main/VERSIONING.md ">versioning
policy</a> for more information about these stability guarantees. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5240 ">#5240</a>)</li>
<li>The <code>go.opentelemetry.io/otel/semconv/v1.25.0</code> package.
The package contains semantic conventions from the <code>v1.25.0</code>
version of the OpenTelemetry Semantic Conventions. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
</ul>
<h3>Changed</h3>
<ul>
<li>Update <code>go.opentelemetry.io/proto/otlp</code> from v1.1.0 to
v1.2.0. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5177 ">#5177</a>)</li>
<li>Improve performance of baggage member character validation in
<code>go.opentelemetry.io/otel/baggage</code>. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5214 ">#5214</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9656d0afa7 "><code>9656d0a</code></a>
Release 1.26.0/0.48.0/0.2.0-alpha (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5260 ">#5260</a>)</li>
<li><a
href="29e1c7e3e4 "><code>29e1c7e</code></a>
Add custom ring implementation to the BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5237 ">#5237</a>)</li>
<li><a
href="baeb560673 "><code>baeb560</code></a>
sdk/log: Fix doc for LoggerProvider.ForceFlush and
LoggerProvider.Shutdown (#...</li>
<li><a
href="ae55e29744 "><code>ae55e29</code></a>
Remove left-over TODO in otlploghttp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5256 ">#5256</a>)</li>
<li><a
href="fe8e3a1b42 "><code>fe8e3a1</code></a>
Semconv v1.25.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5254 ">#5254</a>)</li>
<li><a
href="bf37c5a3a4 "><code>bf37c5a</code></a>
Revert the usage of <code>go.opentelemetry.io/proto/slim</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5253 ">#5253</a>)</li>
<li><a
href="b34cfc47c4 "><code>b34cfc4</code></a>
Default implementation for empty BatchProcessor (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5239 ">#5239</a>)</li>
<li><a
href="9370c5a01f "><code>9370c5a</code></a>
Implement resource serialization for stdoutlog (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5213 ">#5213</a>)</li>
<li><a
href="6e92163d6a "><code>6e92163</code></a>
otlpmetrichttp: Use go.opentelemetry.io/proto/slim/otlp (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5222 ">#5222</a>)</li>
<li><a
href="f88533381b "><code>f885333</code></a>
build(deps): bump golang.org/x/vuln in /internal/tools (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-go/issues/5245 ">#5245</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-go/compare/v1.25.0...v1.26.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `google.golang.org/api` from 0.176.0 to 0.176.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/releases ">google.golang.org/api's
releases</a>.</em></p>
<blockquote>
<h2>v0.176.1</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.176.0...v0.176.1 ">0.176.1</a>
(2024-04-23)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>transport/http:</strong> Pass through base transport (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2541 ">#2541</a>)
(<a
href="8d0b2b5bc5 ">8d0b2b5</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md ">google.golang.org/api's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.176.0...v0.176.1 ">0.176.1</a>
(2024-04-23)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>transport/http:</strong> Pass through base transport (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2541 ">#2541</a>)
(<a
href="8d0b2b5bc5 ">8d0b2b5</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="64f40ff95a "><code>64f40ff</code></a>
chore(main): release 0.176.1 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2542 ">#2542</a>)</li>
<li><a
href="8d0b2b5bc5 "><code>8d0b2b5</code></a>
fix(transport/http): pass through base transport (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2541 ">#2541</a>)</li>
<li>See full diff in <a
href="https://github.com/googleapis/google-api-go-client/compare/v0.176.0...v0.176.1 ">compare
view</a></li>
</ul>
</details>
<br />
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] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-29 17:15:51 -07:00
Julio López
ca1962f6e4
refactor(general): user password hashing and key derivation helpers ( #3821 )
...
Code movement and simplification, no functional changes.
Objectives:
- Allow callers specifying the needed key (or hash) size, instead of
hard-coding it in the registered PBK derivers. Conceptually, the caller
needs to specify the key size, since that is a requirement of the
(encryption) algorithm being used in the caller. Now, the code changes
here do not result in any functional changes since the key size is
always 32 bytes.
- Remove a global definition for the default PB key deriver to use.
Instead, each of the 3 use case sets the default value.
Changes:
- `crypto.DeriveKeyFromPassword` now takes a key size.
- Adds new constants for the key sizes at the callers.
- Removes the global `crypto.MasterKeySize` const.
- Removes the global `crypto.DefaultKeyDerivationAlgorithm` const.
- Adds const for the default derivation algorithms for each use case.
- Adds a const for the salt length in the `internal/user` package, to ensure
the same salt length is used in both hash versions.
- Unexports various functions, variables and constants in the `internal/crypto`
& `internal/user` packages.
- Renames various constants for consistency.
- Removes unused functions and symbols.
- Renames files to be consistent and better reflect the structure of the code.
- Adds a couple of tests to ensure the const values are in sync and supported.
- Fixes a couple of typos
Followups to:
- #3725
- #3770
- #3779
- #3799
- #3816
The individual commits show the code transformations to simplify the
review of the changes.
2024-04-26 23:30:56 -07:00
Julio López
2db8b20ed9
chore(general): rename files for consistency ( #3825 )
2024-04-26 14:47:36 -07:00
Julio López
7d71cc9a97
fix(general): update error message to use defined constant ( #3820 )
2024-04-25 23:10:15 -07:00
Sirish Bathina
1e98511c2e
feat(general): key derivation algorithm for cache encryption ( #3799 )
...
Add an option to select the password-based key derivation algorithm
for the local cache encryption key when connecting to a kopia
repository server.
2024-04-25 17:45:12 -07:00
Sirish Bathina
02463ab118
feat(general): user profile hashing version to algorithm translation ( #3816 )
...
Reverts to using the `PasswordHashVersion` in the user profile.
Adds a simple mechanism for translating between password hash
version and the corresponding password hashing algorithm (key
derivation algorithm).
2024-04-24 17:50:26 -07:00
Sirish Bathina
c71f57d83c
feat(general): allow setting key derivation algorithm for format blob ( #3779 )
...
Adds support to set the algorithm to derive the key used to encrypt
the repository format blob.
2024-04-24 14:07:19 -07:00
Sirish Bathina
0dad3edd72
fix(cli): user add set user-password-hashing-algorithm cli option ( #3815 )
...
Updates the `user-password-hashing-algorithm` option to be
hidden and note that it is an experimental setting.
2024-04-23 17:24:01 -07:00
dependabot[bot]
a1ad8ce442
build(deps): bump the github-actions group with 4 updates ( #3812 )
...
Bumps the github-actions group with 4 updates:
[actions/checkout](https://github.com/actions/checkout ),
[actions/upload-artifact](https://github.com/actions/upload-artifact ),
[actions/download-artifact](https://github.com/actions/download-artifact )
and [github/codeql-action](https://github.com/github/codeql-action ).
Updates `actions/checkout` from 4.1.2 to 4.1.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/checkout/releases ">actions/checkout's
releases</a>.</em></p>
<blockquote>
<h2>v4.1.3</h2>
<h2>What's Changed</h2>
<ul>
<li>Update <code>actions/checkout</code> version in
<code>update-main-version.yml</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1650 ">actions/checkout#1650</a></li>
<li>Check git version before attempting to disable
<code>sparse-checkout</code> by <a
href="https://github.com/jww3 "><code>@jww3</code></a> in <a
href="https://redirect.github.com/actions/checkout/pull/1656 ">actions/checkout#1656</a></li>
<li>Add SSH user parameter by <a
href="https://github.com/cory-miller "><code>@cory-miller</code></a> in
<a
href="https://redirect.github.com/actions/checkout/pull/1685 ">actions/checkout#1685</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/checkout/compare/v4.1.2...v4.1.3 ">https://github.com/actions/checkout/compare/v4.1.2...v4.1.3 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1d96c772d1 "><code>1d96c77</code></a>
Add SSH user parameter (<a
href="https://redirect.github.com/actions/checkout/issues/1685 ">#1685</a>)</li>
<li><a
href="cd7d8d697e "><code>cd7d8d6</code></a>
Check git version before attempting to disable
<code>sparse-checkout</code> (<a
href="https://redirect.github.com/actions/checkout/issues/1656 ">#1656</a>)</li>
<li><a
href="8410ad0602 "><code>8410ad0</code></a>
Update <code>actions/checkout</code> version in
<code>update-main-version.yml</code> (<a
href="https://redirect.github.com/actions/checkout/issues/1650 ">#1650</a>)</li>
<li>See full diff in <a
href="9bb56186c3...1d96c772d1 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `actions/upload-artifact` from 4.3.1 to 4.3.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/upload-artifact/releases ">actions/upload-artifact's
releases</a>.</em></p>
<blockquote>
<h2>v4.3.3</h2>
<h2>What's Changed</h2>
<ul>
<li>updating <code>@actions/artifact</code> dependency to v2.1.6 by <a
href="https://github.com/eggyhead "><code>@eggyhead</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/565 ">actions/upload-artifact#565</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3 ">https://github.com/actions/upload-artifact/compare/v4.3.2...v4.3.3 </a></p>
<h2>v4.3.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Update release-new-action-version.yml by <a
href="https://github.com/konradpabjan "><code>@konradpabjan</code></a>
in <a
href="https://redirect.github.com/actions/upload-artifact/pull/516 ">actions/upload-artifact#516</a></li>
<li>Minor fix to the migration readme by <a
href="https://github.com/andrewakim "><code>@andrewakim</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/523 ">actions/upload-artifact#523</a></li>
<li>Update readme with v3/v2/v1 deprecation notice by <a
href="https://github.com/robherley "><code>@robherley</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/561 ">actions/upload-artifact#561</a></li>
<li>updating <code>@actions/artifact</code> dependency to v2.1.5 and
<code>@actions/core</code> to v1.0.1 by <a
href="https://github.com/eggyhead "><code>@eggyhead</code></a> in <a
href="https://redirect.github.com/actions/upload-artifact/pull/562 ">actions/upload-artifact#562</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/andrewakim "><code>@andrewakim</code></a> made
their first contribution in <a
href="https://redirect.github.com/actions/upload-artifact/pull/523 ">actions/upload-artifact#523</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2 ">https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.2 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="65462800fd "><code>6546280</code></a>
updating package version</li>
<li><a
href="c004fb4bf6 "><code>c004fb4</code></a>
Merge branch 'main' into eggyhead/use-artifact-v2.1.6</li>
<li><a
href="90aba496fc "><code>90aba49</code></a>
updating toolkit artifact dependency to 2.1.6</li>
<li><a
href="b06cde36fc "><code>b06cde3</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/upload-artifact/issues/563 ">#563</a>
from actions/eggyhead/release-4.3.2</li>
<li><a
href="1746f4ab65 "><code>1746f4a</code></a>
Revert "updating to release 4.3.2"</li>
<li><a
href="31685d04a0 "><code>31685d0</code></a>
updating to release 4.3.2</li>
<li><a
href="18bf333cd2 "><code>18bf333</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/upload-artifact/issues/562 ">#562</a>
from actions/eggyhead/update-artifact-v215</li>
<li><a
href="dac413befa "><code>dac413b</code></a>
update package lock version</li>
<li><a
href="bb3b4a3cdb "><code>bb3b4a3</code></a>
updating package version</li>
<li><a
href="3e3da837d2 "><code>3e3da83</code></a>
updating artifact and core dependencies</li>
<li>Additional commits viewable in <a
href="5d5d22a312...65462800fd ">compare
view</a></li>
</ul>
</details>
<br />
Updates `actions/download-artifact` from 4.1.4 to 4.1.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/download-artifact/releases ">actions/download-artifact's
releases</a>.</em></p>
<blockquote>
<h2>v4.1.6</h2>
<h2>What's Changed</h2>
<ul>
<li>updating <code>@actions/artifact</code> dependency to v2.1.6 by <a
href="https://github.com/eggyhead "><code>@eggyhead</code></a> in <a
href="https://redirect.github.com/actions/download-artifact/pull/324 ">actions/download-artifact#324</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6 ">https://github.com/actions/download-artifact/compare/v4.1.5...v4.1.6 </a></p>
<h2>v4.1.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Update readme with v3/v2/v1 deprecation notice by <a
href="https://github.com/robherley "><code>@robherley</code></a> in <a
href="https://redirect.github.com/actions/download-artifact/pull/322 ">actions/download-artifact#322</a></li>
<li>Update dependencies <code>@actions/core</code> to v1.10.1 and
<code>@actions/artifact</code> to v2.1.5</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5 ">https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.5 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="9c19ed7fe5 "><code>9c19ed7</code></a>
Merge branch 'main' into eggyhead/use-artifact-v2.1.6</li>
<li><a
href="3d3ea8741e "><code>3d3ea87</code></a>
updating license</li>
<li><a
href="89af5db821 "><code>89af5db</code></a>
updating artifact package v2.1.6</li>
<li><a
href="b4aefff88e "><code>b4aefff</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/323 ">#323</a>
from actions/eggyhead/update-artifact-v215</li>
<li><a
href="8caf195ad4 "><code>8caf195</code></a>
package lock update</li>
<li><a
href="d7a2ec411d "><code>d7a2ec4</code></a>
updating package version</li>
<li><a
href="e56a1d48ef "><code>e56a1d4</code></a>
updating core dependency</li>
<li><a
href="1fcda58b3a "><code>1fcda58</code></a>
updating core license</li>
<li><a
href="325a10d8b7 "><code>325a10d</code></a>
updating actions dependency to v2.1.5</li>
<li><a
href="f8aaee4a21 "><code>f8aaee4</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/download-artifact/issues/322 ">#322</a>
from actions/robherley/deprecation-notice</li>
<li>Additional commits viewable in <a
href="c850b930e6...9c19ed7fe5 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `github/codeql-action` from 3.25.0 to 3.25.2
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/github/codeql-action/blob/main/CHANGELOG.md ">github/codeql-action's
changelog</a>.</em></p>
<blockquote>
<h1>CodeQL Action Changelog</h1>
<p>See the <a
href="https://github.com/github/codeql-action/releases ">releases
page</a> for the relevant changes to the CodeQL CLI and language
packs.</p>
<p>Note that the only difference between <code>v2</code> and
<code>v3</code> of the CodeQL Action is the node version they support,
with <code>v3</code> running on node 20 while we continue to release
<code>v2</code> to support running on node 16. For example
<code>3.22.11</code> was the first <code>v3</code> release and is
functionally identical to <code>2.22.11</code>. This approach ensures an
easy way to track exactly which features are included in different
versions, indicated by the minor and patch version numbers.</p>
<h2>[UNRELEASED]</h2>
<p>No user facing changes.</p>
<h2>3.25.1 - 17 Apr 2024</h2>
<ul>
<li>We are rolling out a feature in April/May 2024 that improves the
reliability and performance of analyzing code when analyzing a compiled
language with the <code>autobuild</code> <a
href="https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#codeql-build-modes ">build
mode</a>. <a
href="https://redirect.github.com/github/codeql-action/pull/2235 ">#2235</a></li>
<li>Fix a bug where the <code>init</code> Action would fail if
<code>--overwrite</code> was specified in
<code>CODEQL_ACTION_EXTRA_OPTIONS</code>. <a
href="https://redirect.github.com/github/codeql-action/pull/2245 ">#2245</a></li>
</ul>
<h2>3.25.0 - 15 Apr 2024</h2>
<ul>
<li>
<p>The deprecated feature for extracting dependencies for a Python
analysis has been removed. <a
href="https://redirect.github.com/github/codeql-action/pull/2224 ">#2224</a></p>
<p>As a result, the following inputs and environment variables are now
ignored:</p>
<ul>
<li>The <code>setup-python-dependencies</code> input to the
<code>init</code> Action</li>
<li>The
<code>CODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION</code>
environment variable</li>
</ul>
<p>We recommend removing any references to these from your workflows.
For more information, see the release notes for CodeQL Action v3.23.0
and v2.23.0.</p>
</li>
<li>
<p>Automatically overwrite an existing database if found on the
filesystem. <a
href="https://redirect.github.com/github/codeql-action/pull/2229 ">#2229</a></p>
</li>
<li>
<p>Bump the minimum CodeQL bundle version to 2.12.6. <a
href="https://redirect.github.com/github/codeql-action/pull/2232 ">#2232</a></p>
</li>
<li>
<p>A more relevant log message and a diagnostic are now emitted when the
<code>file</code> program is not installed on a Linux runner, but is
required for Go tracing to succeed. <a
href="https://redirect.github.com/github/codeql-action/pull/2234 ">#2234</a></p>
</li>
</ul>
<h2>3.24.10 - 05 Apr 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.17.0. <a
href="https://redirect.github.com/github/codeql-action/pull/2219 ">#2219</a></li>
<li>Add a deprecation warning for customers using CodeQL version 2.12.5
and earlier. These versions of CodeQL were discontinued on 26 March 2024
alongside GitHub Enterprise Server 3.8, and will be unsupported by
CodeQL Action versions 3.25.0 and later and versions 2.25.0 and later.
<a
href="https://redirect.github.com/github/codeql-action/pull/2220 ">#2220</a>
<ul>
<li>If you are using one of these versions, please update to CodeQL CLI
version 2.12.6 or later. For instance, if you have specified a custom
version of the CLI using the 'tools' input to the 'init' Action, you can
remove this input to use the default version.</li>
<li>Alternatively, if you want to continue using a version of the CodeQL
CLI between 2.11.6 and 2.12.5, you can replace
<code>github/codeql-action/*@v3</code> by
<code>github/codeql-action/*@v3.24.10 </code> and
<code>github/codeql-action/*@v2</code> by
<code>github/codeql-action/*@v2.24.10 </code> in your code scanning
workflow to ensure you continue using this version of the CodeQL
Action.</li>
</ul>
</li>
</ul>
<h2>3.24.9 - 22 Mar 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.16.5. <a
href="https://redirect.github.com/github/codeql-action/pull/2203 ">#2203</a></li>
</ul>
<h2>3.24.8 - 18 Mar 2024</h2>
<ul>
<li>Improve the ease of debugging extraction issues by increasing the
verbosity of the extractor logs when running in debug mode. <a
href="https://redirect.github.com/github/codeql-action/pull/2195 ">#2195</a></li>
</ul>
<h2>3.24.7 - 12 Mar 2024</h2>
<ul>
<li>Update default CodeQL bundle version to 2.16.4. <a
href="https://redirect.github.com/github/codeql-action/pull/2185 ">#2185</a></li>
</ul>
<h2>3.24.6 - 29 Feb 2024</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8f596b4ae3 "><code>8f596b4</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2254 ">#2254</a>
from github/update-v3.25.2-4909c1ffb</li>
<li><a
href="de8916ec5a "><code>de8916e</code></a>
Update changelog for v3.25.2</li>
<li><a
href="4909c1ffb9 "><code>4909c1f</code></a>
Bump the npm group with 3 updates (<a
href="https://redirect.github.com/github/codeql-action/issues/2253 ">#2253</a>)</li>
<li><a
href="f45390cde1 "><code>f45390c</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2252 ">#2252</a>
from github/henrymercer/failed-external-repo-config-...</li>
<li><a
href="1be8c488eb "><code>1be8c48</code></a>
Add configuration error for failing to clone external Git repo</li>
<li><a
href="82edfe29ce "><code>82edfe2</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2246 ">#2246</a>
from github/koesie10/remove-incorrect-log</li>
<li><a
href="8786e1f9a1 "><code>8786e1f</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2249 ">#2249</a>
from github/mergeback/v3.25.1-to-main-c7f91257</li>
<li><a
href="3c7ac61481 "><code>3c7ac61</code></a>
Update checked-in dependencies</li>
<li><a
href="b5bd9be6da "><code>b5bd9be</code></a>
Update changelog and version after v3.25.1</li>
<li><a
href="c7f9125735 "><code>c7f9125</code></a>
Merge pull request <a
href="https://redirect.github.com/github/codeql-action/issues/2248 ">#2248</a>
from github/update-v3.25.1-c4fb45143</li>
<li>Additional commits viewable in <a
href="df5a14dc28...8f596b4ae3 ">compare
view</a></li>
</ul>
</details>
<br />
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] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-22 18:37:23 -07:00
dependabot[bot]
ec74af8c2c
build(deps): bump the common-golang-dependencies group with 2 updates ( #3813 )
...
Bumps the common-golang-dependencies group with 2 updates:
[github.com/prometheus/common](https://github.com/prometheus/common ) and
[google.golang.org/api](https://github.com/googleapis/google-api-go-client ).
Updates `github.com/prometheus/common` from 0.52.3 to 0.53.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prometheus/common/releases ">github.com/prometheus/common's
releases</a>.</em></p>
<blockquote>
<h2>v0.53.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Add StatusAt method for Alert struct by <a
href="https://github.com/grobinson-grafana "><code>@grobinson-grafana</code></a>
in <a
href="https://redirect.github.com/prometheus/common/pull/618 ">prometheus/common#618</a></li>
<li>config: allow exposing real secret value through marshal by <a
href="https://github.com/GiedriusS "><code>@GiedriusS</code></a> in <a
href="https://redirect.github.com/prometheus/common/pull/487 ">prometheus/common#487</a></li>
<li>Fix up config test by <a
href="https://github.com/SuperQ "><code>@SuperQ</code></a> in <a
href="https://redirect.github.com/prometheus/common/pull/621 ">prometheus/common#621</a></li>
<li>LabelSet.String: restore faster sort call by <a
href="https://github.com/bboreham "><code>@bboreham</code></a> in <a
href="https://redirect.github.com/prometheus/common/pull/619 ">prometheus/common#619</a></li>
<li>LabelSet: add unit test for String method by <a
href="https://github.com/bboreham "><code>@bboreham</code></a> in <a
href="https://redirect.github.com/prometheus/common/pull/620 ">prometheus/common#620</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/grobinson-grafana "><code>@grobinson-grafana</code></a>
made their first contribution in <a
href="https://redirect.github.com/prometheus/common/pull/618 ">prometheus/common#618</a></li>
<li><a href="https://github.com/GiedriusS "><code>@GiedriusS</code></a>
made their first contribution in <a
href="https://redirect.github.com/prometheus/common/pull/487 ">prometheus/common#487</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/prometheus/common/compare/v0.52.3...v0.53.0 ">https://github.com/prometheus/common/compare/v0.52.3...v0.53.0 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e54e4df4b9 "><code>e54e4df</code></a>
Merge pull request <a
href="https://redirect.github.com/prometheus/common/issues/620 ">#620</a>
from bboreham/test-string</li>
<li><a
href="e25b951c21 "><code>e25b951</code></a>
Merge pull request <a
href="https://redirect.github.com/prometheus/common/issues/619 ">#619</a>
from bboreham/restore-sort</li>
<li><a
href="c1b9b72525 "><code>c1b9b72</code></a>
Fix up config test (<a
href="https://redirect.github.com/prometheus/common/issues/621 ">#621</a>)</li>
<li><a
href="de5ed88222 "><code>de5ed88</code></a>
Merge pull request <a
href="https://redirect.github.com/prometheus/common/issues/487 ">#487</a>
from GiedriusS/allow_exposing_real_value</li>
<li><a
href="ea817bb07f "><code>ea817bb</code></a>
Merge pull request <a
href="https://redirect.github.com/prometheus/common/issues/618 ">#618</a>
from grobinson-grafana/grobinson/add-status-at</li>
<li><a
href="a1ca958f13 "><code>a1ca958</code></a>
LabelSet: add unit test for String method</li>
<li><a
href="be294f140b "><code>be294f1</code></a>
LabelSet.String: restore faster sort call</li>
<li><a
href="506a12c25e "><code>506a12c</code></a>
Fix comment</li>
<li><a
href="fb6970a7e4 "><code>fb6970a</code></a>
Add StatusAt method for Alert struct</li>
<li>See full diff in <a
href="https://github.com/prometheus/common/compare/v0.52.3...v0.53.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `google.golang.org/api` from 0.172.0 to 0.176.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/releases ">google.golang.org/api's
releases</a>.</em></p>
<blockquote>
<h2>v0.176.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.175.0...v0.176.0 ">0.176.0</a>
(2024-04-22)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2537 ">#2537</a>)
(<a
href="773fe01294 ">773fe01</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2538 ">#2538</a>)
(<a
href="30d8c8795c ">30d8c87</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2540 ">#2540</a>)
(<a
href="6825bb8fc9 ">6825bb8</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Default defaultEndpointTemplate (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2535 ">#2535</a>)
(<a
href="5a78abe30a ">5a78abe</a>)</li>
</ul>
<h2>v0.175.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.174.0...v0.175.0 ">0.175.0</a>
(2024-04-19)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2526 ">#2526</a>)
(<a
href="ec3a580290 ">ec3a580</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2529 ">#2529</a>)
(<a
href="9622a0d432 ">9622a0d</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Bump auth deps (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2528 ">#2528</a>)
(<a
href="f662ab75f2 ">f662ab7</a>)</li>
<li>Various auth transition bugs (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2533 ">#2533</a>)
(<a
href="d64b1d06f0 ">d64b1d0</a>)</li>
</ul>
<h2>v0.174.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.173.0...v0.174.0 ">0.174.0</a>
(2024-04-17)</h2>
<h3>Features</h3>
<ul>
<li>Add hooks in for new auth library (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2228 ">#2228</a>)
(<a
href="4054271be9 ">4054271</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2524 ">#2524</a>)
(<a
href="f49960dabd ">f49960d</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>internal:</strong> Set scopes for new auth flow (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2525 ">#2525</a>)
(<a
href="0f0a2f07eb ">0f0a2f0</a>),
refs <a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2523 ">#2523</a>
<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2522 ">#2522</a></li>
</ul>
<h2>v0.173.0</h2>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.172.0...v0.173.0 ">0.173.0</a>
(2024-04-16)</h2>
<h3>Features</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md ">google.golang.org/api's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.175.0...v0.176.0 ">0.176.0</a>
(2024-04-22)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2537 ">#2537</a>)
(<a
href="773fe01294 ">773fe01</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2538 ">#2538</a>)
(<a
href="30d8c8795c ">30d8c87</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2540 ">#2540</a>)
(<a
href="6825bb8fc9 ">6825bb8</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Default defaultEndpointTemplate (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2535 ">#2535</a>)
(<a
href="5a78abe30a ">5a78abe</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.174.0...v0.175.0 ">0.175.0</a>
(2024-04-19)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2526 ">#2526</a>)
(<a
href="ec3a580290 ">ec3a580</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2529 ">#2529</a>)
(<a
href="9622a0d432 ">9622a0d</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Bump auth deps (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2528 ">#2528</a>)
(<a
href="f662ab75f2 ">f662ab7</a>)</li>
<li>Various auth transition bugs (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2533 ">#2533</a>)
(<a
href="d64b1d06f0 ">d64b1d0</a>)</li>
</ul>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.173.0...v0.174.0 ">0.174.0</a>
(2024-04-17)</h2>
<h3>Features</h3>
<ul>
<li>Add hooks in for new auth library (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2228 ">#2228</a>)
(<a
href="4054271be9 ">4054271</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2524 ">#2524</a>)
(<a
href="f49960dabd ">f49960d</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>internal:</strong> Set scopes for new auth flow (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2525 ">#2525</a>)
(<a
href="0f0a2f07eb ">0f0a2f0</a>),
refs <a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2523 ">#2523</a>
<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2522 ">#2522</a></li>
</ul>
<h2><a
href="https://github.com/googleapis/google-api-go-client/compare/v0.172.0...v0.173.0 ">0.173.0</a>
(2024-04-16)</h2>
<h3>Features</h3>
<ul>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2494 ">#2494</a>)
(<a
href="a48e9dea05 ">a48e9de</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2499 ">#2499</a>)
(<a
href="4ebe65e4c4 ">4ebe65e</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2500 ">#2500</a>)
(<a
href="5b9019f282 ">5b9019f</a>)</li>
<li><strong>all:</strong> Auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2501 ">#2501</a>)
(<a
href="cdac273fa0 ">cdac273</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="81ccc7e530 "><code>81ccc7e</code></a>
chore(main): release 0.176.0 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2536 ">#2536</a>)</li>
<li><a
href="6825bb8fc9 "><code>6825bb8</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2540 ">#2540</a>)</li>
<li><a
href="30d8c8795c "><code>30d8c87</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2538 ">#2538</a>)</li>
<li><a
href="773fe01294 "><code>773fe01</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2537 ">#2537</a>)</li>
<li><a
href="5a78abe30a "><code>5a78abe</code></a>
fix: default defaultEndpointTemplate (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2535 ">#2535</a>)</li>
<li><a
href="67a5d6d5a6 "><code>67a5d6d</code></a>
chore(main): release 0.175.0 (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2527 ">#2527</a>)</li>
<li><a
href="d64b1d06f0 "><code>d64b1d0</code></a>
fix: various auth transition bugs (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2533 ">#2533</a>)</li>
<li><a
href="9622a0d432 "><code>9622a0d</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2529 ">#2529</a>)</li>
<li><a
href="f662ab75f2 "><code>f662ab7</code></a>
fix: bump auth deps (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2528 ">#2528</a>)</li>
<li><a
href="ec3a580290 "><code>ec3a580</code></a>
feat(all): auto-regenerate discovery clients (<a
href="https://redirect.github.com/googleapis/google-api-go-client/issues/2526 ">#2526</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/googleapis/google-api-go-client/compare/v0.172.0...v0.176.0 ">compare
view</a></li>
</ul>
</details>
<br />
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] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-22 17:22:33 -07:00
Julio López
17c3a8d4de
refactor(general): include parameters in pbkdf2 instantiation ( #3811 )
...
Use `pbkdf2-sha256-600000` as the name to be consistent with the scrypt
instantiation.
The format is `pbkdf2-<hash_type>-<number_of_iterations>`
2024-04-19 15:50:45 -07:00
Julio López
ff9f6a8325
refactor(general): change default number of iterations for PBKDF2 ( #3810 )
...
Use the value recommended by NIST
2024-04-19 15:27:38 -07:00
Jarek Kowalski
211e28c98c
chore(repository): BREAKING CHANGE remove support for HTTP-based repository API ( #3745 )
...
Remove support for HTTP-based repository API
2024-04-17 16:23:58 -07:00
dependabot[bot]
2d31c7b2d7
build(deps): bump codecov/codecov-action from 4.2.0 to 4.3.0 ( #3804 )
...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action ) from 4.2.0 to 4.3.0.
- [Release notes](https://github.com/codecov/codecov-action/releases )
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md )
- [Commits](7afa10ed9b...84508663e9 )
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-17 05:15:38 +00:00
coderwander
f125f09ddc
chore: fix some typos in comments ( #3805 )
...
Signed-off-by: coderwander <770732124@qq.com >
2024-04-16 14:48:03 -07:00
dependabot[bot]
89c8eb47af
build(deps): bump github.com/klauspost/compress from 1.17.7 to 1.17.8 ( #3802 )
...
Bumps [github.com/klauspost/compress](https://github.com/klauspost/compress ) from 1.17.7 to 1.17.8.
- [Release notes](https://github.com/klauspost/compress/releases )
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml )
- [Commits](https://github.com/klauspost/compress/compare/v1.17.7...v1.17.8 )
---
updated-dependencies:
- dependency-name: github.com/klauspost/compress
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
v0.17.0
2024-04-15 17:29:35 -07:00
dependabot[bot]
57039f115e
build(deps): bump github/codeql-action in the github-actions group ( #3803 )
...
Bumps the github-actions group with 1 update: [github/codeql-action](https://github.com/github/codeql-action ).
Updates `github/codeql-action` from 3.24.10 to 3.25.0
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](4355270be1...df5a14dc28 )
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-15 17:24:54 -07:00
dependabot[bot]
d4b50cffaf
build(deps): bump the common-golang-dependencies group with 2 updates ( #3801 )
...
Bumps the common-golang-dependencies group with 2 updates: [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go ) and [github.com/prometheus/common](https://github.com/prometheus/common ).
Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases )
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md )
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/internal/v1.5.1...sdk/internal/v1.5.2 )
Updates `github.com/prometheus/common` from 0.52.2 to 0.52.3
- [Release notes](https://github.com/prometheus/common/releases )
- [Commits](https://github.com/prometheus/common/compare/v0.52.2...v0.52.3 )
---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
- dependency-name: github.com/prometheus/common
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-15 17:23:32 -07:00
Jarek Kowalski
b55d5b474c
refactor(repository): refactored internal index read API to reduce memory allocations ( #3754 )
...
* refactor(repository): refactored internal index read API to reduce memory allocations
* fixed stress test flake, improved debuggability
* fixed spurious checklocks failures
* post-merge fixes
* pr feedback
2024-04-12 22:59:11 -07:00
Julio López
43d3982b21
refactor(general): avoid wrapping known-to-be-nil error ( #3797 )
2024-04-12 18:43:38 -07:00
Sirish Bathina
5fa39fe5eb
feat(general): User_profile_add_set cli changes ( #3770 )
...
* User profile add set cli changes
* Add additional test
* get salt length from key deriver
* Fixes for failing tests
* after shikhars review
* lint fixes
2024-04-10 17:56:13 -07:00
Jarek Kowalski
123927d573
fix(server): fixed deadlock between server and scheduler during shutdown ( #3782 )
2024-04-09 22:37:50 -07:00
dependabot[bot]
8c5e8dd90e
build(deps-dev): bump tar from 6.2.0 to 6.2.1 in /app ( #3794 )
...
Bumps [tar](https://github.com/isaacs/node-tar ) from 6.2.0 to 6.2.1.
- [Release notes](https://github.com/isaacs/node-tar/releases )
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md )
- [Commits](https://github.com/isaacs/node-tar/compare/v6.2.0...v6.2.1 )
---
updated-dependencies:
- dependency-name: tar
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 23:47:13 +00:00
dependabot[bot]
879d434b4f
build(deps): bump codecov/codecov-action from 4.1.1 to 4.2.0 ( #3792 )
...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action ) from 4.1.1 to 4.2.0.
- [Release notes](https://github.com/codecov/codecov-action/releases )
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md )
- [Commits](c16abc29c9...7afa10ed9b )
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 16:36:38 -07:00
dependabot[bot]
062b806041
build(deps): bump docker/setup-buildx-action in the docker group ( #3791 )
...
Bumps the docker group with 1 update: [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action ).
Updates `docker/setup-buildx-action` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/docker/setup-buildx-action/releases )
- [Commits](2b51285047...d70bba72b1 )
---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: docker
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 16:35:49 -07:00
dependabot[bot]
9b453cb776
build(deps): bump github/codeql-action in the github-actions group ( #3790 )
...
Bumps the github-actions group with 1 update: [github/codeql-action](https://github.com/github/codeql-action ).
Updates `github/codeql-action` from 3.24.9 to 3.24.10
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](1b1aada464...4355270be1 )
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: github-actions
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 16:35:10 -07:00
dependabot[bot]
54cdfd3728
build(deps): bump the common-golang-dependencies group with 7 updates ( #3789 )
...
Bumps the common-golang-dependencies group with 7 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go ) | `1.3.1` | `1.3.2` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go ) | `1.24.0` | `1.25.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go ) | `1.24.0` | `1.25.0` |
| [go.opentelemetry.io/otel/sdk](https://github.com/open-telemetry/opentelemetry-go ) | `1.24.0` | `1.25.0` |
| [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go ) | `1.24.0` | `1.25.0` |
| [golang.org/x/net](https://github.com/golang/net ) | `0.23.0` | `0.24.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go ) | `1.63.0` | `1.63.2` |
Updates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 1.3.1 to 1.3.2
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases )
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md )
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.3.1...sdk/storage/azblob/v1.3.2 )
Updates `go.opentelemetry.io/otel` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases )
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md )
- [Commits](https://github.com/open-telemetry/opentelemetry-go/compare/v1.24.0...v1.25.0 )
Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases )
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md )
- [Commits](https://github.com/open-telemetry/opentelemetry-go/compare/v1.24.0...v1.25.0 )
Updates `go.opentelemetry.io/otel/sdk` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases )
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md )
- [Commits](https://github.com/open-telemetry/opentelemetry-go/compare/v1.24.0...v1.25.0 )
Updates `go.opentelemetry.io/otel/trace` from 1.24.0 to 1.25.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases )
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md )
- [Commits](https://github.com/open-telemetry/opentelemetry-go/compare/v1.24.0...v1.25.0 )
Updates `golang.org/x/net` from 0.23.0 to 0.24.0
- [Commits](https://github.com/golang/net/compare/v0.23.0...v0.24.0 )
Updates `google.golang.org/grpc` from 1.63.0 to 1.63.2
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.63.0...v1.63.2 )
---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
- dependency-name: go.opentelemetry.io/otel
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: go.opentelemetry.io/otel/sdk
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: go.opentelemetry.io/otel/trace
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/net
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: google.golang.org/grpc
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-09 16:34:31 -07:00
Jarek Kowalski
09415e0c7d
chore(ci): upgraded to go 1.22 ( #3746 )
...
Upgrades go to 1.22 and switches to new-style for loops
---------
Co-authored-by: Julio López <1953782+julio-lopez@users.noreply.github.com >
2024-04-08 09:52:47 -07:00
lvyaoting
67f87a5450
chore(general): fix function names in comment ( #3786 )
...
Signed-off-by: lvyaoting <lvyaoting@outlook.com >
2024-04-07 21:33:33 -07:00
Christoph Anderson
db5d868b5f
feat(ui): Add language support for kopiaUI ( #3768 )
...
* Add multi-language support
* Adding a guidline to outline the localisation process.
* Moved doc to separate pr
---------
Co-authored-by: lupusA <lupuapps@gmail.com >
2024-04-06 05:10:11 +00:00
Kopia Builder [bot]
e7d39ccc7c
feat(ui): upgraded htmlui to the latest version ( #3781 )
2024-04-05 05:59:56 +00:00
Jarek Kowalski
fe7a418a5b
feat(cli): added decompression benchmark ( #3773 )
...
* feat(cli): added decompression benchmark
* Update cli/command_benchmark_compression.go
Co-authored-by: Julio López <1953782+julio-lopez@users.noreply.github.com >
* fixed log output
* deduped code
---------
Co-authored-by: Julio López <1953782+julio-lopez@users.noreply.github.com >
2024-04-04 18:47:11 -07:00
Jarek Kowalski
bbbf65de8c
feat(repository): big reduction in memory usage during decompression ( #3780 )
...
This has huge performance benefits for `zstd` and `pgzip`
BEFORE:
```
0. s2-parallel-4 35.1 MB 8.9 GB/s 688 4.6 GB
1. s2-parallel-8 35.1 MB 8.1 GB/s 688 4.6 GB
2. s2-default 35.1 MB 8 GB/s 689 4.6 GB
3. s2-better 33.7 MB 7.2 GB/s 689 4.6 GB
4. zstd-fastest 18.4 MB 6.3 GB/s 22281 1.2 GB
5. zstd-better-compression 16.4 MB 5.3 GB/s 17957 2 GB
6. zstd 18.1 MB 4.8 GB/s 17711 2.1 GB
7. deflate-best-speed 20.6 MB 3.7 GB/s 4672 6.4 MB
8. deflate-best-compression 18.4 MB 3.5 GB/s 8352 6.5 MB
9. pgzip-best-speed 20.6 MB 3.5 GB/s 27871 679.1 MB
10. deflate-default 19.7 MB 3.5 GB/s 9152 6.4 MB
11. pgzip-best-compression 18.4 MB 3.3 GB/s 29494 679.1 MB
12. pgzip 19.7 MB 3.3 GB/s 32835 679.2 MB
13. gzip 19.3 MB 2.9 GB/s 1427888 4.4 GB
14. gzip-best-compression 18.5 MB 2.7 GB/s 1489968 4.4 GB
15. gzip-best-speed 21.6 MB 2.3 GB/s 1373330 4.4 GB
```
AFTER:
```
0. lz4 33.9 MB 13.4 GB/s 261 4.4 GB (deprecated)
1. s2-default 35.1 MB 10.2 GB/s 275 4.3 GB
2. s2-better 33.7 MB 9.7 GB/s 274 4.3 GB
3. s2-parallel-8 35.1 MB 9.7 GB/s 278 4.3 GB
4. s2-parallel-4 35.1 MB 9.4 GB/s 288 4.3 GB
5. zstd-fastest 18.4 MB 6.9 GB/s 1192 90.1 MB
6. zstd-better-compression 16.4 MB 5.8 GB/s 1162 158.8 MB
7. zstd-best-compression 16.2 MB 5.7 GB/s 1183 159.3 MB (deprecated)
8. zstd 18.1 MB 5.2 GB/s 1103 158 MB
9. deflate-best-speed 20.6 MB 3.8 GB/s 4672 6.4 MB
10. deflate-best-compression 18.4 MB 3.6 GB/s 8352 6.5 MB
11. pgzip-best-compression 18.4 MB 3.2 GB/s 28489 75 MB
12. pgzip-best-speed 20.6 MB 3.2 GB/s 26725 74.9 MB
13. pgzip 19.7 MB 3.1 GB/s 31889 75.1 MB
14. gzip-best-compression 18.5 MB 3.1 GB/s 1489269 4.4 GB
15. deflate-default 19.7 MB 2.6 GB/s 9164 6.4 MB
16. gzip-best-speed 21.6 MB 2.4 GB/s 1372639 4.4 GB
17. gzip 19.3 MB 2.2 GB/s 1427205 4.4 GB
```
2024-04-04 18:42:55 -07:00
Aaron Alpar
2994179025
comment fixes ( #3775 )
2024-04-04 13:56:39 -07:00
dependabot[bot]
c522444f1d
build(deps): bump github.com/google/fswalker ( #3778 )
...
Bumps [github.com/google/fswalker](https://github.com/google/fswalker ) from 0.3.3-0.20231129010601-c0a7aa51805d to 0.3.3.
- [Release notes](https://github.com/google/fswalker/releases )
- [Commits](https://github.com/google/fswalker/commits/v0.3.3 )
---
updated-dependencies:
- dependency-name: github.com/google/fswalker
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-04 13:55:51 -07:00
dependabot[bot]
e292326635
build(deps): bump the common-golang-dependencies group with 11 updates ( #3777 )
...
* build(deps): bump the common-golang-dependencies group with 11 updates
Bumps the common-golang-dependencies group with 11 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go ) | `1.11.0` | `1.11.1` |
| [github.com/prometheus/client_model](https://github.com/prometheus/client_model ) | `0.6.0` | `0.6.1` |
| [github.com/prometheus/common](https://github.com/prometheus/common ) | `0.51.1` | `0.52.2` |
| [golang.org/x/crypto](https://github.com/golang/crypto ) | `0.21.0` | `0.22.0` |
| [golang.org/x/mod](https://github.com/golang/mod ) | `0.16.0` | `0.17.0` |
| [golang.org/x/net](https://github.com/golang/net ) | `0.22.0` | `0.23.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2 ) | `0.18.0` | `0.19.0` |
| [golang.org/x/sync](https://github.com/golang/sync ) | `0.6.0` | `0.7.0` |
| [golang.org/x/sys](https://github.com/golang/sys ) | `0.18.0` | `0.19.0` |
| [golang.org/x/term](https://github.com/golang/term ) | `0.18.0` | `0.19.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go ) | `1.62.1` | `1.63.0` |
Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases )
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md )
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.11.0...sdk/azcore/v1.11.1 )
Updates `github.com/prometheus/client_model` from 0.6.0 to 0.6.1
- [Release notes](https://github.com/prometheus/client_model/releases )
- [Commits](https://github.com/prometheus/client_model/compare/v0.6.0...v0.6.1 )
Updates `github.com/prometheus/common` from 0.51.1 to 0.52.2
- [Release notes](https://github.com/prometheus/common/releases )
- [Commits](https://github.com/prometheus/common/compare/v0.51.1...v0.52.2 )
Updates `golang.org/x/crypto` from 0.21.0 to 0.22.0
- [Commits](https://github.com/golang/crypto/compare/v0.21.0...v0.22.0 )
Updates `golang.org/x/mod` from 0.16.0 to 0.17.0
- [Commits](https://github.com/golang/mod/compare/v0.16.0...v0.17.0 )
Updates `golang.org/x/net` from 0.22.0 to 0.23.0
- [Commits](https://github.com/golang/net/compare/v0.22.0...v0.23.0 )
Updates `golang.org/x/oauth2` from 0.18.0 to 0.19.0
- [Commits](https://github.com/golang/oauth2/compare/v0.18.0...v0.19.0 )
Updates `golang.org/x/sync` from 0.6.0 to 0.7.0
- [Commits](https://github.com/golang/sync/compare/v0.6.0...v0.7.0 )
Updates `golang.org/x/sys` from 0.18.0 to 0.19.0
- [Commits](https://github.com/golang/sys/compare/v0.18.0...v0.19.0 )
Updates `golang.org/x/term` from 0.18.0 to 0.19.0
- [Commits](https://github.com/golang/term/compare/v0.18.0...v0.19.0 )
Updates `google.golang.org/grpc` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/grpc/grpc-go/releases )
- [Commits](https://github.com/grpc/grpc-go/compare/v1.62.1...v1.63.0 )
---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
- dependency-name: github.com/prometheus/client_model
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: common-golang-dependencies
- dependency-name: github.com/prometheus/common
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/crypto
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/mod
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/net
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/oauth2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/sync
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/sys
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: golang.org/x/term
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: google.golang.org/grpc
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
* address deprecation warning
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julio <1953782+julio-lopez@users.noreply.github.com >
2024-04-04 20:03:51 +00:00
Matthieu MOREL
5c85ca6bb0
refactor(deps): migrate from go.uber.org/multierr to standard errors ( #3761 )
...
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com >
2024-04-01 23:16:20 -07:00
Julio López
2ecf8c9488
fix(providers): check for ContainerAlreadyExists in Azure test ( #3767 )
...
Fixes test failure introduced in #3760
2024-04-01 23:14:46 -07:00
Matthieu MOREL
5120313c5e
refactor(deps): migrate from github.com/Azure/azure-storage-blob-go to github.com/Azure/azure-sdk-for-go/sdk/storage/azblob ( #3760 )
...
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com >
2024-04-01 22:52:26 -07:00
dependabot[bot]
a67a09c2be
build(deps): bump the kopia-ui-npm-dependencies group ( #3765 )
...
Bumps the kopia-ui-npm-dependencies group in /app with 3 updates: [electron-log](https://github.com/megahertz/electron-log ), [electron-store](https://github.com/sindresorhus/electron-store ) and [electron](https://github.com/electron/electron ).
Updates `electron-log` from 5.1.1 to 5.1.2
- [Changelog](https://github.com/megahertz/electron-log/blob/master/CHANGELOG.md )
- [Commits](https://github.com/megahertz/electron-log/compare/v5.1.1...v5.1.2 )
Updates `electron-store` from 8.1.0 to 8.2.0
- [Release notes](https://github.com/sindresorhus/electron-store/releases )
- [Commits](https://github.com/sindresorhus/electron-store/compare/v8.1.0...v8.2.0 )
Updates `electron` from 29.1.0 to 29.1.6
- [Release notes](https://github.com/electron/electron/releases )
- [Changelog](https://github.com/electron/electron/blob/main/docs/breaking-changes.md )
- [Commits](https://github.com/electron/electron/compare/v29.1.0...v29.1.6 )
---
updated-dependencies:
- dependency-name: electron-log
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: kopia-ui-npm-dependencies
- dependency-name: electron-store
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: kopia-ui-npm-dependencies
- dependency-name: electron
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: kopia-ui-npm-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-01 22:46:12 -07:00
dependabot[bot]
49ddb144d3
build(deps): bump the common-golang-dependencies group with 3 updates ( #3764 )
...
Bumps the common-golang-dependencies group with 3 updates: [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go ), [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go ) and [google.golang.org/api](https://github.com/googleapis/google-api-go-client ).
Updates `cloud.google.com/go/storage` from 1.39.1 to 1.40.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases )
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md )
- [Commits](https://github.com/googleapis/google-cloud-go/compare/storage/v1.39.1...spanner/v1.40.0 )
Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases )
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md )
- [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.10.0...sdk/azcore/v1.11.0 )
Updates `google.golang.org/api` from 0.171.0 to 0.172.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases )
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md )
- [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.171.0...v0.172.0 )
---
updated-dependencies:
- dependency-name: cloud.google.com/go/storage
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
- dependency-name: google.golang.org/api
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: common-golang-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-02 05:12:41 +00:00
dependabot[bot]
ffbe096e87
build(deps): bump codecov/codecov-action from 4.1.0 to 4.1.1 ( #3762 )
...
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action ) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/codecov/codecov-action/releases )
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md )
- [Commits](54bcd8715e...c16abc29c9 )
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-04-01 20:50:30 -07:00