Skip to content

Commit 09b2ae3

Browse files
committed
feat: 4.8.0
1 parent 0515b11 commit 09b2ae3

File tree

10 files changed

+23
-19
lines changed

10 files changed

+23
-19
lines changed

.github/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ChangeLog
22

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+
37
## [4.7.2] - 01-01-2022
48

59
- [#38] Resolve op_sleep issues (#39)

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Use Deno
2020
uses: denolib/setup-deno@v2
2121
with:
22-
deno-version: 1.17.1
22+
deno-version: 1.19.3
2323
- run: make typedoc
2424
- run: make ci
2525
- name: Publish Updated Type Docs

.github/workflows/publish-egg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: denolib/setup-deno@v2
1313
with:
14-
deno-version: 1.17.1
14+
deno-version: 1.19.3
1515
- run: deno install -A -f --unstable -n eggs https://x.nest.land/[email protected]/eggs.ts
1616
- run: |
1717
export PATH="/home/runner/.deno/bin:$PATH"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, macos-latest]
14-
deno-version: [1.17.1]
14+
deno-version: [1.19.3]
1515

1616
runs-on: ${{ matrix.os }}
1717

@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [windows-latest]
30-
deno-version: [1.17.1]
30+
deno-version: [1.19.3]
3131

3232
runs-on: ${{ matrix.os }}
3333

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ HTTP assertions for Deno made easy via <a href="https://github.com/visionmedia/s
1818
</p>
1919
<p align="center">
2020
<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>
2222
<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>
2323
<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>
2424
<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";
8585
SuperDeno is also available on [nest.land](https://nest.land/package/superdeno),
8686
a package registry for Deno on the Blockchain.
8787

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`.
8989
9090
## Example
9191

deps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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";
66
export { default as superagent } from "https://jspm.dev/[email protected]";

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h1 align="center">SuperDeno</h1>
8282
</p>
8383
<p align="center">
8484
<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>
8686
<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>
8787
<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>
8888
<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>
143143
<p>SuperDeno is also available on <a href="https://nest.land/package/superdeno">nest.land</a>,
144144
a package registry for Deno on the Blockchain.</p>
145145
<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>
147147
</blockquote>
148148
<a href="#example" id="example" style="color: inherit; text-decoration: none;">
149149
<h2>Example</h2>

egg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "superdeno",
33
"description": "HTTP assertions for Deno made easy via superagent.",
4-
"version": "4.7.2",
4+
"version": "4.8.0",
55
"repository": "https://github.com/cmorten/superdeno",
66
"stable": true,
77
"checkFormat": false,

test/deps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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";
22
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";
55
export { getFreePort } from "https://deno.land/x/[email protected]/mod.ts";

version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* Version of SuperDeno.
33
*/
4-
export const VERSION = "4.7.2";
4+
export const VERSION = "4.8.0";
55

66
/**
77
* Supported versions of Deno.
88
*/
9-
export const DENO_SUPPORTED_VERSIONS = ["1.17.1"];
9+
export const DENO_SUPPORTED_VERSIONS = ["1.19.3"];

0 commit comments

Comments
 (0)