Commit 15f68fe
[BACKPORT 2.1] Merge Release 2.1 back into Main (#4753)
* Go: Add MUSL support (#4476)
* Go: Switch to MUSL binary
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* rustup add musl targets
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* lint
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* rustup add musl targets in Makefile
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Add pathing
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Trigger CodeQL on main
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update CI
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix typo
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix typo
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Modify CD
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Modify CD
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Modify CD
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Modify CD
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update docs
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Format
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Address feedback
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update doc
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
---------
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
Co-authored-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
Co-authored-by: Alexey Temnikov <alexey.temnikov@improving.com>
* Java: Migration guide for Jedis compatibility layer (#4672) (#4681)
* Java: Migration guide for Jedis compatibility layer
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* [Backport to 2.1] Python: Add Multi-Database Support for Cluster Mode Valkey 9.0 (#4694)
Python: Add Multi-Database Support for Cluster Mode Valkey 9.0 (#4659)
* - Implement database selection for cluster clients when database_id != 0
- Send SELECT command to all cluster nodes using MultiNode routing
- Add comprehensive error handling with clear error messages
- Include test for database selection error handling in cluster mode
- Support backward compatibility with servers that don't support multi-db cluster mode
- Enable cluster-databases=16 for Valkey 9.0+ in cluster manager
This enables cluster clients to work with non-default databases on Valkey 9.0+
servers configured with cluster-databases support, while gracefully handling
older servers that don't support this feature.
* update valkey9 multi db tests
* fix lint
* fixing valkey 9 cluster tests
* add to route to all nodes in the core
* rust lint fix
* implement database selection in cluster mode via connection parameters
- Add database_id field to ClusterParams and BuilderParams structs
- Add database() method to ClusterClientBuilder for setting database ID
- Pass database_id through connection info instead of post-connection SELECT
- Remove SELECT command from cluster routing
- Remove post-connection SELECT command logic from create_cluster_client
- Add comprehensive tests for database isolation and reconnection behavior
- Verify database ID persistence across node reconnections
- Test multi-database cluster support with proper isolation verification
This change moves database selection from a post-connection SELECT command
to a connection parameter, which is more reliable for cluster mode and
handles reconnections automatically. The approach works with servers that
support multi-database cluster configurations (like Valkey 9.0+).
* add valkey9 constraint in the core tests
* fix core test not skipping test when version was lower than valkey 9
* Fix version check
* refactored test test_set_database_id_after_reconnection to be similar from standalone
removed is_valkey_9_or_higher
* removed tests and cleanup
* renamed builder.database to builder.database_id
* python: Add multi-database support for cluster and standalone modes
- Add database_id parameter to BaseClientConfiguration, GlideClientConfiguration, and GlideClusterClientConfiguration
- Implement SELECT command for both cluster and standalone modes with comprehensive documentation
- Add validation for database_id parameter (0-15 range, integer type)
- Refactor configuration protobuf request creation with helper methods for better maintainability
- Add extensive test coverage for database_id configuration and validation
- Include production warnings and recommended approaches in SELECT command documentation
- Support routing configuration for cluster mode SELECT operations
- Ensure database_id persists across reconnections when set in client configuration
Documentation:
- Added comprehensive docstrings with warnings about SELECT command limitations
- Included examples showing recommended database_id configuration approach
- Documented reconnection behavior and cluster-specific routing requirements
* fixing database_id restriction
* fixed test test_standalone_client_with_very_high_database_ids
* fix python tests with higher databases id
* fix lint error
* refactoring out the route option from the select command
* Remove SELECT command from cluster mode and enable cluster tests
- Remove select() method from ClusterCommands in both async and sync clients
- Enable cluster mode testing for database_id tests (parametrize True, False)
- Delete database_id integration test file
The SELECT command is not recommended for cluster mode due to reconnection
behavior where nodes revert to configured database_id, not the selected one.
* removed database_id validation|
renamed tests to be cluster/standalone agnostic
clean up comments
* added changelog
* lint fix
* fix test database_id should be skipped for versions lower than 9.0.0
* fix test
* added select rounting
refactored extract_client_id to be in utilities
* fix database_id documentation
added custom command test using select
---------
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
* [Backport 2.1] Go: Add Multi-Database Support for Cluster Mode Valkey 9.0 (#4696)
Go: Add Multi-Database Support for Cluster Mode Valkey 9.0 (#4660)
* - Implement database selection for cluster clients when database_id != 0
- Send SELECT command to all cluster nodes using MultiNode routing
- Add comprehensive error handling with clear error messages
- Include test for database selection error handling in cluster mode
- Support backward compatibility with servers that don't support multi-db cluster mode
- Enable cluster-databases=16 for Valkey 9.0+ in cluster manager
This enables cluster clients to work with non-default databases on Valkey 9.0+
servers configured with cluster-databases support, while gracefully handling
older servers that don't support this feature.
* update valkey9 multi db tests
* fix lint
* fixing valkey 9 cluster tests
* add to route to all nodes in the core
* rust lint fix
* implement database selection in cluster mode via connection parameters
- Add database_id field to ClusterParams and BuilderParams structs
- Add database() method to ClusterClientBuilder for setting database ID
- Pass database_id through connection info instead of post-connection SELECT
- Remove SELECT command from cluster routing
- Remove post-connection SELECT command logic from create_cluster_client
- Add comprehensive tests for database isolation and reconnection behavior
- Verify database ID persistence across node reconnections
- Test multi-database cluster support with proper isolation verification
This change moves database selection from a post-connection SELECT command
to a connection parameter, which is more reliable for cluster mode and
handles reconnections automatically. The approach works with servers that
support multi-database cluster configurations (like Valkey 9.0+).
* add valkey9 constraint in the core tests
* fix core test not skipping test when version was lower than valkey 9
* Fix version check
* refactored test test_set_database_id_after_reconnection to be similar from standalone
removed is_valkey_9_or_higher
* removed tests and cleanup
* renamed builder.database to builder.database_id
* go: Add multi-database support for cluster mode clients
- Add DatabaseId field to baseClientConfiguration for both standalone and cluster clients
- Implement WithDatabaseId() method for ClusterClientConfiguration
- Add database ID validation with proper error handling for negative values
- Refactor standalone client to use shared database ID logic from base configuration
- Add Select() and SelectWithOptions() methods for cluster clients with routing support
- Include comprehensive test coverage for database isolation, reconnection persistence, and error handling
- Add backward compatibility support - clients default to database 0 when no database_id specified
- Add server version compatibility checks (cluster multi-database requires Valkey 9.0+)
- Update documentation with warnings about SELECT command limitations and recommended configuration approach
This enables cluster mode clients to connect to specific databases at initialization time,
with the database selection persisting across reconnections, unlike the SELECT command
which resets on reconnection.
* fixed go tests
- batch tests
- database id tests
* removed selectWithOptions
* go: Remove Select command from cluster clients
- Remove Select method from ClusterClient and related interfaces
- Delete comprehensive database_id integration tests
- Remove Select command from batch operations
- Remove Select examples and tests
- Add example for cluster client with database_id configuration
The Select command is being removed in favor of using the database_id
configuration parameter, which provides persistent database selection
across reconnections.
* remove config validation
simplified tests
* added changelog
* removing batch test, and readding standalone select and removing batch select
---------
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
* [Backport 2.1] Java: Multi-Database Support for Cluster Mode Valkey 9.0 (#4697)
Java: Multi-Database Support for Cluster Mode Valkey 9.0 (#4658)
* - Implement database selection for cluster clients when database_id != 0
- Send SELECT command to all cluster nodes using MultiNode routing
- Add comprehensive error handling with clear error messages
- Include test for database selection error handling in cluster mode
- Support backward compatibility with servers that don't support multi-db cluster mode
- Enable cluster-databases=16 for Valkey 9.0+ in cluster manager
This enables cluster clients to work with non-default databases on Valkey 9.0+
servers configured with cluster-databases support, while gracefully handling
older servers that don't support this feature.
* update valkey9 multi db tests
* fix lint
* fixing valkey 9 cluster tests
* add to route to all nodes in the core
* rust lint fix
* implement database selection in cluster mode via connection parameters
- Add database_id field to ClusterParams and BuilderParams structs
- Add database() method to ClusterClientBuilder for setting database ID
- Pass database_id through connection info instead of post-connection SELECT
- Remove SELECT command from cluster routing
- Remove post-connection SELECT command logic from create_cluster_client
- Add comprehensive tests for database isolation and reconnection behavior
- Verify database ID persistence across node reconnections
- Test multi-database cluster support with proper isolation verification
This change moves database selection from a post-connection SELECT command
to a connection parameter, which is more reliable for cluster mode and
handles reconnections automatically. The approach works with servers that
support multi-database cluster configurations (like Valkey 9.0+).
* add valkey9 constraint in the core tests
* fix core test not skipping test when version was lower than valkey 9
* Fix version check
* refactored test test_set_database_id_after_reconnection to be similar from standalone
removed is_valkey_9_or_higher
* removed tests and cleanup
* renamed builder.database to builder.database_id
* Java: implement multi-database support for cluster mode
- Move databaseId from GlideClientConfiguration to BaseClientConfiguration
- Add databaseId validation and protobuf integration
- Update SELECT command with AllNodes routing and reconnection warnings
- Add connection management for database selection after auth
- Add comprehensive tests with Valkey 9+ version guards
Completes Java client implementation for Valkey 9 cluster multi-database support.
* fixing database id restriction
* fixed java test error select_command_invalid_database_standalone
* fixed lint errors
* Refactored select command to route to all nodes per default
Removed the option to provide a route
* java lint fix
* java: Remove SELECT command from cluster client
- Remove select() method from GlideClusterClient and ConnectionManagementClusterCommands interface
- Delete MultiDatabaseTests.java which tested SELECT command functionality
- Remove SELECT command tests from SharedCommandTests.java
- Add focused test for cluster database_id configuration in ClusterClientTests
- Remove SELECT import from GlideClusterClient
The SELECT command is being removed from the cluster client API as database
selection should be handled through client configuration (databaseId parameter)
rather than runtime commands, which provides better consistency and avoids
reconnection issues.
* remove database_id validatation and simplified tests
* added changelog
* fix documentation
* fix databaseId documentation
---------
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
* [Backport 2.1] Node: Add Multi-Database Support for Cluster Mode (Valkey 9.0) (#4698)
Node: Add Multi-Database Support for Cluster Mode (Valkey 9.0) (#4657)
* - Implement database selection for cluster clients when database_id != 0
- Send SELECT command to all cluster nodes using MultiNode routing
- Add comprehensive error handling with clear error messages
- Include test for database selection error handling in cluster mode
- Support backward compatibility with servers that don't support multi-db cluster mode
- Enable cluster-databases=16 for Valkey 9.0+ in cluster manager
This enables cluster clients to work with non-default databases on Valkey 9.0+
servers configured with cluster-databases support, while gracefully handling
older servers that don't support this feature.
* update valkey9 multi db tests
* fix lint
* fixing valkey 9 cluster tests
* add to route to all nodes in the core
* rust lint fix
* implement database selection in cluster mode via connection parameters
- Add database_id field to ClusterParams and BuilderParams structs
- Add database() method to ClusterClientBuilder for setting database ID
- Pass database_id through connection info instead of post-connection SELECT
- Remove SELECT command from cluster routing
- Remove post-connection SELECT command logic from create_cluster_client
- Add comprehensive tests for database isolation and reconnection behavior
- Verify database ID persistence across node reconnections
- Test multi-database cluster support with proper isolation verification
This change moves database selection from a post-connection SELECT command
to a connection parameter, which is more reliable for cluster mode and
handles reconnections automatically. The approach works with servers that
support multi-database cluster configurations (like Valkey 9.0+).
* add valkey9 constraint in the core tests
* fix core test not skipping test when version was lower than valkey 9
* Fix version check
* refactored test test_set_database_id_after_reconnection to be similar from standalone
removed is_valkey_9_or_higher
* removed tests and cleanup
* renamed builder.database to builder.database_id
* node changes
* move tests to sharedtests.ts
* reafactoring to select to all nodes being in the core
* node: Remove SELECT command support from cluster client
- Remove select() method from GlideClusterClient
- Remove createSelect import from cluster client
- Remove extensive test coverage for SELECT functionality
- Remove database ID validation tests from client internals
- Add minimal database ID test for cluster client configuration
- Clean up ConfigurationError import that's no longer needed
This change removes the SELECT command implementation that was added
for Valkey 9.0+ cluster support, likely due to reliability concerns
with database switching in cluster mode or to simplify the API.
* added changelog
* fix test, and removed comment
---------
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
* [Backport 2.1] Python sync: removed select command (#4705)
Python sync: removed select command (#4684)
removed sync select command
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* [Backport 2.1] CI/CD: Added self hosted macOS ARM runners (#4706)
* CI: Added self hosted macOS runners (#4683)
added self hosted runners for macos
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* CD: removed self hosted mac arm runners from required CD platforms #4700 (#4702)
removed self hosted mac from cd, reverted npm-cd
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
---------
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* [backport 2.1] Python: fixed pypi-cd workflow, fixed release tests (#4708)
Python: fixed pypi-cd workflow, fixed release tests (#4703)
fixed pypi upload, fixed release tests
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* Fix FFI tests for non-alpine distros (#4711)
Signed-off-by: Jeremy Parr-Pearson <jeremy.parr-pearson@improving.com>
* MUSL Java Build Fixes (#4712)
* Use zigbuild for easier cross-compilation
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Use zigbuild for easier cross-compilation
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Use zigbuild for easier cross-compilation
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix musl classifier / detection
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix musl classifier / detection
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Fix musl classifier / detection
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update docs
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Exclude arm musl test
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update arm runner
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Update go exclusion
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Format
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
---------
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* Revert go upload step change (#4716)
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
* CD: Fix Node CD delete artifact issue (#4717)
Signed-off-by: James Xin <james.xin@improving.com>
* CD: Fix Go musl CD issue (#4719)
Signed-off-by: James Xin <james.xin@improving.com>
* CD: Fix Node CD delete artifact issue 2nd try (#4718)
* CD: Fix Node CD delete artifact issue 2nd try
Signed-off-by: James Xin <james.xin@improving.com>
* Linter
Signed-off-by: James Xin <james.xin@improving.com>
* remove temporary testing
Signed-off-by: James Xin <james.xin@improving.com>
---------
Signed-off-by: James Xin <james.xin@improving.com>
* Python: Update ExpiryType enum references in hash field expiration docs (#4715)
python: Update ExpiryType enum references in hash field expiration docs
Replace deprecated ExpiryType enum values with new names in docstrings:
- EX → SEC
- PX → MILLSEC
- EXAT → UNIX_SEC
- PXAT → UNIX_MILLSEC
- KEEPTTL → KEEP_TTL
Updates documentation for hash field expiration commands in both async and sync clients.
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
* [Backport 2.1] Python sync/CD: added description to pypi package of the sync client (#4720)
Python sync/CD: added description to pypi package of the sync client (#4714)
added description to sync client
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* Java: Compatibility layer module (#4692)
* Java: Compatibility layer module
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: fix integration tests
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql for java code
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix codeql java build
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Update java cd
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: lint issues fixed
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Add signing configuration to jedis-compatibility build.gradle
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: update dependency
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Update valkey-glide-jedis-compatibility file path
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Java: Fix build.gradle publishing code
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
---------
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* Fix: Copy GPG secring to jedis-compatibility in Java CD workflow (#4723)
fix(java-cd): copy secring.gpg to jedis-compatibility for signing
Signed-off-by: jbrinkman <joe.brinkman@improving.com>
* [Backport 2.1] Python Sync: revert license format (#4732)
Python Sync: revert license format (#4731)
revert license format
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
* Java: Fix Jedis compatibility layer valkey-glide dependency (#4737)
* Java: Fix Jedis compatibility layer valkey-glide dependency
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
* [Backport 2.1] Python: improve UDS socket error handling (#4733) (#4755)
Python: improve UDS socket error handling (#4733)
fixed uds error handling
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
Co-authored-by: Lior Sventitzky <liorsve@amazon.com>
---------
Signed-off-by: James Xin <james.xin@improving.com>
Signed-off-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
Signed-off-by: Prateek Kumar <prateek.kumar@improving.com>
Signed-off-by: affonsov <67347924+affonsov@users.noreply.github.com>
Signed-off-by: Lior Sventitzky <liorsve@amazon.com>
Signed-off-by: Jeremy Parr-Pearson <jeremy.parr-pearson@improving.com>
Signed-off-by: jbrinkman <joe.brinkman@improving.com>
Co-authored-by: James Xin <james.xin@improving.com>
Co-authored-by: Alex Rehnby-Martin <alex.rehnby-martin@improving.com>
Co-authored-by: Alexey Temnikov <alexey.temnikov@improving.com>
Co-authored-by: prateek-kumar-improving <prateek.kumar@improving.com>
Co-authored-by: affonsov <67347924+affonsov@users.noreply.github.com>
Co-authored-by: Lior Sventitzky <liorsve@amazon.com>
Co-authored-by: Jeremy Parr-Pearson <jeremy.parr-pearson@improving.com>1 parent 1137c13 commit 15f68fe
File tree
135 files changed
+815
-123
lines changed- .github
- json_matrices
- workflows
- install-zig
- go
- java
- benchmarks
- client
- src/main/java
- integTest
- src/test/java
- jedis-compatibility
- src
- main/java/redis/clients/jedis
- args
- authentication
- bloom
- commands
- exceptions
- json
- params
- resps
- search
- aggr
- timeseries
- util
- test/java/redis/clients/jedis
- python
- glide-async/python/glide/async_commands
- glide-sync/glide_sync/sync_commands
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
135 files changed
+815
-123
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
73 | | - | |
| 72 | + | |
| 73 | + | |
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
119 | | - | |
| 119 | + | |
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
127 | | - | |
| 127 | + | |
128 | 128 | | |
129 | | - | |
| 129 | + | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
| |||
187 | 187 | | |
188 | 188 | | |
189 | 189 | | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
190 | 196 | | |
191 | 197 | | |
192 | 198 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
259 | 259 | | |
260 | 260 | | |
261 | 261 | | |
262 | | - | |
263 | | - | |
264 | | - | |
265 | | - | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
| 269 | + | |
| 270 | + | |
| 271 | + | |
| 272 | + | |
266 | 273 | | |
267 | 274 | | |
268 | 275 | | |
| |||
282 | 289 | | |
283 | 290 | | |
284 | 291 | | |
| 292 | + | |
| 293 | + | |
| 294 | + | |
| 295 | + | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
| 300 | + | |
| 301 | + | |
| 302 | + | |
| 303 | + | |
| 304 | + | |
285 | 305 | | |
286 | 306 | | |
287 | 307 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
20 | 24 | | |
21 | 25 | | |
| 26 | + | |
22 | 27 | | |
23 | | - | |
24 | 28 | | |
25 | 29 | | |
26 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
42 | | - | |
43 | | - | |
44 | | - | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
133 | 133 | | |
134 | 134 | | |
| 135 | + | |
135 | 136 | | |
136 | | - | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
137 | 148 | | |
138 | 149 | | |
139 | 150 | | |
140 | 151 | | |
141 | 152 | | |
142 | 153 | | |
143 | 154 | | |
| 155 | + | |
144 | 156 | | |
145 | 157 | | |
146 | 158 | | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
147 | 164 | | |
| 165 | + | |
148 | 166 | | |
149 | 167 | | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
150 | 172 | | |
151 | 173 | | |
152 | 174 | | |
153 | 175 | | |
154 | 176 | | |
155 | 177 | | |
156 | 178 | | |
| 179 | + | |
157 | 180 | | |
158 | 181 | | |
159 | 182 | | |
160 | 183 | | |
161 | 184 | | |
162 | 185 | | |
163 | 186 | | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
164 | 195 | | |
165 | 196 | | |
166 | 197 | | |
167 | 198 | | |
168 | 199 | | |
169 | 200 | | |
170 | 201 | | |
| 202 | + | |
171 | 203 | | |
172 | 204 | | |
173 | 205 | | |
| |||
196 | 228 | | |
197 | 229 | | |
198 | 230 | | |
199 | | - | |
| 231 | + | |
| 232 | + | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
200 | 239 | | |
| 240 | + | |
201 | 241 | | |
202 | 242 | | |
203 | 243 | | |
| |||
253 | 293 | | |
254 | 294 | | |
255 | 295 | | |
| 296 | + | |
| 297 | + | |
| 298 | + | |
256 | 299 | | |
257 | 300 | | |
258 | 301 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
331 | 331 | | |
332 | 332 | | |
333 | 333 | | |
| 334 | + | |
334 | 335 | | |
335 | 336 | | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
336 | 341 | | |
337 | 342 | | |
338 | 343 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
447 | 447 | | |
448 | 448 | | |
449 | 449 | | |
450 | | - | |
451 | 450 | | |
452 | 451 | | |
| 452 | + | |
453 | 453 | | |
454 | 454 | | |
455 | 455 | | |
| |||
550 | 550 | | |
551 | 551 | | |
552 | 552 | | |
553 | | - | |
554 | 553 | | |
555 | 554 | | |
| 555 | + | |
556 | 556 | | |
557 | 557 | | |
558 | 558 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| 44 | + | |
44 | 45 | | |
45 | 46 | | |
46 | 47 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | | - | |
145 | | - | |
146 | | - | |
147 | | - | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
152 | | - | |
| 144 | + | |
153 | 145 | | |
154 | 146 | | |
155 | 147 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
13 | 14 | | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
| 21 | + | |
20 | 22 | | |
21 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
22 | 36 | | |
23 | 37 | | |
24 | 38 | | |
25 | 39 | | |
26 | 40 | | |
27 | 41 | | |
28 | | - | |
29 | | - | |
30 | 42 | | |
31 | | - | |
| 43 | + | |
32 | 44 | | |
33 | | - | |
| 45 | + | |
34 | 46 | | |
35 | 47 | | |
36 | 48 | | |
| |||
41 | 53 | | |
42 | 54 | | |
43 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
44 | 65 | | |
45 | 66 | | |
46 | 67 | | |
| |||
171 | 192 | | |
172 | 193 | | |
173 | 194 | | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
174 | 206 | | |
175 | 207 | | |
176 | 208 | | |
177 | | - | |
| 209 | + | |
178 | 210 | | |
179 | 211 | | |
180 | 212 | | |
| |||
0 commit comments