This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 112
Release version 9.3.0 #789
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
8697357
Periodically rerun ordersync instead of running it only once on start…
albrow 05456ed
Update ganache addresses (#765)
fabioberger e441090
Fix typo
fabioberger f2b907d
Add a polyfill for WebAssembly.instantateStreaming (#770)
albrow 9ac6b5e
Compare chain id env variable with rpc on startup (#733)
kimpers faf15ef
Add custom order filters documentation (#768)
fabioberger ac0a363
Fully Automate Document Generation (#771)
jalextowle 4dbd921
[expirationwatch] Fixes consistency bug (#773)
jalextowle 5c42d07
Fixes race condition in orderwatcher test (#774)
jalextowle 9613b42
Improve scenario package (#779)
albrow c5213dd
Revalidate affected orders regardless of ERC721 approval operator (#782)
albrow e7d4159
Increase sleep duration in TestPingPong (#785)
albrow e624a0f
scenario: Add ability to create multiple orders in a single batch (#784)
albrow b99acff
Update changelog for PR #782 (#786)
albrow 3c51a32
p2p: Don't call HandleMessages if there are no messages to handle (#787)
albrow ce3309d
Add missing regression test for ordersync pagination subprotocol (#788)
albrow 8df8910
Merge branch 'development' into release/9.3.0
albrow 4233ca4
Set versions to 9.3.0
albrow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,11 +1,17 @@ | ||
- [Docker image](https://hub.docker.com/r/0xorg/mesh/tags) | ||
- [README](https://github.com/0xProject/0x-mesh/blob/v9.2.1/README.md) | ||
- [README](https://github.com/0xProject/0x-mesh/blob/v9.3.0/README.md) | ||
|
||
## Summary | ||
|
||
### Features ✅ | ||
|
||
- Mesh now ensures on startup that the chain ID of your Ethereum RPC endpoint matches config.EthereumChainID [#733](https://github.com/0xProject/0x-mesh/pull/733). | ||
|
||
### Bug fixes 🐞 | ||
|
||
- Fixed a critical bug in the ordersync protocol which resulted in only 50% of existing orders being shared when a new peer joins the network. New orders are shared separately and were unaffected. [#760](https://github.com/0xProject/0x-mesh/pull/760). | ||
- Fixed a compatibility issue in `@0x/mesh-browser-lite` for Safari and some other browsers [#770](https://github.com/0xProject/0x-mesh/pull/770). | ||
- Fixes an issue that would allow expired orders to be returned in `GetOrders` [773](http://github.com/0xProject/0x-mesh/pull/773) | ||
- Fixed a rare bug where ERC721 approval events could be missed [#782](https://github.com/0xProject/0x-mesh/pull/782) | ||
|
||
|
||
|
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this wrong before? I wasn't aware that we changed it's location in the migration script.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It did change with the updated snapshot we're now using (
6.2.4
). Prior to this version, we were on version5.1.0
. It must have changed sometime between those two versions.