-
Notifications
You must be signed in to change notification settings - Fork 1.9k
v.2.6.0-2 release proposal #1041
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
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
dfb1d93
Explicitly ask for the platform in the issue template
4e52981
Small Readme fixes
a11e0c5
Don't expose internal variables
228573b
Support __proto__ and similar as object attribute in hgetall
5e42302
Accept arbitrary arguments in the debug function
dfd493f
Update benchmark file
d2b8f2f
Add support for camelCase
8e24380
Add optional callback option to duplicate function
aff765a
Fix execution order
a9d565b
Fix auth regression
cd58e1f
Implement message_buffer and pmessage_buffer events
5d12659
Fix typos / comments
683815d
Refactor pipelining
0424cb0
Move pub sub command into individual commands and use call_on_write
3038c90
Make sure all individual handled command work in multi context the same
97ae788
Implement CLIENT REPLY ON|OFF|SKIP
a857829
Improve error handling
e58e310
Remove unnecessary unallocation. This is done by the queue itself
8308a3e
Update dependencies
5fac595
Fix async test executed sync
0dc45bd
Improve pub sub mode further
f500398
Run tests only with the js parser instead of hiredis and js parser fr…
625f14e
Fix address always set to 127.0.0.1:6379 in case the host/port is set…
f7c4d13
Remove jshint comments and update istanbul comments
eae1693
Add monitor transaction warning / error
ce1678c
Improve coverage; make tests ready for Redis 3.2
5368e74
Add changelog
bf39492
Use built-in error classes to make errors more specific
03f1a60
Improve error handling
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps mention that it also supports UPPERCASE? ..but that camelCase is advised because of Nodejs conventions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good hint. But all-caps is not supported for events, variables and options at the moment. Implementing this too would be easy, but I'm wondering if it might be worth thinking about removing support for it in v.3. It was implemented in the very first commit of node_redis but should it also be used that way? I'd disagree.
It is actually documented somewhere else but documenting it further might encourage people to use it, so removing it afterwards would be more work for users to switch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the confusion, I totally agree that options, events etc etc shouldn't be passed as uppercase. I was only referring to the method names / redis commands. Probably should have read the whole readme before leaving this comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right now I'm actually thinking about removing the documentation about the UPPER_CASE commands support as this is similar to snack_case not typical in Node.js landscape.
In general conventions as I know them this is actually even more confusing as uppercase mostly stands for constants and this is clearly not the case here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