-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the development-dependencies group with 5 updates (#10)
* Bump the development-dependencies group with 5 updates Updates the requirements on [reek](https://github.com/troessner/reek), [rubocop](https://github.com/rubocop/rubocop), [rubocop-performance](https://github.com/rubocop/rubocop-performance), [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) and [simplecov](https://github.com/simplecov-ruby/simplecov) to permit the latest version. Updates `reek` from 6.1.1 to 6.1.4 - [Changelog](https://github.com/troessner/reek/blob/master/CHANGELOG.md) - [Commits](troessner/reek@v6.1.1...v6.1.4) Updates `rubocop` from 1.38.0 to 1.56.0 - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.38.0...v1.56.0) Updates `rubocop-performance` from 1.15.0 to 1.19.0 - [Release notes](https://github.com/rubocop/rubocop-performance/releases) - [Changelog](https://github.com/rubocop/rubocop-performance/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop-performance@v1.15.0...v1.19.0) Updates `rubocop-rspec` from 2.15.0 to 2.23.2 - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop-rspec@v2.15.0...v2.23.2) Updates `simplecov` from 0.21.2 to 0.22.0 - [Release notes](https://github.com/simplecov-ruby/simplecov/releases) - [Changelog](https://github.com/simplecov-ruby/simplecov/blob/main/CHANGELOG.md) - [Commits](simplecov-ruby/simplecov@v0.21.2...v0.22.0) --- updated-dependencies: - dependency-name: reek dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: rubocop dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: rubocop-performance dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: rubocop-rspec dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: simplecov dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Update ruby gems * Fix rubocop erros and exclude specs for now --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: gangelo <web.gma@gmail.com>
- Loading branch information
1 parent
38bafda
commit 239fdf3
Showing
7 changed files
with
93 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,58 @@ | ||
|
||
### [1.0.1] 2023-08-17 | ||
|
||
Changes | ||
|
||
- Various ruby gem updates | ||
|
||
### 1.0.0 | ||
* Changes (not really a breaking change, but just wanted to bump to 1.0.0) | ||
* Limit required ruby version to ~> 3.0. | ||
* Update ruby gems. | ||
|
||
Changes (not really a breaking change, but just wanted to bump to 1.0.0) | ||
|
||
- Limit required ruby version to ~> 3.0. | ||
- Update ruby gems. | ||
|
||
### 0.3.0 | ||
* Changes | ||
* Update README.md file with the correct gem name. | ||
|
||
Changes | ||
|
||
- Update README.md file with the correct gem name. | ||
|
||
### 0.2.3 | ||
* Bug fix | ||
* Fix bug in specs that failed to add criteria for passing tests (e.g. ".to eq true/false") so tests could not fail. | ||
|
||
Bug fixes | ||
|
||
- Fix bug in specs that failed to add criteria for passing tests (e.g. ".to eq true/false") so tests could not fail. | ||
|
||
### 0.2.2 | ||
* Changes | ||
* Restructure modules under lib/immutable_structure_ex folder. | ||
* Make codez to create struct a little cleaner/tighter. | ||
* Ignore .vscode folder in .gitignore file. | ||
* Update gems and especially rake gem version to squash CVE-2020-8130, see https://github.com/advisories/GHSA-jppv-gw3r-w3q8. | ||
* Fix rubocop violations. | ||
|
||
Changes | ||
|
||
- Restructure modules under lib/immutable_structure_ex folder. | ||
- Make codez to create struct a little cleaner/tighter. | ||
- Ignore .vscode folder in .gitignore file. | ||
- Update gems and especially rake gem version to squash CVE-2020-8130, see https://github.com/advisories/GHSA-jppv-gw3r-w3q8. | ||
- Fix rubocop violations. | ||
|
||
### 0.2.1 | ||
* Enhancements | ||
* General refactors/cleanup. | ||
* Added Immutable module; when extended on a struct, makes it immutable. | ||
* Added Comparable module; when extended on a struct, makes it comparable to other structs and hashes. | ||
|
||
Changes | ||
|
||
- General refactors/cleanup. | ||
- Added Immutable module; when extended on a struct, makes it immutable. | ||
- Added Comparable module; when extended on a struct, makes it comparable to other structs and hashes. | ||
|
||
### 0.1.1 | ||
* Enhancements | ||
* Added this CHANGELOG.md. | ||
* Bug fix | ||
* Equality method #== did not work when comparing objects whose underlying hashes were equal. | ||
* Added #== method to compare underlying hashes by calling a.to_h == b.to_h. | ||
|
||
Changes | ||
|
||
- Added this CHANGELOG.md. | ||
|
||
Bug fixes | ||
|
||
- Equality method #== did not work when comparing objects whose underlying hashes were equal. | ||
- Added #== method to compare underlying hashes by calling a.to_h == b.to_h. | ||
|
||
### 0.1.0 | ||
* Initial release. | ||
|
||
Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module ImmutableStructEx | ||
VERSION = '1.0.0' | ||
VERSION = '1.0.1' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters