-
Notifications
You must be signed in to change notification settings - Fork 60
docs: add changelog with notes for 1.6.0 #734
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5cc65ea
docs: add changelog with notes for 1.6.0
tigarmo 9750308
chore(docs): update link to Multipass installation guide
tigarmo f6a93b6
chore: apply suggestions from code review
tigarmo 29f37f6
chore: more updates from review
tigarmo 6cb6a01
fixup! chore: more updates from review
tigarmo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tigarmo marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,160 @@ | ||
| :tocdepth: 2 | ||
|
|
||
| .. Check out the bottom of the page for the release template | ||
|
|
||
| Changelog | ||
| ********* | ||
|
|
||
| 1.6.0 (2024-Oct-17) | ||
| ------------------- | ||
|
|
||
| Core | ||
| ==== | ||
|
|
||
| - Rockcraft 1.6.0 updates Pydantic, the internal library | ||
| used to process ``rockcraft.yaml`` files, to a new major version. This change | ||
| should not have any user-visible consequences, but please report any issues on | ||
| `GitHub <https://github.com/canonical/rockcraft/issues>`_. | ||
| - Managed (non-destructive) runs now fail as expected if the build plan is | ||
| empty. For example, trying to build a project with only ``amd64`` in its | ||
| ``platforms`` will now fail when building on a non-amd64 | ||
| machine. | ||
| - ``package-repositories`` entries now support ``series`` and ``pocket`` for | ||
| ``apt`` repositories, and ``key-id`` for PPAs. | ||
|
|
||
| Bases | ||
| ##### | ||
|
|
||
| ``bare`` | ||
| """""""" | ||
|
|
||
| - ``bare``-based rocks now have a default ``PATH`` value set on the image, | ||
| following the behaviour of ``Pebble`` services. | ||
|
|
||
| Plugins | ||
| ####### | ||
|
|
||
| ``poetry`` | ||
| """""""""" | ||
|
|
||
| - Add a new plugin for Python projects that use the `Poetry`_ build system. | ||
|
|
||
| Extensions | ||
| ########## | ||
|
|
||
| fastapi-framework | ||
| """"""""""""""""" | ||
|
|
||
| - Add a new ``fastapi-framework`` extension for `FastAPI`_-based projects. | ||
|
|
||
| flask-framework | ||
| """"""""""""""" | ||
|
|
||
| - On ``bare``-based rocks, the extension now uses Chisel slices for the Python | ||
| interpreter. | ||
| - Add support for the ``ubuntu@24.04`` base. | ||
|
|
||
| django-framework | ||
| """""""""""""""" | ||
|
|
||
| - The ``django-framework`` extension is now stable and no longer requires the | ||
| ``ROCKCRAFT_ENABLE_EXPERIMENTAL_EXTENSIONS`` environment variable. | ||
| - Add support for the ``ubuntu@24.04`` base. | ||
|
|
||
| go-framework | ||
| """""""""""" | ||
|
|
||
| - Add a new ``go-framework`` extension for Go-based projects. | ||
|
|
||
| Command line | ||
| ============ | ||
|
|
||
| - Improve reporting of builds that fail because they match multiple platforms. | ||
| - Improve error messages for invalid ``rockcraft.yaml`` files. | ||
| - The ``pack`` command now supports ``--shell`` and ``--shell-after``, and | ||
| correctly handles cases where the packing itself fails and the ``--debug`` | ||
| argument is passed. | ||
| - The ``clean`` command now supports the ``--platform`` argument to filter which | ||
| build environments to clean. | ||
| - Positional arguments are now correctly displayed on the ``help`` output of | ||
| commands. | ||
| - The terminal cursor is now hidden during execution. | ||
|
|
||
| Init | ||
| ==== | ||
|
|
||
| - Add new ``--profile`` argument options for ``go-framework`` and | ||
| ``fastapi-framework``. | ||
|
|
||
| Documentation | ||
| ============= | ||
|
|
||
| - Add :ref:`reference documentation <craft_parts_poetry_plugin>` for the new | ||
| ``poetry`` plugin. | ||
| - Add a :ref:`how-to guide <add_internal_user_to_a_rock>` on adding internal | ||
| users to rocks. | ||
| - Improve the ``flask-framework`` | ||
| :ref:`tutorial <build-a-rock-for-a-flask-application>` based on user feedback. | ||
| - Add a :ref:`tutorial <build-a-rock-for-a-django-application>` for the | ||
| ``django-framework`` extension. | ||
| - Add a :ref:`tutorial <build-a-rock-for-a-fastapi-application>` for the | ||
| ``fastapi-framework`` extension. | ||
|
|
||
| For a complete list of commits, check out the `1.6.0`_ release on GitHub. | ||
|
|
||
|
|
||
| .. _FastAPI: https://fastapi.tiangolo.com | ||
| .. _Poetry: https://python-poetry.org | ||
|
|
||
| .. _1.6.0: https://github.com/canonical/rockcraft/releases/tag/1.6.0 | ||
|
|
||
| .. | ||
medubelko marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| release template: | ||
|
|
||
| X.Y.Z (YYYY-MMM-DD) | ||
| ------------------- | ||
|
|
||
| Core | ||
| ==== | ||
|
|
||
| # for everything related to the lifecycle of packing a rock | ||
|
|
||
| Bases | ||
| ##### | ||
|
|
||
| <ubuntu@xx.xx> | ||
| """""""""""""" | ||
| (order from newest base to oldest base) | ||
|
|
||
| Plugins | ||
| ####### | ||
|
|
||
| <plugin> | ||
| """""""" | ||
|
|
||
| Extensions | ||
| ########## | ||
|
|
||
| <extension> | ||
| """"""""""" | ||
|
|
||
| Metadata | ||
| ######## | ||
|
|
||
| Sources | ||
| ####### | ||
|
|
||
|
|
||
| Command line | ||
| ============ | ||
|
|
||
| # for command line and UX changes | ||
|
|
||
| Init | ||
| ==== | ||
|
|
||
|
|
||
| Documentation | ||
| ============= | ||
|
|
||
| For a complete list of commits, check out the `X.Y.Z`_ release on GitHub. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,3 +15,4 @@ Rockcraft's components, commands and keywords. | |
| Extensions <extensions/index> | ||
| plugins | ||
| parts_steps | ||
| changelog | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.