Oliver Hader
Oliver Hader
I have been made aware of this problem during the TYPO3 Developer Days 2023 (which applies to other external cache services linke Varnish as well, see https://forge.typo3.org/issues/100887). I've created a...
I'm about to test the core changes with `ext:staticfilecache` - the most important change is to cache the `Content-Security-Policy` HTTP header in addition, since it contains the hash-sums of the...
Maybe [`nginx njs`](https://nginx.org/en/docs/njs/reference.html) which support `r.headersOut` and `fs.existsSync` (see [`njs` examples](https://github.com/nginx/njs-examples))? I have no idea how `njs` performs and how much the `fs.*Sync` (blocking IO) operations reduce the response performance.
I'm rephrasing the question: In case there is no simple solution to dumping HTTP headers from a file with nginx, what would be the next "acceptable" fallback - e.g. a...
Some side notes on Phar meta-data deserialization (I spent a bunch of time on that topic in 2018): * Phar meta-data deserialization was fixed in PHP 8.x and thus only...
@gemal Can you please share a link to the `CakeObject.php` sources? This issue looks a bit like #10350
> @ohader #10350 is about intersections, and there seems to be nothing intersection-related in the stack trace here. @weirdan Your observation is correct, it is not related to #10350. (Back...
The [failing BC tests](https://github.com/vimeo/psalm/actions/runs/8011740501/job/21885599061?pr=10736) are handled code-wise in those methods * `Psalm\Codebase#addTaintSource()` * `Psalm\Codebase#addTaintSink()`
I had to revert this change individually in a project, where editors are only working in a workspace and handing articles to a different department for reviewing and publishing.
`patch -t` would skip missing files during batch processes... for this plugin it would be and additional ``` patchArgs.push( '-t' ); ``` before https://github.com/WordPress/grunt-patch-wordpress/blob/trunk/tasks/patch_wordpress.js#L58