-
Notifications
You must be signed in to change notification settings - Fork 1
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
Amol/v7.6.0 fork #14
base: master
Are you sure you want to change the base?
Amol/v7.6.0 fork #14
Commits on Apr 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ec643cf - Browse repository at this point
Copy the full SHA ec643cfView commit details
Commits on May 8, 2020
-
Merge pull request toptal#710 from toptal/fix-deprecation-warning
Fix deprecation warning for contructing new BigDecimal
Configuration menu - View commit details
-
Copy full SHA for de2f06c - Browse repository at this point
Copy the full SHA de2f06cView commit details
Commits on Jun 1, 2020
-
This commit sets up CircleCI for combinations of ruby 2.6/2.5, mongoid, ActiveRecord 6.0/5.2. It also marks some specs as pending, as they are not allowed in elasticsearch now. They will be addressed in a separate PR.
Configuration menu - View commit details
-
Copy full SHA for 4364ebc - Browse repository at this point
Copy the full SHA 4364ebcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 024d741 - Browse repository at this point
Copy the full SHA 024d741View commit details -
Configuration menu - View commit details
-
Copy full SHA for f11a51a - Browse repository at this point
Copy the full SHA f11a51aView commit details -
Merge pull request toptal#707 from toptal/configure-active-job-queue
Allow configuration of Active Job queue name
Configuration menu - View commit details
-
Copy full SHA for 22f8f27 - Browse repository at this point
Copy the full SHA 22f8f27View commit details
Commits on Jun 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4225fdc - Browse repository at this point
Copy the full SHA 4225fdcView commit details -
Merge pull request toptal#718 from toptal/ruby-2.7-ci
Added Ruby 2.7 to CircleCI config
Configuration menu - View commit details
-
Copy full SHA for 388c4cf - Browse repository at this point
Copy the full SHA 388c4cfView commit details -
Fix all ruby 2.7 deprecation warnings
Gareth Seddon committedJun 2, 2020 Configuration menu - View commit details
-
Copy full SHA for 0609d58 - Browse repository at this point
Copy the full SHA 0609d58View commit details -
Gareth Seddon committed
Jun 2, 2020 Configuration menu - View commit details
-
Copy full SHA for 4cea529 - Browse repository at this point
Copy the full SHA 4cea529View commit details
Commits on Jun 3, 2020
-
Merge pull request toptal#715 from gseddon/fix-all-2.7-dep-warnings
Fixed deprecation warnings in Ruby 2.7
Configuration menu - View commit details
-
Copy full SHA for 74470f2 - Browse repository at this point
Copy the full SHA 74470f2View commit details
Commits on Jan 14, 2021
-
Fix more ruby 2.7 keyword params deprecation warnings
Fixes deprecation warnings ``` warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call ``` 1. Fixed warning when calling `response.records`, warning backtrace: ``` # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/search/loader.rb:55:in `block in load' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/search/loader.rb:50:in `each' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/search/loader.rb:50:in `each_with_object' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/search/loader.rb:50:in `load' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/search/response.rb:85:in `objects' ``` 2. Fixed warning when calling `SomeIndex.reset!((Time.now.to_f * 1000).round)`, warning backtrace: ``` # gems/chewy-74470f2525b2/lib/chewy/type/adapter/active_record.rb:25:in `import_scope' # gems/chewy-74470f2525b2/lib/chewy/type/adapter/orm.rb:79:in `import' # gems/chewy-74470f2525b2/lib/chewy/type/import.rb:142:in `block in import_linear' # /home/aglushkov/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/activesupport-6.0.3.4/lib/active_support/notifications.rb:180:in `block in instrument' # /home/aglushkov/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/activesupport-6.0.3.4/lib/active_support/notifications/instrumenter.rb:24:in `instrument' # /home/aglushkov/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/activesupport-6.0.3.4/lib/active_support/notifications.rb:180:in `instrument' # gems/chewy-74470f2525b2/lib/chewy/type/import.rb:141:in `import_linear' # gems/chewy-74470f2525b2/lib/chewy/type/import.rb:136:in `import_routine' # gems/chewy-74470f2525b2/lib/chewy/type/import.rb:76:in `import' # gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:149:in `block in import' # gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:147:in `map' # gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:147:in `import' # gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:182:in `reset!' ``` 3. Same `SomeIndex.reset!((Time.now.to_f * 1000).round)`, warning backtrace: ``` # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/type/import.rb:130:in `new' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/type/import.rb:130:in `import_routine' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/type/import.rb:76:in `import' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:149:in `block in import' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:147:in `map' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:147:in `import' # gems/2.7.0/bundler/gems/chewy-74470f2525b2/lib/chewy/index/actions.rb:182:in `reset!' ```
Configuration menu - View commit details
-
Copy full SHA for 0e6f609 - Browse repository at this point
Copy the full SHA 0e6f609View commit details -
Update instructions for AWS ElasticSearch
Fix instructions for AWS ElasticSearch configuration in README as it is outdated.
Configuration menu - View commit details
-
Copy full SHA for 57cb24e - Browse repository at this point
Copy the full SHA 57cb24eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 55b6f0a - Browse repository at this point
Copy the full SHA 55b6f0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 15637e8 - Browse repository at this point
Copy the full SHA 15637e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for b25e57c - Browse repository at this point
Copy the full SHA b25e57cView commit details -
Configuration menu - View commit details
-
Copy full SHA for a2cdb4a - Browse repository at this point
Copy the full SHA a2cdb4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for da4ff3e - Browse repository at this point
Copy the full SHA da4ff3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e6bd37 - Browse repository at this point
Copy the full SHA 4e6bd37View commit details
Commits on Jan 15, 2021
-
Revert "Add Ruby 3 to the CI matrix"
Seems we're blocked by rspec/rspec-mocks#1394 This reverts commit da4ff3e.
Configuration menu - View commit details
-
Copy full SHA for c59ade5 - Browse repository at this point
Copy the full SHA c59ade5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c709a7 - Browse repository at this point
Copy the full SHA 9c709a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94746fa - Browse repository at this point
Copy the full SHA 94746faView commit details
Commits on Jan 27, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 9f97dac - Browse repository at this point
Copy the full SHA 9f97dacView commit details -
Patch witchcraft to work with ActiveSupport 6.1
Thanks to @rabotyaga for the solution
Configuration menu - View commit details
-
Copy full SHA for e87c5e5 - Browse repository at this point
Copy the full SHA e87c5e5View commit details -
Merge pull request toptal#733 from petalmd/update_ci_matrix
Update Rails version in CI matrix
Ivan Rabotyaga authoredJan 27, 2021 Configuration menu - View commit details
-
Copy full SHA for ac0e5ef - Browse repository at this point
Copy the full SHA ac0e5efView commit details
Commits on Jan 28, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 61a59e7 - Browse repository at this point
Copy the full SHA 61a59e7View commit details -
Merge pull request toptal#735 from petalmd/correct_es_6_delete_by_que…
…ry_warning Patch ElasticSearch deprecation warning
Ivan Rabotyaga authoredJan 28, 2021 Configuration menu - View commit details
-
Copy full SHA for 1f2e682 - Browse repository at this point
Copy the full SHA 1f2e682View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e9186a - Browse repository at this point
Copy the full SHA 8e9186aView commit details -
Merge pull request toptal#734 from toptal/ruby3-support
Add support for Ruby 3
Ivan Rabotyaga authoredJan 28, 2021 Configuration menu - View commit details
-
Copy full SHA for cd9570c - Browse repository at this point
Copy the full SHA cd9570cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 068759a - Browse repository at this point
Copy the full SHA 068759aView commit details -
Ivan Rabotyaga committed
Jan 28, 2021 Configuration menu - View commit details
-
Copy full SHA for 86157fd - Browse repository at this point
Copy the full SHA 86157fdView commit details -
Merge pull request toptal#737 from toptal/update-changelog-5-2-0
Update CHANGELOG
Ivan Rabotyaga authoredJan 28, 2021 Configuration menu - View commit details
-
Copy full SHA for 8967c24 - Browse repository at this point
Copy the full SHA 8967c24View commit details
Commits on Jan 29, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0dfebc2 - Browse repository at this point
Copy the full SHA 0dfebc2View commit details -
Remove explicit
main
branch dependencies on rspec* gems after `rspe……c-mocks` 3.10.2 is released
Ivan Rabotyaga committedJan 29, 2021 Configuration menu - View commit details
-
Copy full SHA for 2ef5674 - Browse repository at this point
Copy the full SHA 2ef5674View commit details -
Merge pull request toptal#739 from toptal/update-rspec-mocks
Remove explicit `main` branch dependencies on rspec* gems after `rspec-mocks` 3.10.2 is released
Ivan Rabotyaga authoredJan 29, 2021 Configuration menu - View commit details
-
Copy full SHA for fc737a4 - Browse repository at this point
Copy the full SHA fc737a4View commit details -
Merge pull request toptal#736 from AJLA-TS/fix-nil-relationship
Fix nil children when using witchcraft
Ivan Rabotyaga authoredJan 29, 2021 Configuration menu - View commit details
-
Copy full SHA for dab5d75 - Browse repository at this point
Copy the full SHA dab5d75View commit details -
Add CHANGELOG entry for toptal#736
Ivan Rabotyaga committedJan 29, 2021 Configuration menu - View commit details
-
Copy full SHA for e4ff792 - Browse repository at this point
Copy the full SHA e4ff792View commit details
Commits on Feb 4, 2021
-
Avoid importing everything when given an empty relation (toptal#749)
* Avoid importing everything when given an empty relation * Add spec to cover empty relations Co-authored-by: JF Lalonde <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3f6eb82 - Browse repository at this point
Copy the full SHA 3f6eb82View commit details -
Clear the scroll by id after completing scroll_batches (toptal#750)
* Clear the scroll by id after completing scroll_batches * Update CHANGELOG with PR 695 comment Co-authored-by: Amos Lanka <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7efd2e3 - Browse repository at this point
Copy the full SHA 7efd2e3View commit details
Commits on Feb 10, 2021
-
* Add support for direct_import parameter to skip loading default sco…
…pe on import (toptal#753) * Skimpier direct_import * Fix linter error in orm.rb * Add spec and fixed an issue related to ids * Update lib/chewy/type/import.rb * Allow direct_import as default import options * Update CHANGELOG.md * Add a note about default `direct_import` value * Improve error messages in db_queries helpers Co-authored-by: Tikhon Botchkarev <[email protected]> Co-authored-by: Ivan Rabotyaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for cd71c83 - Browse repository at this point
Copy the full SHA cd71c83View commit details
Commits on Feb 11, 2021
-
attribute_highlights returns an array of highlights (toptal#755)
Co-authored-by: Ahmad Musaffa <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8094790 - Browse repository at this point
Copy the full SHA 8094790View commit details -
ES6 compatibility (toptal#743)
* Add ES6 support: remove multiple types mappings support. add `include_type_name` parameter for ES 6.7-6.8 * Remove legacy DSL & ES2 support (toptal#747) * Add Chewy::MultiSearch Feature (toptal#751)
Configuration menu - View commit details
-
Copy full SHA for d56adc4 - Browse repository at this point
Copy the full SHA d56adc4View commit details -
Explain briefly the existence of
outdated_sync_field
at README (top……tal#756) Explain briefly the existence of `outdated_sync_field` at README Co-authored-by: ramazan <[email protected]> Co-authored-by: Ivan Rabotyaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 14b6b1d - Browse repository at this point
Copy the full SHA 14b6b1dView commit details
Commits on Feb 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7a2cb01 - Browse repository at this point
Copy the full SHA 7a2cb01View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8776569 - Browse repository at this point
Copy the full SHA 8776569View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3224501 - Browse repository at this point
Copy the full SHA 3224501View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7bea7ed - Browse repository at this point
Copy the full SHA 7bea7edView commit details -
Configuration menu - View commit details
-
Copy full SHA for da14877 - Browse repository at this point
Copy the full SHA da14877View commit details -
Configuration menu - View commit details
-
Copy full SHA for bec5284 - Browse repository at this point
Copy the full SHA bec5284View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04979db - Browse repository at this point
Copy the full SHA 04979dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fcd922 - Browse repository at this point
Copy the full SHA 9fcd922View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0772048 - Browse repository at this point
Copy the full SHA 0772048View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc84b4b - Browse repository at this point
Copy the full SHA bc84b4bView commit details -
Avoid fetching scope data to check if it is blank
Dalton committedFeb 12, 2021 Configuration menu - View commit details
-
Copy full SHA for b2c4d0c - Browse repository at this point
Copy the full SHA b2c4d0cView commit details -
Merge pull request toptal#761 from toptal/avoid-unneeded-fecthing-on-…
…import [FIX-716] Avoid fetching scope data to check if it is blank
Dalton Pinto authoredFeb 12, 2021 Configuration menu - View commit details
-
Copy full SHA for d5ffa79 - Browse repository at this point
Copy the full SHA d5ffa79View commit details
Commits on Feb 15, 2021
-
Correctly report indices and aliases (toptal#757)
* Correctly report indices and aliases * Fix rubocop offense * Fix specs & Changelog * Add `include_type_name` parameter for ES 6.7-6.8 for `client.indices.get` request Co-authored-by: mpeychich <[email protected]> Co-authored-by: Ivan Rabotyaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 47ad295 - Browse repository at this point
Copy the full SHA 47ad295View commit details
Commits on Feb 22, 2021
-
Add ES7 support, prepare 7.0.0 release (toptal#763)
Ivan Rabotyaga authoredFeb 22, 2021 Configuration menu - View commit details
-
Copy full SHA for 3ba07cc - Browse repository at this point
Copy the full SHA 3ba07ccView commit details
Commits on Feb 24, 2021
-
[Fix toptal#722] Remove alias_method_chain, use Module#prepend instead (
Dalton Pinto authoredFeb 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 3c8fc7f - Browse repository at this point
Copy the full SHA 3c8fc7fView commit details
Commits on Mar 1, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f8ff5d3 - Browse repository at this point
Copy the full SHA f8ff5d3View commit details
Commits on Mar 3, 2021
-
Drop support for Elasticsearch 6.x, prepare 7.1.0 release (toptal#766)
* Drop support for Elasticsearch 6.x, prepare 7.1.0 release (toptal#766)
Ivan Rabotyaga authoredMar 3, 2021 Configuration menu - View commit details
-
Copy full SHA for 55f2813 - Browse repository at this point
Copy the full SHA 55f2813View commit details
Commits on Mar 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 0470c5e - Browse repository at this point
Copy the full SHA 0470c5eView commit details -
Update rubocop version & fix offences (toptal#768)
* Update Rubocop to 1.11 * Fix a bunch of offenses
Configuration menu - View commit details
-
Copy full SHA for 891472d - Browse repository at this point
Copy the full SHA 891472dView commit details -
CircleCI: use dockerize to wait for Elasticsearch (toptal#771)
Ivan Rabotyaga authoredMar 12, 2021 Configuration menu - View commit details
-
Copy full SHA for f2b577d - Browse repository at this point
Copy the full SHA f2b577dView commit details
Commits on Mar 15, 2021
-
Configuration menu - View commit details
-
Copy full SHA for f5bad9f - Browse repository at this point
Copy the full SHA f5bad9fView commit details
Commits on Mar 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 90b5c6a - Browse repository at this point
Copy the full SHA 90b5c6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f44febc - Browse repository at this point
Copy the full SHA f44febcView commit details
Commits on Mar 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 473f7eb - Browse repository at this point
Copy the full SHA 473f7ebView commit details
Commits on Apr 2, 2021
-
Configuration menu - View commit details
-
Copy full SHA for fe5e411 - Browse repository at this point
Copy the full SHA fe5e411View commit details
Commits on Apr 5, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 86ee881 - Browse repository at this point
Copy the full SHA 86ee881View commit details
Commits on Apr 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e4ed1eb - Browse repository at this point
Copy the full SHA e4ed1ebView commit details
Commits on Apr 12, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 67edda2 - Browse repository at this point
Copy the full SHA 67edda2View commit details
Commits on Apr 13, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 5ba13f3 - Browse repository at this point
Copy the full SHA 5ba13f3View commit details
Commits on Apr 19, 2021
-
It's redundant now that GitHub generates one automatically.
Configuration menu - View commit details
-
Copy full SHA for 6a9cf13 - Browse repository at this point
Copy the full SHA 6a9cf13View commit details -
Remove Chewy::Type, simplify DSL: (toptal#783)
- Remove the `Chewy::Type` class - e.g. remove `CitiesIndex::City` / `CitiesIndex.city` - `CitiesIndex::City.import! ...` becomes `CitiesIndex.import! ...` - Simplify index DSL: - `define_type` block -> `index_scope` clause - it can be omitted completely, if you don't need to specify the scope or options, e.g. `name` - Remove type names from string representations: - in `update_index` ActiveRecord helper and RSpec matcher, e.g. - `update_index('cities#city')` -> `update_index('cities')` - `update_index(UsersIndex::User)` -> `update_index(UsersIndex)` - in rake tasks (e.g. `rake chewy:update[cities#city]` -> `rake chewy:update[cities]`) - in rake tasks output (e.g. `Imported CitiesIndex::City in 1s, stats: index 3` -> `Imported CitiesIndex in 1s, stats: index 3`) - Use index name instead of type name in loader additional scope - e.g. `CitiesIndex.filter(...).load(city: {scope: City.where(...)})` -> `CitiesIndex.filter(...).load(cities: {scope: City.where(...)})`
Ivan Rabotyaga authoredApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for a349bf6 - Browse repository at this point
Copy the full SHA a349bf6View commit details -
Prepare 7.2.0 release (toptal#788)
Ivan Rabotyaga authoredApr 19, 2021 Configuration menu - View commit details
-
Copy full SHA for 49f9820 - Browse repository at this point
Copy the full SHA 49f9820View commit details
Commits on Apr 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6b20011 - Browse repository at this point
Copy the full SHA 6b20011View commit details
Commits on Apr 21, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 64f7343 - Browse repository at this point
Copy the full SHA 64f7343View commit details
Commits on Apr 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for cb7e4c4 - Browse repository at this point
Copy the full SHA cb7e4c4View commit details
Commits on Apr 30, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 2d10b3e - Browse repository at this point
Copy the full SHA 2d10b3eView commit details
Commits on May 3, 2021
-
Update CHANGELOG & Migration Guide to reflect 7.0.1 release (toptal#793)
Ivan Rabotyaga authoredMay 3, 2021 Configuration menu - View commit details
-
Copy full SHA for e19ad16 - Browse repository at this point
Copy the full SHA e19ad16View commit details
Commits on May 11, 2021
-
Fix clear scroll: pass
scroll_id
in body, as passing in path parame……ters is deprecated and can overflow `http.max_initial_line_length` (toptal#796)
Ivan Rabotyaga authoredMay 11, 2021 Configuration menu - View commit details
-
Copy full SHA for 973e122 - Browse repository at this point
Copy the full SHA 973e122View commit details
Commits on May 19, 2021
-
Fixed 'Breaking changes in 7.0' URL (toptal#797)
Fixed 'Breaking changes in 7.0' URL in the migration guide, which had an additional `l` in `.html`.
Configuration menu - View commit details
-
Copy full SHA for 6a0efcf - Browse repository at this point
Copy the full SHA 6a0efcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for f909cc7 - Browse repository at this point
Copy the full SHA f909cc7View commit details
Commits on May 20, 2021
-
[Fix toptal#795] Change implementation of Order param (toptal#798)
* [Fix toptal#795] **(Breaking)** Change implementation of Order param Use Array to store the value of Chewy::Search::Parameters::Order. To allow multiple sorting options that may have the same key name. For example script based sorting whose key will always be `_script`.
Configuration menu - View commit details
-
Copy full SHA for 261dc9e - Browse repository at this point
Copy the full SHA 261dc9eView commit details
Commits on May 24, 2021
-
Revert [toptal#787](toptal#787) progressbar feature to avoid performa…
…nce degradation in parallel import (toptal#800)
Ivan Rabotyaga authoredMay 24, 2021 Configuration menu - View commit details
-
Copy full SHA for 6e77065 - Browse repository at this point
Copy the full SHA 6e77065View commit details
Commits on Jun 25, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d3b7253 - Browse repository at this point
Copy the full SHA d3b7253View commit details
Commits on Jul 16, 2021
-
Use Chewy.thread_local_data to access Thread.current (toptal#804)
Having `Thread.current` access isolated helps us to extend chewy. After isolating it, we can provide dry-effects integration.
Configuration menu - View commit details
-
Copy full SHA for 1c2b3ce - Browse repository at this point
Copy the full SHA 1c2b3ceView commit details
Commits on Jul 19, 2021
-
Rename Chewwy.thread_local_data to Chewy.current (toptal#805)
We don't want to specify in the variable's name how the data is stored to be able to change an underlying implementation easily.
Configuration menu - View commit details
-
Copy full SHA for 00e6409 - Browse repository at this point
Copy the full SHA 00e6409View commit details
Commits on Jul 20, 2021
-
Use thread-local variables instead of fiber-local variables to store …
…global configuration. (toptal#807) Use thread-local variables instead of fiber-local variables to store global configuration
Configuration menu - View commit details
-
Copy full SHA for 9bd3161 - Browse repository at this point
Copy the full SHA 9bd3161View commit details
Commits on Aug 4, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e779e7d - Browse repository at this point
Copy the full SHA e779e7dView commit details -
Fixate elasticsearch gem version < 7.14.0 (toptal#811)
Ivan Rabotyaga authoredAug 4, 2021 Configuration menu - View commit details
-
Copy full SHA for e48f091 - Browse repository at this point
Copy the full SHA e48f091View commit details
Commits on Sep 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for c9d1159 - Browse repository at this point
Copy the full SHA c9d1159View commit details
Commits on Sep 22, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 1f139ba - Browse repository at this point
Copy the full SHA 1f139baView commit details
Commits on Oct 18, 2021
-
Do not apply journal and show warning message for chewy:reset and che…
…wy:upgrade if journal index is missing (toptal#817) * Do not apply journal and show warning message for chewy:reset and chewy:upgrade if journal index is missing * Update CHANGELOG.md Co-authored-by: Ivan Rabotyaga <[email protected]> Co-authored-by: Ivan Rabotyaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 38698f9 - Browse repository at this point
Copy the full SHA 38698f9View commit details
Commits on Oct 28, 2021
-
[Fix toptal#812] Add the
ignore_unavailable
option to the request (t……optal#819) (toptal#819) Co-authored-by: Lauren Ko <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d0aef50 - Browse repository at this point
Copy the full SHA d0aef50View commit details
Commits on Oct 29, 2021
-
Prepare 7.2.3 release (toptal#820)
Ivan Rabotyaga authoredOct 29, 2021 Configuration menu - View commit details
-
Copy full SHA for be3c4f9 - Browse repository at this point
Copy the full SHA be3c4f9View commit details
Commits on Nov 8, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 665063e - Browse repository at this point
Copy the full SHA 665063eView commit details
Commits on Nov 9, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 22b4d6c - Browse repository at this point
Copy the full SHA 22b4d6cView commit details
Commits on Dec 10, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 7d56754 - Browse repository at this point
Copy the full SHA 7d56754View commit details
Commits on Jan 17, 2022
-
Replace parent-child with a join field. (toptal#760)
Implement hierarchical structures with Elastic join field, in place of an obsolete (and removed) parent-child relationships.
Configuration menu - View commit details
-
Copy full SHA for 10ff43b - Browse repository at this point
Copy the full SHA 10ff43bView commit details
Commits on Feb 3, 2022
-
Fixed elasticsearch-dsl link (toptal#830)
A few days ago this PR was merged elastic/elasticsearch-ruby#1624 meaning the link isn't working again. Now it's pointing the the `elasticsearch-dsl-ruby` repository
Configuration menu - View commit details
-
Copy full SHA for 6ab6e01 - Browse repository at this point
Copy the full SHA 6ab6e01View commit details -
Configuration menu - View commit details
-
Copy full SHA for aeb369c - Browse repository at this point
Copy the full SHA aeb369cView commit details -
Replace i18n/core_ext/hash with active_support/core_ext/hash/keys (`d…
…eep_symbolize_keys`)
Configuration menu - View commit details
-
Copy full SHA for bd90368 - Browse repository at this point
Copy the full SHA bd90368View commit details -
Configuration menu - View commit details
-
Copy full SHA for 60d66de - Browse repository at this point
Copy the full SHA 60d66deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 48001e7 - Browse repository at this point
Copy the full SHA 48001e7View commit details
Commits on Feb 11, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 876d51c - Browse repository at this point
Copy the full SHA 876d51cView commit details -
Fix keyword arguments handling in names scopes (toptal#836)
Ivan Rabotyaga authoredFeb 11, 2022 Configuration menu - View commit details
-
Copy full SHA for 4b07cd8 - Browse repository at this point
Copy the full SHA 4b07cd8View commit details
Commits on Feb 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ff6e522 - Browse repository at this point
Copy the full SHA ff6e522View commit details
Commits on Mar 4, 2022
-
LazySidekiq strategy (toptal#827)
- Implement LazySidekiq strategy - Implement AtomicNoRefresh strategy - Add `no_refresh` chain call to `update_index` matcher Co-authored-by: Slava Mefodin <[email protected]> Co-authored-by: Bartek Bułat <[email protected]> Co-authored-by: Ivan Rabotyaga <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d8c7bf7 - Browse repository at this point
Copy the full SHA d8c7bf7View commit details -
Prepare 7.2.5 release (toptal#838)
Ivan Rabotyaga authoredMar 4, 2022 Configuration menu - View commit details
-
Copy full SHA for 98c2fc5 - Browse repository at this point
Copy the full SHA 98c2fc5View commit details
Commits on Mar 9, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d6f0507 - Browse repository at this point
Copy the full SHA d6f0507View commit details
Commits on Mar 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fb8e288 - Browse repository at this point
Copy the full SHA fb8e288View commit details
Commits on Jun 3, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 639db8c - Browse repository at this point
Copy the full SHA 639db8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec973b1 - Browse repository at this point
Copy the full SHA ec973b1View commit details -
feat/Enrich README with import bang doc (toptal#844)
Henry Steinhauer authoredJun 3, 2022 Configuration menu - View commit details
-
Copy full SHA for 2f3ce89 - Browse repository at this point
Copy the full SHA 2f3ce89View commit details
Commits on Jun 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 14afebd - Browse repository at this point
Copy the full SHA 14afebdView commit details -
Configuration menu - View commit details
-
Copy full SHA for b82016f - Browse repository at this point
Copy the full SHA b82016fView commit details
Commits on Jun 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 50bd5c1 - Browse repository at this point
Copy the full SHA 50bd5c1View commit details
Commits on Sep 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5ecbee3 - Browse repository at this point
Copy the full SHA 5ecbee3View commit details
Commits on Oct 10, 2022
-
Allow async options for
delete_all
method (toptal#857)That enables aynchronous journal clean up. Co-Authored-By: Bartek Bulat <[email protected]> Co-authored-by: Alex Popov <[email protected]> Co-authored-by: Bartek Bulat <[email protected]> Co-authored-by: Alex Popov <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 73b2fb1 - Browse repository at this point
Copy the full SHA 73b2fb1View commit details
Commits on Nov 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 4c067e2 - Browse repository at this point
Copy the full SHA 4c067e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for e6fe792 - Browse repository at this point
Copy the full SHA e6fe792View commit details
Commits on Dec 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7869c3b - Browse repository at this point
Copy the full SHA 7869c3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ad19ab - Browse repository at this point
Copy the full SHA 0ad19abView commit details
Commits on Jan 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fed4a21 - Browse repository at this point
Copy the full SHA fed4a21View commit details
Commits on Jan 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7ee4005 - Browse repository at this point
Copy the full SHA 7ee4005View commit details
Commits on Mar 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8ea2cfe - Browse repository at this point
Copy the full SHA 8ea2cfeView commit details
Commits on Apr 3, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7566f1d - Browse repository at this point
Copy the full SHA 7566f1dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b886d7 - Browse repository at this point
Copy the full SHA 8b886d7View commit details
Commits on Apr 5, 2023
-
Fix
chewy:journal:clean
task for ruby 3.x (toptal#874)* with double splat operator * add test case for rake task `chewy:journal:clean` * :gear: fix Style/StringLiterals * update CHANGELOG
Configuration menu - View commit details
-
Copy full SHA for 8e3fa9a - Browse repository at this point
Copy the full SHA 8e3fa9aView commit details
Commits on Apr 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1e9a1e0 - Browse repository at this point
Copy the full SHA 1e9a1e0View commit details
Commits on Apr 20, 2023
-
Fix memory leak for ruby 3.2 (toptal#882)
* Fix memory leak for ruby 3.2 * Add changelog * Update documentation
Configuration menu - View commit details
-
Copy full SHA for 827591d - Browse repository at this point
Copy the full SHA 827591dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fb0b50 - Browse repository at this point
Copy the full SHA 7fb0b50View commit details -
Fix in mock_elasticsearch_response_sources (toptal#861)
* Fix for incremental id in mock_elasticsearch_response_sources * Modifies test so it passes when id matches source id. * Adds changelog entry
Configuration menu - View commit details
-
Copy full SHA for c20d112 - Browse repository at this point
Copy the full SHA c20d112View commit details
Commits on Apr 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 8fe3d0f - Browse repository at this point
Copy the full SHA 8fe3d0fView commit details
Commits on Jul 5, 2023
-
Skip journal creation on import (toptal#888)
* Skip journal creation on import * Update changelog
Configuration menu - View commit details
-
Copy full SHA for f77e9dc - Browse repository at this point
Copy the full SHA f77e9dcView commit details
Commits on Jul 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 94d8e11 - Browse repository at this point
Copy the full SHA 94d8e11View commit details
Commits on Aug 29, 2023
-
Add task to create all indexes (toptal#892)
* Add task to create all indexes * Update changelog and readme * Address review comments * Control verbosity of the index creation
Configuration menu - View commit details
-
Copy full SHA for 541b696 - Browse repository at this point
Copy the full SHA 541b696View commit details -
Configuration menu - View commit details
-
Copy full SHA for e10c655 - Browse repository at this point
Copy the full SHA e10c655View commit details
Commits on Oct 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3eba904 - Browse repository at this point
Copy the full SHA 3eba904View commit details
Commits on Oct 12, 2023
-
Bump actions/checkout from 2 to 4 (toptal#897)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 22ead9a - Browse repository at this point
Copy the full SHA 22ead9aView commit details
Commits on Dec 6, 2023
-
[Fix toptal#903] Fix deprecation warning in LogSubscriber when updati…
…ng to Rails 7.1 (toptal#907)
Configuration menu - View commit details
-
Copy full SHA for 317dd93 - Browse repository at this point
Copy the full SHA 317dd93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a5594f - Browse repository at this point
Copy the full SHA 1a5594fView commit details
Commits on Dec 12, 2023
-
* Add KNN * Fix PR number in Changelog * Fix test for collapse and knn
Configuration menu - View commit details
-
Copy full SHA for a3f5026 - Browse repository at this point
Copy the full SHA a3f5026View commit details
Commits on Dec 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6addcb3 - Browse repository at this point
Copy the full SHA 6addcb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for f9681e4 - Browse repository at this point
Copy the full SHA f9681e4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ffdcbe - Browse repository at this point
Copy the full SHA 7ffdcbeView commit details
Commits on Dec 16, 2023
-
Update CHANGELOG.md (toptal#915)
Fix incorrect mention of version release 7.3.5; the second occurrence should be 7.3.6.
Configuration menu - View commit details
-
Copy full SHA for 63d6458 - Browse repository at this point
Copy the full SHA 63d6458View commit details -
Add helper to cleanup delayed sidekiq timechunks (toptal#894)
Mainly useful to avoid flaky tests when using a real redis database and not flushing the database in between tests
Configuration menu - View commit details
-
Copy full SHA for ea0ed0a - Browse repository at this point
Copy the full SHA ea0ed0aView commit details
Commits on Jan 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for cf07086 - Browse repository at this point
Copy the full SHA cf07086View commit details -
Configuration menu - View commit details
-
Copy full SHA for f383e47 - Browse repository at this point
Copy the full SHA f383e47View commit details
Commits on Jan 18, 2024
-
Update rubocop requirement from 1.48 to 1.60.0 (toptal#921)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.48.0...v1.60.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8954835 - Browse repository at this point
Copy the full SHA 8954835View commit details
Commits on Jan 25, 2024
-
Update rubocop requirement from 1.60.0 to 1.60.1 (toptal#923)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.60.0...v1.60.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for c833003 - Browse repository at this point
Copy the full SHA c833003View commit details
Commits on Jan 30, 2024
-
Make default index scope cleanup behavior configurable (toptal#925)
* Make default index scope cleanup behavior configurable Instead of warning, you can completely ignore cases when the scope include order/offset/limit or you can raise an exception instead. * Update changelog
Configuration menu - View commit details
-
Copy full SHA for 8604b4a - Browse repository at this point
Copy the full SHA 8604b4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7460f8e - Browse repository at this point
Copy the full SHA 7460f8eView commit details
Commits on Feb 9, 2024
-
Update rubocop requirement from 1.60.1 to 1.60.2 (toptal#927)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.60.1...v1.60.2) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 35a0b7b - Browse repository at this point
Copy the full SHA 35a0b7bView commit details
Commits on Mar 7, 2024
-
Update rubocop requirement from 1.60.2 to 1.61.0 (toptal#931)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.60.2...v1.61.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4cebde6 - Browse repository at this point
Copy the full SHA 4cebde6View commit details
Commits on Mar 15, 2024
-
Update rubocop requirement from 1.61.0 to 1.62.1 (toptal#932)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.61.0...v1.62.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4fde2ac - Browse repository at this point
Copy the full SHA 4fde2acView commit details
Commits on Apr 11, 2024
-
Update rubocop requirement from 1.62.1 to 1.63.0 (toptal#936)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.62.1...v1.63.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for cdb5ee7 - Browse repository at this point
Copy the full SHA cdb5ee7View commit details
Commits on Apr 18, 2024
-
Update rubocop requirement from 1.63.0 to 1.63.2 (toptal#939)
* Update rubocop requirement from 1.63.0 to 1.63.2 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.63.0...v1.63.2) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Fix specs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Samuel Ebeagu <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 41e4741 - Browse repository at this point
Copy the full SHA 41e4741View commit details
Commits on Apr 25, 2024
-
Update rubocop requirement from 1.63.2 to 1.63.3 (toptal#945)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.63.2...v1.63.3) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3d559bb - Browse repository at this point
Copy the full SHA 3d559bbView commit details
Commits on May 1, 2024
-
Relax allowed
elasticsearch
dependency version (toptal#933)* Relax allowed `elasticsearch` dependency version * Update tracer/logger access style * Add changelog notes
Configuration menu - View commit details
-
Copy full SHA for 7e65698 - Browse repository at this point
Copy the full SHA 7e65698View commit details
Commits on May 2, 2024
-
Fix intermittent time-based failure in delayed sidekiq spec (toptal#947)
* Fix intermittent time-based failure in delayed sidekiq spec This example was previously failing when it was run at exactly an "even" 10 second increment time. For example, it would fail at "12:00:10", but pass at "12:00:09" and "12:00:11". This leads to intermittent failures on CI (presumably around ~10% of runs). Updated to use a helper method in the spec which more closely mirrors the scheduler code. * Add changelog notes
Configuration menu - View commit details
-
Copy full SHA for f45460f - Browse repository at this point
Copy the full SHA f45460fView commit details -
Update rubocop requirement from 1.63.3 to 1.63.4 (toptal#946)
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.63.3...v1.63.4) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 04e5984 - Browse repository at this point
Copy the full SHA 04e5984View commit details
Commits on May 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c99741e - Browse repository at this point
Copy the full SHA c99741eView commit details
Commits on May 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 17cd230 - Browse repository at this point
Copy the full SHA 17cd230View commit details
Commits on Oct 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bad41b0 - Browse repository at this point
Copy the full SHA bad41b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 578bda3 - Browse repository at this point
Copy the full SHA 578bda3View commit details
Commits on Oct 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 181932a - Browse repository at this point
Copy the full SHA 181932aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1ee9ba - Browse repository at this point
Copy the full SHA d1ee9baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57ad8d5 - Browse repository at this point
Copy the full SHA 57ad8d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 929a880 - Browse repository at this point
Copy the full SHA 929a880View commit details -
Configuration menu - View commit details
-
Copy full SHA for 010f76e - Browse repository at this point
Copy the full SHA 010f76eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 29690d2 - Browse repository at this point
Copy the full SHA 29690d2View commit details
Commits on Oct 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8215998 - Browse repository at this point
Copy the full SHA 8215998View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5783913 - Browse repository at this point
Copy the full SHA 5783913View commit details
Commits on Oct 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6dae0e0 - Browse repository at this point
Copy the full SHA 6dae0e0View commit details
Commits on Oct 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a7461b3 - Browse repository at this point
Copy the full SHA a7461b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ff1a31d - Browse repository at this point
Copy the full SHA ff1a31dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c650e5 - Browse repository at this point
Copy the full SHA 6c650e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16ea00d - Browse repository at this point
Copy the full SHA 16ea00dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a8c1100 - Browse repository at this point
Copy the full SHA a8c1100View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b7f81f - Browse repository at this point
Copy the full SHA 2b7f81fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 420d4cd - Browse repository at this point
Copy the full SHA 420d4cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 888b3d2 - Browse repository at this point
Copy the full SHA 888b3d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fc7ce9 - Browse repository at this point
Copy the full SHA 1fc7ce9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ed3d75 - Browse repository at this point
Copy the full SHA 0ed3d75View commit details
Commits on Nov 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c270093 - Browse repository at this point
Copy the full SHA c270093View commit details
Commits on Nov 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c5c1f49 - Browse repository at this point
Copy the full SHA c5c1f49View commit details -
Configuration menu - View commit details
-
Copy full SHA for e93811a - Browse repository at this point
Copy the full SHA e93811aView commit details