Skip to content

[VBLOCKS-4503] change: update server's dependencies #857

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

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.11.0

### Changes

- Set minimum Node.js version to 20.x

### Dependency Upgrade

- `firebase-admin` has been upgraded from ^11.2.1 to ^13.2.0.
- `firebase` has been upgraded from ^9.9.0 to ^11.6.0.
- `twilio` has been upgraded from ^3.63.1 to ^5.5.2.
- `@twilio/video-processors` has been upgraded from ^3.0.0-beta.1 to ^3.0.0.
- `ts-jest` has been upgraded from ^27.0.1 to ^29.3.2.
- Added `jest` to the devDependencies section.
- Moved dependencies to the devDependencies section.

## 0.10.6

### Changes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This application demonstrates a multi-party video application built with [Twilio

You must have the following installed:

- [Node.js v16+](https://nodejs.org/en/download/)
- NPM v8+ (comes installed with newer Node versions)
- [Node.js v20+](https://nodejs.org/en/download/)
- NPM v10+ (comes installed with newer Node versions)

You can check which versions of Node.js and NPM you currently have installed with the following commands:

Expand Down Expand Up @@ -224,7 +224,7 @@ Since the Twilio Video SDK manages the `room` object state, it can be used as th

[React hooks](https://reactjs.org/docs/hooks-intro.html) can be used to subscribe to events and trigger component re-renders. This application frequently uses the `useState` and `useEffect` hooks to subscribe to changes in room state. Here is a simple example:

```
```javascript
import { useEffect, useState } from 'react';

export default function useDominantSpeaker(room) {
Expand Down
8 changes: 6 additions & 2 deletions jest.transform.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
const path = require("path")

// Requried to fix Swiper CSS imports during jest executions, it transforms imports into filenames
// Required to fix Swiper CSS imports during jest executions, it transforms imports into filenames
module.exports = {
process: (_src, filename) => `module.exports = ${JSON.stringify(path.basename(filename))};`
process: (_src, filename) => {
return {
code: `module.exports = ${JSON.stringify(path.basename(filename))};`
};
}
}
Loading