Received: from sog-mx-2.v43.ch3.sourceforge.com ([172.29.43.192] helo=mx.sourceforge.net) by sfs-ml-2.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1XXxiz-0000pJ-PI for bitcoin-development@lists.sourceforge.net; Sat, 27 Sep 2014 19:32:09 +0000 Received-SPF: pass (sog-mx-2.v43.ch3.sourceforge.com: domain of gmail.com designates 209.85.216.169 as permitted sender) client-ip=209.85.216.169; envelope-from=melvincarvalho@gmail.com; helo=mail-qc0-f169.google.com; Received: from mail-qc0-f169.google.com ([209.85.216.169]) by sog-mx-2.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128) (Exim 4.76) id 1XXxiy-0007rV-3g for bitcoin-development@lists.sourceforge.net; Sat, 27 Sep 2014 19:32:09 +0000 Received: by mail-qc0-f169.google.com with SMTP id r5so6906118qcx.0 for ; Sat, 27 Sep 2014 12:32:02 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.140.80.133 with SMTP id c5mr4540236qgd.98.1411846322562; Sat, 27 Sep 2014 12:32:02 -0700 (PDT) Received: by 10.140.221.78 with HTTP; Sat, 27 Sep 2014 12:32:02 -0700 (PDT) In-Reply-To: References: Date: Sat, 27 Sep 2014 21:32:02 +0200 Message-ID: From: Melvin Carvalho To: Wladimir Content-Type: multipart/alternative; boundary=001a11c12a8888af96050411160d X-Spam-Score: -0.6 (/) X-Spam-Report: Spam Filtering performed by mx.sourceforge.net. See http://spamassassin.org/tag/ for more details. -1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for sender-domain 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (melvincarvalho[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 1.0 HTML_MESSAGE BODY: HTML included in message -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature X-Headers-End: 1XXxiy-0007rV-3g Cc: Bitcoin Dev Subject: Re: [Bitcoin-development] [ann] Bitcoin Core 0.9.3 has been released X-BeenThere: bitcoin-development@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Sep 2014 19:32:09 -0000 --001a11c12a8888af96050411160d Content-Type: text/plain; charset=UTF-8 On 27 September 2014 15:56, Wladimir wrote: > Bitcoin Core version 0.9.3 is now available from: > > https://bitcoin.org/bin/0.9.3/ > > This is a new minor version release, bringing only bug fixes and updated > translations. Upgrading to this release is recommended. > > Please report bugs using the issue tracker at github: > > https://github.com/bitcoin/bitcoin/issues > > Upgrading and downgrading > ========================== > > How to Upgrade > -------------- > > If you are running an older version, shut it down. Wait until it has > completely > shut down (which might take a few minutes for older versions), then run the > installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) > or > bitcoind/bitcoin-qt (on Linux). > > If you are upgrading from version 0.7.2 or earlier, the first time you run > 0.9.3 your blockchain files will be re-indexed, which will take anywhere > from > 30 minutes to several hours, depending on the speed of your machine. > > Downgrading warnings > -------------------- > > The 'chainstate' for this release is not always compatible with previous > releases, so if you run 0.9.x and then decide to switch back to a > 0.8.x release you might get a blockchain validation error when starting the > old release (due to 'pruned outputs' being omitted from the index of > unspent transaction outputs). > > Running the old release with the -reindex option will rebuild the > chainstate > data structures and correct the problem. > > Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan > the blockchain for missing spent coins, which will take a long time (tens > of minutes on a typical machine). > > 0.9.3 Release notes > ======================= > > RPC: > - Avoid a segfault on getblock if it can't read a block from disk > - Add paranoid return value checks in base58 > > Protocol and network code: > - Don't poll showmyip.com, it doesn't exist anymore > - Add a way to limit deserialized string lengths and use it > - Add a new checkpoint at block 295,000 > - Increase IsStandard() scriptSig length > - Avoid querying DNS seeds, if we have open connections > - Remove a useless millisleep in socket handler > - Stricter memory limits on CNode > - Better orphan transaction handling > - Add `-maxorphantx=` and `-maxorphanblocks=` options for > control over the maximum orphan transactions and blocks > > Wallet: > - Check redeemScript size does not exceed 520 byte limit > - Ignore (and warn about) too-long redeemScripts while loading wallet > > GUI: > - fix 'opens in testnet mode when presented with a BIP-72 link with no > fallback' > - AvailableCoins: acquire cs_main mutex > - Fix unicode character display on MacOSX > > Miscellaneous: > - key.cpp: fail with a friendlier message on missing ssl EC support > - Remove bignum dependency for scripts > - Upgrade OpenSSL to 1.0.1i (see > https://www.openssl.org/news/secadv_20140806.txt - just to be sure, no > critical issues for Bitcoin Core) > - Upgrade miniupnpc to 1.9.20140701 > - Fix boost detection in build system on some platforms > > Credits > -------- > > Thanks to everyone who contributed to this release: > > - Andrew Poelstra > - Cory Fields > - Gavin Andresen > - Jeff Garzik > - Johnathan Corgan > - Julian Haight > - Michael Ford > - Pavel Vasin > - Peter Todd > - phantomcircuit > - Pieter Wuille > - Rose Toomey > - Ruben Dario Ponticelli > - shshshsh > - Trevin Hofmann > - Warren Togami > - Wladimir J. van der Laan > - Zak Wilcox > > As well as everyone that helped translating on > [Transifex](https://www.transifex.com/projects/p/bitcoin/). > Great work! Apologies if this has been covered. But I was curious about: - Increase IsStandard() scriptSig length Is there some place I read more to understand this change? > > > ------------------------------------------------------------------------------ > Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer > Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports > Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper > Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer > > http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk > _______________________________________________ > Bitcoin-development mailing list > Bitcoin-development@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/bitcoin-development > --001a11c12a8888af96050411160d Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable


