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

Bump the minor-and-patch group with 9 updates #28

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 18, 2023

Bumps the minor-and-patch group with 9 updates:

Package From To
debug 1.8.0 1.9.0
rake 13.0.6 13.1.0
rubocop 1.56.2 1.59.0
rubocop-minitest 0.31.1 0.34.1
rubocop-sorbet 0.7.3 0.7.6
sorbet-static-and-runtime 0.5.11011 0.5.11156
tapioca 0.11.8 0.11.13
rdoc 6.5.0 6.6.2
psych 5.1.0 5.1.1.1

Updates debug from 1.8.0 to 1.9.0

Release notes

Sourced from debug's releases.

v1.9.0

This release fixes many issues reported after v1.8.0, introduce IRB integrated console and more.

What's Changed

New Contributors

Full Changelog: ruby/debug@v1.8.0...v1.9.0

Commits

Updates rake from 13.0.6 to 13.1.0

Commits
  • 5476cda Bump up v13.1.0
  • 1b6afad Merge pull request #521 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8b2a01c Bump ruby/setup-ruby from 1.156.0 to 1.157.0
  • 1607fbf Merge pull request #520 from ruby/dependabot/github_actions/actions/checkout-...
  • 6594585 Bump actions/checkout from 4.1.0 to 4.1.1
  • 6717ce8 Merge pull request #519 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 4b4b211 Bump ruby/setup-ruby from 1.155.0 to 1.156.0
  • 5e76ef6 Merge pull request #518 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • 8d39c6b Bump ruby/setup-ruby from 1.154.0 to 1.155.0
  • 191a9d7 Merge pull request #517 from ruby/dependabot/github_actions/ruby/setup-ruby-1...
  • Additional commits viewable in compare view

Updates rubocop from 1.56.2 to 1.59.0

Release notes

Sourced from rubocop's releases.

RuboCop 1.59

New features

Bug fixes

  • #12434: Fix a false positive for Lint/LiteralAssignmentInCondition when using interpolated string or xstring literals. (@​koic)
  • #12435: Fix a false positive for Lint/SelfAssignment when using attribute assignment with method call with arguments. (@​koic)
  • #12444: Fix false positive for Style/HashEachMethods when receiver literal is not a hash literal. (@​koic)
  • #12524: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses and parens in when clause is used to pass an argument. (@​koic)
  • #12505: Fix a false positive for Style/RedundantParentheses when using parenthesized lambda or proc with do...end block. (@​koic)
  • #12442: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data as previous loop in do...end and {...} blocks. (@​koic)
  • #12432: Fix a false positive for Lint/LiteralAssignmentInCondition when using parallel assignment with splat operator in block of guard condition. (@​koic)
  • #12441: Fix false positives for Style/HashEachMethods when using destructed block arguments. (@​koic)
  • #12436: Fix false positives for Style/RedundantParentheses when a part of range is a parenthesized condition. (@​koic)
  • #12429: Fix incorrect autocorrect for Style/MapToHash when using dot method calls for to_h. (@​koic)
  • #12488: Make Lint/HashCompareByIdentity aware of safe navigation operator. (@​koic)
  • #12489: Make Lint/NextWithoutAccumulator aware of safe navigation operator. (@​koic)
  • #12490: Make Lint/NumberConversion aware of safe navigation operator. (@​koic)
  • #12491: Make Lint/RedundantWithIndex aware of safe navigation operator. (@​koic)
  • #12492: Make Lint/RedundantWithObject aware of safe navigation operator. (@​koic)
  • #12493: Make Lint/UnmodifiedReduceAccumulator aware of safe navigation operator. (@​koic)
  • #12473: Make Style/ClassCheck aware of safe navigation operator. (@​koic)
  • #12445: Make Style/CollectionCompact aware of safe navigation operator. (@​koic)
  • #12474: Make Style/ConcatArrayLiterals aware of safe navigation operator. (@​koic)
  • #12476: Make Style/DateTime aware of safe navigation operator. (@​koic)
  • #12479: Make Style/EachWithObject aware of safe navigation operator. (@​koic)
  • #12446: Make Style/HashExcept aware of safe navigation operator. (@​koic)
  • #12447: Make Style/MapCompactWithConditionalBlock aware of safe navigation operator. (@​koic)
  • #12484: Make Style/Next aware of safe navigation operator. (@​koic)
  • #12486: Make Style/RedundantArgument aware of safe navigation operator. (@​koic)
  • #12454: Make Style/RedundantFetchBlock aware of safe navigation operator. (@​koic)
  • #12495: Make Layout/RedundantLineBreak aware of safe navigation operator. (@​koic)
  • #12455: Make Style/RedundantSortBy aware of safe navigation operator. (@​koic)
  • #12456: Make Style/RedundantSortBy aware of safe navigation operator. (@​koic)
  • #12480: Make Style/ExactRegexpMatch aware of safe navigation operator. (@​koic)
  • #12457: Make Style/Sample aware of safe navigation operator. (@​koic)
  • #12458: Make Style/SelectByRegexp cops aware of safe navigation operator. (@​koic)
  • #12494: Make Layout/SingleLineBlockChain aware of safe navigation operator. (@​koic)
  • #12461: Make Style/StringChars aware of safe navigation operator. (@​koic)
  • #12468: Make Style/Strip aware of safe navigation operator. (@​koic)
  • #12469: Make Style/UnpackFirst aware of safe navigation operator. (@​koic)

