File tree Expand file tree Collapse file tree 10 files changed +23
-19
lines changed Expand file tree Collapse file tree 10 files changed +23
-19
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## [ 4.8.0] - 12-03-2022
4
+
5
+ - feat: support Deno ` 1.19.3 ` and std ` 0.129.0 ` and other deps upgrades
6
+
3
7
## [ 4.7.2] - 01-01-2022
4
8
5
9
- [ #38 ] Resolve op_sleep issues (#39 )
Original file line number Diff line number Diff line change 19
19
- name : Use Deno
20
20
uses : denolib/setup-deno@v2
21
21
with :
22
- deno-version : 1.17.1
22
+ deno-version : 1.19.3
23
23
- run : make typedoc
24
24
- run : make ci
25
25
- name : Publish Updated Type Docs
Original file line number Diff line number Diff line change 11
11
- uses : actions/checkout@v2
12
12
- uses : denolib/setup-deno@v2
13
13
with :
14
- deno-version : 1.17.1
14
+ deno-version : 1.19.3
15
15
-
run :
deno install -A -f --unstable -n eggs https://x.nest.land/[email protected] /eggs.ts
16
16
- run : |
17
17
export PATH="/home/runner/.deno/bin:$PATH"
Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os : [ubuntu-latest, macos-latest]
14
- deno-version : [1.17.1 ]
14
+ deno-version : [1.19.3 ]
15
15
16
16
runs-on : ${{ matrix.os }}
17
17
27
27
strategy :
28
28
matrix :
29
29
os : [windows-latest]
30
- deno-version : [1.17.1 ]
30
+ deno-version : [1.19.3 ]
31
31
32
32
runs-on : ${{ matrix.os }}
33
33
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ HTTP assertions for Deno made easy via <a href="https://github.com/visionmedia/s
18
18
</p >
19
19
<p align =" center " >
20
20
<a href =" https://deno.land/x/superdeno " ><img src =" https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Flatest-version%2Fx%2Fsuperdeno%2Fmod.ts " alt =" SuperDeno latest /x/ version " /></a >
21
- <a href =" https://github.com/denoland/deno/blob/main/Releases.md " ><img src =" https://img.shields.io/badge/deno-^1.17.1 -brightgreen?logo=deno " alt =" Minimum supported Deno version " /></a >
21
+ <a href =" https://github.com/denoland/deno/blob/main/Releases.md " ><img src =" https://img.shields.io/badge/deno-^1.19.3 -brightgreen?logo=deno " alt =" Minimum supported Deno version " /></a >
22
22
<a href =" https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts " ><img src =" https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fdep-count%2Fx%2Fsuperdeno%2Fmod.ts " alt =" SuperDeno dependency count " /></a >
23
23
<a href =" https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts " ><img src =" https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fupdates%2Fx%2Fsuperdeno%2Fmod.ts " alt =" SuperDeno dependency outdatedness " /></a >
24
24
<a href =" https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts " ><img src =" https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fcache-size%2Fx%2Fsuperdeno%2Fmod.ts " alt =" SuperDeno cached size " /></a >
@@ -85,7 +85,7 @@ import { superdeno } from "https://deno.land/x/superdeno/mod.ts";
85
85
SuperDeno is also available on [ nest.land] ( https://nest.land/package/superdeno ) ,
86
86
a package registry for Deno on the Blockchain.
87
87
88
- > Note: All examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as ` https://deno.land/x/superdeno@4.7.2 /mod.ts ` .
88
+ > Note: All examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as ` https://deno.land/x/superdeno@4.8.0 /mod.ts ` .
89
89
90
90
## Example
91
91
Original file line number Diff line number Diff line change 1
- export { Server } from "https://deno.land/std@0.119 .0/http/server.ts" ;
2
- export { STATUS_TEXT } from "https://deno.land/std@0.119 .0/http/http_status.ts" ;
3
- export { assertEquals } from "https://deno.land/std@0.119 .0/testing/asserts.ts" ;
4
- export { methods } from "https://deno.land/x/opine@2.0 .2/src/methods.ts" ;
5
- export { mergeDescriptors } from "https://deno.land/x/opine@2.0 .2/src/utils/mergeDescriptors.ts" ;
1
+ export { Server } from "https://deno.land/std@0.129 .0/http/server.ts" ;
2
+ export { STATUS_TEXT } from "https://deno.land/std@0.129 .0/http/http_status.ts" ;
3
+ export { assertEquals } from "https://deno.land/std@0.129 .0/testing/asserts.ts" ;
4
+ export { methods } from "https://deno.land/x/opine@2.1 .2/src/methods.ts" ;
5
+ export { mergeDescriptors } from "https://deno.land/x/opine@2.1 .2/src/utils/mergeDescriptors.ts" ;
6
6
export { default as superagent } from "https://jspm.dev/[email protected] " ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ <h1 align="center">SuperDeno</h1>
82
82
</ p >
83
83
< p align ="center ">
84
84
< a href ="https://deno.land/x/superdeno "> < img src ="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Flatest-version%2Fx%2Fsuperdeno%2Fmod.ts " alt ="SuperDeno latest /x/ version " /> </ a >
85
- < a href ="https://github.com/denoland/deno/blob/main/Releases.md "> < img src ="https://img.shields.io/badge/deno-^1.17.1 -brightgreen?logo=deno " alt ="Minimum supported Deno version " /> </ a >
85
+ < a href ="https://github.com/denoland/deno/blob/main/Releases.md "> < img src ="https://img.shields.io/badge/deno-^1.19.3 -brightgreen?logo=deno " alt ="Minimum supported Deno version " /> </ a >
86
86
< a href ="https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts "> < img src ="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fdep-count%2Fx%2Fsuperdeno%2Fmod.ts " alt ="SuperDeno dependency count " /> </ a >
87
87
< a href ="https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts "> < img src ="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fupdates%2Fx%2Fsuperdeno%2Fmod.ts " alt ="SuperDeno dependency outdatedness " /> </ a >
88
88
< a href ="https://deno-visualizer.danopia.net/dependencies-of/https/deno.land/x/superdeno/mod.ts "> < img src ="https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fcache-size%2Fx%2Fsuperdeno%2Fmod.ts " alt ="SuperDeno cached size " /> </ a >
@@ -143,7 +143,7 @@ <h2>Installation</h2>
143
143
< p > SuperDeno is also available on < a href ="https://nest.land/package/superdeno "> nest.land</ a > ,
144
144
a package registry for Deno on the Blockchain.</ p >
145
145
< blockquote >
146
- < p > Note: All examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as < code > https://deno.land/x/superdeno@4.7.2 /mod.ts</ code > .</ p >
146
+ < p > Note: All examples in this README are using the unversioned form of the import URL. In production you should always use the versioned import form such as < code > https://deno.land/x/superdeno@4.8.0 /mod.ts</ code > .</ p >
147
147
</ blockquote >
148
148
< a href ="#example " id ="example " style ="color: inherit; text-decoration: none; ">
149
149
< h2 > Example</ h2 >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " superdeno" ,
3
3
"description" : " HTTP assertions for Deno made easy via superagent." ,
4
- "version" : " 4.7.2 " ,
4
+ "version" : " 4.8.0 " ,
5
5
"repository" : " https://github.com/cmorten/superdeno" ,
6
6
"stable" : true ,
7
7
"checkFormat" : false ,
Original file line number Diff line number Diff line change 1
- export { dirname , join } from "https://deno.land/std@0.119 .0/path/mod.ts" ;
1
+ export { dirname , join } from "https://deno.land/std@0.129 .0/path/mod.ts" ;
2
2
export { expect } from "https://deno.land/x/[email protected] /mod.ts" ;
3
- export * as Opine from "https://deno.land/x/opine@2.0 .2/mod.ts" ;
4
- export * as Oak from "https://deno.land/x/oak@v10.1 .0/mod.ts" ;
3
+ export * as Opine from "https://deno.land/x/opine@2.1 .2/mod.ts" ;
4
+ export * as Oak from "https://deno.land/x/oak@v10.4 .0/mod.ts" ;
5
5
export { getFreePort } from "https://deno.land/x/[email protected] /mod.ts" ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Version of SuperDeno.
3
3
*/
4
- export const VERSION = "4.7.2 " ;
4
+ export const VERSION = "4.8.0 " ;
5
5
6
6
/**
7
7
* Supported versions of Deno.
8
8
*/
9
- export const DENO_SUPPORTED_VERSIONS = [ "1.17.1 " ] ;
9
+ export const DENO_SUPPORTED_VERSIONS = [ "1.19.3 " ] ;
You can’t perform that action at this time.
0 commit comments