From 381a15f1185d2d12f9a0a1396ca738a057e9b154 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Tue, 17 Dec 2024 15:12:50 -0300 Subject: [PATCH 01/11] docs: release notes for 1.7.0 --- docs/release-notes/index.rst | 4 +- docs/release-notes/rockcraft-1-7-0.rst | 101 +++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 1 deletion(-) create mode 100644 docs/release-notes/rockcraft-1-7-0.rst diff --git a/docs/release-notes/index.rst b/docs/release-notes/index.rst index f03d8f1ee..05ad3469e 100644 --- a/docs/release-notes/index.rst +++ b/docs/release-notes/index.rst @@ -12,7 +12,7 @@ Current releases ---------------- -- . +- :ref:`Rockcraft 1.7.0 ` .. _release_policy_and_schedule: @@ -60,6 +60,8 @@ development keeps pace with the OS's new releases and support lifecycle. .. toctree:: :maxdepth: 1 + rockcraft-1-7-0 + .. release note template: diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst new file mode 100644 index 000000000..877544315 --- /dev/null +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -0,0 +1,101 @@ +.. _release-1.7.0: + +Rockcraft 1.7.0 release notes +============================= + +20 December 2024 + +Learn about the new features, changes, and fixes introduced in Rockcraft 1.7.0. +For information about the Rockcraft release cycle, see the +:ref:`release_policy_and_schedule`. + + +What's new +---------- + +Rockcraft 1.7.0 brings the following features, integrations, and improvements. + + +Support for remote builds +~~~~~~~~~~~~~~~~~~~~~~~~~ + +We've added support for remote builds, which are powered by Canonical's +Launchpad platform and allow you to build rocks for multiple architectures with +a single command. + +This feature is experimental and subject to change. Feel free to provide +feedback on the `Ubuntu Discourse`_ forum. + +Minor features +-------------- + +Rockcraft 1.7.0 brings the following minor changes. + + +"init" command +~~~~~~~~~~~~~~ + +- The base of the project file generated by the "rockcraft init" command has + been updated from "ubuntu@22.04" to "ubuntu@24.04". + + +Rockcraft snap +~~~~~~~~~~~~~~ + +- The Rockcraft snap has been updated from core22 to core24. + + +Go extension +~~~~~~~~~~~~ + +- The documentation for the "go-framework" extension has been updated with + improved tutorial and reference. + + +OCI image configuration +~~~~~~~~~~~~~~~~~~~~~~~ + +- When using "run-user: _daemon_", the value of the "Config.User" key in the + generated rock has been updated from the name ("_daemon_") to the numeric id. + + +12-factor documentation +~~~~~~~~~~~~~~~~~~~~~~~ + +- The documentation for the various 12-factor framework extensions has been + updated for clarity and to better conform with Canonical's guidelines. + + +Maven and Ant plugins +~~~~~~~~~~~~~~~~~~~~~ + +- Updated the Maven and Ant plugins to generate the "/usr/bin/java" path to the + Java runtime executable, instead of the "/bin/java" symlink which conflicts + with the user-merged Ubuntu base. + + +Fixed bugs and issues +--------------------- + +The following issues have been resolved in Rockcraft 1.7.1: + +- #659 Kubernetes ``runAsNonRoot`` incompatibility with ``run-user: _daemon_``. +- #749 Trying to build the output of "expand-extensions" fails because of the + pebble part. + + +Contributors +------------ + +We would like to express a big thank you to all the people who contributed to +this release. + +`@dariuszd21 `_, +`@erinecon `_, +`@javierdelapuente `_, +`@lengau `_, +`@linostar `_, +`@tigarmo `_ +and `@vpa1977 `_ + +.. _Ubuntu Discourse: https://discourse.ubuntu.com/c/rocks/rockcraft/118 From fa6c10466116c6d7b28afe38e7d67f05367e0041 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Wed, 18 Dec 2024 10:16:57 -0300 Subject: [PATCH 02/11] Apply suggestions from code review Co-authored-by: Michael DuBelko --- docs/release-notes/rockcraft-1-7-0.rst | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index 877544315..54641796b 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -19,9 +19,9 @@ Rockcraft 1.7.0 brings the following features, integrations, and improvements. Support for remote builds ~~~~~~~~~~~~~~~~~~~~~~~~~ -We've added support for remote builds, which are powered by Canonical's -Launchpad platform and allow you to build rocks for multiple architectures with -a single command. +We added support for remote builds, which leverage off-site compute for +building rocks and can build for multiple architectures with a single command. +Remote builds are hosted on Launchpad. This feature is experimental and subject to change. Feel free to provide feedback on the `Ubuntu Discourse`_ forum. @@ -35,35 +35,35 @@ Rockcraft 1.7.0 brings the following minor changes. "init" command ~~~~~~~~~~~~~~ -- The base of the project file generated by the "rockcraft init" command has +- The default base of the project file generated by the "rockcraft init" command has been updated from "ubuntu@22.04" to "ubuntu@24.04". Rockcraft snap ~~~~~~~~~~~~~~ -- The Rockcraft snap has been updated from core22 to core24. +The base of the Rockcraft snap was updated from core22 to core24. Go extension ~~~~~~~~~~~~ -- The documentation for the "go-framework" extension has been updated with - improved tutorial and reference. +A new :ref:`tutorial ` and :ref:`reference +` are available for the go-framework extension. OCI image configuration ~~~~~~~~~~~~~~~~~~~~~~~ - When using "run-user: _daemon_", the value of the "Config.User" key in the - generated rock has been updated from the name ("_daemon_") to the numeric id. + generated rock has been updated from the user name ("_daemon_") to its numeric ID. 12-factor documentation ~~~~~~~~~~~~~~~~~~~~~~~ - The documentation for the various 12-factor framework extensions has been - updated for clarity and to better conform with Canonical's guidelines. + updated for clarity and to better conform with documentation best practices. Maven and Ant plugins @@ -77,7 +77,7 @@ Maven and Ant plugins Fixed bugs and issues --------------------- -The following issues have been resolved in Rockcraft 1.7.1: +The following issues have been resolved in Rockcraft 1.7.0: - #659 Kubernetes ``runAsNonRoot`` incompatibility with ``run-user: _daemon_``. - #749 Trying to build the output of "expand-extensions" fails because of the From 9c09ae0fce845b571891cb741e8f3f476a407968 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Wed, 18 Dec 2024 10:58:58 -0300 Subject: [PATCH 03/11] changes from review --- docs/.wordlist.txt | 1 + docs/release-notes/index.rst | 1 + docs/release-notes/rockcraft-1-7-0.rst | 41 +++++++++++++++----------- docs/spellingcheck.yaml | 1 + tox.ini | 2 +- 5 files changed, 27 insertions(+), 19 deletions(-) diff --git a/docs/.wordlist.txt b/docs/.wordlist.txt index 4cc593c89..59017a744 100644 --- a/docs/.wordlist.txt +++ b/docs/.wordlist.txt @@ -54,6 +54,7 @@ hardcoded html https init +integrations interoperable io js diff --git a/docs/release-notes/index.rst b/docs/release-notes/index.rst index 05ad3469e..b21bd1dac 100644 --- a/docs/release-notes/index.rst +++ b/docs/release-notes/index.rst @@ -59,6 +59,7 @@ development keeps pace with the OS's new releases and support lifecycle. .. toctree:: :maxdepth: 1 + :hidden: rockcraft-1-7-0 diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index 54641796b..e346eb7de 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -32,11 +32,11 @@ Minor features Rockcraft 1.7.0 brings the following minor changes. -"init" command -~~~~~~~~~~~~~~ +``init`` command +~~~~~~~~~~~~~~~~ -- The default base of the project file generated by the "rockcraft init" command has - been updated from "ubuntu@22.04" to "ubuntu@24.04". +- The default base of the project file generated by ``rockcraft init`` has been + updated from "ubuntu@22.04" to "ubuntu@24.04". Rockcraft snap @@ -55,8 +55,9 @@ A new :ref:`tutorial ` and :ref:`reference OCI image configuration ~~~~~~~~~~~~~~~~~~~~~~~ -- When using "run-user: _daemon_", the value of the "Config.User" key in the - generated rock has been updated from the user name ("_daemon_") to its numeric ID. +- When using ``run-user: _daemon_``, the value of the ``Config.User`` key in the + generated rock has been updated from the user name (``_daemon_``) to its + numeric ID. 12-factor documentation @@ -69,9 +70,9 @@ OCI image configuration Maven and Ant plugins ~~~~~~~~~~~~~~~~~~~~~ -- Updated the Maven and Ant plugins to generate the "/usr/bin/java" path to the - Java runtime executable, instead of the "/bin/java" symlink which conflicts - with the user-merged Ubuntu base. +- Updated the Maven and Ant plugins to generate the ``/usr/bin/java`` path to + the Java runtime executable, instead of the ``/bin/java`` symlink which + conflicts with the user-merged Ubuntu base. Fixed bugs and issues @@ -79,8 +80,9 @@ Fixed bugs and issues The following issues have been resolved in Rockcraft 1.7.0: -- #659 Kubernetes ``runAsNonRoot`` incompatibility with ``run-user: _daemon_``. -- #749 Trying to build the output of "expand-extensions" fails because of the +- `#659`_ Kubernetes ``runAsNonRoot`` incompatibility with + ``run-user: _daemon_``. +- `#749`_ Trying to build the output of "expand-extensions" fails because of the pebble part. @@ -90,12 +92,15 @@ Contributors We would like to express a big thank you to all the people who contributed to this release. -`@dariuszd21 `_, -`@erinecon `_, -`@javierdelapuente `_, -`@lengau `_, -`@linostar `_, -`@tigarmo `_ -and `@vpa1977 `_ +:literalref:`@dariuszd21`, +:literalref:`@erinecon`, +:literalref:`@javierdelapuente`, +:literalref:`@lengau`, +:literalref:`@linostar`, +:literalref:`@tigarmo` +and :literalref:`@vpa1977`. .. _Ubuntu Discourse: https://discourse.ubuntu.com/c/rocks/rockcraft/118 + +.. _#659: https://github.com/canonical/rockcraft/issues/659 +.. _#749: https://github.com/canonical/rockcraft/issues/659 diff --git a/docs/spellingcheck.yaml b/docs/spellingcheck.yaml index 7e2b42248..f29972e06 100644 --- a/docs/spellingcheck.yaml +++ b/docs/spellingcheck.yaml @@ -26,3 +26,4 @@ matrix: - div.visually-hidden - img - a.p-navigation__link + - a.reference.external diff --git a/tox.ini b/tox.ini index bac1114d7..5842b9e68 100644 --- a/tox.ini +++ b/tox.ini @@ -58,5 +58,5 @@ commands = sphinx-autobuild {posargs: -W -b html --open-browser --port 8080} --w [testenv:lint-docs] description = Lint the documentation with sphinx-lint base = docs -commands = sphinx-lint --ignore docs/_build -e all {posargs} docs/ +commands = sphinx-lint --ignore docs/_build -e all -d missing-underscore-after-hyperlink,missing-space-in-hyperlink {posargs} docs/ labels = lint \ No newline at end of file From a64a8fdd18fd5e13e65c75b248073080392f52db Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Wed, 18 Dec 2024 11:03:12 -0300 Subject: [PATCH 04/11] fixup! changes from review --- docs/release-notes/rockcraft-1-7-0.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index e346eb7de..15d8a23f2 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -23,7 +23,8 @@ We added support for remote builds, which leverage off-site compute for building rocks and can build for multiple architectures with a single command. Remote builds are hosted on Launchpad. -This feature is experimental and subject to change. Feel free to provide +This feature is experimental and subject to change, and more information is +available by running ``rockcraft remote-build --help``. Feel free to provide feedback on the `Ubuntu Discourse`_ forum. Minor features From 648fc3236982c69b3462e33f8c0d27d390c96d3a Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Wed, 18 Dec 2024 11:06:10 -0300 Subject: [PATCH 05/11] fixup! fixup! changes from review --- Makefile | 2 +- docs/release-notes/rockcraft-1-7-0.rst | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index e15a40454..c549c7907 100644 --- a/Makefile +++ b/Makefile @@ -120,7 +120,7 @@ test-shellcheck: .PHONY: test-sphinx-lint test-sphinx-lint: - sphinx-lint --ignore docs/sphinx-starter-pack/ --ignore docs/_build --ignore docs/env --max-line-length 80 -e all docs/* + sphinx-lint --ignore docs/sphinx-starter-pack/ --ignore docs/_build --ignore docs/env --max-line-length 80 -e all -d missing-underscore-after-hyperlink,missing-space-in-hyperlink docs/* .PHONY: test-units test-units: ## Run unit tests. diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index 15d8a23f2..b13ae072c 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -36,8 +36,8 @@ Rockcraft 1.7.0 brings the following minor changes. ``init`` command ~~~~~~~~~~~~~~~~ -- The default base of the project file generated by ``rockcraft init`` has been - updated from "ubuntu@22.04" to "ubuntu@24.04". +The default base of the project file generated by ``rockcraft init`` has been +updated from "ubuntu@22.04" to "ubuntu@24.04". Rockcraft snap @@ -56,24 +56,24 @@ A new :ref:`tutorial ` and :ref:`reference OCI image configuration ~~~~~~~~~~~~~~~~~~~~~~~ -- When using ``run-user: _daemon_``, the value of the ``Config.User`` key in the - generated rock has been updated from the user name (``_daemon_``) to its - numeric ID. +When using ``run-user: _daemon_``, the value of the ``Config.User`` key in the +generated rock has been updated from the user name (``_daemon_``) to its +numeric ID. 12-factor documentation ~~~~~~~~~~~~~~~~~~~~~~~ -- The documentation for the various 12-factor framework extensions has been - updated for clarity and to better conform with documentation best practices. +The documentation for the various 12-factor framework extensions has been +updated for clarity and to better conform with documentation best practices. Maven and Ant plugins ~~~~~~~~~~~~~~~~~~~~~ -- Updated the Maven and Ant plugins to generate the ``/usr/bin/java`` path to - the Java runtime executable, instead of the ``/bin/java`` symlink which - conflicts with the user-merged Ubuntu base. +Updated the Maven and Ant plugins to generate the ``/usr/bin/java`` path to +the Java runtime executable, instead of the ``/bin/java`` symlink which +conflicts with the user-merged Ubuntu base. Fixed bugs and issues From 35ec5c913574f92c3be184019752a135f64a4006 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Wed, 18 Dec 2024 11:11:04 -0300 Subject: [PATCH 06/11] fixup! fixup! fixup! changes from review --- docs/release-notes/rockcraft-1-7-0.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index b13ae072c..d432f9e7d 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -71,11 +71,10 @@ updated for clarity and to better conform with documentation best practices. Maven and Ant plugins ~~~~~~~~~~~~~~~~~~~~~ -Updated the Maven and Ant plugins to generate the ``/usr/bin/java`` path to -the Java runtime executable, instead of the ``/bin/java`` symlink which +Changed the location of the Java runtime executable on rocks built using the +Maven and Ant plugins from ``/bin/java`` to ``/usr/bin/java``, as the former conflicts with the user-merged Ubuntu base. - Fixed bugs and issues --------------------- From f123af722e676673de6ab6960dbb56eb40dc04ab Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Thu, 19 Dec 2024 09:23:37 -0300 Subject: [PATCH 07/11] fixup! fixup! fixup! fixup! changes from review --- docs/release-notes/rockcraft-1-7-0.rst | 49 +++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 4 deletions(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index d432f9e7d..d94a6a926 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -10,6 +10,40 @@ For information about the Rockcraft release cycle, see the :ref:`release_policy_and_schedule`. +Requirements and compatibility +------------------------------ + +To run Rockcraft, a system requires the following minimum hardware and +installed software. These requirements apply to local hosts as well as VMs and +container hosts. + + +Minimum hardware requirements +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- AMD64, ARM64, ARMv7-M, RISC-V 64-bit, PowerPC 64-bit little-endian, or S390x + processor +- 2GB RAM +- 10GB available storage space +- Internet access for remote software sources and the Snap Store + + +Platform requirements +~~~~~~~~~~~~~~~~~~~~~ + +.. list-table:: + :header-rows: 1 + :widths: 1 3 3 + + * - Platform + - Version + - Software requirements + * - GNU/Linux + - Popular distributions that ship with systemd and are `compatible with + snapd `_ + - systemd + + What's new ---------- @@ -37,7 +71,7 @@ Rockcraft 1.7.0 brings the following minor changes. ~~~~~~~~~~~~~~~~ The default base of the project file generated by ``rockcraft init`` has been -updated from "ubuntu@22.04" to "ubuntu@24.04". +updated from ``ubuntu@22.04`` to ``ubuntu@24.04``. Rockcraft snap @@ -61,6 +95,13 @@ generated rock has been updated from the user name (``_daemon_``) to its numeric ID. +12-factor extensions +~~~~~~~~~~~~~~~~~~~~ + +We added support for Gunicorn async workers on the Django and Flask 12-factor +extensions. + + 12-factor documentation ~~~~~~~~~~~~~~~~~~~~~~~ @@ -71,9 +112,9 @@ updated for clarity and to better conform with documentation best practices. Maven and Ant plugins ~~~~~~~~~~~~~~~~~~~~~ -Changed the location of the Java runtime executable on rocks built using the -Maven and Ant plugins from ``/bin/java`` to ``/usr/bin/java``, as the former -conflicts with the user-merged Ubuntu base. +We changed the location of the Java runtime executable on rocks built using the +the Maven and Ant plugins from ``/bin/java`` to ``/usr/bin/java``, as the +former conflicts with the user-merged Ubuntu base. Fixed bugs and issues --------------------- From 95789caba518f32a2f1808c3f4dd23d8e193d71b Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Thu, 19 Dec 2024 16:19:53 -0300 Subject: [PATCH 08/11] Apply suggestions from code review Co-authored-by: Michael DuBelko --- docs/release-notes/index.rst | 2 +- docs/release-notes/rockcraft-1-7-0.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release-notes/index.rst b/docs/release-notes/index.rst index b21bd1dac..319280049 100644 --- a/docs/release-notes/index.rst +++ b/docs/release-notes/index.rst @@ -61,7 +61,7 @@ development keeps pace with the OS's new releases and support lifecycle. :maxdepth: 1 :hidden: - rockcraft-1-7-0 + Rockcraft 1.7.0 .. release note template: diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index d94a6a926..891b99c79 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -102,8 +102,8 @@ We added support for Gunicorn async workers on the Django and Flask 12-factor extensions. -12-factor documentation -~~~~~~~~~~~~~~~~~~~~~~~ +12-factor app documentation +~~~~~~~~~~~~~~~~~~~~~~~~~~~ The documentation for the various 12-factor framework extensions has been updated for clarity and to better conform with documentation best practices. From cb6af4f5f9c4a3d9ca75be023ad5a272a1ff8324 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Thu, 19 Dec 2024 16:23:18 -0300 Subject: [PATCH 09/11] fixup! Apply suggestions from code review --- docs/release-notes/rockcraft-1-7-0.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index 891b99c79..659e0dad4 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -95,11 +95,10 @@ generated rock has been updated from the user name (``_daemon_``) to its numeric ID. -12-factor extensions -~~~~~~~~~~~~~~~~~~~~ +12-factor app extensions +~~~~~~~~~~~~~~~~~~~~~~~~ -We added support for Gunicorn async workers on the Django and Flask 12-factor -extensions. +We added support for Gunicorn async workers on the Django and Flask extensions. 12-factor app documentation From b15337d8a2e207effa7ac68e764fc3f9985f4718 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Thu, 19 Dec 2024 16:30:28 -0300 Subject: [PATCH 10/11] fixup! Merge remote-tracking branch 'origin/main' into release/1.7.0 --- docs/.wordlist.txt | 4 ++++ docs/release-notes/rockcraft-1-7-0.rst | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/.wordlist.txt b/docs/.wordlist.txt index 76620a8bd..4446cef53 100644 --- a/docs/.wordlist.txt +++ b/docs/.wordlist.txt @@ -2,6 +2,7 @@ ACR AMD amd ARGS +ARMv ASGI async Autotools @@ -31,6 +32,7 @@ DockerHub dotnet ECR emacs +endian entrypoint entrypoints executables @@ -141,6 +143,7 @@ subtree supervisord symlink symlinks +systemd tini toml toolchain @@ -152,6 +155,7 @@ uncomment usrmerge Uvicorn VENV +VMs venv WSGI Wsgi diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index 659e0dad4..d4de0cdd1 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -55,11 +55,11 @@ Support for remote builds We added support for remote builds, which leverage off-site compute for building rocks and can build for multiple architectures with a single command. -Remote builds are hosted on Launchpad. +For a description of the feature, see :ref:`ref-remote-builds`, or run +``rockcraft remote-build --help``. -This feature is experimental and subject to change, and more information is -available by running ``rockcraft remote-build --help``. Feel free to provide -feedback on the `Ubuntu Discourse`_ forum. +This feature is new and experimental -- we welcome feedback on the +`Ubuntu Discourse`_ forum. Minor features -------------- From 702b9f3643ab6e208e0ef61008c93fedf7464054 Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Thu, 19 Dec 2024 17:06:17 -0300 Subject: [PATCH 11/11] add missing contributors --- docs/release-notes/rockcraft-1-7-0.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/release-notes/rockcraft-1-7-0.rst b/docs/release-notes/rockcraft-1-7-0.rst index d4de0cdd1..d87ee9580 100644 --- a/docs/release-notes/rockcraft-1-7-0.rst +++ b/docs/release-notes/rockcraft-1-7-0.rst @@ -132,13 +132,15 @@ Contributors We would like to express a big thank you to all the people who contributed to this release. +:literalref:`@alithethird`, :literalref:`@dariuszd21`, :literalref:`@erinecon`, :literalref:`@javierdelapuente`, :literalref:`@lengau`, :literalref:`@linostar`, -:literalref:`@tigarmo` -and :literalref:`@vpa1977`. +:literalref:`@tigarmo`, +:literalref:`@vpa1977` +and :literalref:`@yanksyoon`. .. _Ubuntu Discourse: https://discourse.ubuntu.com/c/rocks/rockcraft/118