Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bolshakov/stoplight
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.1
Choose a base ref
...
head repository: bolshakov/stoplight
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.0
Choose a head ref
  • 14 commits
  • 64 files changed
  • 5 contributors

Commits on Nov 14, 2020

  1. Use github actions (#137)

    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    8933ce7 View commit details
    Browse the repository at this point in the history
  2. Feature/change org (#138)

    Update links in the README file
    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    00e2d3d View commit details
    Browse the repository at this point in the history
  3. Update rubocop (#139)

    Update rubocop
    
    * Create rubocop-analysis.yml
    * Rename ruby to specs
    * Fix Style/SafeNavigation offences
    * Fix Style/RescueStandardError offences
    * Fix Style/RedundantBegin offences
    * Fix Style/Encoding and Style/FrozenStringLiteralComment offences
    * Fix Style/EmptyMethod offences
    * Fix Naming/RescuedExceptionsVariableName offences
    * Disabel Lint/MissingSuper
    * Disable Lint/AmbiguousBlockAssociation for specs
    * Fix Layout/SpaceInLambdaLiteral offences
    * Fix Layout/EmptyLineAfterGuardClause offences
    * Remove rubocop_todo.yml
    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    f14d12b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6e9c858 View commit details
    Browse the repository at this point in the history
  5. Enable coverails (#141)

    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    c8ee696 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    917bbc4 View commit details
    Browse the repository at this point in the history
  7. Add Gemfile.lock (#143)

    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    d3215b1 View commit details
    Browse the repository at this point in the history
  8. Update rake requirement from ~> 11.1 to ~> 13.0 (#144)

    Updates the requirements on [rake](https://github.com/ruby/rake) to permit the latest version.
    - [Release notes](https://github.com/ruby/rake/releases)
    - [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
    - [Commits](ruby/rake@v11.3.0...v13.0.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    9787b1c View commit details
    Browse the repository at this point in the history
  9. Fix repo link

    bolshakov committed Nov 14, 2020
    Configuration menu
    Copy the full SHA
    1e59faf View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2021

  1. Fix gem link (#145)

    bolshakov committed Jan 27, 2021
    Configuration menu
    Copy the full SHA
    ee0cadb View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2022

  1. Test against ruby 3.0.x (#146)

    * Test against ruby 3.0.x
    * Drop ruby 2.5 support
    
    Co-authored-by: John Andrews <john.m.andrews@gmail.com>
    bolshakov and jxa committed Jan 17, 2022
    Configuration menu
    Copy the full SHA
    f09b82a View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. Fix deprecated uses of Redis#pipelined (#150)

    Context: redis/redis-rb#1059
    
    The following is deprecated
    ```ruby
    redis.pipelined do
      redis.get(key)
    end
    ```
    
    And should be rewritten as:
    ```ruby
    redis.pipelined do |pipeline|
      pipeline.get(key)
    end
    ```
    
    Functionally it makes no difference.
    This API is available since Redis 3.0.
    
    Co-authored-by: Jean Boussier <jean.boussier@gmail.com>
    casperisfine and byroot committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    3d12134 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6fde06a View commit details
    Browse the repository at this point in the history
  3. Bump version

    bolshakov committed Feb 23, 2022
    Configuration menu
    Copy the full SHA
    ad349fe View commit details
    Browse the repository at this point in the history
Loading