@@ -112,17 +112,14 @@ PHP 8.4 UPGRADE NOTES
112
112
which is why it throws an exception nowadays.
113
113
114
114
- Opcache:
115
- . JIT config defaults changed from
116
- `opcache.jit=tracing`, `opcache.jit_buffer_size=0` to
117
- `opcache.jit=disable`, `opcache.jit_buffer_size=64M`:
118
- this does not change the default behavior,
119
- JIT was and still is disabled by default, however
120
- now it is now disabled by default
121
- using the `opcache.jit` setting, not the `opcache.jit_buffer_size` setting.
122
- This may affect users who enabled JIT by only setting a different
123
- `opcache.jit_buffer_size`, without specifying a JIT mode
124
- in `opcache.jit`.
125
- To enable JIT, you should now populate the `opcache.jit` config value.
115
+ . The JIT config defaults changed from opcache.jit=tracing and
116
+ opcache.jit_buffer_size=0 to opcache.jit=disable and
117
+ opcache.jit_buffer_size=64M, respectively. This does not affect the default
118
+ behavior, the JIT is still disabled by default. However, it is now disabled
119
+ through the opcache.jit setting, rather than opcache.jit_buffer_size. This
120
+ may affect users who previously enabled JIT through opcache.jit_buffer_size
121
+ exclusively, without also specifying a JIT mode using opcache.jit. To enable
122
+ JIT, set the opcache.jit config value accordingly.
126
123
127
124
========================================
128
125
2. New Features
0 commit comments