You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features.md
+18
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,24 @@ The current version of the spec do not provide a way to enumerate the possible v
140
140
}
141
141
```
142
142
143
+
## <aname="featuresPotentiallyUnsafeConfigAnnotations" />Unsafe annotations in `config.json`
144
+
145
+
**`potentiallyUnsafeConfigAnnotations`** (array of strings, OPTIONAL) contains values of [`annotations` property of `config.json`](config.md#annotations)
146
+
that may potentially change the behavior of the runtime.
147
+
148
+
A value that ends with "." is interpreted as a prefix of annotations.
149
+
150
+
### Example
151
+
```json
152
+
"potentiallyUnsafeConfigAnnotations": [
153
+
"com.example.foo.bar",
154
+
"org.systemd.property."
155
+
]
156
+
```
157
+
158
+
The example above matches `com.example.foo.bar`, `org.systemd.property.ExecStartPre`, etc.
159
+
The example does not match `com.example.foo.bar.baz`.
0 commit comments