From 4fc36a7142c54ade72fcc0bc906f1a1db1f7a082 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Apr 2022 07:01:05 +0000 Subject: [PATCH 1/8] chore(deps): bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/ci-codeql-analysis.yml | 2 +- .github/workflows/ci-npm-publish.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 43807c5..d3d9712 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: 12 @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: 12 diff --git a/.github/workflows/ci-codeql-analysis.yml b/.github/workflows/ci-codeql-analysis.yml index 41ea8a3..5de6b22 100644 --- a/.github/workflows/ci-codeql-analysis.yml +++ b/.github/workflows/ci-codeql-analysis.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/ci-npm-publish.yml b/.github/workflows/ci-npm-publish.yml index 45816ab..f7e620a 100644 --- a/.github/workflows/ci-npm-publish.yml +++ b/.github/workflows/ci-npm-publish.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: 12 @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: 12 From 4469963baecc0f8cd6353a60974ed29591a4a672 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 May 2022 07:01:33 +0000 Subject: [PATCH 2/8] chore(deps): bump github/codeql-action from 1 to 2 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v1...v2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-codeql-analysis.yml b/.github/workflows/ci-codeql-analysis.yml index 5de6b22..1bb21bf 100644 --- a/.github/workflows/ci-codeql-analysis.yml +++ b/.github/workflows/ci-codeql-analysis.yml @@ -30,7 +30,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + 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. @@ -39,4 +39,4 @@ jobs: # queries: ./path/to/local/query, your-org/your-repo/queries@main - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From 126390bc1b285c93625bcb409c3487c73a9a6532 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Jun 2022 21:55:17 +0000 Subject: [PATCH 3/8] chore(deps): bump actions/setup-node from 2 to 3 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/ci-npm-publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d3d9712..f77672c 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 12 registry-url: https://registry.npmjs.org/ @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 12 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/ci-npm-publish.yml b/.github/workflows/ci-npm-publish.yml index f7e620a..5da634b 100644 --- a/.github/workflows/ci-npm-publish.yml +++ b/.github/workflows/ci-npm-publish.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 12 registry-url: https://registry.npmjs.org/ @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 12 registry-url: https://registry.npmjs.org/ From 429f59a65d6a642d35db39833410a632258ec030 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 May 2022 07:02:15 +0000 Subject: [PATCH 4/8] chore(deps-dev): bump mocha from 9.2.2 to 10.0.0 Bumps [mocha](https://github.com/mochajs/mocha) from 9.2.2 to 10.0.0. - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v9.2.2...v10.0.0) --- updated-dependencies: - dependency-name: mocha dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7382931..4fd1bba 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "eslint": "^7.32.0", "eslint-config-google": "^0.14.0", "eslint-config-prettier": "^8.3.0", - "mocha": "^9.1.0", + "mocha": "^10.0.0", "nyc": "^15.1.0", "prettier": "^2.3.2" } From ec8092f8a868bebf7affb4aae7929d968ba287ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jun 2022 09:10:59 +0000 Subject: [PATCH 5/8] chore(deps-dev): bump eslint from 7.32.0 to 8.16.0 Bumps [eslint](https://github.com/eslint/eslint) from 7.32.0 to 8.16.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.32.0...v8.16.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4fd1bba..23b3508 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "check-types": "11.1.2" }, "devDependencies": { - "eslint": "^7.32.0", + "eslint": "^8.16.0", "eslint-config-google": "^0.14.0", "eslint-config-prettier": "^8.3.0", "mocha": "^10.0.0", From 6e6c32350542531e199a7e7c8b102017a4c20fec Mon Sep 17 00:00:00 2001 From: Thiren Bunsee Date: Sat, 11 Jun 2022 15:33:39 +0200 Subject: [PATCH 6/8] chore(deps-dev): updated npm dev dependencies bump eslint-config-prettier from 8.3.0 tp 8.5.0 bump prettier from 2.3.2 tp 2.6.2 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 23b3508..0277687 100644 --- a/package.json +++ b/package.json @@ -47,9 +47,9 @@ "devDependencies": { "eslint": "^8.16.0", "eslint-config-google": "^0.14.0", - "eslint-config-prettier": "^8.3.0", + "eslint-config-prettier": "^8.5.0", "mocha": "^10.0.0", "nyc": "^15.1.0", - "prettier": "^2.3.2" + "prettier": "^2.6.2" } } From 3806cf851e0db743a37841dabe31637fc1bd51dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 07:00:44 +0000 Subject: [PATCH 7/8] chore(deps): bump check-types from 11.1.2 to 11.2.2 Bumps [check-types](https://gitlab.com/philbooth/check-types.js) from 11.1.2 to 11.2.2. - [Release notes](https://gitlab.com/philbooth/check-types.js/tags) - [Changelog](https://gitlab.com/philbooth/check-types.js/blob/master/HISTORY.md) - [Commits](https://gitlab.com/philbooth/check-types.js/commits/master) --- updated-dependencies: - dependency-name: check-types dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0277687..c95d9e3 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "node": ">=12" }, "dependencies": { - "check-types": "11.1.2" + "check-types": "11.2.2" }, "devDependencies": { "eslint": "^8.16.0", From 9242f8d76e87571b87417cca49ce50d0c7beac72 Mon Sep 17 00:00:00 2001 From: Thiren Bunsee Date: Fri, 13 Jan 2023 01:27:34 +0200 Subject: [PATCH 8/8] 1.0.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c95d9e3..3578f41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@synatic/json-magic", - "version": "1.0.0", + "version": "1.0.1", "description": "Utilities for manipulating JSON objects.", "main": "index.js", "files": [