<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/tests/data, branch v0.18.4.4</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.18.4.4</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.18.4.4'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2024-12-13T19:37:39Z</updated>
<entry>
<title>p2p: allow comments in banlist files</title>
<updated>2024-12-13T19:37:39Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2024-11-07T06:34:59Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=a1b545a2f7b2ac48d66e7fd846ca5093286525c7'/>
<id>urn:sha1:a1b545a2f7b2ac48d66e7fd846ca5093286525c7</id>
<content type='text'>
In-line comments explicitly explaining banned hosts/subnets might help assuage fears of some good banlists' arbitaryiness.
</content>
</entry>
<entry>
<title>wallet2: fix `store_to()` and `change_password()`</title>
<updated>2023-08-23T16:52:31Z</updated>
<author>
<name>jeffro256</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-07-07T17:55:02Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ba98269ca507766aa76f0ebbcaebe6f6eef93192'/>
<id>urn:sha1:ba98269ca507766aa76f0ebbcaebe6f6eef93192</id>
<content type='text'>
Resolves #8932 and:
2. Not storing cache when new path is different from old in `store_to()` and
3. Detecting same path when new path contains entire string of old path in `store_to()` and
4. Changing your password / decrypting your keys (in this method or others) and providing a bad original password and getting no error and
5. Changing your password and storing to a new file
</content>
</entry>
<entry>
<title>verRctNonSemanticsSimpleCached: fix fragility</title>
<updated>2023-03-17T23:46:34Z</updated>
<author>
<name>Jeffrey Ryan</name>
<email>jeffro256@tutanota.com</email>
</author>
<published>2023-01-14T02:53:25Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=c59e0096b671528036563c1c30f31763a615aa75'/>
<id>urn:sha1:c59e0096b671528036563c1c30f31763a615aa75</id>
<content type='text'>
</content>
</entry>
<entry>
<title>allow exporting outputs in chunks</title>
<updated>2022-09-07T06:22:07Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2022-08-16T20:20:38Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0cbf5571d3ccd07c81d33b05dd23b2ac9c777c3b'/>
<id>urn:sha1:0cbf5571d3ccd07c81d33b05dd23b2ac9c777c3b</id>
<content type='text'>
this will make it easier huge wallets to do so without hitting
random limits (eg, max string size in node).
</content>
</entry>
<entry>
<title>unit_tests: add more sha256sum test cases</title>
<updated>2022-05-17T23:34:20Z</updated>
<author>
<name>Jeffrey Ryan</name>
<email>jeffreyryan@tutanota.com</email>
</author>
<published>2022-05-17T20:41:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=08080df2d9de877ae79028f20960b6b2417d4f20'/>
<id>urn:sha1:08080df2d9de877ae79028f20960b6b2417d4f20</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fuzz_tests: add a test for utf8canonical</title>
<updated>2020-12-14T19:40:24Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-12-14T14:25:44Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=0660db3e7a0f561ecd70c0cecc3bbf267534021b'/>
<id>urn:sha1:0660db3e7a0f561ecd70c0cecc3bbf267534021b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>replace most boost serialization with existing monero serialization</title>
<updated>2020-08-17T16:23:58Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-06-24T23:26:58Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=7175dcb1078abbdaa130a8c5f5fd2b93fa7b3086'/>
<id>urn:sha1:7175dcb1078abbdaa130a8c5f5fd2b93fa7b3086</id>
<content type='text'>
This reduces the attack surface for data that can come from
malicious sources (exported output and key images, multisig
transactions...) since the monero serialization is already
exposed to the outside, and the boost lib we were using had
a few known crashers.

For interoperability, a new load-deprecated-formats wallet
setting is added (off by default). This allows loading boost
format data if there is no alternative. It will likely go
at some point, along with the ability to load those.

Notably, the peer lists file still uses the boost serialization
code, as the data it stores is define in epee, while the new
serialization code is in monero, and migrating it was fairly
hairy. Since this file is local and not obtained from anyone
else, the marginal risk is minimal, but it could be migrated
later if needed.

Some tests and tools also do, this will stay as is for now.
</content>
</entry>
<entry>
<title>fuzz_tests: add a tx extra fuzz test</title>
<updated>2020-06-14T12:54:10Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2020-05-16T11:43:45Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=38ca1bb389e1548fabd80dc314d805605248fb69'/>
<id>urn:sha1:38ca1bb389e1548fabd80dc314d805605248fb69</id>
<content type='text'>
</content>
</entry>
<entry>
<title>wallet2: only export necessary outputs and key images</title>
<updated>2018-11-04T22:27:01Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-10-24T18:24:11Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=8d71b2b1b3714a13d46247ed7342a1ad292c488d'/>
<id>urn:sha1:8d71b2b1b3714a13d46247ed7342a1ad292c488d</id>
<content type='text'>
and disable annoying test that requires ridiculous amounts
of skullduggery every time some format changes
</content>
</entry>
<entry>
<title>tests: update test wallet keys file for encrypted keys</title>
<updated>2018-09-15T09:34:11Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-09-15T09:25:17Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=27af46c9308b98b5f282ec50ae1d953cff025766'/>
<id>urn:sha1:27af46c9308b98b5f282ec50ae1d953cff025766</id>
<content type='text'>
</content>
</entry>
</feed>
