Skip to content

fix(deps): Update dependency node to v22#19770

Merged
kodiakhq[bot] merged 2 commits intomainfrom
renovate/node-22.x
Nov 29, 2024
Merged

fix(deps): Update dependency node to v22#19770
kodiakhq[bot] merged 2 commits intomainfrom
renovate/node-22.x

Conversation

@cq-bot
Copy link
Copy Markdown
Contributor

@cq-bot cq-bot commented Nov 29, 2024

This PR contains the following updates:

Package Type Update Change Pending
node (source) major 18.18.0 -> 22.11.0
@types/node (source) devDependencies major ^16.18.104 -> ^22.0.0 22.10.1 (+4)
node final major 20-slim -> 22-slim
node stage major 20-slim -> 22-slim

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

nodejs/node (node)

v22.11.0: 2024-10-29, Version 22.11.0 'Jod' (LTS), @​richardlau

Compare Source

Notable Changes

This release marks the transition of Node.js 22.x into Long Term Support (LTS)
with the codename 'Jod'. The 22.x release line now moves into "Active LTS"
and will remain so until October 2025. After that time, it will move into
"Maintenance" until end of life in April 2027.

Other than updating metadata, such as the process.release object, to reflect
that the release is LTS, no further changes from Node.js 22.10.0 are included.

OpenSSL 3.x

Official binaries for Node.js 22.x currently include OpenSSL 3.0.x (more
specifically, the quictls OpenSSL fork).
OpenSSL 3.0.x is the currently designated long term support version that is
scheduled to be supported until 7th September 2026, which is within the expected
lifetime of Node.js 22.x. We are expecting upstream OpenSSL to announce a
successor long term support version prior to that date and since OpenSSL now
follows a semantic versioning-like versioning scheme we expect to be able to
update to the next long term supported version of OpenSSL during the lifetime of
Node.js 22.x.

v22.10.0: 2024-10-16, Version 22.10.0 (Current), @​aduh95

Compare Source

Notable Changes
New "module-sync" exports condition

This release introduces a "module-sync" exports condition that's enabled when
require(esm) is enabled, so packages can supply a synchronous ES module to the
Node.js module loader, no matter if it's being required or imported. This is
similar to the "module" condition that bundlers have been using to support
require(esm) in Node.js, and allows dual-package authors to opt into ESM-first
only on newer versions of Node.js that supports require(esm) to avoid the
dual-package hazard.

{
  "type": "module",
  "exports": {
    "node": {
      // On new version of Node.js, both require() and import get
      // the ESM version
      "module-sync": "./index.js",
      // On older version of Node.js, where "module-sync" and require(esm) are
      // not supported, use the CJS version to avoid dual-package hazard.
      // When package authors think it's time to drop support for older versions of
      // Node.js, they can remove the exports conditions and just use "main": "index.js".
      "default": "./dist/index.cjs"
    },
    // On any other environment, use the ESM version.
    "default": "./index.js"
  }
}

Or if the package is only meant to be run on Node.js and wants to fallback to
CJS on older versions that don't have require(esm):

{
  "type": "module",
  "exports": {
    // On new version of Node.js, both require() and import get the ESM version
    "module-sync": "./index.js",
    // On older version of Node.js, where "module-sync" and require(esm) are
    // not supported, use the CJS version to avoid dual-package hazard.
    // When package authors think it's time to drop support for older versions of
    // Node.js, they can remove the exports conditions and just use "main": "index.js".
    "default": "./dist/index.cjs"
  }
}

For package authors: this only serves as a feature-detection mechanism for
packages that wish to support both CJS and ESM users during the period when some
active Node.js LTS versions support require(esm) while some older ones don't.
When all active Node.js LTS lines support require(esm), packages can simplify
their distributions by bumping the major version, dropping their CJS exports,
and removing the module-sync exports condition (with only main or default
targetting the ESM exports). If the package needs to support both bundlers and
being run unbundled on Node.js during the transition period, use both
module-sync and module and point them to the same ESM file. If the package
already doesn't want to support older versions of Node.js that doesn't support
require(esm), don't use this export condition.

For bundlers/tools: they should avoid implementing this stop-gap condition.
Most existing bundlers implement the de-facto bundler standard
module
exports condition, and that should be enough to support users who want to bundle
ESM from CJS consumers. Users who want both bundlers and Node.js to recognize
the ESM exports can use both module/module-sync conditions during the
transition period, and can drop module-sync+module when they no longer need
to support older versions of Node.js. If tools do want to support this
condition, it's recommended to make the resolution rules in the graph pointed by
this condition match the Node.js native ESM rules to avoid divergence.