On 27 September 2014 15:56, Wladimir <laanwj@gmail.com> w= rote:
Bitcoin Core ver= sion 0.9.3 is now available from:

=C2=A0 https:/= /bitcoin.org/bin/0.9.3/

This is a new minor version release, bringing only bug fixes and updated translations. Upgrading to this release is recommended.

Please report bugs using the issue tracker at github:

=C2=A0 https://github.com/bitcoin/bitcoin/issues

Upgrading and downgrading
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D

How to Upgrade
--------------

If you are running an older version, shut it down. Wait until it has comple= tely
shut down (which might take a few minutes for older versions), then run the=
installer (on Windows) or just copy over /Applications/Bitcoin-Qt (on Mac) = or
bitcoind/bitcoin-qt (on Linux).

If you are upgrading from version 0.7.2 or earlier, the first time you run<= br> 0.9.3 your blockchain files will be re-indexed, which will take anywhere fr= om
30 minutes to several hours, depending on the speed of your machine.

Downgrading warnings
--------------------

The 'chainstate' for this release is not always compatible with pre= vious
releases, so if you run 0.9.x and then decide to switch back to a
0.8.x release you might get a blockchain validation error when starting the=
old release (due to 'pruned outputs' being omitted from the index o= f
unspent transaction outputs).

Running the old release with the -reindex option will rebuild the chainstat= e
data structures and correct the problem.

Also, the first time you run a 0.8.x release on a 0.9 wallet it will rescan=
the blockchain for missing spent coins, which will take a long time (tens of minutes on a typical machine).

0.9.3 Release notes
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

RPC:
- Avoid a segfault on getblock if it can't read a block from disk
- Add paranoid return value checks in base58

Protocol and network code:
- Don't poll showmyip= .com, it doesn't exist anymore
- Add a way to limit deserialized string lengths and use it
- Add a new checkpoint at block 295,000
- Increase IsStandard() scriptSig length
- Avoid querying DNS seeds, if we have open connections
- Remove a useless millisleep in socket handler
- Stricter memory limits on CNode
- Better orphan transaction handling
- Add `-maxorphantx=3D<n>` and `-maxorphanblocks=3D<n>` options= for
control over the maximum orphan transactions and blocks

Wallet:
- Check redeemScript size does not exceed 520 byte limit
- Ignore (and warn about) too-long redeemScripts while loading wallet

GUI:
- fix 'opens in testnet mode when presented with a BIP-72 link with no = fallback'
- AvailableCoins: acquire cs_main mutex
- Fix unicode character display on MacOSX

Miscellaneous:
- key.cpp: fail with a friendlier message on missing ssl EC support
- Remove bignum dependency for scripts
- Upgrade OpenSSL to 1.0.1i (see
https://www.openssl.org/news/secadv_20140806.txt - just to be sure,= no
critical issues for Bitcoin Core)
- Upgrade miniupnpc to 1.9.20140701
- Fix boost detection in build system on some platforms

Credits
--------

Thanks to everyone who contributed to this release:

- Andrew Poelstra
- Cory Fields
- Gavin Andresen
- Jeff Garzik
- Johnathan Corgan
- Julian Haight
- Michael Ford
- Pavel Vasin
- Peter Todd
- phantomcircuit
- Pieter Wuille
- Rose Toomey
- Ruben Dario Ponticelli
- shshshsh
- Trevin Hofmann
- Warren Togami
- Wladimir J. van der Laan
- Zak Wilcox

As well as everyone that helped translating on
[Transifex](https://www.transifex.com/projects/p/bitcoin/).

Great work!

Apologies if this has been cov= ered.=C2=A0 But I was curious about:

- Increase IsStandard() scriptS= ig length

Is there some place I read more to understand t= his change?
=C2=A0

---------------------------------------------------------------------------= ---
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gam= pad/clk?id=3D154622311&iu=3D/4140/ostg.clktrk
_______________________________________________
Bitcoin-development mailing list
Bitcoin-develo= pment@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bitcoin-de= velopment

--001a11c12a8888af96050411160d--