-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jribbink/update-protobuf-definitions' of github.com:onf…
…low/fcl-js into jribbink/update-protobuf-definitions
- Loading branch information
Showing
138 changed files
with
2,857 additions
and
2,237 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@onflow/transport-http": patch | ||
--- | ||
|
||
Fix issue where httpRequest errors were thrown inside a promise and could not be caught on node |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@onflow/sdk": patch | ||
--- | ||
|
||
Allow for integer string account.keyId in authorization function |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@onflow/fcl": patch | ||
--- | ||
|
||
Update event listeners in strategies | ||
Fixes a bug where event listener was not being removed on close |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "alpha", | ||
"initialVersions": { | ||
"@onflow/config": "1.0.1", | ||
"@onflow/fcl": "1.0.2", | ||
"@onflow/protobuf": "1.0.0", | ||
"@onflow/rlp": "1.0.1", | ||
"@onflow/sdk": "1.0.1", | ||
"@onflow/transport-grpc": "1.0.1", | ||
"@onflow/transport-http": "1.2.0", | ||
"@onflow/types": "1.0.1", | ||
"@onflow/util-actor": "1.0.1", | ||
"@onflow/util-address": "1.0.1", | ||
"@onflow/util-encode-key": "1.0.1", | ||
"@onflow/util-invariant": "1.0.1", | ||
"@onflow/util-logger": "1.0.1", | ||
"@onflow/util-node-http-modules": "1.0.2", | ||
"@onflow/util-template": "1.0.1", | ||
"@onflow/util-uid": "1.0.1" | ||
}, | ||
"changesets": [ | ||
"empty-ants-switch", | ||
"friendly-berries-admire", | ||
"itchy-pumpkins-dream", | ||
"short-colts-beg", | ||
"smart-toys-joke", | ||
"tall-zebras-tie" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@onflow/transport-http": minor | ||
--- | ||
|
||
Added errorMessage property to HTTPRequestError to expose Access API errors when making requests |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@onflow/sdk": patch | ||
--- | ||
|
||
Make deprecation notice for getEvents use @onflow/util-logger instead of console.warn |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@onflow/sdk": patch | ||
--- | ||
|
||
Fix issue where custom decoders did not properly override default decoders |
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,2 +1,4 @@ | ||
README.md | ||
*.md | ||
*.mdx | ||
packages/protobuf/src/generated/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
module.exports = { | ||
"projects": [ | ||
"<rootDir>/packages/*" | ||
] | ||
}; | ||
projects: ["<rootDir>/packages/*"], | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@onflow/fcl", | ||
"version": "1.0.2", | ||
"version": "1.0.3-alpha.0", | ||
"description": "Flow Client Library", | ||
"license": "Apache-2.0", | ||
"author": "Dapper Labs <[email protected]>", | ||
|
@@ -44,7 +44,7 @@ | |
"@onflow/config": "^1.0.1", | ||
"@onflow/interaction": "0.0.11", | ||
"@onflow/rlp": "^1.0.1", | ||
"@onflow/sdk": "^1.0.1", | ||
"@onflow/sdk": "^1.0.2-alpha.0", | ||
"@onflow/types": "^1.0.1", | ||
"@onflow/util-actor": "^1.0.1", | ||
"@onflow/util-address": "^1.0.1", | ||
|
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
Oops, something went wrong.