Newer
Older
# Copyright (c) 2021-2022, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#
# The following block describes the top-level sections of the changelog. Commits are categorized
# into these top-level sections based on the commit message "type":
#
# feat(xyz): add the xyz feature
# ^^^^
#
sections:
- title: New Features
description: A new feature
type: feat
- title: Resolved Issues
description: A bug fix
type: fix
- title: Build System
description: Changes that affect the build system or external dependencies
type: build
hidden: true
- title: Continuous Integration
description: Changes to our CI configuration files and scripts
type: ci
hidden: true
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
description: Documentation-only changes
type: docs
hidden: true
- title: Performance Improvements
description: A code change that improves performance
type: perf
hidden: true
- title: Code Refactoring
description: A code change that neither fixes a bug nor adds a feature
type: refactor
hidden: true
- title: Reverted Changes
description: Changes that revert a previous change
type: revert
hidden: true
- title: Style
description: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
type: style
hidden: true
- title: Tests
description: Adding missing tests or correcting existing tests
type: test
hidden: true
- title: Miscellaneous
description: Any other change
type: chore
hidden: true
#
# The following block describes the sub-sections of the changelog. These sub-sections may appear in
# any of the top-level sections, and describe the individual components that a change may relate to.
#
# Sub-sections have an optional associated commit message "scope":
#
# feat(xyz): add the xyz feature
# ^^^
#
# This file also describes deprecated scopes, which are scopes that were used before we introduced
# scope enforcement. These will not pass CI checks when used, but they will be used to generate the
# changelog.
#
# Please note that new scopes should be kebab-case: https://en.wiktionary.org/wiki/kebab_case
#
subsections:
- title: Architecture
subsections:
- title: Activity Monitors Extension (FEAT_AMU)
scope: amu
- title: Confidential Compute Architecture (CCA)
scope: cca
- title: Support for the `HCRX_EL2` register (FEAT_HCX)
scope: hcx
- title: Memory Partitioning and Monitoring (MPAM) Extension (FEAT_MPAM)
scope: mpam
- title: Scalable Matrix Extension (FEAT_SME)
scope: sme
- title: Scalable Vector Extension (FEAT_SVE)
scope: sve
- title: System Register Trace Extensions (FEAT_ETMv4, FEAT_ETE and FEAT_ETEv1.1)
scope: sys-reg-trace
deprecated:
- sys_reg_trace
- title: Trace Buffer Extension (FEAT_TRBE)
scope: trbe
- title: Self-hosted Trace Extensions (FEAT_TRF)
scope: trf
- title: Statistical profiling Extension (FEAT_SPE)
scope: spe
- title: Branch Record Buffer Extension (FEAT_BRBE)
scope: brbe
- title: Extended Cache Index (FEAT_CCIDX)
scope: ccidx
- title: Trapping support for RNDR/RNDRRS (FEAT_RNG_TRAP)
scope: rng-trap
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
- title: Platforms
subsections:
- title: Allwinner
scope: allwinner
deprecated:
- plat/allwinner
- title: Arm
scope: arm
deprecated:
- plat/arm
subsections:
- title: FPGA
scope: fpga
deprecated:
- arm_fgpa
- arm_fpga
- plat/arm_fpga
- title: FVP
scope: fvp
deprecated:
- plat/fvp
- title: FVP-R
scope: fvp-r
deprecated:
- fvp_r
- title: Juno
scope: juno
- title: Morello
scope: morello
- title: N1SDP
scope: n1sdp
- title: RD
scope: rd
subsections:
- title: RD-N2
scope: rdn2
deprecated:
- board/rdn2
- title: SGI
scope: sgi
deprecated:
- plat/sgi
- plat/arm/sgi
- title: TC
scope: tc
subsections:
- title: TC0
scope: tc0
deprecated:
Loading
Loading full blame...