Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-02 | refactor(core): Extract deno_core (#19658) | Matt Mastracci | |
`deno_core` is moving out! You'll find it at https://github.com/denoland/deno_core/ once this PR lands. | |||
2023-05-02 | refactor(core): Use `ObjectHasOwn` instead of ↵ | Kenta Moriuchi | |
`ObjectPrototypeHasOwnProperty` (#18952) ES2022 `Object.hasOwn` can be used in snapshot, so I migrate to use it. | |||
2023-04-02 | chore: Turn back on dlintPreferPrimordials (#17715) | Kenta Moriuchi | |
Closes #17709 | |||
2023-03-14 | fix(core/internal): fix typo in primordial type definitions (#18125) | Nicholas Berlette | |
This PR resolves a very small typo in the primordial typedefs file `./core/internal.d.ts`. The correct reference now reads `typeof FinalizationRegistry.prototype.register`. Before this PR the type alias pointed to `registar`, which obviously doesn't exist. | |||
2023-03-13 | fix(core): `SafePromiseAll` to be unaffected by `Array#@@iterator` (#17542) | Kenta Moriuchi | |
2023-03-01 | fix(core): introduce `SafeRegExp` to primordials (#17592) | Kenta Moriuchi | |
2023-01-29 | fix(ext): internal `structuredClone` for `ArrayBuffer` and `TypedArray` ↵ | Kenta Moriuchi | |
subclasses (#17431) | |||
2023-01-15 | fix(core): Add `Generator` and `AsyncGenerator` to promordials (#17241) | Kenta Moriuchi | |
2023-01-02 | chore: update copyright year to 2023 (#17247) | David Sherret | |
Yearly tradition of creating extra noise in git. | |||
2022-01-20 | chore: update copyright year (#13434) | Yoshiya Hinosawa | |
2021-07-30 | chore: upgrade Rust to 1.54.0 (#11554) | Yusuke Tanaka | |
2021-07-06 | refactor: use primordials in extensions/web (#11273) | Bartek Iwańczuk | |
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> | |||
2021-07-05 | refactor: introduce primordials for web/streams (#11251) | Luca Casonato | |
2021-07-03 | chore: add TypedArray to primordials typings (#11236) | Luca Casonato | |
2021-07-02 | refactor: use primordials for extensions/webidl (#11227) | Luca Casonato | |
2021-07-02 | refactor: introduce primordials (#10939) | Luca Casonato | |
This commit introduces primordials to deno_core. Primordials are a frozen set of all intrinsic objects in the runtime. They are not vulnerable to prototype pollution. |