Skip to content

Commit

Permalink
Release of RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Silva committed Feb 28, 2023
1 parent f0e5053 commit 027c371
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
### Unreleased

### 1.0.0.rc2 - 2023-02-28

* Fixes for inputs
* Fixes for callbacks and field ownership
* Fixes for the inline type creator and sources
* Fixes to folder structure and constant management
* Provide a better URL for ISO 8601 specification
* Make some constants privat

### 1.0.0.rc1 - 2023-02-06

* Added the `@specifiedBy` directive
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

{% if page.url == "/" %}
<section id="beta">
We are now in the RC1 (v1.0.0.rc1)! It's not recommended to be used in production <b>YET!</b>
We are now in the RC2 (v1.0.0.rc2)! It's not recommended to be used in production <b>YET!</b>
</section>
{% endif %}

Expand Down
2 changes: 1 addition & 1 deletion docs/_sass/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
body {
display: grid;
min-height: 100vh;
position: relative;;
position: relative;
grid-template-rows: min-content 1fr min-content;

> header {
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description: The basics about this gem and what you will find

{: .warning }
> **Important**
> We are now in the RC1 (v1.0.0.rc1)! It's not recommended to be used in production **YET!**
> We are now in the RC2 (v1.0.0.rc2)! It's not recommended to be used in production **YET!**
## Installation

Expand Down
5 changes: 5 additions & 0 deletions docs/guides/sources/active-record.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,11 @@ When set to `:messages`, it uses
}
```

{: .highlight }
> **Note**
> If you decide to use this with `accepts_nested_attributes_for` for a `has_many` association,
> it is recommended to enable <a href="https://edgeguides.rubyonrails.org/configuring.html#config-active-record-index-nested-attribute-errors" target="_blank" rel="external nofollow">`config.active_record.index_nested_attribute_errors = true`</a> to get better results.
## Methods

Here is a list of methods that you can use and rely on to facilitate the usage
Expand Down
2 changes: 1 addition & 1 deletion lib/rails/graphql/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module VERSION
MAJOR = 1
MINOR = 0
TINY = 0
PRE = 'rc1'
PRE = 'rc2'

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
Expand Down

0 comments on commit 027c371

Please sign in to comment.