Skip to content
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

resync #1

Open
wants to merge 191 commits into
base: master
Choose a base branch
from
Open

resync #1

wants to merge 191 commits into from

Commits on Aug 10, 2021

  1. Documentation disable! typo

    Ivan Shamatov authored and palkan committed Aug 10, 2021
    Configuration menu
    Copy the full SHA
    d70ee8f View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2021

  1. Allow access to let_it_be defined variables in after(:context)

    [This commit](2503464)
    changed the way we detect the context for fetching the `let_it_be`
    defined variables, matching only the `before(:context)`. Those variables
    should be accessible by both before/after, so this adds back the generic
    `:context` matcher to support all hooks.
    cbarton authored and palkan committed Aug 20, 2021
    Configuration menu
    Copy the full SHA
    ef07109 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2021

  1. feature: Add support for (process) parallelized tests to before_all f…

    …or minitest.
    
    When the test suite is run in parallel, the run method only enqueues the
    test jobs and returns right after that, so we mustn't roll back the
    transaction at that point.
    Instead, intercept the Minitest.run_one_method call that actually runs
    a test case. In each process, we will keep track of when the last test
    case of a test file has run, and roll back the transaction in that moment.
    This works because test cases from different test files are added to
    the queue and processed in order, i.e. once we see a test case from a 
    different class/test file, no test cases from the previous test file will
    be run anymore.
    Peter Retzlaff authored and palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    d46ded4 View commit details
    Browse the repository at this point in the history
  2. fix: call deactivate on the correct before_all_executor for parallel …

    …tests
    Peter Retzlaff authored and palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    4d7eb36 View commit details
    Browse the repository at this point in the history
  3. fix: deactivate before_all_executor after last test file per process

    parallelize_teardown allows registering callbacks that are run after
    parallel test execution. It is called after all tests are run and before
    the forked processes are closed, so we can use it to clean up the last
    of the before_all transactions.
    Peter Retzlaff authored and palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    f91c5c3 View commit details
    Browse the repository at this point in the history
  4. fix: fix Rubocop warning and before_all test cases

    Peter Retzlaff authored and palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    b338412 View commit details
    Browse the repository at this point in the history
  5. fix: check that Rails is present, i.e. the including class supports #…

    …parallelize
    Peter Retzlaff authored and palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    cd7e7fa View commit details
    Browse the repository at this point in the history
  6. Bump 1.0.7

    palkan committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    cc6a844 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2021

  1. Configuration menu
    Copy the full SHA
    6bec4dc View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. Update BACKERS.md

    palkan authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    12cdc12 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. style: rubocop upgrade

    palkan committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    7b89b54 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2021

  1. Updates spec to confirm newlines work

    sbader authored and palkan committed Dec 14, 2021
    Configuration menu
    Copy the full SHA
    2335ab5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    51c3abd View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2022

  1. JRuby is cat friendly

    All recent versions of JRuby support unicode identifiers.
    headius authored and palkan committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    25dbdf6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bcddd55 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2022

  1. Configuration menu
    Copy the full SHA
    09135ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e47c9ee View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2022

  1. Thanks @pennylane-hq!

    palkan committed Feb 24, 2022
    Configuration menu
    Copy the full SHA
    98537da View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2022

  1. Respect the printer on the configure block (#237)

    * Respect the printer on the configure block
    
    It was being cached and ignoring the one defined the configuration
    
    * Update CHANGELOG
    
    * Fix rubocop warnings
    
    * Satisfy rubocop
    
    * Update CHANGELOG.md
    
    Co-authored-by: Guillermo Siliceo <[email protected]>
    Co-authored-by: Vladimir Dementyev <[email protected]>
    3 people authored Feb 28, 2022
    Configuration menu
    Copy the full SHA
    abcb7e7 View commit details
    Browse the repository at this point in the history
  2. restore the lock_thread value after rollback (#236)

    * restore the lock_thread value after rollback
    
    * use :@lock_thread instead of "@lock_thread"
    
    * avoid instance variable collisions with cats
    
    * add a changelog entry
    
    Co-authored-by: Vladimir Dementyev <[email protected]>
    cou929 and palkan authored Feb 28, 2022
    Configuration menu
    Copy the full SHA
    09fa3e5 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. Make defaults threadsafe

    This is to ensure that if tests were run in parallel, that values would
    not override each other/be used from other threads.
    thewatts authored and palkan committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    78b0a50 View commit details
    Browse the repository at this point in the history
  2. fix: revert rubocop fixture

    palkan committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    9a9922c View commit details
    Browse the repository at this point in the history
  3. Bump 1.0.8

    palkan committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    d394e47 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fd399f4 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2022

  1. Configuration menu
    Copy the full SHA
    8a69b9b View commit details
    Browse the repository at this point in the history
  2. chore: update docs and changelog

    ruslanshakirov authored and palkan committed Mar 28, 2022
    Configuration menu
    Copy the full SHA
    7fac159 View commit details
    Browse the repository at this point in the history
  3. chore: rename AnyFixture callbacks

    ruslanshakirov authored and palkan committed Mar 28, 2022
    Configuration menu
    Copy the full SHA
    524d065 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    44b136b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    53eded1 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. Configuration menu
    Copy the full SHA
    c9b6740 View commit details
    Browse the repository at this point in the history
  2. Thank you, Charles! @charly

    palkan authored Apr 12, 2022
    Configuration menu
    Copy the full SHA
    408e72c View commit details
    Browse the repository at this point in the history

Commits on May 6, 2022

  1. Configuration menu
    Copy the full SHA
    f45fb41 View commit details
    Browse the repository at this point in the history
  2. Bump 1.0.9

    palkan committed May 6, 2022
    Configuration menu
    Copy the full SHA
    9720f70 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2022

  1. fix option name

    toydestroyer authored and palkan committed Jun 2, 2022
    Configuration menu
    Copy the full SHA
    8becefe View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. Thanks, @github!

    palkan authored Jun 24, 2022
    Configuration menu
    Copy the full SHA
    2b49a02 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2022

  1. Reset colors before newline

    nate-at-gusto authored and palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    b35b4e0 View commit details
    Browse the repository at this point in the history
  2. fix: style

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    709e1b3 View commit details
    Browse the repository at this point in the history
  3. ci: upgrade jruby

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    87a1b93 View commit details
    Browse the repository at this point in the history
  4. fix(tests): fabrication setup

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    1768d8d View commit details
    Browse the repository at this point in the history
  5. feat: improve logging

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    728cf0e View commit details
    Browse the repository at this point in the history
  6. ci: add Ruby 3.1 and Rails 7

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    e90f2d5 View commit details
    Browse the repository at this point in the history
  7. Bump 1.0.10

    palkan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    dda8b4f View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Configuration menu
    Copy the full SHA
    417f040 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2022

  1. don't overwrite saved lock_thread value in nested contexts

    Signed-off-by: ygelfand <[email protected]>
    ygelfand authored and palkan committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    4c71360 View commit details
    Browse the repository at this point in the history
  2. changelog

    Signed-off-by: ygelfand <[email protected]>
    ygelfand authored and palkan committed Sep 20, 2022
    Configuration menu
    Copy the full SHA
    8542567 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2022

  1. Configuration menu
    Copy the full SHA
    09e7859 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. ci: liche -> lychee

    palkan committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    04d840c View commit details
    Browse the repository at this point in the history
  2. fix: stack_prof_spec

    palkan committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    a972a28 View commit details
    Browse the repository at this point in the history
  3. style: ignore md indentation

    palkan committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    35f9e3b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a5d8d02 View commit details
    Browse the repository at this point in the history
  5. ci: use latest jruby

    palkan committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    12b785a View commit details
    Browse the repository at this point in the history
  6. Bump 1.0.11

    palkan committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    8c1b71b View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

  1. Configuration menu
    Copy the full SHA
    be5a3eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4611b72 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    03dacfb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1a67ad3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0faa354 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    cacd8f5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5d3502f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9dd50b5 View commit details
    Browse the repository at this point in the history
  9. fix: style

    palkan committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    4a4ba70 View commit details
    Browse the repository at this point in the history
  10. fix(let_it_be): array-like records detection

    #map is to generic and could be implemented by hashes/structs; #to_ary is a better check
    palkan committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    f13ee70 View commit details
    Browse the repository at this point in the history
  11. ci: jruby-9.3

    9.4 has some problems (e.g., jruby/jruby#7487)
    palkan committed Nov 29, 2022
    Configuration menu
    Copy the full SHA
    bc938cb View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d5054b3 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2022

  1. feat: add global before_all tags

    maxshend authored and palkan committed Dec 2, 2022
    Configuration menu
    Copy the full SHA
    74351b6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0c47cd6 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2022

  1. Bump 1.1.0

    palkan committed Dec 6, 2022
    Configuration menu
    Copy the full SHA
    620feaa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    153c102 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. Fix typo

    ursm authored and palkan committed Dec 7, 2022
    Configuration menu
    Copy the full SHA
    18deb96 View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2023

  1. Add support for multiple databases

    rutgerw authored and palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    a0a5285 View commit details
    Browse the repository at this point in the history
  2. update before_all documentation

    rutgerw authored and palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    026faae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bce283b View commit details
    Browse the repository at this point in the history
  4. Use multiple databases

    rutgerw authored and palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    b04553f View commit details
    Browse the repository at this point in the history
  5. Ensure ActiveRecord 5 is supported

    rutgerw authored and palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    14aef7a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fa560f7 View commit details
    Browse the repository at this point in the history
  7. Remove duplicate empty line

    rutgerw authored and palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    1aea7b3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0cb123d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    28be359 View commit details
    Browse the repository at this point in the history
  10. fix: style

    palkan committed Jan 4, 2023
    Configuration menu
    Copy the full SHA
    7d0f838 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2023

  1. Configuration menu
    Copy the full SHA
    7fb00f6 View commit details
    Browse the repository at this point in the history
  2. Fix ArgumentError

    rutgerw authored and palkan committed Jan 5, 2023
    Configuration menu
    Copy the full SHA
    8e30fa3 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. Configuration menu
    Copy the full SHA
    841dc69 View commit details
    Browse the repository at this point in the history
  2. style: upd rubocop config

    palkan committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    9334054 View commit details
    Browse the repository at this point in the history
  3. ci: add jobs timeout

    palkan committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    1d01b2f View commit details
    Browse the repository at this point in the history
  4. changelog: fix links

    palkan committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    5cd75f1 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2023

  1. Configuration menu
    Copy the full SHA
    b4f702d View commit details
    Browse the repository at this point in the history
  2. Bump 1.2.0

    palkan committed Feb 8, 2023
    Configuration menu
    Copy the full SHA
    dadfe0b View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. fix: upgrade to ruby-prof 1.4+

    Fixes #263
    palkan committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    ff50404 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5701ad8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    deb83e6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    80e2324 View commit details
    Browse the repository at this point in the history
  5. fix(specs): set RAILS_ENV=test

    palkan committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    28a8f7f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b34ebdb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f1790fe View commit details
    Browse the repository at this point in the history
  8. changelog: setup_fixtures fix

    palkan committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    ae7b6db View commit details
    Browse the repository at this point in the history
  9. Bump 1.2.1

    palkan committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    5d26319 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2023

  1. fix: rubocop compatibility

    palkan committed Jun 20, 2023
    Configuration menu
    Copy the full SHA
    f82c22e View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2023

  1. feat: easily ignore pools which cannot cannot

    For an application with multiple databases, allow the databases not-under-test to not be running (not connectable) and for before_all to still work.
    bf4 authored and palkan committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    ea1bdfb View commit details
    Browse the repository at this point in the history
  2. style: 👮

    palkan committed Jun 21, 2023
    Configuration menu
    Copy the full SHA
    7ac65ae View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. chore: test against mysql

    palkan committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    cff8245 View commit details
    Browse the repository at this point in the history
  2. ci: increase jruby timeout

    palkan committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    3e13123 View commit details
    Browse the repository at this point in the history
  3. Bump 1.2.2

    palkan committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    2c32f4d View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Configuration menu
    Copy the full SHA
    dbf4169 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

  1. chore: extract test_prof/core.rb

    Fixes #270
    palkan committed Jul 11, 2023
    Configuration menu
    Copy the full SHA
    17d674d View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. fix: set ruby-prof measure mode via Profile

    Fixes #273
    palkan committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    4203616 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4505ac7 View commit details
    Browse the repository at this point in the history
  3. style: upgrade rubocop

    palkan committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    095edc3 View commit details
    Browse the repository at this point in the history
  4. Bump 1.2.3

    palkan committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    bd8502e View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Configuration menu
    Copy the full SHA
    bda0d76 View commit details
    Browse the repository at this point in the history
  2. ci: use Rails 7.0 with JRuby

    Rails 7.1 failes due to some ActiveRecord changes, will try later
    palkan committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    ffd4729 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c8ff66 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. docs: playbook

    palkan committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    34c63c1 View commit details
    Browse the repository at this point in the history
  2. forspell: upd

    palkan committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    049b577 View commit details
    Browse the repository at this point in the history
  3. fix(docs): rb -> sh

    palkan committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    f2bf816 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2666957 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    51376f6 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ae6814 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    67eeb49 View commit details
    Browse the repository at this point in the history
  8. docs: memory prof

    palkan committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    5ded8f9 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    37770c2 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

  1. Configuration menu
    Copy the full SHA
    3dfe1cf View commit details
    Browse the repository at this point in the history
  2. feat: vernier integration

    palkan committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    df15a58 View commit details
    Browse the repository at this point in the history
  3. docs: sponsor link

    palkan committed Nov 15, 2023
    Configuration menu
    Copy the full SHA
    fea6c5c View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Bump 1.3.0

    palkan committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    91095d4 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. docs: update resources

    - Add TestProf 3 post
    
    - Add ZeroGravity case study
    palkan committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    0a7e82c View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

  1. docs: update coggle image

    palkan committed Nov 23, 2023
    Configuration menu
    Copy the full SHA
    f761495 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. FactoryProf results to a JSON file

    uzushino authored and palkan committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    55629e4 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    uzushino authored and palkan committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    506aaad View commit details
    Browse the repository at this point in the history
  3. Fix lint

    uzushino authored and palkan committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    4a2bde1 View commit details
    Browse the repository at this point in the history
  4. Update factory_prof.md

    uzushino authored and palkan committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    2861592 View commit details
    Browse the repository at this point in the history
  5. Bump 1.3.1

    palkan committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    02d8f35 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Add Minitest support to TagProf (#283)

    * Add Minitest support to TagProf
    
    * Update docs/profilers/tag_prof.md
    
    Co-authored-by: Vladimir Dementyev <[email protected]>
    
    * Fix CI errors
    
    * Fix mdl errors
    
    * Return __unknown__ when aboslute path cannot be displayed
    
    * Limit to last released rails version in railsmaster.gemfile
    
    * Fix rspec bug without limiting rails last stable version in railsmaster.gemfile
    
    ---------
    
    Co-authored-by: Vladimir Dementyev <[email protected]>
    lioneldebauge and palkan authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    a98edb5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23b516f View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Bump 1.3.2

    palkan committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    bd7027e View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    6c8f17a View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. fix: use stable ids in memprof tracker

    - Drop excess MemProf tests
    palkan committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    531a4d1 View commit details
    Browse the repository at this point in the history
  2. ci: fix sqlite3 version

    palkan committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    6397746 View commit details
    Browse the repository at this point in the history
  3. fix: memprof print 0 rss %

    palkan committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    8e30a1f View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. ci: add release job

    palkan committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    a52da81 View commit details
    Browse the repository at this point in the history
  2. Bump 1.3.3

    palkan committed Apr 19, 2024
    Configuration menu
    Copy the full SHA
    3593d3e View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2024

  1. Configuration menu
    Copy the full SHA
    98323b9 View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2024

  1. Configuration menu
    Copy the full SHA
    95eb073 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    0d30e99 View commit details
    Browse the repository at this point in the history
  2. docs: add mastodon to users

    palkan committed May 7, 2024
    Configuration menu
    Copy the full SHA
    cdf4b82 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. fix: make minitest sampling work

    Co-Authored-By: @ericenns
    palkan committed May 8, 2024
    Configuration menu
    Copy the full SHA
    545464e View commit details
    Browse the repository at this point in the history
  2. refactor: minitest sampling

    palkan committed May 8, 2024
    Configuration menu
    Copy the full SHA
    6575956 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. add threshold config parameter for FactoryProf (#294)

    * add threshold config parameter for FactoryProf
    
    * fix doc
    
    * fix threshold logic & fix doc file
    
    * remove excess
    lHydra authored May 22, 2024
    Configuration menu
    Copy the full SHA
    4ffe217 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. add hooks parameter to vernier (#295)

    * add hooks parameter to vernier
    
    * add specs
    
    ---------
    
    Co-authored-by: Vladimir Dementyev <[email protected]>
    lHydra and palkan authored May 23, 2024
    Configuration menu
    Copy the full SHA
    29e6ac8 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    ff76320 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. add report_duplicates config option for let_it_be

    Georgiy Melnikov authored and palkan committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    2284816 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dcb835c View commit details
    Browse the repository at this point in the history
  3. track traits and overrides with FactoryProf

    Georgiy Melnikov authored and palkan committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    f1ee78b View commit details
    Browse the repository at this point in the history
  4. fix spec

    lHydra authored and palkan committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    a7ff4ee View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1fb2ed5 View commit details
    Browse the repository at this point in the history
  6. Add FactoryBot.get_factory_default

    john-h-k authored and palkan committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    ac88eb8 View commit details
    Browse the repository at this point in the history
  7. Fixes

    john-h-k authored and palkan committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    7b2356c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f29ef96 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f4353b9 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Configuration menu
    Copy the full SHA
    58f38d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8fe54fa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c390478 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2024

  1. Configuration menu
    Copy the full SHA
    2209fd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78880ba View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Bump 1.4.0.rc.1

    palkan committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    1b76204 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2024

  1. style: fix new rubocop offense

    palkan committed Jun 29, 2024
    Configuration menu
    Copy the full SHA
    b891e72 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    0259a76 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    9ab4368 View commit details
    Browse the repository at this point in the history
  2. Bump 1.4.0.rc.2

    palkan committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    1a2edc5 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. feat: add tps profiler

    palkan committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    0e7968b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e730216 View commit details
    Browse the repository at this point in the history
  3. Bump 1.4.0.rc.3

    palkan committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    1eebcbb View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. Configuration menu
    Copy the full SHA
    ab7c9aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    643ac6a View commit details
    Browse the repository at this point in the history
  3. Bump 1.4.0.rc.4

    palkan committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    065ca24 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Configuration menu
    Copy the full SHA
    b428807 View commit details
    Browse the repository at this point in the history
  2. forspell: refind

    palkan committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    18c0433 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    3b4c463 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Bump 1.4.0

    palkan committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    d4d8bab View commit details
    Browse the repository at this point in the history
  2. fix: isolator integration

    palkan committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    bc95266 View commit details
    Browse the repository at this point in the history
  3. fix: multi db before_all tests

    palkan committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    f9b5743 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2024

  1. Typo (EVEN_PROF_STAMP => EVENT_PROF_STAMP)

    mculp authored and palkan committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    2b1e745 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87858b7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    07f6204 View commit details
    Browse the repository at this point in the history
  4. style: use 2.7 in .rubocop.yml

    palkan committed Aug 23, 2024
    Configuration menu
    Copy the full SHA
    56bf28e View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. fix: ignore scopes in #refind

    Fixes #306
    palkan committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    e6a3483 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7d18051 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d722d9f View commit details
    Browse the repository at this point in the history
  4. Bump 1.4.2

    palkan committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    830e454 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. Configuration menu
    Copy the full SHA
    83971c9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95d3c7f View commit details
    Browse the repository at this point in the history
  3. style: rubocop

    palkan committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    b19f5b9 View commit details
    Browse the repository at this point in the history