Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-16 | chore: cleanup remaining `internals.future` code (#25624) | Asher Gomez | |
2024-09-11 | BREAKING(net): remove `Deno.[Tls]Listener.prototype.rid` (#25556) | Asher Gomez | |
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-10 | BREAKING(net): remove ↵ | Asher Gomez | |
`Deno.ConnectTlsOptions.{certChain,certFile,privateKey}` and `Deno.ListenTlsOptions.certChain,certFile,keyFile}` (#25525) Towards #22079 | |||
2024-09-11 | BREAKING(fs): remove `Deno.FsFile.prototype.rid` (#25499) | Asher Gomez | |
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-06 | BREAKING(net): remove `Deno.{Conn,TlsConn,TcpConn,UnixConn}.prototype.rid` ↵ | Asher Gomez | |
(#25446) Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-06 | BREAKING(buffer): remove `Deno.Buffer` (#25441) | Asher Gomez | |
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-05 | BREAKING(fs): remove `Deno.funlock[Sync]()` (#25442) | Asher Gomez | |
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-05 | BREAKING(fs): remove `Deno.seek[Sync]()` (#25449) | Asher Gomez | |
Towards #22079 | |||
2024-09-05 | BREAKING(fs): remove `Deno.FsWatcher.prototype.rid` (#25444) | Asher Gomez | |
Towards #22079 | |||
2024-09-05 | BREAKING(fs): remove `Deno.File` (#25447) | Asher Gomez | |
Towards #22079 | |||
2024-09-04 | BREAKING(io): remove `Deno.read[Sync]()` (#25409) | Asher Gomez | |
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-04 | BREAKING(io): remove `Deno.write[Sync]()` (#25408) | Asher Gomez | |
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-04 | BEAKING(buffer): remove `Deno.readAll[Sync]()` (#25386) | Asher Gomez | |
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-04 | BREAKING(fs): remove `Deno.ftruncate[Sync]()` (#25412) | Asher Gomez | |
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-04 | BREAKING(buffer): remove `Deno.writeAll[Sync]()` (#25407) | Asher Gomez | |
2024-09-04 | BREAKING(fs): remove `Deno.fstat[Sync]()` (#25351) | Asher Gomez | |
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-03 | BREAKING(io): remove `Deno.copy()` (#25345) | Asher Gomez | |
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-09-03 | BREAKING(console): remove `Deno.customInspect` (#25348) | Asher Gomez | |
Note: this is implemented on Deploy. However, according to @magurotuna, a thin compatibility layer might be in the works that'd prevent breakages for PRs such as this one. Towards #22079 | |||
2024-09-03 | chore(fs): remove `Deno.flock[Sync]()` (#25350) | Asher Gomez | |
Towards #22079 | |||
2024-09-03 | BREAKING(io): remove `Deno.iter[Sync]()` (#25346) | Asher Gomez | |
Towards #22079 | |||
2024-09-03 | BREAKING: remove `Deno.close()` (#25347) | Asher Gomez | |
Towards #22079 | |||
2024-08-31 | chore(net): remove `Deno.shutdown()` (#25253) | Asher Gomez | |
2024-08-31 | chore: remove `Deno.resources()` (#25251) | Asher Gomez | |
2024-08-31 | chore: remove `Deno.metrics()` (#25167) | Asher Gomez | |
2024-04-21 | FUTURE(ext/net): remove ↵ | Asher Gomez | |
`Deno.ConnectTlsOptions.(certFile|certChain|privateKey)` (#23270) Towards #23089 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-04-21 | FUTURE(ext/net): remove `Deno.ListenTlsOptions.(keyFile|certFile)` (#23271) | Asher Gomez | |
Towards #23089 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-04-19 | FUTURE: remove `Deno.customInspect` (#23453) | Asher Gomez | |
2024-04-08 | FUTURE(ext/net): remove ↵ | Asher Gomez | |
`Deno.(Conn|TlsConn|Listener|TlsListener|UnixConn).prototype.rid` (#23219) Towards #23089 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com> | |||
2024-04-07 | FUTURE(ext/fs): remove `Deno.FsWatcher.prototype.rid` (#23234) | Asher Gomez | |
2024-04-07 | FUTURE(ext/fs): make `Deno.FsFile` constructor illegal (#23235) | Asher Gomez | |
I'm unsure whether we're planning to make the `Deno.FsFile` constructor illegal or remove `FsFile` from the `Deno.*` namspace in Deno 2. Either way, this PR works towards the former. I'll create a superceding PR if the latter is planned instead. Towards #23089 | |||
2024-04-05 | FUTURE: remove deprecated APIs within workers (#23220) | Asher Gomez | |
2024-03-27 | FUTURE(ext/fs): remove `Deno.FsFile.rid` (#23087) | Asher Gomez | |
Continues work from #23075. Towards #23089. | |||
2024-03-27 | FUTURE: remove `Deno.resources()` (#23095) | Asher Gomez | |
2024-03-26 | feat: remove deprecated methods from namespace with `DENO_FUTURE=1` (#23075) | Asher Gomez | |
This change removes deprecated methods from the `Deno.*` namespace when the `DENO_FUTURE=1` environment variable is used. Note: this does not address deprecated class properties and methods. E.g. `Deno.Conn.rid`. | |||
2024-03-25 | test: add test for DENO_FUTURE=1 runtime API (#23065) | Bartek Iwańczuk | |
Add a test that asserts that certain symbols are no longer available if running with `DENO_FUTURE=1` env var. Currently only checks `window` global. |