Commit Graph

1998 Commits

Author SHA1 Message Date
dependabot[bot]
65832bf572 build(deps-dev): bump @types/node from 20.14.15 to 20.16.1
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.15 to 20.16.1.
- [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-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-19 11:25:21 +00:00
per1234
e29726f2f9 Merge pull request #1034 from arduino/dependabot/npm_and_yarn/types/node-20.14.15
build(deps-dev): bump @types/node from 20.14.14 to 20.14.15
2024-08-12 05:07:17 -07:00
dependabot[bot]
7d937f1419 build(deps-dev): bump @types/node from 20.14.14 to 20.14.15
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.14 to 20.14.15.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-12 11:55:04 +00:00
per1234
df3a5facef Merge pull request #1032 from arduino/dependabot/npm_and_yarn/types/node-20.14.14
build(deps-dev): bump @types/node from 20.14.13 to 20.14.14
2024-08-02 04:35:15 -07:00
dependabot[bot]
b903a16fb7 build(deps-dev): bump @types/node from 20.14.13 to 20.14.14
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.13 to 20.14.14.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-02 11:25:58 +00:00
per1234
1f17a07942 Merge pull request #1031 from per1234/correct-step-name
Correct step name in integration test workflow
2024-08-01 22:00:40 -07:00
per1234
e2fa094b22 Correct step name in integration test workflow 2024-08-01 21:58:55 -07:00
per1234
258789eee1 Merge pull request #1030 from per1234/fix-macos
Use versions of Task with Apple Silicon builds in tests
2024-08-01 21:46:51 -07:00
per1234
63fd9f48fd Use versions of Task with Apple Silicon builds in tests
The unit and integration tests install various versions of Task.

The GitHub Actions macos-latest runner was recently changed from using x86 machines to Apple Silicon/ARM machines.

Task is now built for both architectures. However, this was not done for the older versions of Task previously used for the tests. The runner architecture switch caused the tests to start failing spuriously on the macos-latest GitHub Actions workflow run jobs:

```
FAIL __tests__/main.test.ts
  installer tests
    ✕ Downloads version of Task if no matching version is installed (188 ms)
    Gets the latest release of Task
      ✕ Gets the latest version of Task 2.5 using 2.5 and no matching version is installed (174 ms)
      ✕ Gets latest version of Task using 2.x and no matching version is installed (68 ms)
      ✕ Gets preview version of Task using 3.x and no matching version is installed (167 ms)
      ✕ Skips version computing when a valid semver is provided (164 ms)

  ● installer tests › Downloads version of Task if no matching version is installed

    Failed to download version v2.6.0: Error: Unexpected HTTP response: 404

      165 |       core.debug(error.toString());
      166 |     }
    > 167 |     throw new Error(`Failed to download version ${version}: ${error}`);
          |           ^
      168 |   }
      169 |
      170 |   // Extract

      at src/installer.ts:167:11
          at Generator.throw (<anonymous>)
      at rejected (src/installer.ts:40:65)

  ● installer tests › Gets the latest release of Task › Gets the latest version of Task 2.5 using 2.5 and no matching version is installed

    Failed to download version v2.5.2: Error: Unexpected HTTP response: 404

      165 |       core.debug(error.toString());
      166 |     }
    > 167 |     throw new Error(`Failed to download version ${version}: ${error}`);
          |           ^
      168 |   }
      169 |
      170 |   // Extract

      at src/installer.ts:167:11
          at Generator.throw (<anonymous>)
      at rejected (src/installer.ts:40:65)

  ● installer tests › Gets the latest release of Task › Gets latest version of Task using 2.x and no matching version is installed

    Failed to download version v2.6.0: Error: Unexpected HTTP response: 404

      165 |       core.debug(error.toString());
      166 |     }
    > 167 |     throw new Error(`Failed to download version ${version}: ${error}`);
          |           ^
      168 |   }
      169 |
      170 |   // Extract

      at src/installer.ts:167:11
          at Generator.throw (<anonymous>)
      at rejected (src/installer.ts:40:65)

  ● installer tests › Gets the latest release of Task › Gets preview version of Task using 3.x and no matching version is installed

    Failed to download version v3.0.0-preview1: Error: Unexpected HTTP response: 404

      165 |       core.debug(error.toString());
      166 |     }
    > 167 |     throw new Error(`Failed to download version ${version}: ${error}`);
          |           ^
      168 |   }
      169 |
      170 |   // Extract

      at src/installer.ts:167:11
          at Generator.throw (<anonymous>)
      at rejected (src/installer.ts:40:65)

  ● installer tests › Gets the latest release of Task › Skips version computing when a valid semver is provided

    Failed to download version v3.0.0: Error: Unexpected HTTP response: 404

      165 |       core.debug(error.toString());
      166 |     }
    > 167 |     throw new Error(`Failed to download version ${version}: ${error}`);
          |           ^
      168 |   }
      169 |
      170 |   // Extract

      at src/installer.ts:167:11
          at Generator.throw (<anonymous>)
      at rejected (src/installer.ts:40:65)
```

```
Error: Failed to download version v3.4.1: Error: Unexpected HTTP response: 404
```

The obvious solution would be to pin the runner to the last x86 runner: macos-13 in the test runner workflows. However, GitHub phases out runners over time so this would not be a future proof solution. The chosen solution is to continue to use the Apple Silicon macos-latest runner and adjust the tests to use versions of Task for which an Apple Silicon build is available.

This was not possible for the integration test of the action's major version pinning capability. The reason is that a previous major version (2.x) must be used in this test in order to allow a consistent assertion, since the installed version would change over time if the latest major version was used. Apple Silicon builds are not available in the 2.x Task version series. For this reason, the integration test runner workflow is configured to skip that test on the macos-latest runner job. The Linux and Windows integration test runner jobs, as well as unit test (which is not constrained in this way due to using artificial tags data) will provide sufficient coverage for this capability.
2024-08-01 21:39:00 -07:00
per1234
4158d2b0c8 Merge pull request #986 from arduino/dependabot/npm_and_yarn/markdownlint-cli-0.41.0
build(deps-dev): bump markdownlint-cli from 0.37.0 to 0.41.0
2024-08-01 13:51:08 -07:00
dependabot[bot]
5f44d797b2 build(deps-dev): bump markdownlint-cli from 0.37.0 to 0.41.0
Bumps [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) from 0.37.0 to 0.41.0.
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](https://github.com/igorshubovych/markdownlint-cli/compare/v0.37.0...v0.41.0)

---
updated-dependencies:
- dependency-name: markdownlint-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-01 20:48:50 +00:00
per1234
df756c1a8c Merge pull request #1019 from arduino/dependabot/npm_and_yarn/semver-7.6.3
build(deps): bump semver from 7.6.2 to 7.6.3
2024-08-01 13:47:15 -07:00
per1234
3764cfd01a Repackage action following semver bump
GitHub downloads each action run in a workflow during runtime and executes it as a complete package of code before you
can use workflow commands like run to interact with the runner machine. This means that we must provide all JavaScript
package dependencies as part of the distributed action in order for it to be usable in workflows.

A naive approach to doing this is checking in the `node_modules` folder. However, this approach results in a huge amount
of frequently changing external content being included in the repository, much of which is not even part of the executed
program.

A far better approach is to use the excellent ncc tool to compile the program, including all the relevant code from the
dependencies, into a single file.

We use a "continuous packaging" approach, where the packaged action code that is generated via ncc is always kept in
sync with the development source code and dependencies. This allows a beta version of the action to be easily used in
workflows by beta testers or those who need changes not in the release simply by using the name of the branch as the
action ref (e.g., `uses: arduino/arduino-lint-action@main` will cause the version of the action from the tip of the
`main` branch to be used by the workflow run).

The update of the package dependency results in a change to the packaged code, so the packaging is here updated
accordingly.
2024-08-01 13:39:13 -07:00
per1234
f39f1c77c5 Update dependency license metadata cache for semver bump 2024-08-01 13:38:17 -07:00
dependabot[bot]
58879f56b9 build(deps): bump semver from 7.6.2 to 7.6.3
Bumps [semver](https://github.com/npm/node-semver) from 7.6.2 to 7.6.3.
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](https://github.com/npm/node-semver/compare/v7.6.2...v7.6.3)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-08-01 20:27:55 +00:00
per1234
397c82f484 Merge pull request #1029 from arduino/engine
Use engines.node as source of version data for actions/setup-node action
2024-08-01 13:26:43 -07:00
per1234
a57ecf9bc4 Configure npm to enforce standard project Node.js version
This will produce an error if a contributor attempts to run an npm command in the project using an unsupported version
of Node.js.
2024-08-01 13:25:01 -07:00
per1234
77bb572fdf Use engines.node as source of version data for actions/setup-node action
The actions/setup-node GitHub Actions action is used to set up Node.js in the GitHub Actions runner machine.

The action supports obtaining the Node.js version to set up from the `engines.node` field of the package.json file.

This allows us to define the standardized version of Node.js for use by project contributors in a single place rather
than having to maintain multiple instances of that data.
2024-08-01 13:25:01 -07:00
per1234
f6a7bd0dc6 Merge pull request #1028 from arduino/bump-eslint
Bump eslint packages
2024-08-01 12:36:49 -07:00
per1234
c00f28d64b Bump eslint packages
It is not currently possible to bump the @typescript-eslint/eslint-plugin and @typescript-eslint/parser packages all the
way to the latest 8.0.0 version because the eslint-config-airbnb-typescript has a peer dependency on 7.x of those
packages. But it is at least possible to bump the eslint packages to 7.x, which must also be accompanied by the bump of
eslint-config-airbnb-typescript to 18.0.0.
2024-08-01 11:45:36 -07:00
per1234
6b88a721aa Merge pull request #1023 from arduino/dependabot/npm_and_yarn/types/node-20.14.13
build(deps-dev): bump @types/node from 20.14.12 to 20.14.13
2024-07-29 04:09:29 -07:00
dependabot[bot]
a91278e24b build(deps-dev): bump @types/node from 20.14.12 to 20.14.13
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.12 to 20.14.13.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-29 11:04:05 +00:00
per1234
b8b3e3beb1 Merge pull request #1021 from arduino/dependabot/npm_and_yarn/typescript-5.5.4
build(deps-dev): bump typescript from 5.5.3 to 5.5.4
2024-07-24 11:12:20 -07:00
dependabot[bot]
5fddb67ec3 build(deps-dev): bump typescript from 5.5.3 to 5.5.4
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.5.3 to 5.5.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.5.3...v5.5.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-24 18:10:03 +00:00
per1234
7d2d9ec9f4 Merge pull request #1022 from arduino/dependabot/npm_and_yarn/types/node-20.14.12
build(deps-dev): bump @types/node from 20.14.11 to 20.14.12
2024-07-24 11:08:43 -07:00
dependabot[bot]
8033b0b37e build(deps-dev): bump @types/node from 20.14.11 to 20.14.12
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.11 to 20.14.12.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-24 11:42:13 +00:00
per1234
e6bb8146bd Merge pull request #1016 from arduino/dependabot/npm_and_yarn/prettier-3.3.3
build(deps-dev): bump prettier from 3.3.2 to 3.3.3
2024-07-18 19:09:50 -07:00
per1234
f7c7a15aaf Merge pull request #1018 from arduino/dependabot/npm_and_yarn/types/node-20.14.11
build(deps-dev): bump @types/node from 20.14.10 to 20.14.11
2024-07-18 18:44:12 -07:00
dependabot[bot]
4dea6c90ff build(deps-dev): bump @types/node from 20.14.10 to 20.14.11
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.10 to 20.14.11.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-17 11:53:22 +00:00
dependabot[bot]
6edcff345f build(deps-dev): bump prettier from 3.3.2 to 3.3.3
Bumps [prettier](https://github.com/prettier/prettier) from 3.3.2 to 3.3.3.
- [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/3.3.2...3.3.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-15 11:46:20 +00:00
per1234
147352b571 Merge pull request #1012 from arduino/dependabot/npm_and_yarn/typed-rest-client-2.0.2
build(deps): bump typed-rest-client from 2.0.1 to 2.0.2
2024-07-10 06:26:13 -07:00
per1234
f0b18b1f32 Repackage action following typed-rest-client bump
GitHub downloads each action run in a workflow during runtime and executes it as a complete package of code before you
can use workflow commands like run to interact with the runner machine. This means that we must provide all JavaScript
package dependencies as part of the distributed action in order for it to be usable in workflows.

A naive approach to doing this is checking in the `node_modules` folder. However, this approach results in a huge amount
of frequently changing external content being included in the repository, much of which is not even part of the executed
program.

A far better approach is to use the excellent ncc tool to compile the program, including all the relevant code from the
dependencies, into a single file.

We use a "continuous packaging" approach, where the packaged action code that is generated via ncc is always kept in
sync with the development source code and dependencies. This allows a beta version of the action to be easily used in
workflows by beta testers or those who need changes not in the release simply by using the name of the branch as the
action ref (e.g., `uses: arduino/arduino-lint-action@main` will cause the version of the action from the tip of the
`main` branch to be used by the workflow run).

The update of the package dependency results in a change to the packaged code, so the packaging is here updated
accordingly.
2024-07-10 06:23:29 -07:00
per1234
77058a17e1 Update dependency license metadata cache for typed-rest-client bump 2024-07-10 06:20:47 -07:00
dependabot[bot]
14891d7474 build(deps): bump typed-rest-client from 2.0.1 to 2.0.2
Bumps [typed-rest-client](https://github.com/Microsoft/typed-rest-client) from 2.0.1 to 2.0.2.
- [Release notes](https://github.com/Microsoft/typed-rest-client/releases)
- [Commits](https://github.com/Microsoft/typed-rest-client/compare/v2.0.1...v2.0.2)

---
updated-dependencies:
- dependency-name: typed-rest-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-10 12:37:33 +00:00
per1234
8d3ef0fcbe Merge pull request #1013 from arduino/dependabot/npm_and_yarn/types/node-20.14.10
build(deps-dev): bump @types/node from 20.14.9 to 20.14.10
2024-07-10 05:36:47 -07:00
dependabot[bot]
6d66e0a94d build(deps-dev): bump @types/node from 20.14.9 to 20.14.10
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.9 to 20.14.10.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-08 11:59:46 +00:00
per1234
9d6de117aa Merge pull request #1010 from arduino/dependabot/npm_and_yarn/typescript-5.5.3
build(deps-dev): bump typescript from 5.5.2 to 5.5.3
2024-07-02 06:21:42 -07:00
dependabot[bot]
9e32e3314e build(deps-dev): bump typescript from 5.5.2 to 5.5.3
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.5.2 to 5.5.3.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.5.2...v5.5.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-07-02 11:47:21 +00:00
per1234
e3b320d356 Merge pull request #1007 from arduino/dependabot/npm_and_yarn/types/node-20.14.9
build(deps-dev): bump @types/node from 20.14.8 to 20.14.9
2024-06-26 04:57:53 -07:00
dependabot[bot]
8fe5330036 build(deps-dev): bump @types/node from 20.14.8 to 20.14.9
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.8 to 20.14.9.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-26 11:55:25 +00:00
per1234
898ff7338c Merge pull request #1008 from arduino/dependabot/npm_and_yarn/typed-rest-client-2.0.1
build(deps): bump typed-rest-client from 2.0.0 to 2.0.1
2024-06-26 04:54:20 -07:00
per1234
985932e4c6 Update dependency license metadata cache for typed-rest-client bump 2024-06-26 04:50:59 -07:00
dependabot[bot]
f1aa35616f build(deps): bump typed-rest-client from 2.0.0 to 2.0.1
Bumps [typed-rest-client](https://github.com/Microsoft/typed-rest-client) from 2.0.0 to 2.0.1.
- [Release notes](https://github.com/Microsoft/typed-rest-client/releases)
- [Commits](https://github.com/Microsoft/typed-rest-client/compare/v2.0.0...v2.0.1)

---
updated-dependencies:
- dependency-name: typed-rest-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-26 11:31:50 +00:00
per1234
088b9378f7 Merge pull request #1005 from arduino/dependabot/npm_and_yarn/types/node-20.14.8
build(deps-dev): bump @types/node from 20.14.7 to 20.14.8
2024-06-24 06:52:05 -07:00
dependabot[bot]
ea0a23e41b build(deps-dev): bump @types/node from 20.14.7 to 20.14.8
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.7 to 20.14.8.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-24 11:47:51 +00:00
per1234
a4ac92e037 Merge pull request #1003 from arduino/dependabot/npm_and_yarn/typescript-5.5.2
build(deps-dev): bump typescript from 5.4.5 to 5.5.2
2024-06-21 07:23:40 -07:00
per1234
6f90912db1 Repackage action following typescript bump
GitHub downloads each action run in a workflow during runtime and executes it as a complete package of code before you
can use workflow commands like run to interact with the runner machine. This means that we must provide all JavaScript
package dependencies as part of the distributed action in order for it to be usable in workflows.

A naive approach to doing this is checking in the `node_modules` folder. However, this approach results in a huge amount
of frequently changing external content being included in the repository, much of which is not even part of the executed
program.

A far better approach is to use the excellent ncc tool to compile the program, including all the relevant code from the
dependencies, into a single file.

We use a "continuous packaging" approach, where the packaged action code that is generated via ncc is always kept in
sync with the development source code and dependencies. This allows a beta version of the action to be easily used in
workflows by beta testers or those who need changes not in the release simply by using the name of the branch as the
action ref (e.g., `uses: arduino/arduino-lint-action@main` will cause the version of the action from the tip of the
`main` branch to be used by the workflow run).

The update of the package dependency results in a change to the packaged code, so the packaging is here updated
accordingly.
2024-06-21 07:05:52 -07:00
dependabot[bot]
468bf7ee6c build(deps-dev): bump typescript from 5.4.5 to 5.5.2
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.5 to 5.5.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-21 13:56:01 +00:00
per1234
ffbf9a9674 Merge pull request #1004 from arduino/dependabot/npm_and_yarn/types/node-20.14.7
build(deps-dev): bump @types/node from 20.14.6 to 20.14.7
2024-06-21 06:53:40 -07:00
dependabot[bot]
e6cc2d49d0 build(deps-dev): bump @types/node from 20.14.6 to 20.14.7
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.6 to 20.14.7.
- [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-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-21 11:18:29 +00:00