From b056a0c4498782e683a8a2ec711f5a2328ea415a Mon Sep 17 00:00:00 2001 From: Daniel-iel Date: Tue, 16 Jan 2024 11:55:39 -0300 Subject: [PATCH 1/4] fix packages vulnerabilities --- docs/docs/mapping-string-into-type.md | 2 +- docs/package.json | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docs/mapping-string-into-type.md b/docs/docs/mapping-string-into-type.md index 03aec9d..af83db3 100644 --- a/docs/docs/mapping-string-into-type.md +++ b/docs/docs/mapping-string-into-type.md @@ -4,7 +4,7 @@ sidebar_position: 4 # Type Parser -If you require extracting positional strings and converting the values into their final forms, such as obtaining a string representing a datetime or currency, you can create an interceptor reader by implementing the `ITypeParser` interface. This allows you to perform custom actions before the value is set to the final property. +If you require extracting positional strings and converting the values into their final forms, such as obtaining a string representing a datetime or decimal currency format, you can create an interceptor reader by implementing the `ITypeParser` interface. This allows you to perform custom actions before the value is set to the final property. here and example of intercept the property read. diff --git a/docs/package.json b/docs/package.json index 800d44e..5692517 100644 --- a/docs/package.json +++ b/docs/package.json @@ -14,16 +14,16 @@ "write-heading-ids": "docusaurus write-heading-ids" }, "dependencies": { - "@docusaurus/core": "^2.2.0", - "@docusaurus/plugin-google-gtag": "^2.2.0", - "@docusaurus/preset-classic": "^2.2.0", + "@docusaurus/core": "^3.1.0", + "@docusaurus/plugin-google-gtag": "^3.1.0", + "@docusaurus/preset-classic": "^3.1.0", "@mdx-js/react": "^1.6.21", - "@svgr/webpack": "^5.5.0", + "@svgr/webpack": "^8.1.0", "clsx": "^1.1.1", "file-loader": "^6.2.0", "prism-react-renderer": "^1.2.1", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.0.1", + "react-dom": "^18.0.1", "url-loader": "^4.1.1" }, "browserslist": { From 56a33a278098ada291ee888909cef2440efdf39f Mon Sep 17 00:00:00 2001 From: Daniel-iel Date: Tue, 16 Jan 2024 11:57:34 -0300 Subject: [PATCH 2/4] fix node version --- .github/workflows/ci-documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-documentation.yml b/.github/workflows/ci-documentation.yml index 4dfed9e..b9a46b1 100644 --- a/.github/workflows/ci-documentation.yml +++ b/.github/workflows/ci-documentation.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Node 🔧 uses: actions/setup-node@v1 with: - node-version: "16.x" + node-version: "20.x" cache: "npm" cache-dependency-path: ./docs/package-lock.json path: $DOC_FOLDER From 218818148c7a2047fb835bb300f45cad9df1627c Mon Sep 17 00:00:00 2001 From: Daniel-iel Date: Tue, 30 Apr 2024 13:30:52 -0300 Subject: [PATCH 3/4] add a version on stryker package --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 139af8f..7482dbc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: dotnet-version: ${{ matrix.dotnet-version }} - name: Setup Stryker 🔧 - run: dotnet tool install -g dotnet-stryker + run: dotnet tool install -g dotnet-stryker --version 4.0.0 - name: Install dotnet-format tool 🔧 run: dotnet tool install -g dotnet-format From e6ee2f4f04533b38256031fa0c48cad6e0acbf26 Mon Sep 17 00:00:00 2001 From: Daniel-iel Date: Tue, 30 Apr 2024 13:37:39 -0300 Subject: [PATCH 4/4] down grade stryker version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7482dbc..7bdddf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: dotnet-version: ${{ matrix.dotnet-version }} - name: Setup Stryker 🔧 - run: dotnet tool install -g dotnet-stryker --version 4.0.0 + run: dotnet tool install -g dotnet-stryker --version 3.13.2 - name: Install dotnet-format tool 🔧 run: dotnet tool install -g dotnet-format