Maurits Lawende
Maurits Lawende
I had the same issue. When i18n is enabled, the path for the homepage is "/en", but the language prefix is stripped before matching the path but doesn't contain a...
It would be good if this could be reviewed and updated in the readme soon. When enabling i18n later on, the security headers' absence may go unnoticed, hence putting the...
Same here. Can reproduce with node 17.0.1 on macos and with node 18.4.0 on Debian (node:18-bullseye-slim container from Docker hub). ``` const { Client } = require('pg'); const client =...
Thanks, makes sense. I wrapped the last line in a connect like this: ``` client.connect().then(() => { client.query('SELECT 1;').then(console.log).catch(console.error); }).catch(console.error); ``` This works on node 12, 16, and 18 on...
+1 Default values are very useful. I need it as well for a project of mine. However, applying default values is not strictly a part of validation. Thus it gives...
In fact is implicitly changes the property to required, or at least it results in the property always having a value. Does require means that it should have that property...
That code tests for the availability of generator functions (all major browsers after IE11), but triggers a CSP eval error. It was introduced in version 12.0.8, perhaps by commit https://github.com/vercel/next.js/commit/3667eba38559e5ccb810bade4779cda3649f1413....
I was able to reproduce this issue. The problem is exactly what mopagemo described; multiple responses are within a single TCP window and are passed to ResponseHandler.parseBody, but that function...
I used the wrong link. Information about the literals in ECMA 262 can be found here: http://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5
Good point. It's not clear in the spec. I've created an issue there: https://github.com/json-schema/json-schema/issues/188 Lets wait what they say...