-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3885 from TrueBlocks/feature/update-gomods
Updates go.mods to latest release
- Loading branch information
Showing
12 changed files
with
29 additions
and
27 deletions.
There are no files selected for viewing
Submodule examples
updated
16 files
+2 −2 | balanceChart/go.mod | |
+4 −4 | balanceChart/go.sum | |
+2 −2 | cancelContext/go.mod | |
+4 −4 | cancelContext/go.sum | |
+2 −2 | comparison/go.mod | |
+4 −4 | comparison/go.sum | |
+2 −2 | findFirst/go.mod | |
+4 −4 | findFirst/go.sum | |
+2 −2 | nameManager/go.mod | |
+4 −8 | nameManager/go.sum | |
+2 −2 | simple/go.mod | |
+4 −4 | simple/go.sum | |
+1 −2 | templates/base/go.mod.tmpl | |
+1 −1 | templates/base/main.go.tmpl | |
+2 −2 | withStreaming/go.mod | |
+4 −4 | withStreaming/go.sum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
# This script lists all uses of either chifra or the sdk in the go.mod files. Used for debugging. | ||
find . -type f -name 'go.mod' -exec grep -His "TrueBlocks" {} ';' | \ | ||
grep "2024" | \ | ||
cut -f2 -d: | \ | ||
sed 's/ \/\/ indirect//' | \ | ||
sed 's/require //' | \ | ||
tr '\t' '|' | sed 's/|//' | sed 's/^/ /' | \ | ||
sort -u | ||
find . -type f -name "go.mod" -exec grep -His TrueBlocks {} ';' | \ | ||
grep -v module | \ | ||
sed 's/ \/\/ indirect//' | \ | ||
sed 's/require //' | \ | ||
grep -v replace | \ | ||
tr '\t' '|' | \ | ||
sed 's/|//' | \ | ||
cut -f2 -d: | \ | ||
sort -u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters