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

Changelog for 1.2.0 release - draft #7145

Merged
merged 15 commits into from Jul 8, 2021
Merged

Changelog for 1.2.0 release - draft #7145

merged 15 commits into from Jul 8, 2021

Conversation

hoffmang9
Copy link
Member

@hoffmang9 hoffmang9 commented Jul 6, 2021

Note that this needs review and the final date of release added at a minimum.

1.2.0 Chia blockchain 2021-07-0X

Added

  • Portable pooled plots are now available using our new plot NFT. These allow you to plot new plots to an NFT that can either self farm or join and leave pools. During development there were changes to the plot NFT so portable pool plots (those made with -c option to chia plots create) using code from before June 25th are invalid on mainnet.
    OG plots made before this release can continue to be farmed side by side with the new portable pool plots but can not join pools using the official pooling protocol. You can learn more as a farmer by checking out the pool user guide. Pool operators and those wanting to understand how the official pooling protocol operates should check out our pooling implementation reference repository. If you plan to use plot NFT, all your farmers and harvesters must be on 1.2.0 to function properly for portable pool plots.
  • The exact commit after which Plot NFTs should be valid is the 89f7a4b commit (in which pools.testnet9 branch was merged to main) or 5d62b3d within the pools.testnet9 branch.
  • chia farm summary and the GUI now use a new RPC endpoint to properly show plots for local and remote harvesters. This should address issues [BUG] chia farm summary doesn't show correct information for slave harvest node #6563, [BUG] Plot count: Unknown when running remote Harvesters #5881, Farmer summary can't find remote harvester, but they are connected when checking on INFO logs #3875, [ENHANCEMENT] chia farm summary should show remote harvesters #1461.
  • chia configure now supports command line updates to peer count and target peer count.
  • Thank you @gldecurtins for adding logging support for remote syslog.
  • Thanks to @maran and @Animazing for adding farmer and pool public key display to the RPC.
  • We have added translations for Hungarian, Belarusian, Catalan, and Albanian. For Hungarian thanks to @sirgeoff, @Azazio @onokaxxx, @rolandfarkasCOM, @HUNDavid , @horvathpalzsolt, @stishun74, @tusdavgaming, @idotitusz, @rasocsabi, @mail.kope, @gsprblnt, @mbudahazi, @csiberius, @tomatos83, @zok42, @ocel0t, @rwtoptomi, @djxpitke, @ftamas85, @zotya0330, @FnnI, @kapabeates, @Zamery, @viktor.gonczi, @pal.suta, @miv, and @Joeman_. For Belarusian thanks to @shurix83, @haxycgm, and @metalomaniax. For Catalan thank you to @Poliwhirl, @Pep-33, @marqmarti, @meuca, @Guiwdin, @carlescampi, @jairobtx, @Neoares, @darknsis, @augustfarrerasgimeno, and @fornons. Finally for Albanian thanks to @ATSHOOTER and @lakedeejay. We apologize if we missed anyone and welcome corrections.
  • Our release process is now fully automated from tagging a release to publishing installers to all of the appropriate locations and now makes the release artifacts available via torrents as well.
  • All Chia repositories now automatically build M1 wheels and create a new MacOS M1 native installer.
  • New CLI command chia plotnft to manage pools.
  • We have added a new RPC get_harvesters to the farmer. This returns information about remote harvesters and plots.
  • We have added a new RPC check_delete_key to the wallet, to check keys prior to deleting them.
  • We have added a new RPC delete_unconfirmed_transactions to the wallet which deletes these transactions for a given wallet ID.
  • We have added a new RPC get_puzzle_and_solution to the full node, which takes in a coin ID.
  • We have added a new RPC get_recent_signage_point_or_eos to the full node, to support pooling.
  • We have added a new RPC send_transaction_multi to the wallet, which sends a payment with multiple payees.

Changed

  • We have made a host of changes to the GUI to support pooling and to improve the wallet experience.
  • We updated chiapos to version 1.0.3. This adds parallel reads to GetFullProof. Thanks to @marcoabreu ! We now print target/final directory early in the logs refs and log process ID. Thanks to @grayfallstown ! We are now using Gulrak 1.5.6.
    @683280 optimized code in phase1.hpp. @jespino and @MrHacky started migrating to flags instead of booleans parameters for show_progress and nobitfield. If you are providing third-party tools you may need to make adjustments if relying on the chiapos log.
  • Updated chiavdf to version 1.0.2 to fix certain tests.
  • Windows builds now rely upon Python 3.9 which obviates the fix in 1.1.7.
  • We are now using miniupnpc version 2.2.2 so that we can support Python 3.9 on Windows.
  • We updated to clvm 0.9.6 and clvm_rs 0.1.8. CLVMObject now lazily converts python types to CLVM types as elements are inspected in clvm. cvlm_rs now returns python objects rather than a serialized object.
  • We now have rudimentary checks to makes sure that fees are less than the amount being spent.
  • The harvester API no longer relies upon time:time with thanks to @x1957.
  • We have increased the strictness of validating Chialisp in the mempool and clvm.
  • Thanks to @ruslanskorb for improvements to the human-readable forms in the CLI.
  • Thanks to @etr2460 for improvements to the plotting progress bar in the GUI and enhancements to human-readable sizes.
  • @dkackman changed the way that configuration was found on startup.
  • We now delay peer start for wallet until after backup init and make sure only one copy is started.
  • Wallets now trust the local node more for enhanced wallet sync speed.
  • We now store tasks used to initiate peer connections to ensure they are kept alive and to be able to wait for them if we hit the upper limit on number of pending outgoing connections.
  • We improved weight proof validation.
  • @cvet changed the wallet to take override instead of confirm.

Fixed

  • The delete plots button in the Windows GUI has been fixed and re-enabled.
  • Sometimes upon startup, the GUI takes a while to load the plots to display. We've made a temporary improvement that adds a "Refresh Plots" button whenever the GUI has not yet found plots.
  • Correctly display private key in chia keys show.
  • Thanks to @gldecurtins for removing a default printout of the private key mnemonic in chia keys show.
  • Shutting down the full node is cleaner and manages uPnP better.
  • DNS introducer could fail.
  • Fixed a potential timelord bug that could lead to a chain stall.
  • Add an explicit error message when mnemonic words are not in the dictionary; should help users self-service issues like [BUG] chia keys add occur KeyError: 'paurse' #3425 faster. Thank you to @elliotback for this PR.
  • Thank you to @Nikolaj-K for various typo corrections around the Mozilla CA, code simplifications and improvements in converting to human-readable size estimations, and clean up in the RPCs and logging.
  • Thank you to @ChiaMineJP for various improvements.
  • @asdf2014 removed some useless code in the wallet node API.
  • Thanks to @willi123yao for a fix to under development pool wallets.
  • chia farm summary better handles wallet errors.
  • @Hoinor fixed formatting issues around the Chinese translation in the GUI.
  • Sometimes the GUI would stop refreshing certain fields.
  • We have better error handling for misbehaving peers from naive forks/clones.
  • We have fixed an error where the wallet could get corrupted, which previously required restarting the application.
  • We have fixed an error where transactions were not being resubmitted from the wallet.

1.1.7 Chia Blockchain 2021-06-05

Fixed

Batch process weight proof epochs in groups of 900 to fit below May 2020 sqlite limit (999 for Python 3.7 on Windows). Fixes sqlite3.OperationalError: too many SQL variables error and resulting issues with syncing wallets on Windows.

@hoffmang9 hoffmang9 marked this pull request as draft July 6, 2021 20:24
@gldecurtins
Copy link
Contributor

Just a minor thing.. but my username is wrong in the Fixed section. :-)

CHANGELOG.md Outdated Show resolved Hide resolved
wjblanke
wjblanke previously approved these changes Jul 6, 2021
Copy link
Contributor

@wjblanke wjblanke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aok

CHANGELOG.md Outdated Show resolved Hide resolved
Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com>
Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com>
@hoffmang9 hoffmang9 marked this pull request as ready for review July 6, 2021 23:18
@ryukiller
Copy link

typo at third bullet - Than you @gldecurtins for adding logging support for remote syslog.

CHANGELOG.md Show resolved Hide resolved
Co-authored-by: Adam Kelly <338792+aqk@users.noreply.github.com>
Copy link
Contributor

@wjblanke wjblanke left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

aok

@hoffmang9 hoffmang9 merged commit b2ec0f7 into main Jul 8, 2021
@hoffmang9 hoffmang9 deleted the chglg-1.2.0 branch July 8, 2021 03:23
@fiveangle
Copy link
Contributor

...also #4200, which I'll close now...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants