Skip to content

Commit e698fd4

Browse files
authored
Bump switcher-client-deno@2.3.0, Deno runtime to 2.4.0 (#46)
1 parent f4a2375 commit e698fd4

File tree

17 files changed

+102
-42
lines changed

17 files changed

+102
-42
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:2.3.5
1+
FROM denoland/deno:2.4.0
22

33
# Install tools
44
RUN apt-get update && \

.github/workflows/master.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020

21-
- name: Setup Deno v2.3.5
22-
uses: denoland/setup-deno@v1
21+
- name: Setup Deno v2.4.0
22+
uses: denoland/setup-deno@v2
2323
with:
24-
deno-version: v2.3.5
24+
deno-version: v2.4.0
2525

2626
- name: Setup LCOV
2727
run: sudo apt install -y lcov
@@ -38,7 +38,6 @@ jobs:
3838
- name: SonarCloud Scan
3939
uses: sonarsource/sonarqube-scan-action@v5.2.0
4040
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4241
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
4342

4443
docker:

.github/workflows/re-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
fetch-depth: 0
2222
ref: ${{ github.event.inputs.tag }}
2323

24-
- name: Setup Deno v2.3.5
25-
uses: denoland/setup-deno@v1
24+
- name: Setup Deno v2.4.0
25+
uses: denoland/setup-deno@v2
2626
with:
27-
deno-version: v2.3.5
27+
deno-version: v2.4.0
2828

2929
- name: Verify formatting
3030
run: deno task fmt

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
with:
1717
fetch-depth: 0
1818

19-
- name: Setup Deno v2.3.5
20-
uses: denoland/setup-deno@v1
19+
- name: Setup Deno v2.4.0
20+
uses: denoland/setup-deno@v2
2121
with:
22-
deno-version: v2.3.5
22+
deno-version: v2.4.0
2323

2424
- name: Verify formatting
2525
run: deno task fmt

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
coverage
33
dist
44
.scannerwork
5-
.env.prod
5+
.env.prod
6+
.env

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM denoland/deno:alpine-2.3.5
1+
FROM denoland/deno:alpine-2.4.0
22

33
ENV APP_HOME=/home/app
44
WORKDIR $APP_HOME

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@switcherapi/switcher-management-feature",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "Feature Flag Service for Switcher Management",
55
"tasks": {
66
"run": "deno run --allow-net --allow-env --allow-read --allow-write src/index.ts",

deno.lock

Lines changed: 71 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sonar.projectKey=switcherapi_switcher-management-feature
22
sonar.projectName=switcher-management-feature
33
sonar.organization=switcherapi
4-
sonar.projectVersion=1.1.0
4+
sonar.projectVersion=1.1.1
55

66
sonar.javascript.lcov.reportPaths=coverage/report.lcov
77

src/api-docs/swagger-info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
title: 'Switcher Management Feature',
3-
version: 'v1.1.0',
3+
version: 'v1.1.1',
44
description: 'Feature Flag Service for Switcher Management.',
55
contact: {
66
name: 'Roger Floriano (petruki)',

0 commit comments

Comments
 (0)