Skip to content

Commit 4271a70

Browse files
committed
doc: fix some typos
1 parent b7ccf71 commit 4271a70

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

changelog.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -5,50 +5,50 @@ Changelog
55

66
Bugfixes
77

8-
- Fixed monitor mode not working in combination with IPv6 (2.6.0 regression)
8+
- Fixed monitor mode not working in combination with IPv6 (2.6.0 regression)
99

1010
## v.2.7.0 - 11 Mar, 2017
1111

1212
Features
1313

14-
- All returned errors are from now a subclass of `RedisError`.
14+
- All returned errors are from now a subclass of `RedisError`.
1515

1616
Bugfixes
1717

18-
- Fixed rename_commands not accepting `null` as value
19-
- Fixed `AbortError`s and `AggregateError`s not showing the error message in the stack trace
18+
- Fixed rename_commands not accepting `null` as value
19+
- Fixed `AbortError`s and `AggregateError`s not showing the error message in the stack trace
2020

2121
## v.2.6.5 - 15 Jan, 2017
2222

2323
Bugfixes
2424

25-
- Fixed parser not being reset in case the redis connection closed ASAP for overcoming of output buffer limits
26-
- Fixed parser reset if (p)message_buffer listener is attached
25+
- Fixed parser not being reset in case the redis connection closed ASAP for overcoming of output buffer limits
26+
- Fixed parser reset if (p)message_buffer listener is attached
2727

2828
## v.2.6.4 - 12 Jan, 2017
2929

3030
Bugfixes
3131

32-
- Fixed monitor mode not working in combination with IPv6, sockets or lua scripts (2.6.0 regression)
32+
- Fixed monitor mode not working in combination with IPv6, sockets or lua scripts (2.6.0 regression)
3333

3434
## v.2.6.3 - 31 Oct, 2016
3535

3636
Bugfixes
3737

38-
- Do not change the tls setting to camel_case
39-
- Fix domain handling in combination with the offline queue (2.5.3 regression)
38+
- Do not change the tls setting to camel_case
39+
- Fix domain handling in combination with the offline queue (2.5.3 regression)
4040

4141
## v.2.6.2 - 16 Jun, 2016
4242

4343
Bugfixes
4444

45-
- Fixed individual callbacks of a transaction not being called (2.6.0 regression)
45+
- Fixed individual callbacks of a transaction not being called (2.6.0 regression)
4646

4747
## v.2.6.1 - 02 Jun, 2016
4848

4949
Bugfixes
5050

51-
- Fixed invalid function name being exported
51+
- Fixed invalid function name being exported
5252

5353
## v.2.6.0 - 01 Jun, 2016
5454

@@ -130,7 +130,7 @@ Features
130130
- Monitor and pub sub mode now work together with the offline queue
131131
- All commands that were send after a connection loss are now going to be send after reconnecting
132132
- Activating monitor mode does now work together with arbitrary commands including pub sub mode
133-
- Pub sub mode is completly rewritten and all known issues fixed
133+
- Pub sub mode is completely rewritten and all known issues fixed
134134
- Added `string_numbers` option to get back strings instead of numbers
135135
- Quit command is from now on always going to end the connection properly
136136

@@ -173,7 +173,7 @@ Same changelog as the pre-release
173173

174174
## v.2.5.0-1 - 07 Mar, 2016
175175

176-
This is a big release with some substaintual underlining changes. Therefor this is released as a pre-release and I encourage anyone who's able to, to test this out.
176+
This is a big release with some substantial underlining changes. Therefor this is released as a pre-release and I encourage anyone who's able to, to test this out.
177177

178178
It took way to long to release this one and the next release cycles will be shorter again.
179179

@@ -193,7 +193,7 @@ Features
193193
- Added a `warning` emitter that receives node_redis warnings like auth not required and deprecation messages
194194
- Added a `retry_strategy` option that replaces all reconnect options
195195
- The reconnecting event from now on also receives:
196-
- The error message why the reconnect happend (params.error)
196+
- The error message why the reconnect happened (params.error)
197197
- The amount of times the client was connected (params.times_connected)
198198
- The total reconnecting time since the last time connected (params.total_retry_time)
199199
- Always respect the command execution order no matter if the reply could be returned sync or not (former exceptions: [#937](https://github.com/NodeRedis/node_redis/issues/937#issuecomment-167525939))
@@ -208,9 +208,9 @@ Bugfixes
208208
- Fixed do not run toString on an array argument and throw a "invalid data" error instead
209209
- This is not considered as breaking change, as this is likely a error in your code and if you want to have such a behavior you should handle this beforehand
210210
- The same applies to Map / Set and individual Object types
211-
- Fixed redis url not accepting the protocol being omitted or protocols other than the redis protocol for convienence
211+
- Fixed redis url not accepting the protocol being omitted or protocols other than the redis protocol for convenience
212212
- Fixed parsing the db keyspace even if the first database does not begin with a zero
213-
- Fixed handling of errors occuring while receiving pub sub messages
213+
- Fixed handling of errors occurring while receiving pub sub messages
214214
- Fixed huge string pipelines crashing NodeJS (Pipeline size above 256mb)
215215
- Fixed rename_commands and prefix option not working together
216216
- Fixed ready being emitted to early in case a slave is still syncing / master down
@@ -223,7 +223,7 @@ Deprecations
223223
- Using SET or SETEX with a undefined or null value will from now on also result in converting the value to "null" / "undefined" to have a consistent behavior. This is not considered as breaking change, as it returned an error earlier.
224224
- Using .end(flush) without the flush parameter is deprecated and the flush parameter should explicitly be used
225225
- From v.3.0.0 on using .end without flush will result in an error
226-
- Using .end without flush means that any command that did not yet return is going to silently fail. Therefor this is considered harmfull and you should explicitly silence such errors if you are sure you want this
226+
- Using .end without flush means that any command that did not yet return is going to silently fail. Therefor this is considered harmful and you should explicitly silence such errors if you are sure you want this
227227
- Depending on the return value of a command to detect the backpressure is deprecated
228228
- From version 3.0.0 on node_redis might not return true / false as a return value anymore. Please rely on client.should_buffer instead
229229
- The `socket_nodelay` option is deprecated and will be removed in v.3.0.0

0 commit comments

Comments
 (0)