Changes

  • #12522: Make Style/MethodCallWithoutArgsParentheses allow the parenthesized it method in a block. (@​koic)
  • #12523: Make Style/RedundantSelf allow the self.it method in a block. (@​koic)

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.59.0 (2023-12-11)

New features

Bug fixes

  • #12434: Fix a false positive for Lint/LiteralAssignmentInCondition when using interpolated string or xstring literals. ([@​koic][])
  • #12435: Fix a false positive for Lint/SelfAssignment when using attribute assignment with method call with arguments. ([@​koic][])
  • #12444: Fix false positive for Style/HashEachMethods when receiver literal is not a hash literal. ([@​koic][])
  • #12524: Fix a false positive for Style/MethodCallWithArgsParentheses when EnforcedStyle: omit_parentheses and parens in when clause is used to pass an argument. ([@​koic][])
  • #12505: Fix a false positive for Style/RedundantParentheses when using parenthesized lambda or proc with do...end block. ([@​koic][])
  • #12442: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data as previous loop in do...end and {...} blocks. ([@​koic][])
  • #12432: Fix a false positive for Lint/LiteralAssignmentInCondition when using parallel assignment with splat operator in block of guard condition. ([@​koic][])
  • #12441: Fix false positives for Style/HashEachMethods when using destructed block arguments. ([@​koic][])
  • #12436: Fix false positives for Style/RedundantParentheses when a part of range is a parenthesized condition. ([@​koic][])
  • #12429: Fix incorrect autocorrect for Style/MapToHash when using dot method calls for to_h. ([@​koic][])
  • #12488: Make Lint/HashCompareByIdentity aware of safe navigation operator. ([@​koic][])
  • #12489: Make Lint/NextWithoutAccumulator aware of safe navigation operator. ([@​koic][])
  • #12490: Make Lint/NumberConversion aware of safe navigation operator. ([@​koic][])
  • #12491: Make Lint/RedundantWithIndex aware of safe navigation operator. ([@​koic][])
  • #12492: Make Lint/RedundantWithObject aware of safe navigation operator. ([@​koic][])
  • #12493: Make Lint/UnmodifiedReduceAccumulator aware of safe navigation operator. ([@​koic][])
  • #12473: Make Style/ClassCheck aware of safe navigation operator. ([@​koic][])
  • #12445: Make Style/CollectionCompact aware of safe navigation operator. ([@​koic][])
  • #12474: Make Style/ConcatArrayLiterals aware of safe navigation operator. ([@​koic][])
  • #12476: Make Style/DateTime aware of safe navigation operator. ([@​koic][])
  • #12479: Make Style/EachWithObject aware of safe navigation operator. ([@​koic][])
  • #12446: Make Style/HashExcept aware of safe navigation operator. ([@​koic][])
  • #12447: Make Style/MapCompactWithConditionalBlock aware of safe navigation operator. ([@​koic][])
  • #12484: Make Style/Next aware of safe navigation operator. ([@​koic][])
  • #12486: Make Style/RedundantArgument aware of safe navigation operator. ([@​koic][])
  • #12454: Make Style/RedundantFetchBlock aware of safe navigation operator. ([@​koic][])
  • #12495: Make Layout/RedundantLineBreak aware of safe navigation operator. ([@​koic][])
  • #12455: Make Style/RedundantSortBy aware of safe navigation operator. ([@​koic][])
  • #12456: Make Style/RedundantSortBy aware of safe navigation operator. ([@​koic][])
  • #12480: Make Style/ExactRegexpMatch aware of safe navigation operator. ([@​koic][])
  • #12457: Make Style/Sample aware of safe navigation operator. ([@​koic][])
  • #12458: Make Style/SelectByRegexp cops aware of safe navigation operator. ([@​koic][])
  • #12494: Make Layout/SingleLineBlockChain aware of safe navigation operator. ([@​koic][])
  • #12461: Make Style/StringChars aware of safe navigation operator. ([@​koic][])
  • #12468: Make Style/Strip aware of safe navigation operator. ([@​koic][])
  • #12469: Make Style/UnpackFirst aware of safe navigation operator. ([@​koic][])

