Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

chore(deps): update all dependencies (patch) #105

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .kontinuous/values.yaml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ app:
memory: 1Gi

redis:
image: redis:6.2.5-alpine3.14
image: redis:6.2.6-alpine3.14

jobs:
runs:
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -33,35 +33,35 @@
"cross-env": "7.0.3",
"dotenv": "8.2.0",
"esm": "3.2.25",
"fuse.js": "6.4.3",
"fuse.js": "6.4.6",
"html-to-text": "5.1.1",
"koa": "2.13.0",
"koa": "2.13.4",
"npmlog": "4.1.2",
"redis": "3.0.2",
"unist-util-flat-filter": "1.0.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/core": "7.12.17",
"@babel/plugin-transform-runtime": "7.12.17",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-env": "7.12.17",
"@socialgouv/eslint-config-strict": "1.0.0-beta.5",
"@types/jest": "26.0.16",
"@types/koa": "2.11.6",
"@types/node": "14.14.10",
"@types/npmlog": "4.1.2",
"@types/redis": "2.8.28",
"@types/jest": "26.0.24",
"@types/koa": "2.11.8",
"@types/node": "14.14.45",
"@types/npmlog": "4.1.6",
"@types/redis": "2.8.32",
"axios": "0.21.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"eslint": "7.14.0",
"eslint-plugin-sort-requires": "2.1.0",
"husky": "4.3.0",
"husky": "4.3.8",
"jest": "26.6.3",
"nodemon": "2.0.6",
"nodemon": "2.0.22",
"prettier": "2.2.1",
"swagger-cli": "4.0.4",
"typescript": "3.9.7",
"typescript": "3.9.10",
"waait": "1.0.5"
},
"husky": {
2,128 changes: 905 additions & 1,223 deletions yarn.lock

Large diffs are not rendered by default.


Unchanged files with check annotations Beta

throw new ApiError("When provided, the `query` query parameter must be a {string}.", 422);
}
const body = findAgreements(query);

Check failure on line 43 in src/controllers/Agreement.js

GitHub Actions / Test application

Argument of type 'string | string[] | undefined' is not assignable to parameter of type 'string | undefined'.
ctx.body = body;
} catch (err) {
throw new ApiError("The `articleIdsOrCids` query parameter must be a {string}.", 422);
case typeof articleIdsOrCids !== "undefined" &&
!/^KALIARTI\d{12}(,KALIARTI\d{12})*$/.test(articleIdsOrCids):

Check failure on line 65 in src/controllers/AgreementArticle.js

GitHub Actions / Test application

Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
throw new ApiError(
"The `articleIdsOrCids` query parameter must be comma-separated list of agreement article IDs or CIDs.",
422,
const body =
agreementIdOrIdcc !== undefined
? await findAgreementArticles(agreementIdOrIdcc, query)

Check failure on line 74 in src/controllers/AgreementArticle.js

GitHub Actions / Test application

Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
: await Promise.all(articleIdsOrCids.split(",").map(getAgreementArticleByIdOrCid));

Check failure on line 75 in src/controllers/AgreementArticle.js

GitHub Actions / Test application

Object is possibly 'undefined'.

Check failure on line 75 in src/controllers/AgreementArticle.js

GitHub Actions / Test application

Property 'split' does not exist on type 'string | string[]'.
ctx.body = body;
} catch (err) {
throw new ApiError("When provided, the `query` query parameter must be a {string}.", 422);
}
const body = findCodes(query);

Check failure on line 43 in src/controllers/Code.js

GitHub Actions / Test application

Argument of type 'string | string[] | undefined' is not assignable to parameter of type 'string | undefined'.
ctx.body = body;
} catch (err) {
throw new ApiError("The `articleIdsOrCids` query parameter must be a {string}.", 422);
case typeof articleIdsOrCids !== "undefined" &&
!/^LEGIARTI\d{12}(,LEGIARTI\d{12})*$/.test(articleIdsOrCids):

Check failure on line 60 in src/controllers/CodeArticle.js

GitHub Actions / Test application

Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
throw new ApiError(
"The `articleIdsOrCids` query parameter must be comma-separated list of code article IDs or CIDs.",
422,
const body =
codeId !== undefined
? await findCodeArticles(codeId, query)

Check failure on line 69 in src/controllers/CodeArticle.js

GitHub Actions / Test application

Argument of type 'string | string[]' is not assignable to parameter of type 'string'.
: await Promise.all(articleIdsOrCids.split(",").map(getCodeArticleByIdOrCid));

Check failure on line 70 in src/controllers/CodeArticle.js

GitHub Actions / Test application

Object is possibly 'undefined'.

Check failure on line 70 in src/controllers/CodeArticle.js

GitHub Actions / Test application

Property 'split' does not exist on type 'string | string[]'.
ctx.body = body;
} catch (err) {