sonr/go.mod

287 lines
13 KiB
Modula-2
Raw Normal View History

2024-09-14 14:27:45 -04:00
module github.com/onsonr/sonr
2024-07-05 22:20:13 -04:00
go 1.23
toolchain go1.23.1
2024-07-05 22:20:13 -04:00
// overrides
replace (
cosmossdk.io/core => cosmossdk.io/core v0.11.0
2024-09-14 14:27:45 -04:00
github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
2024-07-05 22:20:13 -04:00
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.18.0
github.com/prometheus/common => github.com/prometheus/common v0.47.0
github.com/spf13/viper => github.com/spf13/viper v1.17.0 // v1.18+ breaks app overrides
2024-09-14 14:27:45 -04:00
github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7
2024-07-05 22:20:13 -04:00
)
replace (
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
// dgrijalva/jwt-go is deprecated and doesn't receive security updates.
// See: https://github.com/cosmos/cosmos-sdk/issues/13134
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2
// See: https://github.com/cosmos/cosmos-sdk/issues/10409
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.8.1
// pin version! 126854af5e6d has issues with the store so that queries fail
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
)
require (
2024-07-06 00:34:41 -04:00
cosmossdk.io/api v0.7.5
2024-07-05 22:20:13 -04:00
cosmossdk.io/client/v2 v2.0.0-beta.1
cosmossdk.io/collections v0.4.0
cosmossdk.io/core v0.12.0
cosmossdk.io/depinject v1.0.0-alpha.4
cosmossdk.io/errors v1.0.1
cosmossdk.io/log v1.3.1
cosmossdk.io/math v1.3.0
cosmossdk.io/orm v1.0.0-beta.3
2024-07-06 00:34:41 -04:00
cosmossdk.io/store v1.1.0
2024-07-05 22:20:13 -04:00
cosmossdk.io/tools/confix v0.1.1
cosmossdk.io/x/circuit v0.1.0
cosmossdk.io/x/evidence v0.1.0
cosmossdk.io/x/feegrant v0.1.0
cosmossdk.io/x/nft v0.1.0
cosmossdk.io/x/tx v0.13.5
2024-07-05 22:20:13 -04:00
cosmossdk.io/x/upgrade v0.1.1
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
filippo.io/edwards25519 v1.1.0
git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9
github.com/a-h/templ v0.2.793
2024-09-14 14:27:45 -04:00
github.com/apple/pkl-go v0.8.0
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/btcsuite/btcd/btcec/v2 v2.3.4
github.com/bwesterb/go-ristretto v1.2.3
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
github.com/cometbft/cometbft v0.38.12
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/consensys/gnark-crypto v0.12.1
github.com/cosmos/btcutil v1.0.5
2024-07-05 22:20:13 -04:00
github.com/cosmos/cosmos-db v1.0.2
2024-07-06 00:34:41 -04:00
github.com/cosmos/cosmos-proto v1.0.0-beta.5
github.com/cosmos/cosmos-sdk v0.50.5
github.com/cosmos/gogoproto v1.7.0
chore(deps): bump github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 from 8.0.2-0.20240228211029-91e486ec4dbb to 8.0.2 (#1133) Bumps [github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8](https://github.com/cosmos/ibc-apps) from 8.0.2-0.20240228211029-91e486ec4dbb to 8.0.2. Release notes *Sourced from* [*github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8's releases*](https://github.com/cosmos/ibc-apps/releases)*.* > ## packet-forward-middleware v8.0.2 > > ## Note > > This release includes the patch for the [Mandrake vulnerability](https://github.com/cosmos/ibc-apps/security/advisories/GHSA-v8p4-qhq4-f7h8) > > We recommend that you upgrade to the patched version, create a new release for your chain binary, and coordinate an upgrade with validators as soon as reasonable. > > In addition to patching packet-forward-middleware, it is imperative that you check the balances of each escrow account against the total supply of each asset on the associated counterparty chain. Failure to verify parity between the escrow accounts and the counterparty total supply can result in a type of Denial-of-Service where users may not be able to unwind their assets through your chain. You can use our [escrow checker tool](https://github.com/strangelove-ventures/escrow-checker) or whatever means you deem fit to validate these balances against the counterparty total supply. If a discrepancy is found, you will need to build an upgrade handler that mints and transfers assets to the escrow account(s) with the discrepancy. Strangelove has provided an [example upgrade handler](https://gist.github.com/jtieri/0b41fa96eac44ea1c0b5de63d23aa662) or you can see the upgrade handler used by the [Cosmos Hub](https://github.com/cosmos/gaia/blob/0b1f3d80359709de48116baecb810c521960a575/app/upgrades/v15/upgrades.go#L360-L458). > > ## What's Changed > > * Remove gogo/protobuf replace directive in async-icq/v8 by `@​Taztingo` in [cosmos/ibc-apps#168](https://redirect.github.com/cosmos/ibc-apps/pull/168) > * fix: mint and transfer funds back to escrow account on timeout or ack error by `@​jtieri` in [cosmos/ibc-apps#170](https://redirect.github.com/cosmos/ibc-apps/pull/170) > > **Full Changelog**: <https://github.com/cosmos/ibc-apps/compare/middleware/packet-forward-middleware/v8.0.1...middleware/packet-forward-middleware/v8.0.2> Commits * See full diff in [compare view](https://github.com/cosmos/ibc-apps/commits/middleware/packet-forward-middleware/v8.0.2) ![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8&package-manager=go_modules&previous-version=8.0.2-0.20240228211029-91e486ec4dbb&new-version=8.0.2) 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 commands and options 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) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:03:06 -04:00
github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 v8.0.2
2024-07-05 22:20:13 -04:00
github.com/cosmos/ibc-go/modules/capability v1.0.0
github.com/cosmos/ibc-go/v8 v8.2.0
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0
github.com/dustinxie/ecc v0.0.0-20210511000915-959544187564
github.com/ecies/go/v2 v2.0.9
github.com/go-webauthn/webauthn v0.11.2
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/golang-jwt/jwt v3.2.2+incompatible
2024-07-05 22:20:13 -04:00
github.com/golang/protobuf v1.5.4
2024-09-25 19:49:16 -04:00
github.com/gorilla/mux v1.8.1
2024-07-05 22:20:13 -04:00
github.com/grpc-ecosystem/grpc-gateway v1.16.0
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/gtank/merlin v0.1.1
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
github.com/ipfs/boxo v0.24.0
github.com/joho/godotenv v1.5.1
2024-09-14 14:27:45 -04:00
github.com/labstack/echo/v4 v4.10.2
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/libp2p/go-libp2p v0.36.5
github.com/mr-tron/base58 v1.2.0
github.com/multiformats/go-multibase v0.2.0
github.com/multiformats/go-multicodec v0.9.0
github.com/multiformats/go-varint v0.0.7
github.com/pkg/errors v0.9.1
2024-09-14 14:27:45 -04:00
github.com/segmentio/ksuid v1.0.4
2024-07-05 22:20:13 -04:00
github.com/spf13/cast v1.6.0
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
github.com/spf13/cobra v1.8.1
2024-07-05 22:20:13 -04:00
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.19.0
chore(deps): bump github.com/strangelove-ventures/globalfee from 0.50.0 to 0.50.1 (#1130) Bumps [github.com/strangelove-ventures/globalfee](https://github.com/strangelove-ventures/globalfee) from 0.50.0 to 0.50.1. Release notes *Sourced from* [*github.com/strangelove-ventures/globalfee's releases*](https://github.com/strangelove-ventures/globalfee/releases)*.* > ## v0.50.1 > > **This is a consensus breaking release and requires a software upgrade to implement.** > > This is just of a cleanup patch, no need to update if you do not want too. > > ## What's Changed > > * refactor!: remove staking keeper usage in ante by `@​Reecepbcups` in [strangelove-ventures/globalfee#5](https://redirect.github.com/strangelove-ventures/globalfee/pull/5) > > **Full Changelog**: <https://github.com/strangelove-ventures/globalfee/compare/v0.50.0...v0.50.1> Commits * `905a334` refactor!: remove staking keeper & use "stake" for default 0 fee ([#5](https://redirect.github.com/strangelove-ventures/globalfee/issues/5)) * See full diff in [compare view](https://github.com/strangelove-ventures/globalfee/compare/v0.50.0...v0.50.1) ![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/strangelove-ventures/globalfee&package-manager=go_modules&previous-version=0.50.0&new-version=0.50.1) 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 commands and options 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) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:02:44 -04:00
github.com/strangelove-ventures/globalfee v0.50.1
2024-07-05 22:20:13 -04:00
github.com/strangelove-ventures/poa v0.50.0
github.com/strangelove-ventures/tokenfactory v0.50.0
github.com/stretchr/testify v1.9.0
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/ucan-wg/go-ucan v0.7.0
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
golang.org/x/crypto v0.27.0
2024-07-08 22:57:53 -04:00
google.golang.org/genproto/googleapis/api v0.0.0-20240617180043-68d350f18fd4
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
google.golang.org/grpc v1.64.1
2024-07-08 22:57:53 -04:00
google.golang.org/protobuf v1.34.2
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
lukechampine.com/blake3 v1.3.0
2024-07-05 22:20:13 -04:00
)
require (
2024-07-08 22:57:53 -04:00
cloud.google.com/go v0.112.1 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
2024-07-05 22:20:13 -04:00
cloud.google.com/go/iam v1.1.6 // indirect
2024-07-08 22:57:53 -04:00
cloud.google.com/go/storage v1.38.0 // indirect
2024-07-05 22:20:13 -04:00
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.1 // indirect
github.com/DataDog/datadog-go v3.2.0+incompatible // indirect
github.com/DataDog/zstd v1.5.5 // indirect
github.com/aws/aws-sdk-go v1.44.224 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
github.com/bits-and-blooms/bitset v1.13.0 // indirect
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/btcsuite/btcd v0.20.1-beta // indirect
2024-07-05 22:20:13 -04:00
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/chzyer/readline v1.5.1 // indirect
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
2024-07-06 00:34:41 -04:00
github.com/cockroachdb/errors v1.11.3 // indirect
github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
2024-07-05 22:20:13 -04:00
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
github.com/cockroachdb/pebble v1.1.2 // indirect
2024-07-05 22:20:13 -04:00
github.com/cockroachdb/redact v1.1.5 // indirect
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
github.com/cometbft/cometbft-db v0.11.0 // indirect
2024-07-26 12:14:20 -04:00
github.com/consensys/bavard v0.1.13 // indirect
2024-07-05 22:20:13 -04:00
github.com/cosmos/go-bip39 v1.0.0 // indirect
github.com/cosmos/gogogateway v1.2.0 // indirect
2024-07-06 00:34:41 -04:00
github.com/cosmos/iavl v1.1.2 // indirect
2024-07-05 22:20:13 -04:00
github.com/cosmos/ics23/go v0.10.0 // indirect
github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect
github.com/crackcomm/go-gitignore v0.0.0-20231225121904-e25f5bc08668 // indirect
github.com/creachadair/atomicfile v0.3.1 // indirect
github.com/creachadair/tomledit v0.0.24 // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
github.com/dgraph-io/ristretto v0.1.1 // indirect
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/dvsekhvalnov/jose2go v1.6.0 // indirect
github.com/emicklei/dot v1.6.1 // indirect
github.com/ethereum/go-ethereum v1.14.6 // indirect
2024-07-05 22:20:13 -04:00
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
2024-07-05 22:20:13 -04:00
github.com/getsentry/sentry-go v0.27.0 // indirect
github.com/go-kit/kit v0.12.0 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
2024-07-08 22:57:53 -04:00
github.com/go-logr/logr v1.4.2 // indirect
2024-07-05 22:20:13 -04:00
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-webauthn/x v0.1.14 // indirect
2024-07-05 22:20:13 -04:00
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
github.com/golang/glog v1.2.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-tpm v0.9.1 // indirect
2024-07-05 22:20:13 -04:00
github.com/google/orderedcode v0.0.1 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
2024-07-08 22:57:53 -04:00
github.com/googleapis/gax-go/v2 v2.12.2 // indirect
2024-07-05 22:20:13 -04:00
github.com/gorilla/handlers v1.5.2 // indirect
2024-07-08 22:57:53 -04:00
github.com/gorilla/websocket v1.5.3 // indirect
2024-07-05 22:20:13 -04:00
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-getter v1.7.5 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
2024-07-06 00:34:41 -04:00
github.com/hashicorp/go-metrics v0.5.3 // indirect
2024-07-05 22:20:13 -04:00
github.com/hashicorp/go-plugin v1.5.2 // indirect
github.com/hashicorp/go-safetemp v1.0.0 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
github.com/hdevalence/ed25519consensus v0.1.0 // indirect
github.com/huandu/skiplist v1.2.0 // indirect
github.com/iancoleman/orderedmap v0.3.0 // indirect
github.com/iancoleman/strcase v0.3.0 // indirect
github.com/improbable-eng/grpc-web v0.15.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2024-07-06 00:34:41 -04:00
github.com/ipfs/go-cid v0.4.1 // indirect
2024-07-05 22:20:13 -04:00
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/jmhodges/levigo v1.0.0 // indirect
2024-07-08 22:57:53 -04:00
github.com/klauspost/compress v1.17.9 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
2024-07-05 22:20:13 -04:00
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
2024-10-07 23:16:44 -04:00
github.com/labstack/gommon v0.4.0 // indirect
2024-07-05 22:20:13 -04:00
github.com/lib/pq v1.10.7 // indirect
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/libp2p/go-libp2p-core v0.7.0 // indirect
github.com/libp2p/go-openssl v0.1.0 // indirect
2024-07-06 00:34:41 -04:00
github.com/linxGnu/grocksdb v1.8.14 // indirect
2024-07-05 22:20:13 -04:00
github.com/magiconair/properties v1.8.7 // indirect
github.com/manifoldco/promptui v0.9.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/mattn/go-pointer v0.0.1 // indirect
2024-09-14 14:27:45 -04:00
github.com/mimoo/StrobeGo v0.0.0-20181016162300-f8f6d4d2b643 // indirect
2024-07-05 22:20:13 -04:00
github.com/minio/highwayhash v1.0.2 // indirect
github.com/minio/sha256-simd v1.0.1 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
2024-07-26 12:14:20 -04:00
github.com/mmcloughlin/addchain v0.4.0 // indirect
2024-07-05 22:20:13 -04:00
github.com/mtibben/percent v0.2.1 // indirect
github.com/multiformats/go-base32 v0.1.0 // indirect
github.com/multiformats/go-base36 v0.2.0 // indirect
github.com/multiformats/go-multihash v0.2.3 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
2024-07-08 22:57:53 -04:00
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.33.1 // indirect
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
2024-07-06 00:34:41 -04:00
github.com/petermattis/goid v0.0.0-20231207134359-e60b3f734c67 // indirect
2024-07-05 22:20:13 -04:00
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
github.com/prometheus/client_golang v1.20.4 // indirect
2024-07-06 00:34:41 -04:00
github.com/prometheus/client_model v0.6.1 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
github.com/prometheus/common v0.55.0 // indirect
2024-07-08 22:57:53 -04:00
github.com/prometheus/procfs v0.15.1 // indirect
2024-07-05 22:20:13 -04:00
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
github.com/rs/cors v1.11.1 // indirect
2024-07-05 22:20:13 -04:00
github.com/rs/zerolog v1.32.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
feature/1114 implement account interface (#1167) - **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
2024-11-23 01:28:58 -05:00
github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 // indirect
2024-07-05 22:20:13 -04:00
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect
github.com/tendermint/go-amino v0.16.0 // indirect
github.com/tidwall/btree v1.7.0 // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
2024-09-14 14:27:45 -04:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
2024-07-05 22:20:13 -04:00
github.com/x448/float16 v0.8.4 // indirect
github.com/zondax/hid v0.9.2 // indirect
github.com/zondax/ledger-go v0.14.3 // indirect
build(deps): bump the go_modules group with 2 updates (#1145) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps the go_modules group with 2 updates: [github.com/cometbft/cometbft](https://github.com/cometbft/cometbft) and [google.golang.org/grpc](https://github.com/grpc/grpc-go). Updates `github.com/cometbft/cometbft` from 0.38.8 to 0.38.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/releases">github.com/cometbft/cometbft's releases</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md#v03812">CHANGELOG</a> for this release.</p> <h2>v0.38.11</h2> <p><a href="https://github.com/cometbft/cometbft/blob/v0.38.11/CHANGELOG.md#v03811">CHANGELOG</a></p> <h2>v0.38.10</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.10/CHANGELOG.md#v03810">CHANGELOG</a> for this release.</p> <h2>v0.38.9</h2> <p>See the <a href="https://github.com/cometbft/cometbft/blob/v0.38.9/CHANGELOG.md#v0389">CHANGELOG</a> for this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cometbft/cometbft/blob/v0.38.12/CHANGELOG.md">github.com/cometbft/cometbft's changelog</a>.</em></p> <blockquote> <h2>v0.38.12</h2> <p><em>September 3, 2024</em></p> <p>This release includes a security fix for the light client and is recommended for all users.</p> <h3>BUG FIXES</h3> <ul> <li><code>[light]</code> Cross-check proposer priorities in retrieved validator sets (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[privval]</code> Ignore duplicate privval listen when already connected (<a href="https://redirect.github.com/cometbft/cometbft/issues/3828">#3828</a></li> </ul> <h3>DEPENDENCIES</h3> <ul> <li><code>[crypto/secp256k1]</code> Adjust to breaking interface changes in <code>btcec/v2</code> latest release, while avoiding breaking changes to local CometBFT functions (<a href="https://redirect.github.com/cometbft/cometbft/pull/3728">#3728</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[types]</code> Check that proposer is one of the validators in <code>ValidateBasic</code> (<a href="https://github.com/cometbft/cometbft/security/advisories/GHSA-g5xx-c4hv-9ccc">#ASA-2024-009</a>)</li> <li><code>[e2e]</code> Add <code>log_level</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/pull/3819">#3819</a>).</li> <li><code>[e2e]</code> Add <code>log_format</code> option to manifest file (<a href="https://redirect.github.com/cometbft/cometbft/issues/3836">#3836</a>).</li> </ul> <h2>v0.38.11</h2> <p><em>August 12, 2024</em></p> <p>This release fixes a panic in consensus where CometBFT would previously panic if there's no extension signature in non-nil Precommit EVEN IF vote extensions themselves are disabled.</p> <p>It also includes a few other bug fixes and performance improvements.</p> <h3>BUG FIXES</h3> <ul> <li><code>[types]</code> Only check IFF vote is a non-nil Precommit if extensionsEnabled types (<a href="https://redirect.github.com/cometbft/cometbft/issues/3565">#3565</a>)</li> </ul> <h3>IMPROVEMENTS</h3> <ul> <li><code>[indexer]</code> Fixed ineffective select break statements; they now point to their enclosing for loop label to exit (<a href="https://redirect.github.com/cometbft/cometbft/issues/3544">#3544</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cometbft/cometbft/commit/9722b6dfa1d0da3c3d4f73c1c779479971959d94"><code>9722b6d</code></a> v0.38.12 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3982">#3982</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/52c00a537f8f56ed94b4a5c8af6e3fecff468b55"><code>52c00a5</code></a> Merge commit from fork</li> <li><a href="https://github.com/cometbft/cometbft/commit/f2ae0f4d1e92984c99fc2b9a6f520801b193d1b7"><code>f2ae0f4</code></a> build(deps): Bump github.com/cosmos/gogoproto from 1.4.11 to 1.7.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3912">#3912</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/cbedf6d7f2ecf4617e734d26a9cd0142cc2425a6"><code>cbedf6d</code></a> build(deps): Bump github.com/BurntSushi/toml from 1.2.1 to 1.4.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3908">#3908</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/1013c80759938f5605a2bd5357bf91795b01c850"><code>1013c80</code></a> test(mempool): Add two <code>Update</code> benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/3873">#3873</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3892">#3892</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/2fb0cdd4291bb8a83c6e1ced1dd5c6fa2f1ae4d0"><code>2fb0cdd</code></a> build(deps): Bump github.com/rs/cors from 1.8.3 to 1.11.1 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3907">#3907</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/dcbf35967f53000a8ac46933c43771059fee2289"><code>dcbf359</code></a> build(deps): Bump github.com/Masterminds/semver/v3 from 3.2.0 to 3.3.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3906">#3906</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/8de81d5e395558a119ebab04f2bd2875c2947d76"><code>8de81d5</code></a> build(deps): Bump golang.org/x/net from 0.26.0 to 0.28.0 (<a href="https://redirect.github.com/cometbft/cometbft/issues/3905">#3905</a>)</li> <li><a href="https://github.com/cometbft/cometbft/commit/221c7445ae7461bfc39dd526b88b4f92e2dd2c22"><code>221c744</code></a> fix(privval): CV ignore duplicate privval listen when connected (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/38">#38</a>...</li> <li><a href="https://github.com/cometbft/cometbft/commit/969c8d1d92a139d67c8c4fc5ea4468a2742cdce3"><code>969c8d1</code></a> mempool: Fix the benchmarks (backport <a href="https://redirect.github.com/cometbft/cometbft/issues/934">#934</a>) (<a href="https://redirect.github.com/cometbft/cometbft/issues/3893">#3893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cometbft/cometbft/compare/v0.38.8...v0.38.12">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/grpc` from 1.64.0 to 1.64.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/grpc/grpc-go/releases">google.golang.org/grpc's releases</a>.</em></p> <blockquote> <h2>Release 1.64.1</h2> <h1>Dependencies</h1> <ul> <li>Update x/net/http2 to address <a href="https://nvd.nist.gov/vuln/detail/CVE-2023-45288">CVE-2023-45288</a> (<a href="https://redirect.github.com/grpc/grpc-go/issues/7352">#7352</a>)</li> <li>metadata: remove String method from MD to make printing consistent (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/grpc/grpc-go/commit/4d833de0e0ea4345c2f8333f5e1d1155f93c5222"><code>4d833de</code></a> Change version to 1.64.1 (<a href="https://redirect.github.com/grpc/grpc-go/issues/7381">#7381</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/e9193a42987f93cf634aedb7c6f32d607281f8c4"><code>e9193a4</code></a> *: update deps (<a href="https://redirect.github.com/grpc/grpc-go/issues/7375">#7375</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb"><code>ab29241</code></a> metadata: remove String method (<a href="https://redirect.github.com/grpc/grpc-go/issues/7374">#7374</a>)</li> <li><a href="https://github.com/grpc/grpc-go/commit/355b9a557b63896fc569d8be1518905eabde0026"><code>355b9a5</code></a> Change version to 1.64.1-dev (<a href="https://redirect.github.com/grpc/grpc-go/issues/7219">#7219</a>)</li> <li>See full diff in <a href="https://github.com/grpc/grpc-go/compare/v1.64.0...v1.64.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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/onsonr/sonr/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Prad Nukala <prad@sonr.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Prad Nukala <prad@sonr.io>
2024-10-21 12:01:26 -04:00
go.etcd.io/bbolt v1.3.10 // indirect
2024-07-05 22:20:13 -04:00
go.opencensus.io v0.24.0 // indirect
2024-07-08 22:57:53 -04:00
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
go.opentelemetry.io/otel v1.28.0 // indirect
go.opentelemetry.io/otel/metric v1.28.0 // indirect
go.opentelemetry.io/otel/trace v1.28.0 // indirect
2024-07-05 22:20:13 -04:00
go.uber.org/multierr v1.11.0 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
2024-09-14 14:27:45 -04:00
golang.org/x/net v0.28.0 // indirect
2024-07-08 22:57:53 -04:00
golang.org/x/oauth2 v0.21.0 // indirect
2024-09-14 14:27:45 -04:00
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.25.0 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
golang.org/x/term v0.24.0 // indirect
2024-09-14 14:27:45 -04:00
golang.org/x/text v0.18.0 // indirect
2024-07-05 22:20:13 -04:00
golang.org/x/time v0.5.0 // indirect
build(deps): bump github.com/ipfs/kubo from 0.29.0 to 0.31.0 (#1148) Bumps [github.com/ipfs/kubo](https://github.com/ipfs/kubo) from 0.29.0 to 0.31.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ipfs/kubo/releases">github.com/ipfs/kubo's releases</a>.</em></p> <blockquote> <h2>v0.31.0</h2> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#overview">Overview</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-discuss">🗣 Discuss</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-highlights">🔦 Highlights</a> <ul> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#experimental-pebble-datastore">Experimental Pebble Datastore</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#new-metrics">New metrics</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#lowpower-profile-no-longer-breaks-dht-announcements"><code>lowpower</code> profile no longer breaks DHT announcements</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#go-123-boxo-024-and-go-libp2p-0365">go 1.23, boxo 0.24 and go-libp2p 0.36.5</a></li> </ul> </li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-changelog">📝 Changelog</a></li> <li><a href="https://github.com/ipfs/kubo/blob/HEAD/#-contributors">👨‍👩‍👧‍👦 Contributors</a></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <p>This release was brought to you by the <a href="http://ipshipyard.com/">Shipyard</a> team.</p> <h3>Overview</h3> <p>Release v0.31.0 issue <a href="https://redirect.github.com/ipfs/kubo/issues/10499">#10499</a></p> <h3>🗣 Discuss</h3> <p>If you have comments, questions, or feedback on this release, please post <a href="https://discuss.ipfs.tech/t/kubo-v0-31-0-is-out/18611/1">here</a>.</p> <p>If you experienced any bugs with the release, please <a href="https://github.com/ipfs/kubo/issues/new/choose">post an issue</a>.</p> <h3>🔦 Highlights</h3> <h4>Experimental Pebble Datastore</h4> <blockquote> <!-- raw HTML omitted --> <p><em>Pebble visits Kubo</em></p> </blockquote> <p><a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile">Pebble</a> provides a high-performance alternative to leveldb as the datastore, and provides a modern replacement for <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#badgerds-profile">legacy badgerv1</a>.</p> <p>A fresh Kubo node can be initialized with <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#pebbleds-profile"><code>pebbleds</code> profile</a> via <code>ipfs init --profile pebbleds</code>.</p> <p>There are a number of parameters available for tuning pebble's performance to your specific needs. Default values are used for any parameters that are not configured or are set to their zero-value. For a description of the available tuning parameters, see <a href="https://github.com/ipfs/kubo/blob/master/docs/datastores.md#pebbleds">kubo/docs/datastores.md#pebbleds</a>.</p> <h4>New metrics</h4> <ul> <li>Added 3 new go metrics: <code>go_gc_gogc_percent</code>, <code>go_gc_gomemlimit_bytes</code> and <code>go_sched_gomaxprocs_threads</code> as those are <a href="https://redirect.github.com/prometheus/client_golang/pull/1559">recommended by the Go team</a></li> <li>Added <a href="https://redirect.github.com/prometheus/client_golang/pull/1555">network usage metrics</a>: <code>process_network_receive_bytes_total</code> and <code>process_network_transmit_bytes_total</code></li> <li>Removed <code>go_memstat_lookups_total</code> metric <a href="https://redirect.github.com/prometheus/client_golang/pull/1577">which was always 0</a></li> </ul> <h4><code>lowpower</code> profile no longer breaks DHT announcements</h4> <p>We've notices users were applying <code>lowpower</code> profile, and then reporting content routing issues. This was because <code>lowpower</code> disabled reprovider system and locally hosted data was no longer announced on Amino DHT.</p> <p>This release changes <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#lowpower-profile"><code>lowpower</code> profile</a> to not change reprovider settings, ensuring the new users are not sabotaging themselves. It also adds <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-on-profile"><code>annouce-on</code></a> and <a href="https://github.com/ipfs/kubo/blob/master/docs/config.md#announce-off-profile"><code>announce-off</code></a> profiles for controlling announcement settings separately.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ipfs/kubo/commit/5a32936f781ac1971899655856a2804cdf329032"><code>5a32936</code></a> Merge pull request <a href="https://redirect.github.com/ipfs/kubo/issues/10535">#10535</a> from ipfs/release-v0.31.0</li> <li><a href="https://github.com/ipfs/kubo/commit/4aebe7f27b578565c577541fa32bfc5a058a0bca"><code>4aebe7f</code></a> Add full changelog to release changelog</li> <li><a href="https://github.com/ipfs/kubo/commit/8135adc8538431b6b14408e34ccf9913d87a754d"><code>8135adc</code></a> update version for release</li> <li><a href="https://github.com/ipfs/kubo/commit/bd9e1548183fcf295e17fe6c17034633b61f045d"><code>bd9e154</code></a> chore: 0.31.0-rc2</li> <li><a href="https://github.com/ipfs/kubo/commit/598545171cdc41aa2050617ef3a3b712682a8a99"><code>5985451</code></a> fix: go 1.23(.2) (<a href="https://redirect.github.com/ipfs/kubo/issues/10540">#10540</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6b3cd0d14f88f305e9f358443cc3ed1d6dc38826"><code>6b3cd0d</code></a> chore: typo</li> <li><a href="https://github.com/ipfs/kubo/commit/38ae2e73b2cc70cc22a4a4e0adb699951bfe1762"><code>38ae2e7</code></a> chore: go-libp2p v0.36.5 (<a href="https://redirect.github.com/ipfs/kubo/issues/10538">#10538</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/a55215c5c1c4284370751b830b1711ee26b5f789"><code>a55215c</code></a> chore: bump version to v0.31.0-rc1</li> <li><a href="https://github.com/ipfs/kubo/commit/52ca3707591cad8ae99fd0a03b7e278487192e71"><code>52ca370</code></a> feat(routing/http): support IPIP-484 and streaming (<a href="https://redirect.github.com/ipfs/kubo/issues/10534">#10534</a>)</li> <li><a href="https://github.com/ipfs/kubo/commit/6305932b4ef5ca816d8a6f94fccc5b601f16701a"><code>6305932</code></a> fix(daemon): webui URL when rpc is catch-all (<a href="https://redirect.github.com/ipfs/kubo/issues/10520">#10520</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ipfs/kubo/compare/v0.29.0...v0.31.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/ipfs/kubo&package-manager=go_modules&previous-version=0.29.0&new-version=0.31.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-10-21 12:00:00 -04:00
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
2024-07-08 22:57:53 -04:00
google.golang.org/api v0.169.0 // indirect
2024-07-06 00:34:41 -04:00
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
2024-07-08 22:57:53 -04:00
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 // indirect
2024-07-05 22:20:13 -04:00
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.5.1 // indirect
nhooyr.io/websocket v1.8.10 // indirect
pgregory.net/rapid v1.1.0 // indirect
2024-07-26 12:14:20 -04:00
rsc.io/tmplfunc v0.0.3 // indirect
2024-07-05 22:20:13 -04:00
sigs.k8s.io/yaml v1.4.0 // indirect
)