Skip to content

Commit 0cff530

Browse files
authored
release(*): Node 22 upgrades
2 parents 5832b20 + 3117491 commit 0cff530

File tree

9 files changed

+235
-272
lines changed

9 files changed

+235
-272
lines changed

delete-user-data/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Version 0.1.27
2+
3+
chore: update Cloud Functions runtime to Node.js 22
4+
chore: ran npm run adit fix
5+
chore: add esModuleInterop and skipLibCheck to tsconfig.json
6+
17
## Version 0.1.26
28

39
chore: bump dependencies

delete-user-data/extension.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
name: delete-user-data
16-
version: 0.1.26
16+
version: 0.1.27
1717
specVersion: v1beta
1818

1919
displayName: Delete User Data
@@ -64,23 +64,23 @@ resources:
6464
Authentication's User ID) from Realtime Database, Cloud Firestore, and/or
6565
Cloud Storage.
6666
properties:
67-
runtime: nodejs20
67+
runtime: nodejs22
6868
eventTrigger:
6969
eventType: providers/firebase.auth/eventTypes/user.delete
7070
resource: projects/${param:PROJECT_ID}
7171

7272
- name: handleSearch
7373
type: firebaseextensions.v1beta.function
7474
properties:
75-
runtime: nodejs20
75+
runtime: nodejs22
7676
eventTrigger:
7777
eventType: google.pubsub.topic.publish
7878
resource: projects/${PROJECT_ID}/topics/ext-${EXT_INSTANCE_ID}-discovery
7979

8080
- name: handleDeletion
8181
type: firebaseextensions.v1beta.function
8282
properties:
83-
runtime: nodejs20
83+
runtime: nodejs22
8484
eventTrigger:
8585
eventType: google.pubsub.topic.publish
8686
resource: projects/${PROJECT_ID}/topics/ext-${EXT_INSTANCE_ID}-deletion

delete-user-data/functions/package-lock.json

Lines changed: 100 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

delete-user-data/functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"ts-jest": "29.1.2"
3434
},
3535
"engines": {
36-
"node": "20"
36+
"node": "22"
3737
},
3838
"private": true,
3939
"devDependencies": {

delete-user-data/functions/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"resolveJsonModule": true,
99
"esModuleInterop": true,
1010
"allowSyntheticDefaultImports": true,
11+
"skipLibCheck": true,
1112
"types": ["node", "jest", "@types/node"]
1213
},
1314
"compileOnSave": true,

firestore-counter/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Version 0.2.14
2+
3+
chore: update Cloud Functions runtime to Node.js 22
4+
chore: ran npm run audit fix
5+
chore: add esModuleInterop and skipLibCheck to tsconfig.json
6+
17
## Version 0.2.13
28

39
chore: bump dependencies

0 commit comments

Comments
 (0)