We ended up implementing a condition with a different name instead of reusing
"module", because existing code in the ecosystem using the "module"
condition sometimes also expect the module resolution for these ESM files to
work in CJS style, which is supported by bundlers, but the native Node.js loader
has intentionally made ESM resolution different from CJS resolution (e.g.
forbidding import './noext' or import './directory'), so it would be
breaking to implement a "module" condition without implementing the forbidden
ESM resolution rules. For now, this just implements a new condition as
semver-minor so it can be backported to older LTS.

Contributed by Joyee Cheung in #​54648.

node --run is now stable

This CLI flag runs a specified command from a package.json's "scripts" object.

For the following package.json:

{
  "scripts": {
    "test": "node --test-reporter junit --test ./test"
  }
}

You can run node --run test and that would start the test suite.

Contributed by Yagiz Nizipli in #​53763.

Other notable changes
  • [f0b441230a] - (SEMVER-MINOR) crypto: add KeyObject.prototype.toCryptoKey (Filip Skokan) #​55262
  • [349d2ed07b] - (SEMVER-MINOR) crypto: add Date fields for validTo and validFrom (Andrew Moon) #​54159
  • [bebc95ed58] - doc: add abmusse to collaborators (Abdirahim Musse) #​55086
  • [914db60159] - (SEMVER-MINOR) http2: expose nghttp2_option_set_stream_reset_rate_limit as an option (Maël Nison) #​54875
  • [f7c3b03759] - (SEMVER-MINOR) lib: propagate aborted state to dependent signals before firing events (jazelly) #​54826
  • [32261fc98a] - (SEMVER-MINOR) module: support loading entrypoint as url (RedYetiDev) #​54933
  • [06957ff355] - (SEMVER-MINOR) module: implement flushCompileCache() (Joyee Cheung) #​54971
  • [2dcf70c347] - (SEMVER-MINOR) module: throw when invalid argument is passed to enableCompileCache() (Joyee Cheung) #​54971
  • [f9b19d7c44] - (SEMVER-MINOR) module: write compile cache to temporary file and then rename it (Joyee Cheung) #​54971
  • [e95163b170] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [4050f68e5d] - (SEMVER-MINOR) process: add process.features.typescript (Aviv Keller) #​54295
  • [86f7cb802d] - (SEMVER-MINOR) test_runner: support custom arguments in run() (Aviv Keller) #​55126
  • [b62f2f8259] - (SEMVER-MINOR) test_runner: add 'test:summary' event (Colin Ihrig) #​54851
  • [d7c708aec5] - (SEMVER-MINOR) test_runner: add support for coverage via run() (Chemi Atlow) #​53937
  • [5fda4a1498] - (SEMVER-MINOR) worker: add markAsUncloneable api (Jason Zhang) #​55234
Commits

v22.9.0: 2024-09-17, Version 22.9.0 (Current), @​RafaelGSS

Compare Source

New API to retrieve execution Stack Trace

A new API getCallSite has been introduced to the util module. This API allows users
to retrieve the stacktrace of the current execution. Example:

const util = require('node:util');

function exampleFunction() {
  const callSites = util.getCallSite();

  console.log('Call Sites:');
  callSites.forEach((callSite, index) => {
    console.log(`CallSite ${index + 1}:`);
    console.log(`Function Name: ${callSite.functionName}`);
    console.log(`Script Name: ${callSite.scriptName}`);
    console.log(`Line Number: ${callSite.lineNumber}`);
    console.log(`Column Number: ${callSite.column}`);
  });
  // CallSite 1:
  // Function Name: exampleFunction
  // Script Name: /home/example.js
  // Line Number: 5
  // Column Number: 26

  // CallSite 2:
  // Function Name: anotherFunction
  // Script Name: /home/example.js
  // Line Number: 22
  // Column Number: 3

  // ...
}

// A function to simulate another stack layer
function anotherFunction() {
  exampleFunction();
}

anotherFunction();

Thanks to Rafael Gonzaga for making this work on #​54380.

Disable V8 Maglev

We have seen several crashes/unexpected JS behaviors with maglev on v22
(which ships V8 v12.4). The bugs lie in the codegen so it would be difficult for
users to work around them or even figure out where the bugs are coming from.
Some bugs are fixed in the upstream whi


Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@cq-bot cq-bot requested review from a team and maaarcelino November 29, 2024 09:31
@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot
Copy link
Copy Markdown
Contributor Author

