Skip to content

Commit

Permalink
Bump switcher-client-deno@2.0.2 and Deno runtime to 1.44.0 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
petruki committed Jun 4, 2024
1 parent 2cd2481 commit 50e6981
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
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 v1.43.6
- name: Setup Deno v1.44.0
uses: denoland/setup-deno@v1
with:
deno-version: v1.43.6
deno-version: v1.44.0

- 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 v1.43.6
- name: Setup Deno v1.44.0
uses: denoland/setup-deno@v1
with:
deno-version: v1.43.6
deno-version: v1.44.0

- 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 Denov1.43.6
- name: Setup Denov1.44.0
uses: denoland/setup-deno@v1
with:
deno-version: v1.43.6
deno-version: v1.44.0

- 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-1.43.6
FROM denoland/deno:alpine-1.44.0

ENV APP_HOME=/home/app
WORKDIR $APP_HOME
Expand Down
19 changes: 13 additions & 6 deletions deno.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"jsr:@std/assert@^0.222.1": "jsr:@std/assert@0.222.1",
"jsr:@std/assert@^0.223.0": "jsr:@std/assert@0.223.0",
"jsr:@std/assert@^0.225.2": "jsr:@std/assert@0.225.3",
"jsr:@std/assert@^0.226.0": "jsr:@std/assert@0.226.0",
"jsr:@std/bytes@0.222": "jsr:@std/bytes@0.222.1",
"jsr:@std/bytes@0.223": "jsr:@std/bytes@0.223.0",
"jsr:@std/bytes@^0.223.0": "jsr:@std/bytes@0.223.0",
Expand All @@ -23,8 +24,8 @@
"jsr:@std/media-types@0.222": "jsr:@std/media-types@0.222.1",
"jsr:@std/media-types@0.223": "jsr:@std/media-types@0.223.0",
"jsr:@std/path@0.223": "jsr:@std/path@0.223.0",
"jsr:@std/path@^0.225.1": "jsr:@std/path@0.225.1",
"jsr:@switcherapi/switcher-client-deno@2.0.1": "jsr:@switcherapi/switcher-client-deno@2.0.1",
"jsr:@std/path@^0.225.1": "jsr:@std/path@0.225.2",
"jsr:@switcherapi/switcher-client-deno@2.0.2": "jsr:@switcherapi/switcher-client-deno@2.0.2",
"jsr:@trackerforce/validator4oak@1.0.1": "jsr:@trackerforce/validator4oak@1.0.1",
"npm:@types/node": "npm:@types/node@18.16.19",
"npm:path-to-regexp@6.2.1": "npm:path-to-regexp@6.2.1"
Expand Down Expand Up @@ -63,6 +64,9 @@
"@std/assert@0.225.3": {
"integrity": "b3c2847aecf6955b50644cdb9cf072004ea3d1998dd7579fc0acb99dbb23bd4f"
},
"@std/assert@0.226.0": {
"integrity": "0dfb5f7c7723c18cec118e080fec76ce15b4c31154b15ad2bd74822603ef75b3"
},
"@std/bytes@0.222.1": {
"integrity": "04dbf33e889ed5f9f6a87bc6b6b882dc105fffae6d2b042f832d92d4f34771c0"
},
Expand Down Expand Up @@ -126,11 +130,14 @@
"jsr:@std/assert@^0.223.0"
]
},
"@std/path@0.225.1": {
"integrity": "8c3220635a73730eb51fe43de9e10b79e2724a5bb8638b9355d35ae012fd9429"
"@std/path@0.225.2": {
"integrity": "0f2db41d36b50ef048dcb0399aac720a5348638dd3cb5bf80685bf2a745aa506",
"dependencies": [
"jsr:@std/assert@^0.226.0"
]
},
"@switcherapi/switcher-client-deno@2.0.1": {
"integrity": "e0c72c9a3e62ea6fdbff2b402210c34df407d3a539ac7639d527d00bda3624e7",
"@switcherapi/switcher-client-deno@2.0.2": {
"integrity": "a665ee63b889e843e861f51c893e7f2013ea983615aba094d160076120344157",
"dependencies": [
"jsr:@std/fs@0.229.1"
]
Expand Down
2 changes: 1 addition & 1 deletion src/deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export { Application, Context, type Middleware, type Next, Router } from 'jsr:@oak/oak@16.0.0';
export { load } from 'https://deno.land/std@0.224.0/dotenv/mod.ts';
export { bold, cyan, green } from 'https://deno.land/std@0.224.0/fmt/colors.ts';
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.0.1';
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.0.2';
export { ValidatorFn, ValidatorMiddleware } from 'jsr:@trackerforce/validator4oak@1.0.1';
2 changes: 1 addition & 1 deletion test/deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { type Middleware, testing } from 'jsr:@oak/oak@16.0.0';
export { assert, assertEquals, assertFalse, assertObjectMatch } from 'https://deno.land/std@0.224.0/assert/mod.ts';
export { superoak } from 'https://deno.land/x/superoak@4.8.1/mod.ts';
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.0.1';
export { Client } from 'jsr:@switcherapi/switcher-client-deno@2.0.2';

0 comments on commit 50e6981

Please sign in to comment.