Skip to content

Latest commit

 

History

History
133 lines (92 loc) · 5.84 KB

CHANGELOG.md

File metadata and controls

133 lines (92 loc) · 5.84 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

  • Added/Changed/Deprecated/Removed/Fixed/Security: YOUR CHANGE HERE
  • Added: input.attribute.property method which allows aliasing input parameter keys
  • Added: possibility to copy attribute config using the Attribute#same_as method
  • Fixed: do not ignore custom max_page_size for paginated responses
  • Fixed: do not ignore custom default_page_size and other options for paginated responses
  • Fixed: do not crash when using deeply nested input definitions
  • Added: rescue_from support in controllers
  • Added: Bumped graphql version to 2.1.7
  • Added: implements support in models
  • Added: response.controller and response.action_name methods in RSpecControllerHelpers
  • Removed: stop supporting ruby < 3.0.0
  • Added: hidden_in_groups for attributes to be able to skip attribute from certain groups
  • Added: extras for attributes to be able to include graphql-ruby extensions
  • Added: lookahead as a controller request object field
  • Changed: subscription definition to event definition in router configuration page
  • Fixed: avoid "Found two visible definitions for X" issues for input types
  • Added support for Ruby 3.1.2, keyword arguments for decorators support included
  • Added: error backtrace to SystemError
  • Fixed: skip "base" field name in validation error messages
  • Added: router namespaces and named scopes
  • Added: deprecate method/option for attributes and input attributes
  • Added: support for subscription type
  • Fixed: correctly detect all graphql-ruby objects when using stringified types
  • Added: make code compatible with newer graphql-ruby version
  • Added: decorated relations now can be called using "find", "empty?" and "find_by" methods
  • Fixed: allow to define graphql-ruby enum classes as strings.
  • Added: add "groups" to attributes.
  • Changed: date type is now alias for GraphQL::Types::ISO8601Date, also added aliases for other common graphql-graphql types.
  • Added: support for generating multiple schema dumps with rake graphql_rails:schema:dump.
  • Added: support for using chainable syntax for input attributes.
  • Changed: changed default predicate method type from BooleantoBoolean!`
  • Changed: changed error message when trying to paginate not supported types
  • Added: support defining graphql-ruby types as strings.
  • Fixed: Dynamic types definition where type A references type B referencing type A.
  • Fixed: Total count on paginated resources
  • Fixed: Incorrect type resolution for required list type fields in model declaration.
  • Fixed: Incorrect scalar types resolution is fixed. No more type mismatch between ID / ID
  • Added: options argument to model level attribute. Allows disabling automatic camelCase
  • Fixed: methods with complex input arguments receives Hash instances instead of GraphQL::Schema::InputObject
  • Fixed: Using ActiveSupport::ParameterFilter (Rails 6.1), if it is defined, instead of ActionDispatch::Http::ParameterFilter
  • Changed: graphql version is now 1.12 which may require system-wide changes.
  • Fixed: improved connection wrapper for pagination to work.
  • Fixed: implementation of total field is no longer missing when using pagination.
  • Added: "required" and "optional" flags for attribute
  • Added: grouped routes
  • Added: added argument to model.attribute
  • Added: added graphql_context to model
  • Removed: action.can_return_nil was removed, because it does no affect anymore
  • Removed: default action model was removed. Now each action must have returns part
  • Added: default router added. No need to assign value to constant on Router.draw
  • Added: default action added. Now actions can have custom defaults
  • Added: default controller model added. Now actions can be defined in more dynamic way
  • Added: install generator. Now it's possible to generate boilerplate code

[0.8.0] (2019-09-03)

  • Added: permit_input action config with extended list of permitted input options
  • Added: model decorators
  • Added: controller action instrumentation @povilasjurcys
  • Added: sentry and lograge integrations
  • Added: required: true flag for permitted attributes, inputs and model attributes

0.7.0 (2019-05-15)

  • Added: input type now accepts enum param which allows create enum fields
  • Added: routes now accepts suffix: true flag which generates GraphQL field with appended action name to the end of resource name

0.6.0 (2019-04-29)

  • Breaking change: controller params are always underscored @povilasjurcys.
  • Breaking change: cursor in paginated responses has plain index value by default @povilasjurcys.
  • Fixed: do not crash when testing paginated actions @povilasjurcys.

0.5.2 (2019-04-24)

  • Fixed: do not crash when using Connection types in non Ruby on Rails project @povilasjurcys.

0.5.1 (2019-04-10)

0.5.0 (2019-04-03)