Request.ip no longer available

I updated Parse Server, and now I can’t get the client’s IP in cloud functions. How can I retrieve the request IP? Previously, I used request.ip within a cloud function.

Solved adding this to index.js

export const app = express();
app.set('trust proxy', true);