Changes

  • #12522: Make Style/MethodCallWithoutArgsParentheses allow the parenthesized it method in a block. ([@​koic][])
  • #12523: Make Style/RedundantSelf allow the self.it method in a block. ([@​koic][])

... (truncated)

Commits
  • e5a164a Cut 1.59
  • 2912b6e Update Changelog
  • 3bcc171 [Fix #12524] Fix a false positive for Style/MethodCallWithArgsParentheses
  • 0daa4aa Make Style/MethodCallWithoutArgsParentheses allow parenthesized it
  • b240a09 Make Style/RedundantSelf allow self.it
  • a0e1042 [Fix #12526] Fix incorrect rendering typos
  • b1bcb31 [Fix #12444] Fix false positive for Style/HashEachMethods
  • 3b0360b Add new Lint/ItWithoutArgumentsInBlock cop
  • 4e9cfcc Merge pull request #12521 from koic/make_style_select_by_regexp_aware_of_safe...
  • 037c860 Merge pull request #12438 from koic/fix_a_false_positive_for_lint_literal_ass...
  • Additional commits viewable in compare view

Updates rubocop-minitest from 0.31.1 to 0.34.1

Release notes

Sourced from rubocop-minitest's releases.

RuboCop Minitest 0.34.1

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. (@​koic)

RuboCop Minitest 0.34.0 (The RubyConf Taiwan 2023 Edition)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. (@​koic)
  • #279: Add new Minitest/NonExecutableTestMethod cop. (@​koic)

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. (@​koic)
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. (@​fatkodima)

Changes

RuboCop Minitest 0.33.0

New features

  • #266: Make Minitest/AssertEqual aware of assert_operator. (@​koic)
  • #268: Make Minitest/AssertMatch aware of assert_operator. (@​koic)
  • #267: Make Minitest/RefuteEqual aware of assert_operator and refute_operator. (@​koic)
  • #269: Make Minitest/RefuteMatch aware of refute_operator and assert_operator. (@​koic)

Changes

  • #265: Make Minitest/RefuteEqual aware of refute(expected == actual). (@​koic)

RuboCop Minitest 0.32.2

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. (@​koic)

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. ([@​flavorjones][])

... (truncated)

Changelog

Sourced from rubocop-minitest's changelog.

0.34.1 (2023-12-16)

Bug fixes

  • #281: Fix an error when assigning a value to an object attribute. ([@​koic][])

0.34.0 (2023-12-16)

New features

  • #272: Add new Minitest/RedundantMessageArgument cop. ([@​koic][])
  • #279: Add new Minitest/NonExecutableTestMethod cop. ([@​koic][])

Bug fixes

  • #275: Make Minitest/AssertMatch aware of assert_operator when running with Ruby 2.7. ([@​koic][])
  • #271: Fix a false positive for Minitest/EmptyLineBeforeAssertionMethods and assert_raises. ([@​fatkodima][])

Changes

0.33.0 (2023-10-21)

New features

  • #266: Make Minitest/AssertEqual aware of assert_operator. ([@​koic][])
  • #268: Make Minitest/AssertMatch aware of assert_operator. ([@​koic][])
  • #267: Make Minitest/RefuteEqual aware of assert_operator and refute_operator. ([@​koic][])
  • #269: Make Minitest/RefuteMatch aware of refute_operator and assert_operator. ([@​koic][])

Changes

  • #265: Make Minitest/RefuteEqual aware of refute(expected == actual). ([@​koic][])

0.32.2 (2023-09-27)

Bug fixes

  • #263: Fix an error for Minitest/AssertOperator and Minitest/RefuteOperator when using unary operation argument. ([@​koic][])

Changes

  • #264: Make Minitest/AssertOperator and Minitest/RefuteOperator allow index access with []. ([@​flavorjones][])

0.32.1 (2023-09-24)

Bug fixes

... (truncated)

Commits
  • 56f2263 Cut 0.34.1
  • 3e109b8 Update Changelog
  • 5ba16c7 Merge pull request #282 from koic/fix_an_error_when_using_assigning_a_value_t...
  • b7587e5 [Fix #281] Fix an error when assigning a value to an object attribute
  • 8f8f0e4 Add a missing changelog entry
  • be9d54a Switch back docs version to master
  • 33e2db5 Cut 0.34.0
  • 0b2911f Update Changelog
  • a31118d Merge pull request #280 from koic/add_new_minitest_non_executable_test_method...
  • 6306fd5 [Fix #279] Add new Minitest/NonExecutableTestMethod cop
  • Additional commits viewable in compare view

Updates rubocop-sorbet from 0.7.3 to 0.7.6

Release notes

Sourced from rubocop-sorbet's releases.

v0.7.6

What's Changed

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.5...v0.7.6

v0.7.5

What's Changed

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/rubocop-sorbet@v0.7.4...v0.7.5

v0.7.4

What's Changed

✨ Enhancements

🛠 Other Changes

New Contributors

Full Changelog: Shopify/rubocop-sorbet@v0.7.3...v0.7.4

Commits
  • a414cb7 Bump version to v0.7.6
  • 6613f8e Merge pull request #181 from Shopify/ko/aliased-shapes
  • 5bb7bfe Increment VersionAdded metadata
  • 139ca55 Use descendant search
  • 8f3126a Bump version to v0.7.5
  • 8d87472 Merge pull request #191 from Shopify/vs/fix_incompatible_override_breaking
  • 602e946 Make incompatible override rule not fail on incomplete signatures
  • d94f631 Merge pull request #188 from Shopify/empty-lines-in-rbis
  • 5183f23 Enable EmptyLineAfterSig in RBI config
  • 065ac0c Detect empty lines between multiple signatures
  • Additional commits viewable in compare view

Updates sorbet-static-and-runtime from 0.5.11011 to 0.5.11156

Release notes

Sourced from sorbet-static-and-runtime's releases.

sorbet 0.5.11155.20231214155153-fe9e4e606

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11155', :group => :development
gem 'sorbet-runtime', '0.5.11155'

sorbet 0.5.11154.20231214100553-6acb246b4

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11154', :group => :development
gem 'sorbet-runtime', '0.5.11154'

sorbet 0.5.11153.20231214093634-d151da38b

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11153', :group => :development
gem 'sorbet-runtime', '0.5.11153'

sorbet 0.5.11152.20231213141104-965f6fa32

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11152', :group => :development
gem 'sorbet-runtime', '0.5.11152'

sorbet 0.5.11151.20231212110236-ea1e77857

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11151', :group => :development
gem 'sorbet-runtime', '0.5.11151'

sorbet 0.5.11150.20231208154237-4a47295e5

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11150', :group => :development
gem 'sorbet-runtime', '0.5.11150'

sorbet 0.5.11149.20231208112425-aa9837ad9

To use Sorbet add this line to your Gemfile:

gem 'sorbet', '0.5.11149', :group => :development
gem 'sorbet-runtime', '0.5.11149'

sorbet 0.5.11148.20231207102341-a5fbbcffe

... (truncated)

Commits

Updates tapioca from 0.11.8 to 0.11.13

Release notes

Sourced from tapioca's releases.

v0.11.13

What's Changed

✨ Enhancements

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/tapioca@v0.11.12...v0.11.13

v0.11.12

What's Changed

🐛 Bug Fixes

🛠 Other Changes

New Contributors

Full Changelog: Shopify/tapioca@v0.11.11...v0.11.12

v0.11.11

What's Changed

🐛 Bug Fixes

🛠 Other Changes

Full Changelog: Shopify/tapioca@v0.11.10...v0.11.11

v0.11.10

What's Changed

✨ Enhancements

🐛 Bug Fixes

... (truncated)

Commits
  • c7b6c1e Bump version to v0.11.13
  • bea6da1 Merge pull request #1726 from Shopify/andyw8/current-attributes-synthetic-inc...
  • 6467c61 Correct example output
  • 24fbc1e Rename to generated_attribute_methods
  • b526d63 Rename to CurrentAttributesMethods
  • 5fb4c91 Use synthetic include for CurrentAttributes generator
  • dc1f405 Merge pull request #1722 from Shopify/dependabot/bundler/sqlite3-1.6.9
  • 6df7ac3 Update rbi
  • 6a1aec4 Merge pull request #1723 from Shopify/improve-debugger-workaround
  • 1c3187f Update the workaround for debug gem
  • Additional commits viewable in compare view

Updates rdoc from 6.5.0 to 6.6.2

Release notes

Sourced from rdoc's releases.

v6.6.2

What's Changed

Full Changelog: ruby/rdoc@v6.6.1...v6.6.2

v6.6.1

What's Changed

Full Changelog: ruby/rdoc@v6.6.0...v6.6.1

v6.6.0

What's Changed

Bumps the minor-and-patch group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [debug](https://github.com/ruby/debug) | `1.8.0` | `1.9.0` |
| [rake](https://github.com/ruby/rake) | `13.0.6` | `13.1.0` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.56.2` | `1.59.0` |
| [rubocop-minitest](https://github.com/rubocop/rubocop-minitest) | `0.31.1` | `0.34.1` |
| [rubocop-sorbet](https://github.com/shopify/rubocop-sorbet) | `0.7.3` | `0.7.6` |
| [sorbet-static-and-runtime](https://github.com/sorbet/sorbet) | `0.5.11011` | `0.5.11156` |
| [tapioca](https://github.com/Shopify/tapioca) | `0.11.8` | `0.11.13` |
| [rdoc](https://github.com/ruby/rdoc) | `6.5.0` | `6.6.2` |
| [psych](https://github.com/ruby/psych) | `5.1.0` | `5.1.1.1` |


Updates `debug` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/ruby/debug/releases)
- [Commits](ruby/debug@v1.8.0...v1.9.0)

Updates `rake` from 13.0.6 to 13.1.0
- [Release notes](https://github.com/ruby/rake/releases)
- [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc)
- [Commits](ruby/rake@v13.0.6...v13.1.0)

Updates `rubocop` from 1.56.2 to 1.59.0
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.56.2...v1.59.0)

Updates `rubocop-minitest` from 0.31.1 to 0.34.1
- [Release notes](https://github.com/rubocop/rubocop-minitest/releases)
- [Changelog](https://github.com/rubocop/rubocop-minitest/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop-minitest@v0.31.1...v0.34.1)

Updates `rubocop-sorbet` from 0.7.3 to 0.7.6
- [Release notes](https://github.com/shopify/rubocop-sorbet/releases)
- [Commits](Shopify/rubocop-sorbet@v0.7.3...v0.7.6)

Updates `sorbet-static-and-runtime` from 0.5.11011 to 0.5.11156
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

Updates `tapioca` from 0.11.8 to 0.11.13
- [Release notes](https://github.com/Shopify/tapioca/releases)
- [Commits](Shopify/tapioca@v0.11.8...v0.11.13)

Updates `rdoc` from 6.5.0 to 6.6.2
- [Release notes](https://github.com/ruby/rdoc/releases)
- [Changelog](https://github.com/ruby/rdoc/blob/master/History.rdoc)
- [Commits](ruby/rdoc@v6.5.0...v6.6.2)

Updates `psych` from 5.1.0 to 5.1.1.1
- [Release notes](https://github.com/ruby/psych/releases)
- [Commits](ruby/psych@v5.1.0...v5.1.1.1)

---
updated-dependencies:
- dependency-name: debug
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rake
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-minitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rubocop-sorbet
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: sorbet-static-and-runtime
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tapioca
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rdoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: psych
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Author

dependabot bot commented on behalf of github Dec 25, 2023

Superseded by #29.

@dependabot dependabot bot closed this Dec 25, 2023
@dependabot dependabot bot deleted the dependabot/bundler/minor-and-patch-c1bbac5746 branch December 25, 2023 12:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants