Hello community,
here is the log from the commit of package rubygem-rubocop for openSUSE:Factory
checked in at 2020-11-24 22:09:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rubocop (Old)
and /work/SRC/openSUSE:Factory/.rubygem-rubocop.new.5913 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rubocop"
Tue Nov 24 22:09:29 2020 rev:18 rq:848887 version:1.3.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rubocop/rubygem-rubocop.changes
2020-11-05 21:56:15.304004068 +0100
+++
/work/SRC/openSUSE:Factory/.rubygem-rubocop.new.5913/rubygem-rubocop.changes
2020-11-24 22:09:37.431336763 +0100
@@ -1,0 +2,54 @@
+Mon Nov 16 14:18:03 UTC 2020 - Dan Čermák <[email protected]>
+
+New upstream release 1.3.1
+
+## 1.3.1 (2020-11-16)
+
+### Bug fixes
+
+* [#9037](https://github.com/rubocop-hq/rubocop/pull/9037): Fix
`required_ruby_version` issue when using `Gem::Requirement`. ([@cetinajero][])
+* [#9039](https://github.com/rubocop-hq/rubocop/pull/9039): Fix stack level
too deep error if target directory contains `**`. ([@unasuke][])
+* [#6962](https://github.com/rubocop-hq/rubocop/issues/6962): Limit
`Layout/ClassStructure` constant order autocorrect to literal constants.
([@tejasbubane][])
+* [#9032](https://github.com/rubocop-hq/rubocop/issues/9032): Fix an error for
`Style/DocumentDynamicEvalDefinition` when using eval-type method with
interpolated string that is not heredoc without comment doc. ([@koic][])
+* [#9049](https://github.com/rubocop-hq/rubocop/issues/9049): Have
`Lint/ToEnumArguments` accept `__callee__`. ([@marcandre][])
+* [#9050](https://github.com/rubocop-hq/rubocop/issues/9050): Fix a false
positive for `Style/NegatedIfElseCondition` when `if` with `!!` condition.
([@koic][])
+* [#9041](https://github.com/rubocop-hq/rubocop/issues/9041): Fix a false
positive for `Naming/VariableNumber` when using integer symbols. ([@koic][])
+
+### Changes
+
+* [#9045](https://github.com/rubocop-hq/rubocop/pull/9045): Have `cut_release`
handle "config/default" and generate cops doc. ([@marcandre][])
+* [#9036](https://github.com/rubocop-hq/rubocop/pull/9036): Allow `enums`
method by default for `Lint/ConstantDefinitionInBlock`. ([@koic][])
+* [#9035](https://github.com/rubocop-hq/rubocop/issues/9035): Only complain
about `SafeYAML` if it causes issues. ([@marcandre][])
+
+## 1.3.0 (2020-11-12)
+
+### New features
+
+* [#8761](https://github.com/rubocop-hq/rubocop/issues/8761): Read
`required_ruby_version` from gemspec file if it exists. ([@HeroProtagonist][])
+* [#9001](https://github.com/rubocop-hq/rubocop/pull/9001): Add new
`Lint/EmptyClass` cop. ([@fatkodima][])
+* [#9025](https://github.com/rubocop-hq/rubocop/issues/9025): Add
`AllowedMethods` option to `Lint/ConstantDefinitionInBlock`. ([@koic][])
+* [#9014](https://github.com/rubocop-hq/rubocop/pull/9014): Support
auto-correction for `Style/IfInsideElse`. ([@koic][])
+* [#8483](https://github.com/rubocop-hq/rubocop/pull/8483): Add new
`Style/StaticClass` cop. ([@fatkodima][])
+* [#9020](https://github.com/rubocop-hq/rubocop/pull/9020): Add new
`Style/NilLambda` cop to check for lambdas that always return nil.
([@dvandersluis][])
+* [#8404](https://github.com/rubocop-hq/rubocop/pull/8404): Add new
`Lint/DuplicateBranch` cop. ([@fatkodima][])
+
+### Bug fixes
+
+* [#8499](https://github.com/rubocop-hq/rubocop/issues/8499): Fix
`Style/IfUnlessModifier` and `Style/WhileUntilModifier` to prevent an offense
if there are both first-line comment and code after `end` block.
([@dsavochkin][])
+* [#8996](https://github.com/rubocop-hq/rubocop/issues/8996): Fix a false
positive for `Style/MultipleComparison` when comparing two sides of the
disjunction is unrelated. ([@koic][])
+* [#8975](https://github.com/rubocop-hq/rubocop/issues/8975): Fix an infinite
loop when autocorrecting `Layout/TrailingWhitespace` +
`Lint/LiteralInInterpolation`. ([@fatkodima][])
+* [#8998](https://github.com/rubocop-hq/rubocop/issues/8998): Fix an error for
`Style/NegatedIfElseCondition` when using negated condition and `if` branch
body is empty. ([@koic][])
+* [#9008](https://github.com/rubocop-hq/rubocop/pull/9008): Mark
`Style/InfiniteLoop` as unsafe. ([@marcandre][])
+
+### Changes
+
+* [#8978](https://github.com/rubocop-hq/rubocop/issues/8978): Update
`Layout/LineLength` autocorrection to be able to handle method calls with long
argument lists. ([@dvandersluis][])
+* [#9015](https://github.com/rubocop-hq/rubocop/issues/9015): Update
`Lint/EmptyBlock` to allow for empty lambdas. ([@dvandersluis][])
+* [#9022](https://github.com/rubocop-hq/rubocop/issues/9022): Add `NOTE` to
keywords of `Style/CommentAnnotation`. ([@koic][])
+* [#9011](https://github.com/rubocop-hq/rubocop/issues/9011): Mark
autocorrection for `Lint/Loop` as unsafe. ([@dvandersluis][])
+* [#9026](https://github.com/rubocop-hq/rubocop/issues/9026): Update
`Style/DocumentDynamicEvalDefinition` to detect comment blocks that document
the evaluation. ([@dvandersluis][])
+* [#9004](https://github.com/rubocop-hq/rubocop/pull/9004): Remove obsolete
gem `SafeYAML` compatibility. ([@marcandre][])
+* [#9023](https://github.com/rubocop-hq/rubocop/issues/9023): Mark unsafe for
`Style/CollectionCompact`. ([@koic][])
+* [#9012](https://github.com/rubocop-hq/rubocop/issues/9012): Allow
`AllowedIdentifiers` to be specified for `Naming/VariableNumber`.
([@dvandersluis][])
+
+-------------------------------------------------------------------
Old:
----
rubocop-1.2.0.gem
New:
----
rubocop-1.3.1.gem
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rubygem-rubocop.spec ++++++
--- /var/tmp/diff_new_pack.5PuK8n/_old 2020-11-24 22:09:38.315337582 +0100
+++ /var/tmp/diff_new_pack.5PuK8n/_new 2020-11-24 22:09:38.319337586 +0100
@@ -25,7 +25,7 @@
# of those fields
#
Name: rubygem-rubocop
-Version: 1.2.0
+Version: 1.3.1
Release: 0
Summary: Automatic Ruby code style checking tool
License: MIT
++++++ rubocop-1.2.0.gem -> rubocop-1.3.1.gem ++++++
++++ 2064 lines of diff (skipped)
_______________________________________________
openSUSE Commits mailing list -- [email protected]
To unsubscribe, email [email protected]
List Netiquette: https://en.opensuse.org/openSUSE:Mailing_list_netiquette
List Archives:
https://lists.opensuse.org/archives/list/[email protected]