StellarFw / stellar

A modular action based Web Framework for Node.js
https://stellar-framework.com
MIT License
38 stars 4 forks source link

build(deps): bump node-resque from 4.0.9 to 7.0.6 #197

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps node-resque from 4.0.9 to 7.0.6.

Release notes

Sourced from node-resque's releases.

v7.0.6

  • Workers with wildcard queue will find new queues (#413)
  • Update Dependencies

v7.0.5

  • Multi worker cleanup (#346)
  • Apply prettier to markdown files (#348)
  • Add links to "domain" in documentation (#347)
  • Fix checkWrapper typo (#345)
  • Fix remaining typo (#377)
  • Fix JavaScript mis-spelling typo (#370)
  • Multiworker: fix error handler queue interpolation typo (#372)
  • Update README.md (typo) (#361)
  • Update dependencies

v7.0.4

connectionOptions.scanCount (#330)

Allows the setting of connectionOptions.scanCount to increase the number of keys scanned by each iteration of connection.getKeys. On large datasets, this will improve the performance of queue.allDelayed(), queue.locks(), queue.stats() and even scheduler polling can get very slow, taking over 30 seconds. This is because redis.scan() gets invoked hundreds of thousands of times when connection.getKeys() gets called. connection.getKeys() uses the SCAN command in Redis. When using SCAN, the COUNT parameter is set to 10 by default.

const connectionDetails = {
  host: "127.0.0.1",
  password: null,
  port: 6379,
  database: 0
  scanCount: 1000 // <-- New!
};

const queue = new Queue({ connection: connectionDetails }, jobs); await queue.connect(); await queue.stats()

Misc

  • Extend docker example to use typescript (#343)
  • resque-web: support RAILS_RESQUE_REDIS env (#344)

v7.0.3

  • update prettier and lint rules (#331)
  • test node v13 and use redis v5 (#332)
  • Remove jobs definition of producer example (#333)
  • process.nextTick() takes callback as argument (#336)
  • Code style fixes (#338)
  • Update README.md (#339)
  • update deps (#341)

v7.0.2

  • Schedule should also watch delayed_queue_schedule #329
Commits
  • a5be71c 7.0.6
  • a0d8078 workers with wildcard queue will find new queues (#413)
  • af83f49 Create dependabot.yml
  • e1106be Bump @types/ioredis from 4.17.2 to 4.17.3
  • 4db6320 Bump @types/node from 14.0.26 to 14.0.27
  • a921730 Bump @types/jest from 26.0.7 to 26.0.8
  • 1145bfd Bump @types/node from 14.0.23 to 14.0.26
  • 6c8f5e5 Bump @types/jest from 26.0.5 to 26.0.7
  • 3625f28 Merge pull request #404 from actionhero/dependabot/npm_and_yarn/types/jest-26...
  • 67e6ad5 Merge pull request #403 from actionhero/dependabot/npm_and_yarn/typescript-3.9.7
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 93.333% when pulling 77a2524676efaa0599b318380610050af964b0f9 on dependabot/npm_and_yarn/node-resque-7.0.6 into 84b50620cd8105b82d950375c09a40d41bf7d534 on master.

coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 93.333% when pulling 77a2524676efaa0599b318380610050af964b0f9 on dependabot/npm_and_yarn/node-resque-7.0.6 into 84b50620cd8105b82d950375c09a40d41bf7d534 on master.

coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 93.333% when pulling 77a2524676efaa0599b318380610050af964b0f9 on dependabot/npm_and_yarn/node-resque-7.0.6 into 84b50620cd8105b82d950375c09a40d41bf7d534 on master.

dependabot-preview[bot] commented 4 years ago

Superseded by #210.