Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
Ryan Dahl 2022-02-03 17:46:48 -05:00 committed by GitHub
parent be9fe6264c
commit 3b43d075ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -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)

View File

@ -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,
};

View File

@ -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";