Skip to content

Commit

Permalink
Merge pull request #216 from lindgrenj6/pin_graphql_and_release_5.0.1
Browse files Browse the repository at this point in the history
Release 5.0.1
  • Loading branch information
syncrou authored Jan 26, 2021
2 parents 12078a1 + a279644 commit e399f45
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [5.0.1] - 2021-01-26
### Changed
- Pinning `graphql` gem to 1.11.7 due to breaking change in version 1.12.0

## [5.0.0] - 2021-01-13
### Changed
- Make `Parameters#params_for_update` only include writeable fields in permit-hash #213
Expand Down Expand Up @@ -203,7 +207,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Initial release to rubygems.org


[Unreleased]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v5.0.0...HEAD
[Unreleased]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v5.0.1...HEAD
[5.0.1]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v4.1.5...v5.0.0
[4.1.5]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v4.1.4...v4.1.5
[4.1.4]: https://github.com/RedHatInsights/insights-api-common-rails/compare/v4.1.3...v4.1.4
Expand Down
4 changes: 2 additions & 2 deletions insights-api-common.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "openapi_parser", "~> 0.10.0"

spec.add_runtime_dependency "insights-rbac-api-client", "~> 1.0"
# For Insights::API::Common::GraphQL
spec.add_runtime_dependency "graphql", "~> 1.9"
# For Insights::API::Common::GraphQL, pinning for now due to breaking change brought in 1.12.0
spec.add_runtime_dependency "graphql", "1.11.7"
spec.add_runtime_dependency "graphql-batch", "~> 0.4"
spec.add_runtime_dependency "graphql-preload", "~> 2.0", "< 2.1"
spec.add_runtime_dependency "query_relation"
Expand Down
2 changes: 1 addition & 1 deletion lib/insights/api/common/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Insights
module API
module Common
VERSION = "5.0.0".freeze
VERSION = "5.0.1".freeze
end
end
end

0 comments on commit e399f45

Please sign in to comment.