Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Re-merge master #1685

Merged
merged 32 commits into from
Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
06c5a89
Update build to version 2.2.0
onetechnical Oct 26, 2020
92308ff
Update buildnumber.dat to 0.
onetechnical Oct 26, 2020
f44f85c
Merge branch 'master' into onetechnical/relbeta2.2.0
onetechnical Oct 26, 2020
e4937cf
Merge branch 'master' into onetechnical/relbeta2.2.0
onetechnical Oct 27, 2020
f780004
Merge pull request #1651 from onetechnical/onetechnical/relbeta2.2.0
algojohnlee Oct 27, 2020
4ccded4
Set TRAVIS_BRANCH env var in jenkins mule agents (#1656)
bricerisingalgorand Oct 27, 2020
e8a890f
Fix the way environments were being set in mule
bricerisingalgorand Oct 27, 2020
f81b5ad
Ensure script picks up TRAVIS_BRANCH env var, if set (#1661)
Oct 28, 2020
7b80473
Default to branch name when branch parent fails (#1662)
bricerisingalgorand Oct 28, 2020
cdacf08
Check for null when setting BRANCHPARENT in compute branch network (#…
bricerisingalgorand Oct 28, 2020
1aab31b
Fix double quote parameters passing in docker env (#1664)
bricerisingalgorand Oct 28, 2020
7aef02c
Fix computed network for packaging (#1665)
onetechnical Oct 29, 2020
f9ce051
Fix path of build_status files in deb packaging (#1668)
bricerisingalgorand Oct 29, 2020
d2e9b9b
Harden mule signing task (#1667)
Oct 29, 2020
450fd8c
Change rpm package file to match rename (#1666)
Oct 29, 2020
3ae2f78
Created mule tasks for aptly, releases page and docker hub images (#1…
Oct 29, 2020
08171f6
Fix RPM errors introduced in new pipeline (#1673)
bricerisingalgorand Oct 30, 2020
f8bdceb
Revert "Change rpm package file to match rename (#1666)" (#1675)
onetechnical Oct 30, 2020
4de3deb
Support multiple OS and ARCH for signing (#1674)
Oct 30, 2020
fcd3fd9
Add ARCH_TYPE to build status file (#1676)
Oct 30, 2020
cccd1bf
Bug Fix - RPM missing genesisfiles and Debian package misnamed (#1677)
bricerisingalgorand Oct 30, 2020
566405e
Fix bugs in mule test stage (#1679)
Oct 30, 2020
c048b4a
Merge pull request #1681 from onetechnical/onetechnical/relstable2.2.0
algojohnlee Nov 2, 2020
4192241
Merge branch 'rel/stable' into onetechnical/master-v2.2.0-stable
onetechnical Nov 4, 2020
2b0510b
Remove buildnumber.dat and genesistimestamp.dat on merge back to master.
onetechnical Nov 4, 2020
f525223
Merge pull request #1683 from onetechnical/onetechnical/master-v2.2.0…
algojohnlee Nov 4, 2020
40753db
Clarify which algod endpoints require developer API (#1684)
jasonpaulos Nov 5, 2020
3300ce3
Mount .docker dir to allow container to push to docker hub (#1682)
Nov 5, 2020
ea84909
Added package test to verify gpg signature (#1680)
Nov 5, 2020
558d069
Add e2e test for LegderForLogic (#1688)
algorandskiy Nov 9, 2020
75d289a
Better 'goal asset' help documentation. (#1687)
winder Nov 10, 2020
6d67e88
Dynamically adjust catchpoint file serving timeouts based on file siz…
tsachiherman Nov 10, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,6 @@ assets

# test binaries
*.test

index.html

4 changes: 2 additions & 2 deletions cmd/goal/asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func init() {
createAssetCmd.MarkFlagRequired("creator")

destroyAssetCmd.Flags().StringVar(&assetManager, "manager", "", "Manager account to issue the destroy transaction (defaults to creator)")
destroyAssetCmd.Flags().StringVar(&assetCreator, "creator", "", "Account address for asset to destroy")
destroyAssetCmd.Flags().StringVar(&assetCreator, "creator", "", "Creator account address for asset to destroy")
destroyAssetCmd.Flags().Uint64Var(&assetID, "assetid", 0, "Asset ID to destroy")
destroyAssetCmd.Flags().StringVar(&assetUnitName, "asset", "", "Unit name of asset to destroy")

Expand Down Expand Up @@ -256,7 +256,7 @@ var createAssetCmd = &cobra.Command{
var destroyAssetCmd = &cobra.Command{
Use: "destroy",
Short: "Destroy an asset",
Long: `Issue a transaction deleting an asset from the network. This transaction must be issued by the asset owner, who must hold all outstanding asset tokens.`,
Long: `Issue a transaction deleting an asset from the network. This transaction must be issued by the asset manager while the creator holds all of the asset's tokens.`,
Args: validateNoPosArgsFn,
Run: func(cmd *cobra.Command, _ []string) {
checkTxValidityPeriodCmdFlags(cmd)
Expand Down
2 changes: 1 addition & 1 deletion config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const VersionMajor = 2

// VersionMinor is the Minor semantic version number (x.#.z) - changed when backwards-compatible features are introduced.
// Not enforced until after initial public release (x > 0).
const VersionMinor = 1
const VersionMinor = 2

// Version is the type holding our full version information.
type Version struct {
Expand Down
10 changes: 8 additions & 2 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@
},
"/v2/teal/compile": {
"post": {
"description": "Given TEAL source code in plain text, return base64 encoded program bytes and base32 SHA512_256 hash of program bytes (Address style).",
"description": "Given TEAL source code in plain text, return base64 encoded program bytes and base32 SHA512_256 hash of program bytes (Address style). This endpoint is only enabled when a node's configureation file sets EnableDeveloperAPI to true.",
"consumes": [
"text/plain"
],
Expand Down Expand Up @@ -936,6 +936,9 @@
"$ref": "#/definitions/ErrorResponse"
}
},
"404": {
"description": "Developer API not enabled"
},
"500": {
"description": "Internal Error",
"schema": {
Expand Down Expand Up @@ -1055,7 +1058,7 @@
},
"/v2/teal/dryrun": {
"post": {
"description": "Executes TEAL program(s) in context and returns debugging information about the execution.",
"description": "Executes TEAL program(s) in context and returns debugging information about the execution. This endpoint is only enabled when a node's configureation file sets EnableDeveloperAPI to true.",
"consumes": [
"application/json",
"application/msgpack"
Expand Down Expand Up @@ -1095,6 +1098,9 @@
"$ref": "#/definitions/ErrorResponse"
}
},
"404": {
"description": "Developer API not enabled"
},
"500": {
"description": "Internal Error",
"schema": {
Expand Down
12 changes: 10 additions & 2 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2593,7 +2593,7 @@
},
"/v2/teal/compile": {
"post": {
"description": "Given TEAL source code in plain text, return base64 encoded program bytes and base32 SHA512_256 hash of program bytes (Address style).",
"description": "Given TEAL source code in plain text, return base64 encoded program bytes and base32 SHA512_256 hash of program bytes (Address style). This endpoint is only enabled when a node's configureation file sets EnableDeveloperAPI to true.",
"operationId": "TealCompile",
"requestBody": {
"content": {
Expand Down Expand Up @@ -2652,6 +2652,10 @@
},
"description": "Invalid API Token"
},
"404": {
"content": {},
"description": "Developer API not enabled"
},
"500": {
"content": {
"application/json": {
Expand All @@ -2673,7 +2677,7 @@
},
"/v2/teal/dryrun": {
"post": {
"description": "Executes TEAL program(s) in context and returns debugging information about the execution.",
"description": "Executes TEAL program(s) in context and returns debugging information about the execution. This endpoint is only enabled when a node's configureation file sets EnableDeveloperAPI to true.",
"operationId": "TealDryrun",
"requestBody": {
"content": {
Expand Down Expand Up @@ -2742,6 +2746,10 @@
},
"description": "Invalid API Token"
},
"404": {
"content": {},
"description": "Developer API not enabled"
},
"500": {
"content": {
"application/json": {
Expand Down
Loading