From 09b2ae35b8e24d6be37eab9ce02f34984d211f45 Mon Sep 17 00:00:00 2001 From: cmorten Date: Sat, 12 Mar 2022 20:36:44 +0000 Subject: [PATCH] feat: 4.8.0 --- .github/CHANGELOG.md | 4 ++++ .github/workflows/publish-docs.yml | 2 +- .github/workflows/publish-egg.yml | 2 +- .github/workflows/test.yml | 4 ++-- README.md | 4 ++-- deps.ts | 10 +++++----- docs/index.html | 4 ++-- egg.json | 2 +- test/deps.ts | 6 +++--- version.ts | 4 ++-- 10 files changed, 23 insertions(+), 19 deletions(-) diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index f4179e5..3e4b103 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,9 @@ # ChangeLog +## [4.8.0] - 12-03-2022 + +- feat: support Deno `1.19.3` and std `0.129.0` and other deps upgrades + ## [4.7.2] - 01-01-2022 - [#38] Resolve op_sleep issues (#39) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index e806308..c8cf714 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -19,7 +19,7 @@ jobs: - name: Use Deno uses: denolib/setup-deno@v2 with: - deno-version: 1.17.1 + deno-version: 1.19.3 - run: make typedoc - run: make ci - name: Publish Updated Type Docs diff --git a/.github/workflows/publish-egg.yml b/.github/workflows/publish-egg.yml index 401d37c..1971234 100644 --- a/.github/workflows/publish-egg.yml +++ b/.github/workflows/publish-egg.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: denolib/setup-deno@v2 with: - deno-version: 1.17.1 + deno-version: 1.19.3 - run: deno install -A -f --unstable -n eggs https://x.nest.land/eggs@0.3.10/eggs.ts - run: | export PATH="/home/runner/.deno/bin:$PATH" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c94f014..61882ff 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - deno-version: [1.17.1] + deno-version: [1.19.3] runs-on: ${{ matrix.os }} @@ -27,7 +27,7 @@ jobs: strategy: matrix: os: [windows-latest] - deno-version: [1.17.1] + deno-version: [1.19.3] runs-on: ${{ matrix.os }} diff --git a/README.md b/README.md index 63819c8..ec14d72 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ HTTP assertions for Deno made easy via SuperDeno latest /x/ version - Minimum supported Deno version + Minimum supported Deno version SuperDeno dependency count SuperDeno dependency outdatedness SuperDeno cached size @@ -85,7 +85,7 @@ import { superdeno } from "https://deno.land/x/superdeno/mod.ts"; SuperDeno is also available on [nest.land](https://nest.land/package/superdeno), a package registry for Deno on the Blockchain. -> 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`. +> 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`. ## Example diff --git a/deps.ts b/deps.ts index 929811b..24c6bca 100644 --- a/deps.ts +++ b/deps.ts @@ -1,6 +1,6 @@ -export { Server } from "https://deno.land/std@0.119.0/http/server.ts"; -export { STATUS_TEXT } from "https://deno.land/std@0.119.0/http/http_status.ts"; -export { assertEquals } from "https://deno.land/std@0.119.0/testing/asserts.ts"; -export { methods } from "https://deno.land/x/opine@2.0.2/src/methods.ts"; -export { mergeDescriptors } from "https://deno.land/x/opine@2.0.2/src/utils/mergeDescriptors.ts"; +export { Server } from "https://deno.land/std@0.129.0/http/server.ts"; +export { STATUS_TEXT } from "https://deno.land/std@0.129.0/http/http_status.ts"; +export { assertEquals } from "https://deno.land/std@0.129.0/testing/asserts.ts"; +export { methods } from "https://deno.land/x/opine@2.1.2/src/methods.ts"; +export { mergeDescriptors } from "https://deno.land/x/opine@2.1.2/src/utils/mergeDescriptors.ts"; export { default as superagent } from "https://jspm.dev/superagent@6.1.0"; diff --git a/docs/index.html b/docs/index.html index 483753a..b88f56a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -82,7 +82,7 @@

SuperDeno

SuperDeno latest /x/ version - Minimum supported Deno version + Minimum supported Deno version SuperDeno dependency count SuperDeno dependency outdatedness SuperDeno cached size @@ -143,7 +143,7 @@

Installation

SuperDeno is also available on nest.land, a package registry for Deno on the Blockchain.

-

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.

+

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.

Example

diff --git a/egg.json b/egg.json index 3d3890e..44d4eb0 100644 --- a/egg.json +++ b/egg.json @@ -1,7 +1,7 @@ { "name": "superdeno", "description": "HTTP assertions for Deno made easy via superagent.", - "version": "4.7.2", + "version": "4.8.0", "repository": "https://github.com/cmorten/superdeno", "stable": true, "checkFormat": false, diff --git a/test/deps.ts b/test/deps.ts index ef16573..b76caa5 100644 --- a/test/deps.ts +++ b/test/deps.ts @@ -1,5 +1,5 @@ -export { dirname, join } from "https://deno.land/std@0.119.0/path/mod.ts"; +export { dirname, join } from "https://deno.land/std@0.129.0/path/mod.ts"; export { expect } from "https://deno.land/x/expect@v0.2.9/mod.ts"; -export * as Opine from "https://deno.land/x/opine@2.0.2/mod.ts"; -export * as Oak from "https://deno.land/x/oak@v10.1.0/mod.ts"; +export * as Opine from "https://deno.land/x/opine@2.1.2/mod.ts"; +export * as Oak from "https://deno.land/x/oak@v10.4.0/mod.ts"; export { getFreePort } from "https://deno.land/x/free_port@v1.2.0/mod.ts"; diff --git a/version.ts b/version.ts index d67c2b2..78ed505 100644 --- a/version.ts +++ b/version.ts @@ -1,9 +1,9 @@ /** * Version of SuperDeno. */ -export const VERSION = "4.7.2"; +export const VERSION = "4.8.0"; /** * Supported versions of Deno. */ -export const DENO_SUPPORTED_VERSIONS = ["1.17.1"]; +export const DENO_SUPPORTED_VERSIONS = ["1.19.3"];