• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ringcentral / google-forms-notification-add-in / 7551552066

17 Jan 2024 05:37AM UTC coverage: 96.97%. Remained the same
7551552066

Pull #56

github

web-flow
chore(deps): bump xml2js and aws-sdk

Bumps [xml2js](https://github.com/Leonidas-from-XIV/node-xml2js) and [aws-sdk](https://github.com/aws/aws-sdk-js). These dependencies needed to be updated together.

Updates `xml2js` from 0.4.19 to 0.5.0
- [Commits](https://github.com/Leonidas-from-XIV/node-xml2js/compare/0.4.19...0.5.0)

Updates `aws-sdk` from 2.1095.0 to 2.1537.0
- [Release notes](https://github.com/aws/aws-sdk-js/releases)
- [Commits](https://github.com/aws/aws-sdk-js/compare/v2.1095.0...v2.1537.0)

---
updated-dependencies:
- dependency-name: xml2js
  dependency-type: indirect
- dependency-name: aws-sdk
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #56: chore(deps): bump xml2js and aws-sdk

223 of 239 branches covered (0.0%)

Branch coverage included in aggregate %.

641 of 652 relevant lines covered (98.31%)

14.5 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

83.33
/src/server/models/sequelize.js
1

2
const Sequelize = require('dynamo-sequelize');
5✔
3
const config = {
5✔
4
  define: {
5
    saveUnknown: true,
6
    timestamps: true,
7
    jsonAsObject: true,
8
  },
9
  logging: false,
10
  throughput: {
11
    read: process.env.DYNAMO_READ || 20,
10✔
12
    write: process.env.DYNAMO_WRITE || 10
10✔
13
  }
14
};
15

16
if (process.env.DIALECT === 'dynamodb') {
5!
17
  config.dialect = 'dynamo';
×
18
}
19

20
const sequelize = new Sequelize(
5✔
21
  process.env.DATABASE_URL,
22
  config
23
);
24
  
25
 
26

27
exports.sequelize = sequelize;
5✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc