Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 27, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@google-cloud/pubsub ^3.4.1 -> ^3.7.5 age adoption passing confidence dependencies patch
firebase-tools ^13.29.2 -> ^13.34.0 age adoption passing confidence dependencies minor
form-data ^3.0.1 -> ^3.0.3 age adoption passing confidence dependencies patch
node (source) 20 -> 20.19.0 age adoption passing confidence minor
node (source) 16 -> 16.20.2 age adoption passing confidence engines minor
node (source) 20 -> 20.19.0 age adoption passing confidence engines minor
node 20.x -> 20.19.0 age adoption passing confidence uses-with minor
npm (source) ^8.19.0 -> ^8.19.4 age adoption passing confidence engines patch
uglify-js ^3.17.4 -> ^3.19.3 age adoption passing confidence dependencies minor

Release Notes

firebase/firebase-tools (firebase-tools)

v13.34.0

Compare Source

  • Fix webframeworks deployments when using site in firebase.json. (#​8295)
  • Add support for brownfield project onboard dataconnect:sql:setup. (#​8150)
  • Update the Firebase Data Connect local toolkit to v1.8.5, which includes the following changes: (#​8310)
    • Fix the Int and Int64 scalars to correctly validate the int32 and int64 ranges, respectively.
    • Fix the generated web SDK so that pnpm properly uses the link functionality.

v13.33.0

Compare Source

  • Fixed issue where apps:init fails to detect the output directory when it was run in a directory where app was the only module.
  • Set LOG_EXECUTION_ID=true by default for Cloud Functions (2nd gen) to improve debugging by displaying execution IDs in logs. (#​8276)
  • Fix bug where function deployment no-oped for functions in bad state. (#​8289)
  • Updated the Firebase Data Connect local toolkit to v1.8.4 which includes the following changes: (#​8290)
    • React hooks for mutations without args no longer require undefined to be passed when calling mutate.
    • Fixed import resolution when moduleResolution is set to bundler.
    • React code generation will now generate a README explaining how to use generated query and mutation hook functions.
    • Fixed an issue where React developers have to pass in an empty object even when all fields are optional.
    • Fixed an issue where FirebaseError wasn't being passed into UseMutationOptions.

v13.32.0

Compare Source

  • Replaced VSCODE_CWD check to address issues running in VSCode environments. (#​7471)
  • Added initial delay when loading python functions (#​8239)
  • Enforced webframeworks enablement only on webframeworks sites (#​8168)
  • Fixed issue where apps:init throws an error upon app creation.
  • Reenabled prompts for unused service deletion in deploy --only.
  • Update Firebase Data Connect local toolkit to v1.8.3, which includes the following changes: (#​8263)
    • Adds a _metadata.distance field to vector similarity search results
    • Fixes auth and request.auth when the request is unauthenticated
    • Fixes an issue with hanging commas in import statements in the generated Web SDK
    • Fixes an issue where the additional union type { __angular?: true } breaks type inference in the generated Web SDK

v13.31.2

Compare Source

  • Fixed an issue where --import path was incorrectly resolved for the Data Connect emulator. (#​8219)
  • Updated the Firebase Data Connect local toolkit to v1.8.2 which fixes an issue with a missing FirebaseError import. (#​8232)

v13.31.1

Compare Source

  • Fixed issue where firebase init dataconnect would crash on React-based web apps.
  • Updated the Firebase Data Connect local toolkit to v.1.8.1, which:
    • Fixed issue where users who are using a version lower than 11.3.0 of firebase get a "missing import" error.

v13.31.0

Compare Source

  • Switched Data Connect from v1beta API to v1 API.
  • Added code generation of React hooks for Data Connect
  • Genkit init improvements around gcloud login and flow input values.
  • Added new command apps:init under experimental flag (appsinit) that automatically detects what SDK to download and places the file in the corresponding place.
  • Removed dependencies on some packages and methods that caused deprecation warnings on Node 22.
  • Fixes symbol generation when uploading Unity 6 symbols to Crashlytics. (#​7867)
  • Fixed SSR issues in Angular 19 by adding support for default and reqHandler exports. (#​8145)
  • Added Angular 19 as supported version. (#​8145)
  • Fixed appdistribution:testers:list raising an error when a tester is not part of any group. (#​8191)
  • Updated the Firebase Data Connect local toolkit to v1.8.0, which includes several changes: (#​8210)
    • Adds support for the v1 Data Connect API in the emulator
    • Adds support for generated React SDKs
    • Fixes @check to also be evaluated for admin auth
    • Fixes CEL expressions to be able to access @redact fields

v13.30.0

Compare Source

  • Fixed issue where Extensions deployment fails due to *.firebasestorage.app not being recognized as a valid Storage bucket name. (#​8152)
  • Fixes issue with custom 404 pages not being returned in Next.js in the emulator (#​8035).
  • Annotate onCallGenkit functions to allow for future Firebase Console annotations (#​8135)
  • Adds genkit 1.0.0 template (#​8144)

v13.29.3

Compare Source

  • Fixed a Data Connect emulator issue where prepared statements would be persisted after terminated connections.
  • Added a warning when deploying a Genkit function without a secret as this is likely a bug (#​8138)
  • Fixed .env.* files for web frameworks in Windows (#​8086)
  • Updated the Firebase Data Connect local toolkit to v1.7.7, which includes fixes in Dart code generation around required argument typing, and changes the emulator to always serve local connector sources and surface errors if they're invalid or schema migration fails. (#​8153)
form-data/form-data (form-data)

v3.0.3

Compare Source

v3.0.2

Compare Source

Fixes
  • npmignore temporary build files (#​532)
  • move util.isArray to Array.isArray (#​564)
Tests
  • migrate from travis to GHA
nodejs/node (node)

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes
  • [285bb4ee14] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #​56566
  • [73b5c16684] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #​53682
  • [de313b2336] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #​56194
  • [4fba01911d] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [df8a045afe] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #​54648
  • [f9dc1eaef5] - (SEMVER-MINOR) module: add __esModule to require()'d ESM (Joyee Cheung) #​52166
Commits

v20.18.3: 2025-02-10, Version 20.18.3 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 27, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d0b1efb to a8fd2f4 Compare March 6, 2024 18:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a8fd2f4 to 46fd3d0 Compare March 8, 2024 01:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 5183031 to 6f78948 Compare March 25, 2024 16:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6175700 to b0f7652 Compare April 4, 2024 21:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b0f7652 to 819a440 Compare April 14, 2024 12:37
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 819a440 to f73e9ec Compare June 10, 2024 01:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f73e9ec to 5de54c7 Compare July 17, 2024 15:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5de54c7 to 237e6d1 Compare July 28, 2024 13:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 237e6d1 to 5cc177d Compare August 10, 2024 13:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5cc177d to 8347dd1 Compare August 29, 2024 15:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8347dd1 to df7fec1 Compare October 10, 2024 07:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d439885 to 71617df Compare January 30, 2025 19:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from e0f7f08 to 96b38ed Compare February 11, 2025 11:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 44a91a1 to 81251f5 Compare February 15, 2025 02:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 81251f5 to 6fc46af Compare February 20, 2025 03:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 990a497 to b2c8ac0 Compare March 6, 2025 22:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6df433d to 2b66b7e Compare March 12, 2025 03:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2b66b7e to 5f64faf Compare March 13, 2025 14:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5f64faf to 134cd81 Compare March 13, 2025 18:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants