Skip to content

Commit 027c371

Browse files
author
Carlos Silva
committed
Release of RC2
1 parent f0e5053 commit 027c371

File tree

7 files changed

+19
-5
lines changed

7 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
### Unreleased
22

3+
### 1.0.0.rc2 - 2023-02-28
4+
5+
* Fixes for inputs
6+
* Fixes for callbacks and field ownership
7+
* Fixes for the inline type creator and sources
8+
* Fixes to folder structure and constant management
9+
* Provide a better URL for ISO 8601 specification
10+
* Make some constants privat
11+
312
### 1.0.0.rc1 - 2023-02-06
413

514
* Added the `@specifiedBy` directive

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

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

docs/_sass/layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
body {
99
display: grid;
1010
min-height: 100vh;
11-
position: relative;;
11+
position: relative;
1212
grid-template-rows: min-content 1fr min-content;
1313

1414
> header {

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: The basics about this gem and what you will find
88

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

docs/guides/sources/active-record.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,11 @@ When set to `:messages`, it uses
283283
}
284284
```
285285

286+
{: .highlight }
287+
> **Note**
288+
> If you decide to use this with `accepts_nested_attributes_for` for a `has_many` association,
289+
> 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.
290+
286291
## Methods
287292

288293
Here is a list of methods that you can use and rely on to facilitate the usage

lib/rails/graphql/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module VERSION
1515
MAJOR = 1
1616
MINOR = 0
1717
TINY = 0
18-
PRE = 'rc1'
18+
PRE = 'rc2'
1919

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

0 commit comments

Comments
 (0)