Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed Apr 22, 2024
1 parent 32300b1 commit b11fd3b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
### [2.0.7] - 2024-04-21

- populate [files] in package.json. Delete .npmignore.
- lint: remove duplicate / stale rules from .eslintrc
- ci: update to shared GHA workflows
- doc(CONTRIBUTORS): added
- doc: Changes -> CHANGELOG
- prettier

### [2.0.6] - 2023-12-12

Expand Down
16 changes: 4 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,10 @@ exports.load_redis_ini = function () {
delete plugin.redisCfg.db
}

plugin.redisCfg.server = Object.assign(
{},
defaultOpts,
plugin.redisCfg.opts,
plugin.redisCfg.server,
)
plugin.redisCfg.pubsub = Object.assign(
{},
defaultOpts,
plugin.redisCfg.opts,
plugin.redisCfg.pubsub,
)
plugin.redisCfg.server =
{ ...defaultOpts, ...plugin.redisCfg.opts, ...plugin.redisCfg.server };
plugin.redisCfg.pubsub =
{ ...defaultOpts, ...plugin.redisCfg.opts, ...plugin.redisCfg.pubsub };

// socket options. In redis < 4, the options like host and port were
// top level, now they're in socket.*. Permit legacy configs to still work
Expand Down

0 comments on commit b11fd3b

Please sign in to comment.