|
35 | 35 | </xsd:choice>
|
36 | 36 |
|
37 | 37 | <xsd:attribute name="http-method-override" type="xsd:boolean" />
|
38 |
| - <xsd:attribute name="trusted-proxies" type="xsd:string" /> |
39 | 38 | <xsd:attribute name="ide" type="xsd:string" />
|
40 | 39 | <xsd:attribute name="secret" type="xsd:string" />
|
41 | 40 | <xsd:attribute name="default-locale" type="xsd:string" />
|
|
76 | 75 | </xsd:complexType>
|
77 | 76 |
|
78 | 77 | <xsd:complexType name="profiler">
|
79 |
| - <xsd:all> |
80 |
| - <xsd:element name="matcher" type="profiler_matcher" minOccurs="0" maxOccurs="1" /> |
81 |
| - </xsd:all> |
82 |
| - |
83 | 78 | <xsd:attribute name="collect" type="xsd:string" />
|
84 | 79 | <xsd:attribute name="only-exceptions" type="xsd:string" />
|
85 | 80 | <xsd:attribute name="only-master-requests" type="xsd:string" />
|
|
90 | 85 | <xsd:attribute name="lifetime" type="xsd:string" />
|
91 | 86 | </xsd:complexType>
|
92 | 87 |
|
93 |
| - <xsd:complexType name="profiler_matcher"> |
94 |
| - <xsd:attribute name="ip" type="xsd:string" /> |
95 |
| - <xsd:attribute name="path" type="xsd:string" /> |
96 |
| - <xsd:attribute name="service" type="xsd:string" /> |
97 |
| - </xsd:complexType> |
98 |
| - |
99 | 88 | <xsd:complexType name="router">
|
100 | 89 | <xsd:attribute name="resource" type="xsd:string" />
|
101 | 90 | <xsd:attribute name="type" type="xsd:string" />
|
102 | 91 | <xsd:attribute name="http-port" type="xsd:string" />
|
103 | 92 | <xsd:attribute name="https-port" type="xsd:string" />
|
104 | 93 | <xsd:attribute name="strict-requirements" type="xsd:string" />
|
| 94 | + <xsd:attribute name="utf8" type="xsd:boolean" /> |
105 | 95 | </xsd:complexType>
|
106 | 96 |
|
107 | 97 | <xsd:complexType name="session">
|
|
114 | 104 | <xsd:attribute name="cookie-domain" type="xsd:string" />
|
115 | 105 | <xsd:attribute name="cookie-secure" type="cookie_secure" />
|
116 | 106 | <xsd:attribute name="cookie-httponly" type="xsd:boolean" />
|
| 107 | + <xsd:attribute name="cookie-samesite" type="cookie_samesite" /> |
117 | 108 | <xsd:attribute name="use-cookies" type="xsd:boolean" />
|
118 | 109 | <xsd:attribute name="cache-limiter" type="xsd:string" />
|
119 | 110 | <xsd:attribute name="gc-maxlifetime" type="xsd:string" />
|
120 | 111 | <xsd:attribute name="gc-divisor" type="xsd:string" />
|
121 | 112 | <xsd:attribute name="gc-probability" type="xsd:string" />
|
122 |
| - <xsd:attribute name="use-strict-mode" type="xsd:boolean" /> |
123 | 113 | <xsd:attribute name="save-path" type="xsd:string" />
|
124 | 114 | <xsd:attribute name="metadata-update-threshold" type="xsd:nonNegativeInteger" />
|
125 | 115 | </xsd:complexType>
|
|
239 | 229 | <xsd:element name="mapping" type="file_mapping" />
|
240 | 230 | </xsd:choice>
|
241 | 231 | <xsd:attribute name="enabled" type="xsd:boolean" />
|
242 |
| - <xsd:attribute name="cache" type="xsd:string" /> |
243 | 232 | <xsd:attribute name="enable-annotations" type="xsd:boolean" />
|
244 | 233 | <xsd:attribute name="name-converter" type="xsd:string" />
|
245 | 234 | <xsd:attribute name="circular-reference-handler" type="xsd:string" />
|
|
259 | 248 | <xsd:element name="default-psr6-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
260 | 249 | <xsd:element name="default-redis-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
261 | 250 | <xsd:element name="default-memcached-provider" type="xsd:string" minOccurs="0" maxOccurs="1" />
|
| 251 | + <xsd:element name="default-pdo-provider" type=<
D7AE
span class="pl-s">"xsd:string" minOccurs="0" maxOccurs="1" /> |
262 | 252 | <xsd:element name="pool" type="cache_pool" minOccurs="0" maxOccurs="unbounded" />
|
263 | 253 | </xsd:sequence>
|
264 | 254 |
|
|
316 | 306 | <xsd:element name="to" type="xsd:string" minOccurs="1" maxOccurs="unbounded" />
|
317 | 307 | <xsd:element name="metadata" type="metadata" minOccurs="0" maxOccurs="unbounded" />
|
318 | 308 | <xsd:element name="guard" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
|
| 309 | + <xsd:element name="metadata" type="metadata" minOccurs="0" maxOccurs="unbounded" /> |
319 | 310 | </xsd:sequence>
|
320 | 311 | <xsd:attribute name="name" type="xsd:string" use="required" />
|
321 | 312 | </xsd:complexType>
|
|
353 | 344 | </xsd:restriction>
|
354 | 345 | </xsd:simpleType>
|
355 | 346 |
|
| 347 | + <xsd:simpleType name="cookie_samesite"> |
| 348 | + <xsd:restriction base="xsd:string"> |
| 349 | + <xsd:enumeration value="" /> |
| 350 | + <xsd:enumeration value="lax" /> |
| 351 | + <xsd:enumeration value="strict" /> |
| 352 | + </xsd:restriction> |
| 353 | + </xsd:simpleType> |
| 354 | + |
356 | 355 | <xsd:simpleType name="workflow_type">
|
357 | 356 | <xsd:restriction base="xsd:string">
|
358 | 357 | <xsd:enumeration value="state_machine" />
|
|
0 commit comments