cq-bot commented Nov 29, 2024

@cq-bot cq-bot force-pushed the renovate/node-22.x branch from 5a8cde6 to f7ed70f Compare November 29, 2024 11:20
Copy link
Copy Markdown
Member

@erezrokah erezrokah left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not breaking since the airtable change is internal to the Dockerfile and we publish the image so shouldn't impact anyone using that plugin.

The other changes are config UI related and force building them using a newer Node.js version which is not breaking as well

@erezrokah erezrokah added the automerge Automatically merge once required checks pass label Nov 29, 2024
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [8.7.1](plugins-destination-postgresql-v8.7.0...plugins-destination-postgresql-v8.7.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v16.18.121 ([#19732](#19732)) ([754059f](754059f))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update dependency yaml to v2.6.1 ([#19755](#19755)) ([ffb2bf2](ffb2bf2))
* **deps:** Update emotion monorepo to v11.13.5 ([#19733](#19733)) ([f6dd642](f6dd642))
* **deps:** Update material-ui monorepo ([#19734](#19734)) ([25a0cc3](25a0cc3))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))
* **deps:** Update typescript-eslint monorepo to v8.16.0 ([#19787](#19787)) ([1508495](1508495))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [4.2.1](plugins-destination-bigquery-v4.2.0...plugins-destination-bigquery-v4.2.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v16.18.121 ([#19732](#19732)) ([754059f](754059f))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update dependency yaml to v2.6.1 ([#19755](#19755)) ([ffb2bf2](ffb2bf2))
* **deps:** Update emotion monorepo to v11.13.5 ([#19733](#19733)) ([f6dd642](f6dd642))
* **deps:** Update material-ui monorepo ([#19734](#19734)) ([25a0cc3](25a0cc3))
* **deps:** Update module github.com/cloudquery/codegen to v0.3.20 ([#19832](#19832)) ([47f140f](47f140f))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))
* **deps:** Update typescript-eslint monorepo to v8.16.0 ([#19787](#19787)) ([1508495](1508495))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [6.0.1](plugins-destination-clickhouse-v6.0.0...plugins-destination-clickhouse-v6.0.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v16.18.121 ([#19732](#19732)) ([754059f](754059f))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update dependency yaml to v2.6.1 ([#19755](#19755)) ([ffb2bf2](ffb2bf2))
* **deps:** Update emotion monorepo to v11.13.5 ([#19733](#19733)) ([f6dd642](f6dd642))
* **deps:** Update golang.org/x/exp digest to 2d47ceb ([#19794](#19794)) ([5af258f](5af258f))
* **deps:** Update material-ui monorepo ([#19734](#19734)) ([25a0cc3](25a0cc3))
* **deps:** Update module github.com/cloudquery/codegen to v0.3.20 ([#19832](#19832)) ([47f140f](47f140f))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))
* **deps:** Update typescript-eslint monorepo to v8.16.0 ([#19787](#19787)) ([1508495](1508495))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [5.3.1](plugins-destination-mysql-v5.3.0...plugins-destination-mysql-v5.3.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v16.18.121 ([#19732](#19732)) ([754059f](754059f))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update dependency yaml to v2.6.1 ([#19755](#19755)) ([ffb2bf2](ffb2bf2))
* **deps:** Update emotion monorepo to v11.13.5 ([#19733](#19733)) ([f6dd642](f6dd642))
* **deps:** Update golang.org/x/exp digest to 2d47ceb ([#19794](#19794)) ([5af258f](5af258f))
* **deps:** Update material-ui monorepo ([#19734](#19734)) ([25a0cc3](25a0cc3))
* **deps:** Update module github.com/cloudquery/codegen to v0.3.20 ([#19832](#19832)) ([47f140f](47f140f))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))
* **deps:** Update typescript-eslint monorepo to v8.16.0 ([#19787](#19787)) ([1508495](1508495))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [7.6.1](plugins-destination-s3-v7.6.0...plugins-destination-s3-v7.6.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update aws-sdk-go-v2 monorepo ([#19731](#19731)) ([779b7f5](779b7f5))
* **deps:** Update dependency @types/node to v16.18.121 ([#19732](#19732)) ([754059f](754059f))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update dependency yaml to v2.6.1 ([#19755](#19755)) ([ffb2bf2](ffb2bf2))
* **deps:** Update module github.com/cloudquery/codegen to v0.3.20 ([#19832](#19832)) ([47f140f](47f140f))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))
* **deps:** Update typescript-eslint monorepo to v8.16.0 ([#19787](#19787)) ([1508495](1508495))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [3.7.1](plugins-source-hackernews-v3.7.0...plugins-source-hackernews-v3.7.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v22.9.1 ([#19738](#19738)) ([1cc34fb](1cc34fb))
* **deps:** Update dependency @types/node to v22.9.3 ([#19795](#19795)) ([f5bdb61](f5bdb61))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update module github.com/cloudquery/codegen to v0.3.20 ([#19832](#19832)) ([47f140f](47f140f))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 2, 2024
🤖 I have created a release *beep* *boop*
---


## [1.5.1](plugins-source-xkcd-v1.5.0...plugins-source-xkcd-v1.5.1) (2024-12-02)


### Bug Fixes

* Correct major version in `go.mod` ([#19811](#19811)) ([56644dc](56644dc))
* **deps:** Update dependency @types/node to v22.9.1 ([#19738](#19738)) ([1cc34fb](1cc34fb))
* **deps:** Update dependency @types/node to v22.9.3 ([#19795](#19795)) ([f5bdb61](f5bdb61))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-jsx-a11y to v6.10.2 ([#19743](#19743)) ([7a2e051](7a2e051))
* **deps:** Update dependency eslint-plugin-react to v7.37.2 ([#19747](#19747)) ([eacdad0](eacdad0))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency react-hook-form to v7.53.2 ([#19752](#19752)) ([582b1c9](582b1c9))
* **deps:** Update dependency typescript to v5 ([#19771](#19771)) ([fa931ca](fa931ca))
* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.70.1 ([#19834](#19834)) ([687cefd](687cefd))
* **deps:** Update react monorepo ([#19735](#19735)) ([0e8a7bf](0e8a7bf))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
kodiakhq bot pushed a commit that referenced this pull request Dec 3, 2024
🤖 I have created a release *beep* *boop*
---


## [2.2.11](plugins-source-airtable-v2.2.10...plugins-source-airtable-v2.2.11) (2024-12-03)


### Bug Fixes

* **deps:** Update dependency @cloudquery/plugin-sdk-javascript to v0.1.21 ([#19827](#19827)) ([0a2fa6c](0a2fa6c))
* **deps:** Update dependency @types/uuid to v10 ([#19760](#19760)) ([0db420f](0db420f))
* **deps:** Update dependency ajv to v8.17.1 ([#19739](#19739)) ([b361ac4](b361ac4))
* **deps:** Update dependency ava to v6.2.0 ([#19740](#19740)) ([81bec64](81bec64))
* **deps:** Update dependency change-case to v5.4.4 ([#19741](#19741)) ([807e17e](807e17e))
* **deps:** Update dependency dot-prop to v9 ([#19761](#19761)) ([8060109](8060109))
* **deps:** Update dependency eslint-plugin-import to v2.31.0 ([#19742](#19742)) ([f16ef7a](f16ef7a))
* **deps:** Update dependency eslint-plugin-n to v16.6.2 ([#19744](#19744)) ([903a7a6](903a7a6))
* **deps:** Update dependency eslint-plugin-prettier to v5.2.1 ([#19745](#19745)) ([67842fc](67842fc))
* **deps:** Update dependency eslint-plugin-promise to v6.6.0 ([#19746](#19746)) ([250acab](250acab))
* **deps:** Update dependency eslint-plugin-unused-imports to v3.2.0 ([#19748](#19748)) ([973b662](973b662))
* **deps:** Update dependency eslint-plugin-you-dont-need-lodash-underscore to v6.14.0 ([#19749](#19749)) ([21fb751](21fb751))
* **deps:** Update dependency got to v14.4.4 ([#19750](#19750)) ([2868b03](2868b03))
* **deps:** Update dependency got to v14.4.5 ([#19799](#19799)) ([80b493b](80b493b))
* **deps:** Update dependency node to v22 ([#19770](#19770)) ([ceff7a4](ceff7a4))
* **deps:** Update dependency typescript to v5.6.3 ([#19753](#19753)) ([2a0d83f](2a0d83f))
* **deps:** Update dependency winston to v3.17.0 ([#19754](#19754)) ([8e84696](8e84696))
* **deps:** Update typescript-eslint monorepo ([#19756](#19756)) ([c9333df](c9333df))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants