mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0.125.0
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
be9fe6264c
commit
3b43d075ea
@ -1,4 +1,4 @@
|
||||
### 0.124.0 / 2022.02.03
|
||||
### 0.125.0 / 2022.02.03
|
||||
|
||||
- feat(node): add punycode module (#1857)
|
||||
- feat(node): add url.resolve (#1851)
|
||||
@ -10,6 +10,9 @@
|
||||
- fix(node/net): mock response.socket object (#1858)
|
||||
- fix: bypass TS errors for missing --unstable (#1819)
|
||||
|
||||
Note 0.124.0 is the same as 0.125.0 but ignoring a typescript error related to a
|
||||
new feature added setNoDelay.
|
||||
|
||||
### 0.123.0 / 2022.01.27
|
||||
|
||||
- feat(node): add os.networkInterfaces (#1846)
|
||||
|
@ -24,7 +24,10 @@ export function mockConn(base: Partial<Deno.Conn> = {}): Deno.Conn {
|
||||
return Promise.resolve(-1);
|
||||
},
|
||||
close: (): void => {},
|
||||
// TODO(ry) Remove the following ts-ignore.
|
||||
// @ts-ignore This was added to workaround incompatibilities between Deno versions.
|
||||
setNoDelay: (_nodelay?: boolean): void => {},
|
||||
// @ts-ignore This was added to workaround incompatibilities between Deno versions.
|
||||
setKeepAlive: (_keepalive?: boolean): void => {},
|
||||
...base,
|
||||
};
|
||||
|
@ -5,4 +5,4 @@
|
||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||
* will match versions with cli as we have in the past.
|
||||
*/
|
||||
export const VERSION = "0.124.0";
|
||||
export const VERSION = "0.125.0";
|
||||
|
Loading…
Reference in New Issue
Block a user