https://gitlab.com/tezos/tezos

sort by:
Revision Author Date Message Commit Date
2f7b6c6 Merge tezos/tezos!11420: DAL/Tests: fix slots_headers_tracking test Co-authored-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11420 05 January 2024, 17:29:58 UTC
a29e434 DAL/Tests: fix flakiness by waiting for the right L1 level 05 January 2024, 17:08:20 UTC
34f9494 DAL/Node: fix description of Unseen_or_not_finalized Note that the name "Unseen" would be more appropriate, because the DAL node only sees finalized blocks. However we do not do a renaming here. 05 January 2024, 17:08:20 UTC
694ff24 DAL/Tests: extend test to check patch_commitment RPC 05 January 2024, 17:08:20 UTC
a323095 DAL/Tests: fix slots_headers_tracking test It was expecting the wrong statuses; it passed, because the status checking was done incorrectly. 05 January 2024, 17:08:20 UTC
7f1e509 Merge tezos/tezos!11352: EVM/Node: add private RPC server Co-authored-by: Antonio Locascio <antonio.locascio@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11352 05 January 2024, 16:05:20 UTC
d59e0ac Tezt/EVM node: add support for private RPC server 05 January 2024, 15:38:44 UTC
9a02c70 EVM/Node: add private RPC server 05 January 2024, 15:38:44 UTC
b96c5ee EVM/Node: add private RPC directory 05 January 2024, 15:38:43 UTC
4864352 EVM/Node: add private rpc port to config 05 January 2024, 15:38:43 UTC
d48e081 Merge tezos/tezos!11231: Packages: Experimental EVM node package Co-authored-by: Chris Pinnock <chris_pinnock@mac.com> Approved-by: pietro <pietro.abate@nomadic-labs.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Boubacar Sall <boubacar@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11231 05 January 2024, 14:23:44 UTC
d1642b6 Packages: Experimental EVM node package 05 January 2024, 14:14:51 UTC
6441b4e Merge tezos/tezos!11438: DAL: Better encoding for POST /slot input Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11438 05 January 2024, 14:14:08 UTC
f3f859e DAL: Better encoding for POST /slot input `Data_encoding.string` forces to prefix the contents of the string with its length. But it turns out our HTTP stack already prefixes the input of a request with its size. In practise, it means the input needs to be prefixed twice, which is unfortunate. You can verify with the following script (`post_dal_file.sh') to generate a valid Data_encoding encoded string. #!/usr/bin/bash path="${1}" target="${2}" file_size="$(cat "${path}" | wc -c)" slot_size_bin="$(printf "%08x" "${file_size}")" slot_contents="$(cat ${path} | xxd -p)" echo -n "${slot_size_bin}${slot_contents}" | xxd -p -r > "${target}" We can use it to generate a (expectedly valid) input for the RPC from an arbitrary file. Before the patch, $ ./post_dal_file.sh README.md input.bin $ curl localhost:10732/slot --data-binary @input.bin \ -H 'Content-Type: application/octet-stream' # fails with an error “Not enough data” After the patch $ ./post_dal_file.sh README.md input.bin $ curl localhost:10732/slot --data-binary @input.bin \ -H 'Content-Type: application/octet-stream' {"commitment":"[…]","commitment_proof":"[…]"} It works because Variable.string allows to not prefix a string by consuming every remaining bytes of a byte stream of already known size. 05 January 2024, 13:44:49 UTC
5381d55 Merge tezos/tezos!11430: Opam/Signer: fix ledgertezos_wallet version Co-authored-by: Rodi-Can Bozman <rodi.bozman@functori.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: Raphaël Proust <code@bnwr.net> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11430 05 January 2024, 11:20:40 UTC
b5bf41c Signer/Ledger: readapt monadic bindings to 0.4.0 function signatures 05 January 2024, 10:48:57 UTC
953d464 CI: use dependency 10484448ff930f532ef97d0d381ddd9e08f43441 05 January 2024, 10:48:57 UTC
b067bd1 Opam: set full opam repo tag to cbef5a5f6021e22273d68a59b37ba23ef2063222 05 January 2024, 10:48:57 UTC
fafd323 Opam/Manifest: ledgerwallet_tezos >= 0.4.0 05 January 2024, 10:48:57 UTC
ef573bf Merge tezos/tezos!11285: DAL: add rounds to attestations Co-authored-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11285 04 January 2024, 16:12:55 UTC
961120d Alpha: mention changes 04 January 2024, 15:52:25 UTC
cf3d3bb Kaitai: update ksy files 04 January 2024, 15:52:25 UTC
2e59dd9 DAL/Tezt: use bake_for for all delegates This makes `bake_for --minimal-timestamp` bake at round 0, which matches the default round for DAL attestations, thus autoamtically fixing most tests 04 January 2024, 15:52:25 UTC
4959559 DAL/Tezt: add rounds to DAL attestations 04 January 2024, 15:52:24 UTC
636cb99 Proto/Alpha: also prefilter DAL attestations from the far future 04 January 2024, 15:52:24 UTC
4a4068c DAL/Alpha: use the round in attestation weight and conflicts 04 January 2024, 15:52:24 UTC
6f149a7 DAL/Alpha: take attestation round into account when validating 04 January 2024, 15:52:24 UTC
64311b1 DAL/Alpha: add a round field to attestations 04 January 2024, 15:52:24 UTC
70b8036 Merge tezos/tezos!11415: DAL/Crypto: fix parameters' check in DAL manual tests Co-authored-by: Julien Coolen <julien.coolen@nomadic-labs.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11415 04 January 2024, 15:51:42 UTC
e3a7854 DAL/crypto: fix parameters' check in DAL manual tests 04 January 2024, 15:18:58 UTC
8d08ad2 Merge tezos/tezos!11429: evm-kernel: fix typo in message Co-authored-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> Approved-by: Rodi-Can Bozman <rodi.bozman@functori.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11429 04 January 2024, 13:33:58 UTC
4500b4a evm-kernel: fix typo in message 04 January 2024, 13:14:01 UTC
0b43c41 Merge tezos/tezos!11308: Format and test all shell scripts Co-authored-by: Pietro Abate <pietro.abate@nomadic-labs.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Philippe Wang <philippe.wang@gmail.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11308 04 January 2024, 12:35:52 UTC
3293545 All: reformat all shell scripts using shfmt 04 January 2024, 12:04:03 UTC
e374b4d scripts: use /usr/bin/env for bash invocation 04 January 2024, 12:04:03 UTC
f6198f8 ci: update opam-repository sha 04 January 2024, 12:04:03 UTC
40a8d90 ci: add shfmt to lint.sh script 04 January 2024, 12:04:03 UTC
ec496ec Merge tezos/tezos!11205: CI: reset FF_KUBERNETES_HONOR_ENTRYPOINT = false Co-authored-by: Pietro Abate <pietro.abate@nomadic-labs.com> Approved-by: Neo <11726174-neo.nl@users.noreply.gitlab.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11205 04 January 2024, 11:54:18 UTC
1fa0b2d ci: fix build scripts for gcp 04 January 2024, 10:17:11 UTC
757287a ci: set FF_KUBERNETES_HONOR_ENTRYPOINT: false 04 January 2024, 10:17:11 UTC
31b3747 Merge tezos/tezos!11105: Typo doc Co-authored-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> Co-authored-by: Zettez <1766551-zettez@users.noreply.gitlab.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Tezos Merbocop <merbocop@cryptium.ch> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11105 04 January 2024, 09:42:47 UTC
45d4f89 doc: update supported OSes for installing Tezos 04 January 2024, 09:23:35 UTC
26c74a7 doc: fix various typos in howtouse.rst 04 January 2024, 09:23:34 UTC
3e341a0 doc: fix def & explanation for refutation and commitment periods 04 January 2024, 09:23:34 UTC
b8ffb67 doc: fix link in release changelog 04 January 2024, 09:23:34 UTC
c4fef28 doc: remove remaining trace of the smart-rollup-client 04 January 2024, 09:23:34 UTC
9f33821 doc: one more side typo fix 04 January 2024, 09:23:34 UTC
8217185 doc: fix other typos in touched files 04 January 2024, 09:23:34 UTC
ac79411 doc: add link from smart rollups to the sdk 04 January 2024, 09:23:34 UTC
bee1004 doc: fix address of rollup not rollup node 04 January 2024, 09:23:34 UTC
5f6610b Merge tezos/tezos!11424: DAL/Node: Fix registration for `/slot` RPC Co-authored-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Mohamed IGUERNLALA <iguer@functori.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11424 04 January 2024, 09:02:21 UTC
f82e212 DAL/Node: Fix registration for `/slot` RPC 04 January 2024, 08:39:16 UTC
5132fb8 Merge tezos/tezos!11410: Docs: fix multinetwork.rst Co-authored-by: Dmitry Mir <dmirgaleev@mail.ru> Approved-by: Tezos Merbocop <merbocop@cryptium.ch> Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11410 04 January 2024, 08:30:13 UTC
b429f89 fix multinetwork.rst 04 January 2024, 08:03:18 UTC
7e5cce3 Merge tezos/tezos!11235: evm/kernel: add tx to delayed inbox Co-authored-by: Pierre-Louis <pierrelouis.dubois@tutanota.com> Co-authored-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Antonio Locascio <antonio.locascio1@gmail.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11235 03 January 2024, 18:25:45 UTC
5688a23 evm/sequencer: test tx are saved in delayed inbox 03 January 2024, 17:56:31 UTC
1633c84 evm/kernel: add delayed bridge in evm config 03 January 2024, 17:56:31 UTC
dc3e8c0 evm/kernel: add path to delayed inbox in test 03 January 2024, 17:56:30 UTC
6e6af44 evm/kernel: add delayed tx to delayed inbox 03 January 2024, 17:56:30 UTC
cfab63a EVM/Kernel: introduce stage one configuration 03 January 2024, 17:56:11 UTC
b407a9e evm/kernel: accept transactions from delayed bridge 03 January 2024, 17:46:12 UTC
ac3da27 evm/kernel: add bridge contract in storage 03 January 2024, 17:46:11 UTC
210a56e kernel/evm: remove mutability of host in storage 03 January 2024, 17:46:11 UTC
0544a37 evm/sequencer: add a proxy contract to submit tx 03 January 2024, 17:46:10 UTC
2c145cf Merge tezos/tezos!10419: Docs: update guidelines to allow MR refs in comments Co-authored-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> Co-authored-by: Raphaël Proust <code@bnwr.net> Approved-by: Raphaël Cauderlier <raphael.cauderlier@nomadic-labs.com> Approved-by: Tezos Merbocop <merbocop@cryptium.ch> Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/10419 03 January 2024, 17:33:23 UTC
e57f66e doc: explain common cases for referring to an MR instead of an issue 03 January 2024, 17:11:39 UTC
805e269 doc: only FIXME tags may refer to MRs 03 January 2024, 17:11:39 UTC
1bd9c4e doc: mention possible automated checks of todo/fixme tags 03 January 2024, 17:11:38 UTC
4176bce Docs: update guidelines to allow MR refs in comments 03 January 2024, 17:11:38 UTC
6a3c23f Merge tezos/tezos!11412: EVM/Kernel: make the reboot mechanism level-agnostic Co-authored-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Antonio Locascio <antonio.locascio1@gmail.com> Approved-by: Rodi-Can Bozman <rodi.bozman@functori.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11412 03 January 2024, 14:45:11 UTC
68c1c28 EVM/Tezt: update fallback test 03 January 2024, 14:12:07 UTC
bab5056 EVM/Kernel: adapt reboot tests 03 January 2024, 14:12:06 UTC
fd69752 EVM/Kernel: mention the migration reboot limitation in the code 03 January 2024, 14:12:06 UTC
d53a88c EVM/Kernel: make block in progress across levels possible 03 January 2024, 14:12:05 UTC
d312e88 EVM/Kernel: make the stage one a no-op if the inbox was consumed 03 January 2024, 14:12:05 UTC
c4a89d4 EVM/Kernel: reboot after an upgrade 03 January 2024, 14:12:05 UTC
ccfa0be Merge tezos/tezos!11376: Dal/Sc_rollup: remove risky code duplication Co-authored-by: iguerNL@Functori <iguer@functori.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Eugen Zalinescu <eugen.zalinescu@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11376 03 January 2024, 11:16:47 UTC
8478ced Sc_rollup/Dal: reuse function 'valid_published_level' when feeding kernels 03 January 2024, 10:55:02 UTC
c973794 Proto/Dal/Sc_rollup: export 'valid_published_level' in the alpha context 03 January 2024, 10:55:02 UTC
f546e50 Proto/Dal/Sc_rollup: export 'valid_published_level' with doc-string 03 January 2024, 10:55:02 UTC
bffbac4 Proto/Dal/Sc_rollup: refactoring&renaming before exporting the function 03 January 2024, 10:55:02 UTC
6672a3a Proto/Dal: rename Dal_proofs module to Dal_helpers 03 January 2024, 10:55:02 UTC
fd63939 Merge tezos/tezos!11111: evm/kernel: remove first element from the linked list Co-authored-by: Pierre-Louis <pierrelouis.dubois@tutanota.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Antonio Locascio <antonio.locascio1@gmail.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11111 03 January 2024, 10:54:18 UTC
b003da7 evm/kernel: test pop_first 03 January 2024, 10:06:36 UTC
d03b3ed evm/kernel: add fct to remove the first element 03 January 2024, 10:06:36 UTC
7df1e75 Merge tezos/tezos!11110: evm/kernel: read first element from the linked list Co-authored-by: Antonio Locascio <antonio.locascio@nomadic-labs.com> Co-authored-by: Pierre-Louis <pierrelouis.dubois@tutanota.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Antonio Locascio <antonio.locascio1@gmail.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11110 03 January 2024, 10:05:45 UTC
ba8cc9b EVM/Kernel: carry data type information in pointer 03 January 2024, 09:34:44 UTC
dcc7dcf evm/kernel: test get first elt from linked list 03 January 2024, 08:53:29 UTC
572f111 evm/kernel: add fct to retrieve the first element 03 January 2024, 08:53:28 UTC
d62abbd Merge tezos/tezos!11109: evm/kernel: remove element from the linked list Co-authored-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Co-authored-by: Pierre-Louis <pierrelouis.dubois@tutanota.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Antonio Locascio <antonio.locascio1@gmail.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11109 03 January 2024, 08:42:53 UTC
ec7c335 EVM/Kernel: implement remove_with_data for pointers 03 January 2024, 08:23:23 UTC
8aedfd0 EVM/Kernel: implement save/get data for pointers 03 January 2024, 08:23:23 UTC
6db87be EVM/Kernel: limit number of proptests It is 256 by default, it takes too long to execute everything because of these tests. 03 January 2024, 08:23:23 UTC
3ea8e29 EVM/Kernel: linked list get is actually find 03 January 2024, 08:23:23 UTC
4e0f881 evm/kernel: test remove element 03 January 2024, 08:23:23 UTC
66b66ec evm/kernel: add remove to linked list 03 January 2024, 08:23:23 UTC
4c93fab Merge tezos/tezos!11378: CI: Migrate CI job gitlab:release to GCP Co-authored-by: Neo <11726174-neo.nomadic@users.noreply.gitlab.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: pietro <pietro.abate@nomadic-labs.com> Approved-by: Philippe Wang <philippe.wang@gmail.com> Approved-by: Boubacar Sall <boubacar@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11378 02 January 2024, 19:55:39 UTC
4b917ae CI: Migrate CI job gitlab:release to GCP 02 January 2024, 19:55:39 UTC
10fc36b Merge tezos/tezos!11371: CI: Migrate CI job publish_kernel_sdk to GCP Co-authored-by: Neo <11726174-neo.nomadic@users.noreply.gitlab.com> Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com> Approved-by: pietro <pietro.abate@nomadic-labs.com> Approved-by: Philippe Wang <philippe.wang@gmail.com> Approved-by: Boubacar Sall <boubacar@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11371 02 January 2024, 19:34:29 UTC
02401b6 CI: Migrate CI job publish_kernel_sdk to GCP 02 January 2024, 19:13:43 UTC
back to top