From 765f9d591f6ed49b986a4f7ee2310519a9987358 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Fri, 4 Apr 2025 12:11:10 +0200 Subject: [PATCH 1/6] doc: fix typo on REWARDS_RATIO in changelog for Rio --- docs/protocols/022_rio.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/protocols/022_rio.rst b/docs/protocols/022_rio.rst index 714886a6c0a4..50f0f53b893c 100644 --- a/docs/protocols/022_rio.rst +++ b/docs/protocols/022_rio.rst @@ -43,7 +43,7 @@ Data Availability Layer attest trapped DAL slots lose their DAL rewards. (MRs :gl:`!15677`, :gl:`!15832`, :gl:`!15836`, :gl:`!16253`, :gl:`!16224`, :gl:`!16322`) -- Protocal parameter ``DAL_REWARDS_WEIGHT`` was added. +- Protocol parameter ``DAL_REWARDS_WEIGHT`` was added. Fields ``REWARDS_RATIO``, ``MINIMAL_PARTICIPATION_RATIO``, ``TRAPS_FRACTION`` were added to the protocol parameter ``DAL_PARAMETRIC``. (MRs :gl:`!15503`, :gl:`!15832`) -- GitLab From 423749eacdef599c263c822f14a9bc6b613f7a85 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Fri, 4 Apr 2025 14:57:36 +0200 Subject: [PATCH 2/6] doc: replace old link to RPC by label ref --- docs/developer/rpc_architecture.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/developer/rpc_architecture.rst b/docs/developer/rpc_architecture.rst index fbb5acb597ed..b8673c63e451 100644 --- a/docs/developer/rpc_architecture.rst +++ b/docs/developer/rpc_architecture.rst @@ -120,7 +120,7 @@ The number of callbacks is confusing. So let’s take a closer look to :src:`src/lib_rpc_http/RPC_middleware.ml`: - Cohttp runs a server. So a connection request received from - Client/Baker/Indexer/ arrives at Cohttp and then passed to Resto via + Client/Baker/Indexer/ arrives at Cohttp and then passed to Resto via ``make_transform_callback``. - Resto passes the callback to Cohttp at server start to deal with a connection @@ -199,7 +199,7 @@ In this HTTP response format, the server sends a series of chunks with size headers and separators (see link). The server closes the connection only once all the chunks have been sent. -.. mermaid:: +.. mermaid:: sequenceDiagram participant client as client @@ -231,7 +231,7 @@ OkStream :literal:`\`OkStream` is for returning not one single value but a sequence of different values that a variable can have in the ``octez-node``. E.g., the RPC entry point -`/monitor/heads/ `__ +:ref:`/monitor/heads/\ ` sends a sequence of blocks, one for each time the node changes head on the chain passed as parameter. @@ -484,4 +484,4 @@ with ``TEZOS_LOG="*->debug"`` and ``COHTTP_DEBUG=true``. See also ======== -- :doc:`./rpc_howto` \ No newline at end of file +- :doc:`./rpc_howto` -- GitLab From 669befdd9e97a21608493dafd8123d0d1adf21d2 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Fri, 4 Apr 2025 15:06:44 +0200 Subject: [PATCH 3/6] doc: update link to octez.tezos.com in README.rst --- docs/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.rst b/docs/README.rst index ca5aad27201c..c2a994ba836e 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -2,7 +2,7 @@ Documenting *********** -The documentation is available online at :doc:`https://tezos.gitlab.io <./index>`, +This documentation is available online at :doc:`https://octez.tezos.com/docs/ <./index>`, and always up to date with branch ``master`` on `GitLab `_. Building the documentation -- GitLab From 1bfc970d8f9159f4967ef6b6da2b76d442bac6c2 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 8 Apr 2025 10:32:36 +0200 Subject: [PATCH 4/6] doc: be slightly more precise on restarting services in version-22.rst --- docs/releases/version-22.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/releases/version-22.rst b/docs/releases/version-22.rst index d16d16105f8e..f85051563bf5 100644 --- a/docs/releases/version-22.rst +++ b/docs/releases/version-22.rst @@ -105,7 +105,8 @@ Note however that the Zcash parameters are in a different package now, which nee Furthermore, RPM packages are now available in a **dnf repository**. Installation instructions are detailed in :ref:`the documentation `. When upgrading to v22, you can start or restart the ``octez-baker.service`` that runs all bakers for supported protocols. -Alternatively, you can run them individually. For instance, to start a baker for the Quebec protocol, you can use the command:: + +Alternatively, you can run them individually. For instance, to start only the baker for the Quebec protocol, you can use the command:: $ sudo systemctl start octez-baker@PsQuebec -- GitLab From c85a363d1c0761ecfed97e1cec5b555832123035 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Tue, 15 Apr 2025 14:25:05 +0200 Subject: [PATCH 5/6] packages/tests: fix typo --- scripts/packaging/tests/rpm/rpm-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/packaging/tests/rpm/rpm-install.sh b/scripts/packaging/tests/rpm/rpm-install.sh index 9bf6d7285baa..e02867cd32b9 100755 --- a/scripts/packaging/tests/rpm/rpm-install.sh +++ b/scripts/packaging/tests/rpm/rpm-install.sh @@ -21,7 +21,7 @@ while [ "$(systemctl is-system-running)" = "offline" ]; do sleep 1 done -# Update and install the config-mananger plugin +# Update and install the config-manager plugin dnf -y update dnf -y install dnf-plugins-core -- GitLab From 6acefdb50059d9d36c3df85b6d7e8c97220cddb5 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Wed, 30 Apr 2025 16:50:37 +0200 Subject: [PATCH 6/6] doc: replace ref to RPC by web link b/c rst-check --- docs/developer/rpc_architecture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer/rpc_architecture.rst b/docs/developer/rpc_architecture.rst index b8673c63e451..b7075ad4b5fc 100644 --- a/docs/developer/rpc_architecture.rst +++ b/docs/developer/rpc_architecture.rst @@ -231,7 +231,7 @@ OkStream :literal:`\`OkStream` is for returning not one single value but a sequence of different values that a variable can have in the ``octez-node``. E.g., the RPC entry point -:ref:`/monitor/heads/\ ` +`/monitor/heads/\ `__ sends a sequence of blocks, one for each time the node changes head on the chain passed as parameter. -- GitLab