Skip to content

Bump Deno runtime to 2.2.1 #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Deno v2.1.4
- name: Setup Deno v2.2.1
uses: denoland/setup-deno@v1
with:
deno-version: v2.1.4
deno-version: v2.2.1

- name: Setup LCOV
run: sudo apt install -y lcov
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/re-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
fetch-depth: 0
ref: ${{ github.event.inputs.tag }}

- name: Setup Deno v2.1.4
- name: Setup Deno v2.2.1
uses: denoland/setup-deno@v1
with:
deno-version: v2.1.4
deno-version: v2.2.1

- name: Verify formatting
run: deno task fmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Deno v2.1.4
- name: Setup Deno v2.2.1
uses: denoland/setup-deno@v1
with:
deno-version: v2.1.4
deno-version: v2.2.1

- name: Verify formatting
run: deno task fmt
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:alpine-2.1.4
FROM denoland/deno:alpine-2.2.1

ENV APP_HOME=/home/app
WORKDIR $APP_HOME
Expand Down
35 changes: 30 additions & 5 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { Application, Context, Router } from 'jsr:@oak/oak@17.1.3';
export type { Middleware, Next } from 'jsr:@oak/oak@17.1.3';
export { Application, Context, Router } from 'jsr:@oak/oak@17.1.4';
export type { Middleware, Next } from 'jsr:@oak/oak@17.1.4';
export { load } from 'jsr:@std/dotenv@0.225.3';
export { bold, cyan, green } from 'jsr:@std/fmt@1.0.3/colors';
export { bold, cyan, green } from 'jsr:@std/fmt@1.0.5/colors';
export { type Output, Skimming } from 'jsr:@trackerforce/skimming@1.2.1';
export { ValidatorFn, ValidatorMiddleware } from 'jsr:@trackerforce/validator4oak@1.1.0';
export { ValidatorFn, ValidatorMiddleware } from 'jsr:@trackerforce/validator4oak@1.2.0';
4 changes: 2 additions & 2 deletions test/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { type Middleware, testing } from 'jsr:@oak/oak@17.1.3';
export { assert, assertEquals, assertFalse, assertObjectMatch } from 'jsr:@std/assert@1.0.9';
export { type Middleware, testing } from 'jsr:@oak/oak@17.1.4';
export { assert, assertEquals, assertFalse, assertObjectMatch } from 'jsr:@std/assert@1.0.11';
export { type IResponse, superoak } from 'https://deno.land/x/superoak@4.8.1/mod.ts';

// Fixes superdeno@4.9.0 issue
Expand Down
Loading