Update dependency predis/predis to v2 #13
Merged
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.
This PR contains the following updates:
~1.0->~2.0Release Notes
predis/predis (predis/predis)
v2.2.2Compare Source
Added
client_infoclient parameterCLUSTERcontainer commandFixed
EXPIRETIMEnot usingprefixCLIENT SETINFOcalls by defaultv2.2.1Compare Source
Added
WAITAOFcommand (#1357)SHUTDOWNcommand (#1359)FUNCTIONcommand (#1332)PEXPIRE,PEXPIREATandCOMMANDKeyPrefixProcessor(#1358)Changed
v2.2.0Compare Source
Predis v2.2.0 introduces official support for Redis Stack as well as a Relay integration for substantially faster read performance.
Added
FCALL_ROcommand (#1191)JSON,Bloom,SearchandTimeSeriesmodule (#1253)ACL SETUSER, GETUSER, DRYRUNcommands (#1193)Changed
Fixed
XTRIMandXREVRANGEcommands (#1230)fclose()being called on invalid stream resource (#1199)BitByteandExpireOptionstraits skip processing on null values (#1169)@returnannotations (#1265)GETDELprefixing (#1306)v2.1.2Compare Source
Added
KeyPrefixProcessor(#1051)ReplicationStrategy::$loadBalancingoption to disable replica reads (#1168)FCALLandFUNCTIONScommands (#1049)PEXPIRETIMEcommand (#1031)EXPIRETIMEcommand (#1029)EVAL_ROcommand (#1032)LCScommand (#1035)SORT_ROcommand (#1044)SINTERCARDcommand (#1027)EVALSHA_ROcommand (#1034)BITPOSandBITCOUNTcommands (#1045)EXPIREandEXPIREATcommands (#1046)Bug Fixes
Deprecated
Maintenance
v2.1.1Compare Source
Bug Fixes
@templateinPredis\Client(#1017)ZINTERSTOREandZUNIONSTORE(#1018)Deprecated
v2.1.0Compare Source
New Features
GETEXcommand (#872)GETDELcommand (#869)COPYcommand (#866)FAILOVERcommand (#875)LMOVEcommand (#863)LMPOPcommand (#1013)HRANDFIELDcommand (#870)SMISMEMBERcommand (#871)ZMPOPcommand (#831)BLMOVEcommand (#865)BLMPOPcommand (#1015)BZMPOPcommand (#833)BZPOPMINcommand (#862)BZPOPMAXcommand (#864)ZUNIONcommand (#860)ZINTERcommand (#859)ZINTERCARDcommand (#861)ZRANGESTOREcommand (#829)ZDIFFSTOREcommand (#828)ZDIFFcommand (#826)ZRANDMEMBERcommand (#825)ZMSCORE(#823)GEOSEARCHcommand (#867)GEOSEARCHSTOREcommand (#873)Bug Fixes
Maintenance
v2.0.3Compare Source
is_resource()before reading/writingv2.0.2Compare Source
v2.0.1Compare Source
RedisClusterwith a default of10msConnection\Parametersv2.0.0Compare Source
Dropped support for PHP 7.1 and older
Accepted values for some client options have changed, this is the new list of
accepted values:
aggregate: callable returning an aggregate connection.cluster: string value (predis,redis), callable returning an aggregateconnection.
replication: string value (predis,sentinel), callable returning anaggregate connection.
commands: command factory, named array mapping command IDs to PHP classes,callable returning a command factory or a named array.
connections: connection factory, callable object returning a connectionfactory, named array mapping URI schemes to PHP classes, string identifying
a supported combination of configurations for the connection factory.
prefix: string value, command processor, callable.exceptions: boolean.Note that both the
clusterandreplicationoptions now return a closureacting as initializer instead of an aggregate connection instance.
The
connectionsclient option now accepts certain string values identifyingcertain combinations of configurations for the connection factory. Currently
this is used to provide a short way to configure Predis to load our phpiredis
based connection backends simply, accepted values are:
phpiredis-streammapsPhpiredis\Connection\PhpiredisStreamConnectiontotcp,redis,unixURI schemes.phpiredis-socketmapsPhpiredis\Connection\PhpiredisSocketConnectiontotcp,redis,unixURI schemes.phpiredis-streamis simply an alias ofphpiredis-stream.Added the new
Predis\Cluster\Hash\PhpiredisCRC16class using ext-phpiredisto speed-up the generation of the CRC16 hash of keys for redis-cluster. Predis
automatically uses this class when ext-phpiredis is loaded, but it is possible
to configure the hash generator using the new
crc16client option (acceptedvalues
predis,phpiredisor an hash generator instance).Replication backends now use the
roleparameter instead ofaliasin orderto distinguish the role of a connection. Accepted values are
master,slaveand, for redis-sentinel,
sentinel. This led to a redesign of how connectionscan be retrieved from replication backends: the method getConnectionById() now
retrieves a connection only by its ID (ip:port pair), to get a connection by
its alias there is the new method getConnectionByAlias(). This method is not
supported by the redis-sentinel backend due to its dynamic nature (connections
are retrieved and initialized at runtime from sentinels) but it is possible to
get a single connection from the pool by using its ID. It is also possible to
retrieve a connection by role using the method getConnectionByRole().
The concept of connection ID (ip:port pair) and connection alias (the
aliasparameter) in
Predis\Connection\Cluster\PredisClusterhas been separated.This change does not affect distribution and it is safe for existing clusters.
Client option classes now live in the
Predis\Configuration\Optionnamespace.Classes for Redis commands have been moved into the new
Predis\Command\Redisnamespace and each class name mirrors the respective Redis command ID.
The concept of server profiles is gone, the library now uses a single command
factory to create instances of commands classes. The
profileoption has beenreplaced by the
commandsoption acceptingPredis\Command\FactoryInterfaceto customize the underlying command factory. The default command factory class
used by Predis is
Predis\Command\RedisFactoryand it still allows developersto define or override commands with their own implementations. In addition to
that,
Predis\Command\RedisFactoryrelies on a convention-over-configurationapproach by looking for a suitable class with the same name as the command ID
in the
Predis\Command\Rediswhen the internal class map does not contain aclass associated.
The method
Predis\Client::getClientFor($connectionID)has been replaced bygetClientBy($selector, $value, $callable = null)which is more flexible asit is not limited to picking a connection from the underlying replication or
cluster backend by ID, but allows users to specify a
$selectorthat can beeither
id(the old behavior),key,slotorcommand. The client usesduck-typing instead of type-checking to verify that the underlying connection
implements a method that matches the specified selector which means that some
selectors may not be available to all kinds of connection backends.
The method
Predis\Client::getConnectionById($connectionID)has been removed.Changed the signature for the constructor of
Predis\Command\RawCommand.The
Predis\Connection\Aggregatenamespace has been split into two separatenamespaces for cluster backends (
Predis\Connection\Cluster) and replicationbackends (
Predis\Connection\Replication).The method
Predis\Connection\AggregateConnectionInterface::getConnection()has been renamed to
getConnectionByCommand().The methods
switchToMaster()andswitchToSlave()have been promoted to bepart of
Predis\Connection\Replication\ReplicationInterfacewhile the methodswitchTo($connection)has been removed from it.The method
Predis\Connection\Cluster\PredisCluster::executeCommandOnNodes()has been removed as it is possible to achieve the same by iterating over the
connection or, even better, over the client instance in order to execute the
same command against all of the registered connections.
The class
Predis\CommunicationExceptionnow uses the correct default typesfor the
$message(string) and$code(integer) parameters.The method
onConnectionError()inPredis\Connection\AbstractConnectionclass now passes the second argument as an integer value
0as its defaultvalue instead of
null.Support Pub/Sub and Pipelines when using replication
The class
Predis\Transaction\AbortedMultiExecExceptionnow uses the correctdefault types for the
$code(integer) parameter.FIX: using
strvalingetScanOptions()method, part ofPredis\Collection\Iterator\CursorBasedIteratorto make sure we retrieve thestring value of
$this->matchand not passingnulltostrlen()function.FIX: the value returned from
getArgument()inisReadOperation()method,part of
Predis\Replication\ReplicationStrategyclass, is checked to not passnulltosha1function.FIX: the value returned from
getArgument()inparseResponse()method,part of
Predis\Command\Redis\SENTINELclass, is checked to not passnullto
strtolower()function.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.