From b343ce8189201038f50ac3cd5c879494023c0846 Mon Sep 17 00:00:00 2001 From: RustyNova Date: Fri, 6 May 2022 11:30:51 +0200 Subject: [PATCH 01/13] Fix OperationResult.fetchAll() not shown --- src/SelectOperationResult.ts | 4 ++++ src/interfaces/ISelectOperationResult.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/src/SelectOperationResult.ts b/src/SelectOperationResult.ts index a9be20f..1a1f429 100644 --- a/src/SelectOperationResult.ts +++ b/src/SelectOperationResult.ts @@ -38,6 +38,10 @@ export class SelectOperationResult extends OperationResult implements ISelectOpe } } + fetchAll(): Row[][] { + return this.rows + } + public getRows(): Row[][] { return this.rows } diff --git a/src/interfaces/ISelectOperationResult.ts b/src/interfaces/ISelectOperationResult.ts index 5bb9b18..eff6e6e 100644 --- a/src/interfaces/ISelectOperationResult.ts +++ b/src/interfaces/ISelectOperationResult.ts @@ -25,6 +25,7 @@ export interface ISelectOperationResult { getRows(): Row[][] getMetadata(): Metadata getObjects(): Object[] + fetchAll(): Row[][] } export default ISelectOperationResult From bd5c10693372c0d95d8cf4fa35e91dff5d4bdcc2 Mon Sep 17 00:00:00 2001 From: RustyNova016 <50844553+RustyNova016@users.noreply.github.com> Date: Fri, 6 May 2022 11:44:47 +0200 Subject: [PATCH 02/13] Create codeql-analysis.yml --- .github/workflows/codeql-analysis.yml | 72 +++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..515b5ef --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,72 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: "CodeQL" + +on: + push: + branches: [ master ] + pull_request: + # The branches below must be a subset of the branches above + branches: [ master ] + schedule: + - cron: '28 0 * * 2' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'javascript' ] + # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + # â„šī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 From f9847d2694522f4ed7c21bdda338971fccb38d28 Mon Sep 17 00:00:00 2001 From: RustyNova016 <50844553+RustyNova016@users.noreply.github.com> Date: Fri, 6 May 2022 11:49:30 +0200 Subject: [PATCH 03/13] Create dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..000d73e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" From 23ae6c2fb166cf852dc998ca71acd4ba0e8f9c03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:49:56 +0000 Subject: [PATCH 04/13] Bump @types/lodash.isboolean from 3.0.6 to 3.0.7 Bumps [@types/lodash.isboolean](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash.isboolean) from 3.0.6 to 3.0.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash.isboolean) --- updated-dependencies: - dependency-name: "@types/lodash.isboolean" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index f1bbe96..6a5a0a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mysqlx", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -20,9 +20,9 @@ "dev": true }, "@types/lodash.isboolean": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@types/lodash.isboolean/-/lodash.isboolean-3.0.6.tgz", - "integrity": "sha512-9ommZgIE6GlZW/GuSRIOSJP3X0FkOD2qqt8xBNqUVb/t4L62WiIGCPgIKK2PNfZem7bEZulM0djX9f8IG2Qg3Q==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isboolean/-/lodash.isboolean-3.0.7.tgz", + "integrity": "sha512-pQkjcu8A9aZPNLTxQ60zWI8Yqs1Qzd6ni8dhcax45oJgWWbiDcwEVAQDwxC+NucW337xhRMLxR1yh+Eb8R2YOQ==", "dev": true, "requires": { "@types/lodash": "*" From 0c231fca4901554bf2ee0c062344338f97fd9003 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:50:00 +0000 Subject: [PATCH 05/13] Bump @types/lodash.isnumber from 3.0.6 to 3.0.7 Bumps [@types/lodash.isnumber](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash.isnumber) from 3.0.6 to 3.0.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash.isnumber) --- updated-dependencies: - dependency-name: "@types/lodash.isnumber" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index f1bbe96..9d5878e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mysqlx", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -29,9 +29,9 @@ } }, "@types/lodash.isnumber": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@types/lodash.isnumber/-/lodash.isnumber-3.0.6.tgz", - "integrity": "sha512-nnfRqgijLFBEVu8W6pkHGq4hefaQOMcVwqeY19qIpf4qhV04mczNZvyT4Hc8UjOcnCIXErQG0aqIJedqlbbvVw==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isnumber/-/lodash.isnumber-3.0.7.tgz", + "integrity": "sha512-+XX8YsZ6AzWg6ukTB2g6TdL4gK6wUxIeakYV849gHoTYsb2IH0SyAywfF1xutE/EBbT3CospyfABcl9gZKD23g==", "dev": true, "requires": { "@types/lodash": "*" From a8cd9f8ec3486511a2ba0254ac8338900499c9da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:50:11 +0000 Subject: [PATCH 06/13] Bump prettier from 2.0.5 to 2.6.2 Bumps [prettier](https://github.com/prettier/prettier) from 2.0.5 to 2.6.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.0.5...2.6.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index f1bbe96..ea8c43f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mysqlx", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -84,9 +84,9 @@ "integrity": "sha512-bJNB0ZQhHyM5KqO2Z5ttQAVn/PZ2pccxaOnMcZ0Su7HA1Iv4GQTfUmzSZ6N3jcsCn9F68PZcypAvF3nDRRL+3g==" }, "prettier": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.0.5.tgz", - "integrity": "sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==", + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz", + "integrity": "sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==", "dev": true } } From 8eccf5933c7c92ba11770610ef97751ed0029b34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:50:15 +0000 Subject: [PATCH 07/13] Bump dotenv from 8.2.0 to 16.0.0 Bumps [dotenv](https://github.com/motdotla/dotenv) from 8.2.0 to 16.0.0. - [Release notes](https://github.com/motdotla/dotenv/releases) - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md) - [Commits](https://github.com/motdotla/dotenv/compare/v8.2.0...v16.0.0) --- updated-dependencies: - dependency-name: dotenv dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index f1bbe96..f36961d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mysqlx", - "version": "1.1.6", + "version": "1.1.7", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -53,9 +53,9 @@ "dev": true }, "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", + "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", "dev": true }, "google-protobuf": { diff --git a/package.json b/package.json index 8e591a0..11adc46 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "@types/lodash.isnumber": "^3.0.6", "@types/lodash.isstring": "^4.0.6", "@types/node": "^14.0.13", - "dotenv": "^8.2.0", + "dotenv": "^16.0.0", "prettier": "^2.0.5" }, "scripts": { From 42e5928b3dd8c5ed0cb362692c7b13594c40871c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 12:27:15 +0000 Subject: [PATCH 08/13] Bump @types/node from 14.0.13 to 17.0.31 Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.0.13 to 17.0.31. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 195780c..032c1c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,9 +47,9 @@ } }, "@types/node": { - "version": "14.0.13", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.13.tgz", - "integrity": "sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA==", + "version": "17.0.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.31.tgz", + "integrity": "sha512-AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q==", "dev": true }, "dotenv": { diff --git a/package.json b/package.json index 11adc46..359b8bc 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "@types/lodash.isboolean": "^3.0.6", "@types/lodash.isnumber": "^3.0.6", "@types/lodash.isstring": "^4.0.6", - "@types/node": "^14.0.13", + "@types/node": "^17.0.31", "dotenv": "^16.0.0", "prettier": "^2.0.5" }, From ea093b78e09f52725f013b6600725c6cf3ae2be4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 12:31:00 +0000 Subject: [PATCH 09/13] Bump @types/lodash.isstring from 4.0.6 to 4.0.7 Bumps [@types/lodash.isstring](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash.isstring) from 4.0.6 to 4.0.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash.isstring) --- updated-dependencies: - dependency-name: "@types/lodash.isstring" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 195780c..cad6e61 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,9 +38,9 @@ } }, "@types/lodash.isstring": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@types/lodash.isstring/-/lodash.isstring-4.0.6.tgz", - "integrity": "sha512-uUGvF9G1G7jQ5H42Y38GA9rZmUoY8wI/OMSwnW0BZA+Ra0uxzpuQf4CixXl3yG3TvF6LjuduMyt1WvKl+je8QA==", + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isstring/-/lodash.isstring-4.0.7.tgz", + "integrity": "sha512-gt4q4n1Who4JxLeFR/kduS2Tia+biQk/zdbIkOfMvAldXHJdcC5SsvZREchkwa4CwKK+DqhIm3wfigFYzNKS8Q==", "dev": true, "requires": { "@types/lodash": "*" From 7baa6508ea4f998fab9b8dfd7725daa5fca97d6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 12:31:05 +0000 Subject: [PATCH 10/13] Bump @mysql/xdevapi from 8.0.20 to 8.0.29 Bumps [@mysql/xdevapi](https://github.com/mysql/mysql-connector-nodejs) from 8.0.20 to 8.0.29. - [Release notes](https://github.com/mysql/mysql-connector-nodejs/releases) - [Changelog](https://github.com/mysql/mysql-connector-nodejs/blob/trunk/CHANGES.txt) - [Commits](https://github.com/mysql/mysql-connector-nodejs/compare/8.0.20...8.0.29) --- updated-dependencies: - dependency-name: "@mysql/xdevapi" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 195780c..69ca486 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5,12 +5,12 @@ "requires": true, "dependencies": { "@mysql/xdevapi": { - "version": "8.0.20", - "resolved": "https://registry.npmjs.org/@mysql/xdevapi/-/xdevapi-8.0.20.tgz", - "integrity": "sha512-7XIMfrl4S76NV2vkIbiIvdHR75po+LgqokscIdH1Te1bhLFjEIcHnpCiDUXWSK7z1HiJndNnZovg+s5qEs5eNQ==", + "version": "8.0.29", + "resolved": "https://registry.npmjs.org/@mysql/xdevapi/-/xdevapi-8.0.29.tgz", + "integrity": "sha512-9E6+g9fKBu2mhLEnYfr+KKRyb5W52Z01NkBrgS3uQA7MweZmlLV/pMlAP27J5GfBsW2okP8gnm3Dkrj0ZhfR2Q==", "requires": { - "google-protobuf": "3.4.0", - "parsimmon": "1.6.2" + "google-protobuf": "3.19.4", + "parsimmon": "1.16.0" } }, "@types/lodash": { @@ -59,9 +59,9 @@ "dev": true }, "google-protobuf": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.4.0.tgz", - "integrity": "sha512-8gq3CyAZFyHJ5dZ0Du/OztbwxEHhHTNOtfr1cSUQYuW6lsrKjMU2DETvOlxPpYNKZ7zAW4xEE7UWqrTxH7bG6Q==" + "version": "3.19.4", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.4.tgz", + "integrity": "sha512-OIPNCxsG2lkIvf+P5FNfJ/Km95CsXOBecS9ZcAU6m2Rq3svc0Apl9nB3GMDNKfQ9asNv4KjyAqGwPQFrVle3Yg==" }, "lodash.isboolean": { "version": "3.0.3", @@ -79,9 +79,9 @@ "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, "parsimmon": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-1.6.2.tgz", - "integrity": "sha512-bJNB0ZQhHyM5KqO2Z5ttQAVn/PZ2pccxaOnMcZ0Su7HA1Iv4GQTfUmzSZ6N3jcsCn9F68PZcypAvF3nDRRL+3g==" + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-1.16.0.tgz", + "integrity": "sha512-tekGDz2Lny27SQ/5DzJdIK0lqsWwZ667SCLFIDCxaZM7VNgQjyKLbaL7FYPKpbjdxNAXFV/mSxkq5D2fnkW4pA==" }, "prettier": { "version": "2.6.2", From 376e8b70aa3c23e4190e197cd4226bb19bdd9d66 Mon Sep 17 00:00:00 2001 From: RustyNova Date: Fri, 6 May 2022 14:31:38 +0200 Subject: [PATCH 11/13] ignore .github --- .npmignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmignore b/.npmignore index 41dde7a..cefe593 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,6 @@ node_modules src .gitignore +.github tsconfig.json .idea From d73e99d3358b0913752ba73006588fed93e6c36e Mon Sep 17 00:00:00 2001 From: RustyNova Date: Fri, 6 May 2022 14:34:44 +0200 Subject: [PATCH 12/13] Fixed package-lock.json --- package-lock.json | 123 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 122 insertions(+), 1 deletion(-) diff --git a/package-lock.json b/package-lock.json index 838c54d..d888f0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,8 +1,129 @@ { "name": "mysqlx", "version": "1.1.7", - "lockfileVersion": 1, + "lockfileVersion": 2, "requires": true, + "packages": { + "": { + "name": "mysqlx", + "version": "1.1.7", + "license": "Apache-2.0", + "dependencies": { + "@mysql/xdevapi": "^8.0.20", + "lodash.isboolean": "^3.0.3", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1" + }, + "devDependencies": { + "@types/lodash.isboolean": "^3.0.6", + "@types/lodash.isnumber": "^3.0.6", + "@types/lodash.isstring": "^4.0.6", + "@types/node": "^17.0.31", + "dotenv": "^16.0.0", + "prettier": "^2.0.5" + } + }, + "node_modules/@mysql/xdevapi": { + "version": "8.0.29", + "resolved": "https://registry.npmjs.org/@mysql/xdevapi/-/xdevapi-8.0.29.tgz", + "integrity": "sha512-9E6+g9fKBu2mhLEnYfr+KKRyb5W52Z01NkBrgS3uQA7MweZmlLV/pMlAP27J5GfBsW2okP8gnm3Dkrj0ZhfR2Q==", + "dependencies": { + "google-protobuf": "3.19.4", + "parsimmon": "1.16.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/@types/lodash": { + "version": "4.14.155", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.155.tgz", + "integrity": "sha512-vEcX7S7aPhsBCivxMwAANQburHBtfN9RdyXFk84IJmu2Z4Hkg1tOFgaslRiEqqvoLtbCBi6ika1EMspE+NZ9Lg==", + "dev": true + }, + "node_modules/@types/lodash.isboolean": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isboolean/-/lodash.isboolean-3.0.7.tgz", + "integrity": "sha512-pQkjcu8A9aZPNLTxQ60zWI8Yqs1Qzd6ni8dhcax45oJgWWbiDcwEVAQDwxC+NucW337xhRMLxR1yh+Eb8R2YOQ==", + "dev": true, + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/lodash.isnumber": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isnumber/-/lodash.isnumber-3.0.7.tgz", + "integrity": "sha512-+XX8YsZ6AzWg6ukTB2g6TdL4gK6wUxIeakYV849gHoTYsb2IH0SyAywfF1xutE/EBbT3CospyfABcl9gZKD23g==", + "dev": true, + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/lodash.isstring": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/@types/lodash.isstring/-/lodash.isstring-4.0.7.tgz", + "integrity": "sha512-gt4q4n1Who4JxLeFR/kduS2Tia+biQk/zdbIkOfMvAldXHJdcC5SsvZREchkwa4CwKK+DqhIm3wfigFYzNKS8Q==", + "dev": true, + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/node": { + "version": "17.0.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.31.tgz", + "integrity": "sha512-AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q==", + "dev": true + }, + "node_modules/dotenv": { + "version": "16.0.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.0.tgz", + "integrity": "sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/google-protobuf": { + "version": "3.19.4", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.19.4.tgz", + "integrity": "sha512-OIPNCxsG2lkIvf+P5FNfJ/Km95CsXOBecS9ZcAU6m2Rq3svc0Apl9nB3GMDNKfQ9asNv4KjyAqGwPQFrVle3Yg==" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + }, + "node_modules/parsimmon": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-1.16.0.tgz", + "integrity": "sha512-tekGDz2Lny27SQ/5DzJdIK0lqsWwZ667SCLFIDCxaZM7VNgQjyKLbaL7FYPKpbjdxNAXFV/mSxkq5D2fnkW4pA==" + }, + "node_modules/prettier": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.6.2.tgz", + "integrity": "sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + } + }, "dependencies": { "@mysql/xdevapi": { "version": "8.0.29", From 17849a42929bce7a4e9d7b1847c9f3b9f6e7bc26 Mon Sep 17 00:00:00 2001 From: RustyNova Date: Fri, 6 May 2022 14:57:18 +0200 Subject: [PATCH 13/13] Updated package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 359b8bc..d47e022 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mysqlx", - "version": "1.1.7", + "version": "1.1.8", "description": "Staticly typed MySQL Connector for NodeJS using the X Protocol.", "main": "lib/mysqlx.js", "repository": "https://github.com/danang-id/mysqlx.git",