sort by:
Revision Author Date Message Commit Date
70604b0 Manifest: Prevent having two octez-libs with the same internal 18 August 2023, 13:24:05 UTC
fde620f Manifest: Remove sub-libs links in octez-libs doc 18 August 2023, 13:24:05 UTC
a4209db Manifest: Update synopsis of octez-libs sublibs 18 August 2023, 13:24:05 UTC
c43be26 Manifest: Allow description to octez-libs sublibs 18 August 2023, 13:24:05 UTC
0519413 Manifest: Add synopsis to octez-libs 18 August 2023, 13:24:05 UTC
82e7dd5 Merge tezos/tezos!9716: Proto: refactors cost functions further Co-authored-by: Jun Furuse <jun.furuse@dailambda.jp> Approved-by: satos <sota.sato@dailambda.jp> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> Approved-by: taiseiKMC <hiromasa.saito@dailambda.jp> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9716 18 August 2023, 12:52:34 UTC
290ca95 Proto: refactors cost functions further, keeping all the parameters 18 August 2023, 12:19:46 UTC
76d05d2 Merge tezos/tezos!9831: Smart rollup: refactor a bit last whitelist update code for private rollup Co-authored-by: Sylvain Ribstein <sylvain.ribstein@gmail.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Julien Coolen <julien.coolen@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9831 18 August 2023, 12:18:51 UTC
a83b5b1 proto/test: fix update whitelist test the last whitelist update is now initialized at (0,0). Test needs to be fixed so they uses valid level/index. 18 August 2023, 11:52:28 UTC
6b837a8 proto/soru: initialize whitelist watermark store at origination 18 August 2023, 11:52:27 UTC
763ee3f proto/soru: add last_whitelist_update in storage 18 August 2023, 11:52:26 UTC
bb83849 proto/soru: move `last_whitelist_update` in sc_rollup_whitelist_repr 18 August 2023, 11:52:25 UTC
78b285c proto/soru: open whitelist_repr in _storage 18 August 2023, 11:52:24 UTC
20ea732 Merge tezos/tezos!9772: WASM: Freeze the second revision of the WASM PVM Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Killian Delarue <killian.delarue@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9772 18 August 2023, 11:30:43 UTC
ce20045 WASM: Freeze the second revision of the WASM PVM 18 August 2023, 11:06:05 UTC
11114c9 Merge tezos/tezos!9742: Testnet stresstest devtools - Generate baker accounts Co-authored-by: Gabriel Moise <gabriel.moise@trili.tech> Co-authored-by: Andrea Cerone <andrea.cerone@trili.tech> Approved-by: Gauthier <gauthier@marigold.dev> Approved-by: Emma Turner <1623821-emturner@users.noreply.gitlab.com> Approved-by: Ryan Tan <ryan.tan@trili.tech> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9742 18 August 2023, 11:05:24 UTC
fe4ef8f Testnet experiments: Fixup_6 18 August 2023, 10:27:31 UTC
df1528e Testnet experiments: Fixup_5 18 August 2023, 10:27:31 UTC
72a10e5 Testnet experiments: Fixup_4 18 August 2023, 10:27:31 UTC
efe75c4 Testnet_experiments: Fixup_3 - Add gen_keys directory 18 August 2023, 10:27:30 UTC
c035d3f Testnet_experiments: Fixup_2 18 August 2023, 10:27:30 UTC
57c7ce6 Testnet_experiments: Fixup_1 18 August 2023, 10:27:30 UTC
e949f76 Testnet experiments: Generate baker accounts 18 August 2023, 10:27:30 UTC
17b5d1e Merge tezos/tezos!9575: Octogram: Write experiments and scenarios in Yaml scripts Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Raphaël Proust <code@bnwr.net> Approved-by: François Thiré <francois.thire@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9575 18 August 2023, 10:23:57 UTC
9b2f86f Octogram: Write experiments and scenarios in Yaml scripts Octogram is an abstraction layer on top of Tezt’s amazing orchestration features whose purpose is to provide a scriptable interface to run complex and large scale scenarios on remote runners. Scenarios are written in a Yaml file whose structure takes heavy inspiration from Ansible. As of now, Octogram supports the following features: - Define stages expected to run on a subset of the known agents defined by regular expressions. These regular expressions can capture part of the agent name to personalize each jobs. By default, agents run a stage concurrently, but it is also possible to run a stage sequentially on each agent. - Stages are defined as a collection of jobs which can either be run concurrently or sequentially. These jobs consists in executing a specific command. As of now, three commands are executed: (1) copy a file from the orchestrator to the agent, start a new Octez node on the agent, and (2) originate a new smart rollup from within the agent. Jobs have access to global variables. They get a copy of them when they are started, and they update the latest version of the global variables once they have finished to execute. - One job can be run several time using the `with_items' field. Each item in the list is derived into a unique job, when the `item' variable is accordingly set. By default, jobs derived fro a `with_items' field are run sequentially, but they can also be run concurrently if necessary. For instance, it is possible to concurrently deploy a list of files to an agent by listing them in a `with_items' field. - Jobs can update the global variables once they have completed. This is useful to transfer information over one job to the subsequent ones. - Allow cross-agent requests thanks to a global scheme of URI. As of now, it is possible to prefix the name of an Octez node chosen by Tezt by the name of the agent which manages them. So for instance, if the agent `node' has spawn an Octez node whose assigned name is `node1', then `node://node1' can be used whenever a node’s endpoint is expected. 18 August 2023, 09:36:35 UTC
534268c Merge tezos/tezos!9657: Move cost parts in michelson_v1_gas to _costs Co-authored-by: taiseiKMC <hiromasa.saito@dailambda.jp> Approved-by: satos <sota.sato@dailambda.jp> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9657 18 August 2023, 07:14:50 UTC
a3f5719 Proto: Adopt cost_N_IConcat_* to auto-generated style 18 August 2023, 06:44:25 UTC
96750ac Proto: Rename cost_N_IMap_* in Michelson_v1_gas_costs Not to override ones in Michelson_v1_gas_costs_generated 18 August 2023, 06:44:25 UTC
aed37c5 Proto: Move cost functions for concat to _costs 18 August 2023, 06:44:24 UTC
f4f0a84 Proto: Move cost parts in michelson_v1_gas to _costs Move cost parts in set_mem, set_update, map_mem, map_update to michelson_v1_gas_costs with type fixes 18 August 2023, 06:43:58 UTC
1f0603f Merge tezos/tezos!9821: devtools/yes-wallet: allows percentage to be 100 Co-authored-by: Julien Tesson <julien.tesson@nomadic-labs.com> Approved-by: Mathias Bourgoin <mathias.bourgoin@nomadic-labs.com> Approved-by: Germán Delbianco <german@nomadic-labs.com> Approved-by: Albin Coquereau <pro.acoquer@protonmail.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9821 17 August 2023, 18:49:12 UTC
bc655be devtools/yes-wallet: allows percentage to be 100 17 August 2023, 18:20:32 UTC
ff3a210 Merge tezos/tezos!9818: Devtools: script to port patch to different proto or env Co-authored-by: Julien Tesson <julien.tesson@nomadic-labs.com> Approved-by: Victor Allombert <victor.allombert@nomadic-labs.com> Approved-by: Mathias Bourgoin <mathias.bourgoin@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9818 17 August 2023, 18:19:50 UTC
88477ac devtools: script to adapt env patch to a given env number 17 August 2023, 17:54:20 UTC
91a2dcd devtools: script to apply proto patch on a given proto version 17 August 2023, 17:54:20 UTC
511efad Merge tezos/tezos!9503: Move the cost defs in Proto to xxx_costs.ml Co-authored-by: taiseiKMC <hiromasa.saito@dailambda.jp> Co-authored-by: Jun Furuse <jun.furuse@dailambda.jp> Approved-by: satos <sota.sato@dailambda.jp> Approved-by: Pavlo Khrystenko <p.khrystenko@gmail.com> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9503 17 August 2023, 17:53:36 UTC
e61c983 Proto: Update TEZOS_PROTOCOL It needs to do topological sort because a new dependency from Ticket_hash_builder to Global_constants_costs is added 17 August 2023, 17:07:06 UTC
623ad5a Proto: Update script_repr, script_repr_costs Move cost_strip_annotations to script_repr_costs.ml 17 August 2023, 17:07:06 UTC
c301b9d Proto: Update ticket_hash_builder.hash_bytes_costs Change it to the original definition 17 August 2023, 17:07:06 UTC
073748a Proto: moves cost functions to cost files 17 August 2023, 17:07:06 UTC
c34607a Proto: Removes dependency of Michelson_v1_gas_costs on Alpha_context 17 August 2023, 17:07:06 UTC
dea80b7 Proto: Add cache_repr_costs.ml - Move Cache_costs module to cahce_repr_costs.ml - Add cost_CACHE_UPDATE function for easy updating of the cost function 17 August 2023, 17:07:06 UTC
94ed5cf Proto: Add script_repr_costs.ml Move micheline costs to script_repr_costs.ml Remove functions that turned to be unused by this change 17 August 2023, 17:07:06 UTC
c73853b Proto: Add sapling_storage_costs.ml Move sapling_apply_diff_costs to sapling_storage_costs.ml 17 August 2023, 17:07:06 UTC
5965798 Merge tezos/tezos!9659: EVM: upgrade test with migration sanity checks Co-authored-by: Rodi-Can Bozman <rodi.bozman@functori.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Pierre-Louis Dubois <pierrelouis.dubois@tutanota.com> Approved-by: Joel Bjornson <joel.bjornson@trili.tech> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9659 17 August 2023, 17:06:18 UTC
9047fd1 EVM/Tezt: patch for the framing protocol target byte The last deployed ghostnet EVM rollup are not aware of the framing protocol target byte, this patch is needed in order for the migration protocol to work properly. 17 August 2023, 16:38:18 UTC
326e8ba EVM/Tezt: upgrade test with migration sanity checks 17 August 2023, 16:38:17 UTC
3c8d8a2 EVM/Tezt: add config setup integrity check 17 August 2023, 16:38:17 UTC
7b9ee91 EVM/Tezt: add block integrity check 17 August 2023, 16:38:17 UTC
00cd095 EVM/Tezt: add transaction receipt to tranfer results 17 August 2023, 16:38:17 UTC
5b0e0c7 Tezt/Ethereum: update transaction receipt structure 17 August 2023, 16:38:17 UTC
e6b6463 EVM/Tezt: refactor the transfer function to extract a transfer_result 17 August 2023, 16:38:17 UTC
37b44f4 EVM/Tezt: make a default bootstrap account balance value 17 August 2023, 16:38:17 UTC
0251df6 EVM/Tezt: add latest ghostnet's EVM kernel [Version 4c111dcae061bea6c3616429a0ea1262ce6c174f] 17 August 2023, 16:38:17 UTC
d8e41fd Merge tezos/tezos!9823: Proto: activate private rollups on testnets Co-authored-by: julien <julien.coolen@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9823 17 August 2023, 16:37:36 UTC
3423f8f Proto: activate private rollups on testnets 17 August 2023, 16:04:05 UTC
8e486ca Merge tezos/tezos!9741: Snoop: add allocation benchmarks for constant time operations Co-authored-by: Sota Sato <sota.sato@dailambda.jp> Approved-by: Jun Furuse <jun.furuse@gmail.com> Approved-by: KOBAYASHI Kazuhiro <kazuhiro.kobayashi@dailambda.jp> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9741 17 August 2023, 16:03:10 UTC
323a97c lib_benchmarks_proto: add allocation benchmarks for const1 models 17 August 2023, 15:29:11 UTC
a6015e2 lib_benchmarks_proto: register allocation models for const1 models 17 August 2023, 15:29:11 UTC
167c7c6 lib_benchmarks_proto: add time_alloc benchmark generators 17 August 2023, 15:29:11 UTC
6938b2d Merge tezos/tezos!9804: Proto: Migrate from Oxford Co-authored-by: Thomas Letan <lthms@nomadic-labs.com> Approved-by: Sylvain R. <sylvain.ribstein@nomadic-labs.com> Approved-by: Julien <julien.tesson@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9804 17 August 2023, 15:28:10 UTC
c4cb4a4 Proto: Migrate from Oxford Co-authored-by: Albin Coquereau <albin.coquereau@nomadic-labs.com> 17 August 2023, 15:01:48 UTC
95f1804 Merge tezos/tezos!9618: Proto/Sc_rollup: Replace legacy bindings with let constructs Co-authored-by: Gabriel Moise <gabriel.moise@trili.tech> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> Approved-by: Joel Bjornson <joel.bjornson@trili.tech> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9618 17 August 2023, 14:32:21 UTC
6594b4f Proto/Sc_rollup: Replace legacy bindings with let constructs 17 August 2023, 14:05:51 UTC
2ac78a7 Merge tezos/tezos!9708: Add simple profiler to stdlib Co-authored-by: Benjamin Canou <benjamin@canou.fr> Approved-by: Andrea Cerone <andrea.cerone@trili.tech> Approved-by: Gabriel Moise <gabriel.moise@trili.tech> Approved-by: Gauthier <gauthier@marigold.dev> Approved-by: vbot <vincent.botbol@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9708 17 August 2023, 14:05:05 UTC
df7de6c Stdlib: add profiler backend 17 August 2023, 13:36:35 UTC
e41a124 Stdlib: add profiler interface 17 August 2023, 13:36:35 UTC
ead1edc Merge tezos/tezos!9617: Proto/Zk_rollup: Replace legacy bindings with let constructs Co-authored-by: Gabriel Moise <gabriel.moise@trili.tech> Approved-by: Joel Bjornson <joel.bjornson@trili.tech> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9617 17 August 2023, 13:35:13 UTC
9aeed12 fixup: Address comment 17 August 2023, 13:07:13 UTC
184429f Proto/Zk_rollup: Replace legacy bindings with let constructs 17 August 2023, 13:07:13 UTC
2881eeb Merge tezos/tezos!9740: Dal/Infra: Terraform for deploying VM Co-authored-by: lin <linoshitani@gmail.com> Approved-by: François Thiré <francois.thire@nomadic-labs.com> Approved-by: Charles Nguyen <charles.nguyen@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9740 17 August 2023, 12:55:39 UTC
c7c4c3c Dal/Infra: Various fixes from linting and fix readme 17 August 2023, 12:21:22 UTC
92af388 Dal/Infra: Remove unsused variables and unused ports 17 August 2023, 12:21:22 UTC
000b78e Dal/Infra: Remove unnecessary startup script 17 August 2023, 12:21:22 UTC
f6ec45a Dal/Infra: Improve variable naming and documentation 17 August 2023, 12:21:22 UTC
48b07e6 Dal/Infra: Extract machine_type as variable 17 August 2023, 12:21:22 UTC
f3425da Dal/Infra: Run terraform fmt 17 August 2023, 12:21:22 UTC
4558b1f Dal/Infra: Add main/README.md 17 August 2023, 12:21:22 UTC
8bd7314 Dal/Infra: Remove hardcoded user-specific strings They will be provided via CLI arguments See README in next commit. 17 August 2023, 12:21:22 UTC
2b7a2f7 Dal/Infra: Use custom docker image 17 August 2023, 12:21:22 UTC
3cea161 Dal/Infra: Stop adding SSH keys in docker startup script The container we built should already have the SSH keys in authorized_keys 17 August 2023, 12:21:22 UTC
650b0b0 Dal/Infra: Copy-and-paste terraform code for deploying VM Copy-and-pasted from Eugen's branch in terraform-base. 17 August 2023, 12:21:22 UTC
43fd87f Merge tezos/tezos!9737: Snoop: Autobuild cli change for benchmark/model/parameter Co-authored-by: Pavlo Khrystenko <p.khrystenko@gmail.com> Approved-by: Jun Furuse <jun.furuse@gmail.com> Approved-by: satos <sota.sato@dailambda.jp> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9737 17 August 2023, 12:20:36 UTC
8e39d98 remove printing 17 August 2023, 11:23:11 UTC
87787e1 Snoop: Change codegen for benchmark/model/parameter cli command 17 August 2023, 11:23:11 UTC
cb5c1c4 Merge tezos/tezos!9826: v17, Docs: Fix v17 release page title Co-authored-by: Killian Delarue <killian.delarue@nomadic-labs.com> Approved-by: Nicolas Ayache <nicolas.ayache@nomadic-labs.com> Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9826 17 August 2023, 11:22:26 UTC
d9f4e71 v17, Docs: Fix v17 release page title 17 August 2023, 10:57:23 UTC
25b62be Merge tezos/tezos!9733: EVM/Proxy: set the next version to be deployed Co-authored-by: Rodi-Can Bozman <rodi.bozman@functori.com> Approved-by: Emma Turner <1623821-emturner@users.noreply.gitlab.com> Approved-by: Valentin Chaboche <valentin.chaboche@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9733 17 August 2023, 10:56:02 UTC
11fc3a3 EVM/Proxy: set the next version to be deployed 4c111dcae061bea6c3616429a0ea1262ce6c174f Based on the commit merge of the kernel versionning. 17 August 2023, 10:01:35 UTC
956d0b9 Merge tezos/tezos!9774: Proto/Test_Sc_rollup: Replace legacy bindings with let constructs Co-authored-by: Gabriel Moise <gabriel.moise@trili.tech> Approved-by: Joel Bjornson <joel.bjornson@trili.tech> Approved-by: Raphaël Proust <code@bnwr.net> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9774 17 August 2023, 10:00:51 UTC
55b2740 Proto/Test_Sc_rollup: Replace legacy bindings with let constructs 17 August 2023, 09:29:54 UTC
9b513c6 Merge tezos/tezos!9731: v18, v17, Docs: Documentation for Octez v18.0~rc1 and Octez v17.3 Co-authored-by: Killian Delarue <killian.delarue@nomadic-labs.com> Approved-by: Germán Delbianco <german@nomadic-labs.com> Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com> Approved-by: Thomas Letan <lthms@nomadic-labs.com> See merge request https://gitlab.com/tezos/tezos/-/merge_requests/9731 17 August 2023, 09:03:59 UTC
6761bf6 Docs, OpenApi: Generate openapi for Oxford 17 August 2023, 08:35:19 UTC
fc5eef1 OpenApi: Use Oxford for openapi generation 17 August 2023, 08:35:19 UTC
c614ebd Docs, OpenApi: Regenerate OpenApi for Nairobi on v18.0~rc1 17 August 2023, 08:35:19 UTC
3231249 Docs, OpenApi: Regenerate OpenApi for Octez v18.0~rc1 17 August 2023, 08:35:19 UTC
186f5ac Openapi: Update openapi generation script for release candidate 17 August 2023, 08:35:19 UTC
8ea5d6f Docs, v18: Snapshot changelogs for Octez v18.0~rc1 17 August 2023, 08:35:18 UTC
7ef3942 Docs, v18: Release page for Octez v18.0~rc1 17 August 2023, 08:35:18 UTC
489a7f1 Docs, Changelogs: Add changelog section for Octez v17.3 17 August 2023, 08:35:18 UTC
back to top