Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-create-document",
name: "Create Document",
description: "Creates a New Document. [See the documentation](https://googleapis.dev/nodejs/firestore/latest/CollectionReference.html#add)",
version: "0.0.8",
version: "0.0.9",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-create-realtime-db-record",
name: "Create Firebase Realtime Database Record",
description: "Creates or replaces a child object within your Firebase Realtime Database. [See the docs here](https://firebase.google.com/docs/reference/js/database#update)",
version: "0.0.5",
version: "0.0.6",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-list-documents",
name: "List Documents",
description: "Lists documents in a collection. [See the docs here](https://googleapis.dev/nodejs/firestore/latest/CollectionReference.html#listDocuments)",
version: "0.0.5",
version: "0.0.6",
type: "action",
props: {
...common.props,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
key: "firebase_admin_sdk-replicate-event-firestore",
name: "Save Event to Firestore",
description: "Replicate event in Firestore",
version: "0.4.4",
version: "0.4.5",
type: "action",
props: {
firebase_admin_sdk: {

Check warning on line 12 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop firebase_admin_sdk must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 12 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop firebase_admin_sdk must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "app",
app: "firebase_admin_sdk",
},
deliveryId: {

Check warning on line 16 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop deliveryId must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 16 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop deliveryId must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
},
firestoreCollection: {

Check warning on line 19 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop firestoreCollection must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 19 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop firestoreCollection must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
},
data: {

Check warning on line 22 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop data must have a label. See https://pipedream.com/docs/components/guidelines/#props

Check warning on line 22 in components/firebase_admin_sdk/actions/replicate-event-firestore/replicate-event-firestore.mjs

View workflow job for this annotation

GitHub Actions / Lint Code Base

Component prop data must have a description. See https://pipedream.com/docs/components/guidelines/#props
type: "string",
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-update-document",
name: "Update Document",
description: "Updates a Document. [See the documentation](https://googleapis.dev/nodejs/firestore/latest/DocumentReference.html#update)",
version: "0.0.5",
version: "0.0.6",
type: "action",
props: {
...common.props,
Expand Down
4 changes: 2 additions & 2 deletions components/firebase_admin_sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/firebase_admin_sdk",
"version": "0.0.8",
"version": "0.0.9",
"description": "Pipedream Firebase Admin SDK Components",
"main": "firebase_admin_sdk.app.mjs",
"keywords": [
Expand All @@ -12,7 +12,7 @@
"dependencies": {
"@firebase/app-compat": "^0.1.25",
"@firebase/app-types": "^0.7.0",
"@pipedream/platform": "^0.9.0",
"@pipedream/platform": "^3.0.3",
"firebase-admin": "^10.0.1",
Copy link
Contributor

Choose a reason for hiding this comment

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

💡 Codebase verification

⚠️ Potential issue

Firebase Admin SDK v10.0.1 is significantly outdated, upgrade recommended to v13.0.2

The current version (10.0.1) is several major versions behind the latest release (13.0.2). While no security vulnerabilities were found, upgrading is recommended to access new features and improvements. Please review the changelog for breaking changes before upgrading.

🔗 Analysis chain

Consider updating firebase-admin SDK to latest version

The PR objective mentions bumping the Firebase Admin SDK version, but firebase-admin is still at ^10.0.1 which is quite outdated (from early 2022). The current latest version is 11.x.

Consider updating to the latest version to get security fixes and new features. You can check the changelog for breaking changes.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check latest version and security advisories for firebase-admin
echo "Latest firebase-admin version from npm:"
curl -s https://registry.npmjs.org/firebase-admin/latest | jq '.version'

# Check for security advisories
gh api graphql -f query='
{
  securityVulnerabilities(first: 5, ecosystem: NPM, package: "firebase-admin") {
    nodes {
      advisory {
        summary
        severity
        publishedAt
      }
      vulnerableVersionRange
      firstPatchedVersion {
        identifier
      }
    }
  }
}'

Length of output: 518

"google-auth-library": "^7.11.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-new-child-object",
name: "New Child Object in a Realtime Database",
description: "Emit new event when a new child object is discovered within a specific path",
version: "0.0.6",
version: "0.0.7",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default {
key: "firebase_admin_sdk-new-doc-in-firestore-collection",
name: "New Document in Firestore Collection",
description: "Emit new event when a structured query returns new documents",
version: "0.0.6",
version: "0.0.7",
type: "source",
dedupe: "unique",
props: {
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading