Evan Hahn
Evan Hahn
The Airtable API now supports creating, updating, and deleting up to 10 records per request. Is this something Airrecord should support? The documentation at [airtable.com/api](https://airtable.com/api) shows examples. I was the...
Each iteration value in [`Set.prototype.entries()`][0] is an array of two identical values: const mySet = new Set(['a' , 'b', 'c']); console.log([...mySet.entries()]); // => [ [ 'a', 'a' ], [ 'b',...
I'm the maintainer of Helmet. I plan to release the next major version this Sunday, 2020-08-22. Is there anything I can do to help get this project upgraded to `helmet@4`?...
Partially addresses #2.
See [discussion here](https://github.com/expressjs/express/pull/4835#discussion_r811355575). `app.cache`, `app.engines`, and `app.settings` are now created with `Object.create(null)` instead of `{}`. This also adds a test that `app.locals` is created the same way.
`express().settings` is now an object with a `null` prototype. This simplifies the code.
I'm the maintainer of Helmet. I plan to release the next major version this Sunday, 2020-08-22. Is there anything I can do to help get this project upgraded to `helmet@4`?...
I'm the maintainer of Helmet. I plan to release the next major version this Sunday, 2020-08-22. Is there anything I can do to help get this module upgraded to `helmet@4`?...
A release with a few small breaking changes. Not trying to make any substantial changes! Expected release date: 2022-08-20
We may want to remove support for the `Expect-CT` header in Helmet 5. From [MDN](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT): > The `Expect-CT` will likely become obsolete in June 2021. Since May 2018 new certificates...