Skip to content
This repository was archived by the owner on Jun 6, 2020. It is now read-only.

Update rubocop-rails_config: 0.2.5 → 0.3.0 (major)#23

Closed
depfu[bot] wants to merge 1 commit intomasterfrom
depfu/update/rubocop-rails_config-0.3.0
Closed

Update rubocop-rails_config: 0.2.5 → 0.3.0 (major)#23
depfu[bot] wants to merge 1 commit intomasterfrom
depfu/update/rubocop-rails_config-0.3.0

Conversation

@depfu
Copy link
Contributor

@depfu depfu bot commented Dec 17, 2018

Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ rubocop-rails_config (0.2.5 → 0.3.0) · Repo · Changelog

Release Notes

0.3.0

  • Enable Layout/SpaceAfterSemicolon cop #21 @koic

0.2.6

Commits

See the full diff on Github. The new version differs by 21 commits:

↗️ concurrent-ruby (indirect, 1.0.5 → 1.1.4) · Repo · Changelog

Release Notes

1.1.0

concurrent-ruby:

  • requires at least Ruby 2.0
  • Promises
    are moved from concurrent-ruby-edge to concurrent-ruby
  • Add support for TruffleRuby
    • (#734) Fix Array/Hash/Set construction broken on TruffleRuby
    • AtomicReference fixed
  • fixed documentation and README links
  • fix Set for TruffleRuby and Rubinius
  • CI stabilization
  • remove sharp dependency edge -> core
  • remove warnings
  • documentation updates
  • Exchanger is no longer documented as edge since it was already available in
    concurrent-ruby
  • (#644) Fix Map#each and #each_pair not returning enumerator outside of MRI
  • (#659) Edge promises fail during error handling
  • (#741) Raise on recursive Delay#value call
  • (#727) #717 fix global IO executor on JRuby
  • (#740) Drop support for CRuby 1.9, JRuby 1.7, Rubinius.
  • (#737) Move AtomicMarkableReference out of Edge
  • (#708) Prefer platform specific memory barriers
  • (#735) Fix wrong expected exception in channel spec assertion
  • (#729) Allow executor option in Promise#then
  • (#725) fix timeout check to use timeout_interval
  • (#719) update engine detection
  • (#660) Add specs for Promise#zip/Promise.zip ordering
  • (#654) Promise.zip execution changes
  • (#666) Add thread safe set implementation
  • (#651) #699 #to_s, #inspect should not output negative object IDs.
  • (#685) Avoid RSpec warnings about raise_error
  • (#680) Avoid RSpec monkey patching, persist spec results locally, use RSpec
    v3.7.0
  • (#665) Initialize the monitor for new subarrays on Rubinius
  • (#661) Fix error handling in edge promises

concurrent-ruby-edge:

  • (#659) Edge promises fail during error handling
  • Edge files clearly separated in lib-edge
  • added ReInclude
  • add Promises.zip_futures_over_on
Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ i18n (indirect, 1.1.0 → 1.2.0) · Repo · Changelog

Release Notes

1.2.0

  • Provide a uniform API between Simple, KeyValue and Chain backends - #109 (one of our oldest PRs, and I am pleased that @kidpollo has persisted for all this time!)
  • Support translation hashes with numeric keys in Simple backend - #422
  • Add CacheFile backend module - #423
  • Add JSON backend module - #429
  • Updated README to point to the wiki - #438
  • Added plural rules for oc locale - #440
  • Removed tests from the bundled gem (leading to smaller download sizes) - #441
  • Added a post-install message about fallback breaking change introduced in v1.1.0 - #442

1.1.1

  • Expose translations with an option to perform initialization (if it hasn't been done already) (#353 / #254)
  • Removed un-used Kernel core extension #436
  • Added project metadata for RubyGems #434
Commits

See the full diff on Github. The new version differs by 36 commits:

↗️ loofah (indirect, 2.2.2 → 2.2.3) · Repo · Changelog

Release Notes

2.2.3

Notably, this release addresses CVE-2018-16468.

Commits

See the full diff on Github. The new version differs by 5 commits:

↗️ method_source (indirect, 0.9.0 → 0.9.2) · Repo

Commits

See the full diff on Github. The new version differs by 12 commits:

↗️ mini_portile2 (indirect, 2.3.0 → 2.4.0) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 10 commits:

↗️ nokogiri (indirect, 1.8.5 → 1.9.0) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ parser (indirect, 2.5.1.2 → 2.5.3.0) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 5 commits:

↗️ rack (indirect, 2.0.5 → 2.0.6) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 5 commits:

↗️ rake (indirect, 12.3.1 → 12.3.2) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 41 commits:

↗️ rubocop (indirect, 0.59.2 → 0.61.1) · Repo · Changelog

Release Notes

0.61.0

New features

  • #6457: Support inner slash correction on Style/RegexpLiteral. (@r7kamura)
  • #6475: Support brace correction on Style/Lambda. (@r7kamura)
  • #6469: Enforce no parentheses style in the Style/MethodCallWithArgsParentheses cop. (@gsamokovarov)
  • New cop Performance/OpenStruct checks for OpenStruct.new calls. (@xlts)

Bug fixes

  • #6433: Fix Ruby 2.5 Layout/RescueEnsureAlignment error on assigned blocks. (@gmcgibbon)
  • #6405: Fix a false positive for Lint/UselessAssignment when using a variable in a module name. (@itsWill)
  • #5934: Handle the combination of --auto-gen-config and --config FILE correctly. (@jonas054)
  • #5970: Make running --auto-gen-config in a subdirectory work. (@jonas054)
  • #6412: Fix an unknown keywords error when using Psych.safe_load with Ruby 2.6.0-preview2. (@koic)
  • #6436: Fix exit status code to be 130 when rubocop is interrupted. (@deivid-rodriguez)
  • #6443: Fix an incorrect autocorrect for Style/BracesAroundHashParameters when the opening brace is before the first hash element at same line. (@koic)
  • #6445: Treat yield and super like regular method calls in Style/AlignHash. (@mvz)
  • #3301: Don't suggest or make semantic changes to the code in Style/InfiniteLoop. (@jonas054)
  • #3586: Handle single argument spanning multiple lines in Style/TrailingCommaInArguments. (@jonas054)
  • #6478: Fix EmacsComment#encoding to match the coding variable. (@akihiro17)
  • Don't show "unrecognized parameter" warning for inherit_mode parameter to individual cop configurations. (@maxh)
  • #6449: Fix a false negative for Layout/IndentationWidth when setting EnforcedStyle: rails of Layout/IndentationConsistency and method definition indented to access modifier in a singleton class. (@koic)
  • #6482: Fix a false positive for Lint/FormatParameterMismatch when using (digit)$ flag. (@koic)
  • #6489: Fix an error for Style/UnneededCondition when if condition and then branch are the same and it has no else branch. (@koic)
  • Fix NoMethodError for Style/FrozenStringLiteral when a file contains only a shebang. (@takaram)
  • #6511: Fix an incorrect auto-correct for Style/EmptyCaseCondition when used as an argument of a method. (@koic)
  • #6509: Fix an incorrect auto-correct for Style/RaiseArgs when an exception object is assigned to a local variable. (@koic)
  • #6534: Fix a false positive for Lint/UselessAccessModifier when using private_class_method. (@dduugg)
  • #6545: Fix a regression where Performance/RedundantMerge raises an error on a sole double splat argument passed to merge!. (@mmedal)
  • #6360: Detect bad indentation in if nodes even if the first branch is empty. (@bquorning)

Changes

  • #6492: Auto-correct chunks of comment lines in Layout/CommentIndentation to avoid unnecessary iterations for rubocop -a. (@jonas054)

0.60.0

New features

Bug fixes

  • #6330: Fix an error for Rails/ReversibleMigration when using variable assignment. (@koic, @scottmatthewman)
  • #6331: Fix a false positive for Style/RedundantFreeze and a false negative for Style/MutableConstant when assigning a regexp object to a constant. (@koic)
  • #6334: Fix a false negative for Style/RedundantFreeze when assigning a range object to a constant. (@koic)
  • #5538: Fix false negatives in modifier cops when line length cop is disabled. (@drenmi)
  • #6340: Fix an error for Rails/ReversibleMigration when block argument is empty. (@koic)
  • #6274: Fix "[Corrected]" message being displayed even when nothing has been corrected. (@jekuta)
  • #6380: Allow use of a hyphen-separated frozen string literal in Emacs style magic comment. (@y-yagi)
  • Fix and improve LineLength cop for tab-indented code. (@AlexWayfer)

Changes

  • #3727: Enforce single spaces for key option in Layout/AlignHash cop. (@albaer)
  • #6321: Fix run of RuboCop when cache directory is not writable. (@Kevinrob)
Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ thor (indirect, 0.20.0 → 0.20.3) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by 73 commits:


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu
Copy link
Contributor Author

depfu bot commented Jan 3, 2019

Closed in favor of #24.

@depfu depfu bot closed this Jan 3, 2019
@depfu depfu bot deleted the depfu/update/rubocop-rails_config-0.3.0 branch January 3, 2019 08:50
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants