1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
|
# graphql-pro
### Breaking Changes
### Deprecations
### New Features
# 1.29.14 (21 Nov 2025)
- Add configuration for `ostruct` dependency
# 1.29.13 (22 Sept 2025)
- Stable connections: fix condition grouping with IS NULL #5435
- `@defer`: Correctly handle fields where `@defer` is present twice #5434
- `@defer`: Update implementation to address warnings in GraphQL-Ruby 2.5.12+
# 1.29.12 (12 Sept 2025)
- `OperationStore`: also support `visibility_profile:` on lazy routes.
# 1.29.11 (12 Sept 2025)
- `OperationStore`: add `visibility_profile: ...` argument to `operation_store_sync` so that incoming operations are bound to the given profile.
# 1.29.10 (3 Jun 2025)
- `@defer`, `@stream`: Include `"data"` in the payload, if there is any, even if there are `"errors"` #5365
# 1.29.9 (20 May 2025)
- Stable relation connection: fix missing records with `nil` values in Postgres #5346
# 1.29.8 (15 May 2025)
- `FutureStream`: Support `GraphQL::ExecutionError` raised from lazy enumerators
# 1.29.7 (12 May 2025)
- `FutureStream`: Add `#to_incremental_h`
# 1.29.6 (5 May 2025)
- `@stream`: Add `FutureStream` for lazy enumerators
# 1.29.5 (31 Mar 2025)
- OperationStore: Improve Redis cleanup when deleting a single client
- Stable connections: Fix NULL handling on Rails 7.2 + Postgresql
# 1.29.4 (18 Nov 2024)
- OperationStore: Add forward compatibility for removing old validation code #5164
# 1.29.3 (15 Nov 2024)
- OperationStore: Improve `sync` performance with `GraphQL::Schema::Visibility`
# 1.29.2 (4 Sept 2024)
- Subscriptions: show broadcast subscriber count in dashboard (Pusher requires "subscription count" to be turned on and `use ... show_broadcast_subscribers_count: true`)
# 1.29.1 (29 Aug 2024)
- OperationStore: Accept a `context:` in `#add`
# 1.29.0 (28 Aug 2024)
- Subscriptions: use a single Pusher or Ably channel to deliver broadcast payloads to subscribers
- Dashboard: fix crash when a topic had no active subscriptions
# 1.28.1 (22 Aug 2024)
- Subscriptions: Track `last_triggered_at`; add more metadata to the dashboard.
# 1.28.0 (20 Aug 2024)
- OperationStore: require the `ActiveRecord` backend inside an `ActiveSupport.on_load(:active_record) { ... }` block to improve Rails compatibility
# 1.27.7 (13 Aug 2024)
- Subscriptions: Fix _another_ Lua error in big cleanup operations
# 1.27.6 (13 Aug 2024)
- Subscriptions: Fix Lua error when cleaning up huge numbers of inactive subscriptions
# 1.27.5 (9 May 2024)
- OperationStore: remove needless call to `.metadata` #4947
# 1.27.4 (2 May 2024)
- Pundit, CanCan, OperationStore: add Rails generators for getting started
# 1.27.3 (1 May 2024)
- OperationStore: Fix `.reindex` for many stored operations #4940
# 1.27.2 (30 Apr 2024)
- Dashboard: handle missing index references gracefully #4940
# 1.27.1 (18 Apr 2024)
- OperationStore: Don't call `query.query_string` if there's already a parsed document #4922
# 1.27.0 (11 Apr 2024)
- RelationConnection: support Arel's `NullsFirst` and `NullsLast` nodes #4910
# 1.26.5 (1 Mar 2024)
- OperationStore::AddOperationBatch: remove rescue for StatementInvalid inside transaction
# 1.26.4 (27 Feb 2024)
- RelationConnection: Don't quote table names that weren't quoted in original SQL, fixes #4508 (comment)
# 1.26.3 (19 Feb 2024)
- OperationStore: fix `sync` endpoint for Rack 3+ #4829
- Improve error message handling on Rails 7.1
# 1.26.2 (30 Jan 2024)
- `@defer` / `@stream`: Write delimiters at the end of each patch so that clients respond to payloads more quickly. (Previously, delimiters were added at the start of each patch, so clients had to wait for the _next_ patch before they knew the current one was complete.)
# 1.26.1 (23 Jan 2024)
- Pundit integration: improve error message when a `Scope` class is missing
# 1.26.0 (19 Jan 2024)
### Breaking Changes
- Pundit integration: when the integration encounters an Array, it tries to find a configured policy class. If it can't, it raises an error.
Previously, the integration silently permitted all items in the array; this default has been changed. See #4726 for more discussion of this change.
If you encounter this error:
- add `scope: false` to any fields that return arrays to get the previous behavior (no authorization applied to the array; each item authorized on its own)
- Or, apply [scoping](https://graphql-ruby.org/authorization/scoping.html) by manually configuring a `pundit_policy_class` in the field's return type, then adding a `class Scope ...` inside that policy class. See the Pundit docs for the scope class API: https://github.com/varvet/pundit#scopes.
If you want to continue passing _all_ arrays through without scoping (for example, if you know they've already been authorized another way, or if you're OK with them being authorized one-at-a-time later), you can implement this in your base `Scope` class, for example:
```ruby
class BasePolicy
class Scope
def initialize(user, items)
@user = user
@items = items
end
def resolve
if items.is_a?(Array)
items
else
raise "Implement #{self.class}#resolve to filter these items: #{items.inspect}"
end
end
end
# Pass this scope class along to subclasses:
def self.inherited(child_class)
child_class.const_set(:Scope, Class.new(BasePolicy::Scope))
super
end
end
```
Alternatively, you could implement `def self.scope_items(items, context)` to skip arrays, for example:
```ruby
module SkipScopingOnArrays
def scope_items(items, context)
if items.is_a?(Array)
items # return these as-is
else
super
end
end
end
# Then, in type definitions which should skip scoping on arrays:
extend SkipScopingOnArrays
```
# 1.25.2 (29 Dec 2023)
### New Features
- Subscriptions: send `more: false` when the server calls `unsubscribe`
# 1.25.1 (21 Dec 2023)
### Bug Fix
- Ably subscriptions: update webhook handler for `presence.message` events
# 1.25.0 (7 Dec 2023)
### Bug Fix
- OperationStore: `.dup` the given `context` to avoid leaking state between queries when indexing
- Subscriptions: use the schema or query logger to output debug messages
# 1.24.15 (17 Nov 2023)
### Bug Fix
- OperationStore: don't sort directives when normalizing, properly retain directives on Operation and Fragment definitions #4703
# 1.24.14 (16 Nov 2023)
### Bug Fix
- OperationStore: also pass `context:` for ActiveRecord backend batches
# 1.24.13 (13 Nov 2023)
### New Features
- OperationStore: accept `context:` for `AddOperationBatch.call` #4697
# 1.24.12 (13 Nov 2023)
### New Features
- OperationStore: accept `context:` to `Validate.validate` #4697
### Bug Fix
- OperationStore: don't rescue application-raised `KeyError`s #4699
# 1.24.11 (8 Nov 2023)
### Bug Fix
- OperationStore: fix compatibility with 1.12.x #4696
# 1.24.10 (2 Nov 2023)
### Bug Fix
- Improve compatibility with GraphQL-Ruby 1.12.x
# 1.24.9 (4 Oct 2023)
### Bug Fix
- OperationStore: Preserve variable default values of `false` when normalizing queries
# 1.24.8 (29 Aug 2023)
### Bug Fix
- OperationStore: search for operation during `Query#initialize` to avoid races with other instrumentation. Add `use ... trace: true` to get the old behavior.
# 1.24.7 (16 June 2023)
### Bug Fix
- Stable relation connections: quote table names and column names in `WHERE` clauses #4508
# 1.24.6 (24 May 2023)
### New Features
- Defer: Add `incremental: true` for new proposed wire format, add example for working with GraphQL-Batch #4477
# 1.24.5 (24 May 2023)
### Bug Fix
- Stable relation connection: Quote table names and column names in selects and orders #4485
# 1.24.4 (18 April 2023)
### Bug Fix
- `@defer`: update `context[:current_path]` usage to fix `path:` on deferred errors
# 1.24.3 (14 April 2023)
### Bug Fix
- `OperationStore`: fix when used with Changesets (or other ways of defining arguments with the same name) #4440
# 1.24.2 (20 Mar 2023)
### Bug Fix
- Remove debug output, oops
# 1.24.1 (20 Mar 2023)
### Bug Fix
- Fix `OperationStore` with new module-based execution traces (#4389)
# 1.24.0 (10 Feb 2023)
### New Features
- Support the `redis-client` gem as `redis:`
# 1.23.9 (2 Feb 2023)
### Bug Fix
- Dashboard: Support Ruby 3.2.0
# 1.23.8 (27 Jan 2023)
### New Features
- OperationStore: Support `Changeset-Version` header for syncing with changesets #4304
# 1.23.7 (25 Jan 2023)
### Bug Fix
- Stable Relation Connections: Fix handling of Postgres JSON accesses
# 1.23.6
### New Features
- Subscriptions: accept `connection_pool:` instead of `redis:` for use with the `connection_pool` gem
### Bug Fix
- Stable connections: rescue `ActiveRecord::StatementInvalid` when loading nodes and return a client-facing error instead
# 1.23.5 (29 December 2022)
### New Features
- Ably subscriptions: Also listen for `presence.leave` webhooks to clean up subscriptions more quickly
# 1.23.4 (20 December 2022)
### Bug Fix
- Dashboard: nicely render subscriptions that are not found or cleaned up by `read_subscription_failed_error`
# 1.23.3 (19 December 2022)
### New Features
- Add `GraphQL::Pro::Subscriptions#read_subscription_failed_error` for handling errors that are raised when reloading queries from storage
# 1.23.2 (18 October 2022)
### New Features
- Add dashboard component for Enterprise mutation limiter
# 1.23.1 (25 August 2022)
### Bug Fix
- Redis: update redis usage to be forward-compatible with redis 5.x #4167
# 1.23.0 (2 August 2022)
### New Features
- Stable connections: support SQL queries that sort by `IS NOT NULL` #4153
# 1.22.3 (26 July 2022)
### Bug Fix
- Stable connections: handle `edges {...}` when an invalid cursor is given #4148
# 1.22.2 (20 April 2022)
### Bug Fix
- Use `deprecated_accepts_definitions` to stop warnings when loading this gem on 1.13.x
# 1.22.1 (22 March 2022)
### Bug Fix
- Pusher subscriptions: don't try to send empty trigger batches to Pusher
# 1.22.0 (19 March 2022)
### New Features
- Pusher subscriptions: it now sends updates in groups of 10 by default, pass `use ..., batch_size: 1` to revert to the previous behavior.
- OperationStore: when using ActiveRecord for storage, it now batches updates to `last_used_at` every 5 seconds. Pass `use ..., update_last_used_at_every: 0` to update that column synchronously, instead, as before.
# 1.21.6 (16 March 2022)
### Bug Fix
- OperationStore: Fix no method error in Redis pipeline usage
# 1.21.5 (7 March 2022)
### Bug Fix
- Postgres stable connection: support more complex aliased selects #3976
# 1.21.4 (15 February 2022)
### Bug Fix
- Encoders: don't extend `DeprecatedDefine` if it's not present (graphql-ruby < 1.12)
# 1.21.3 (9 February 2022)
### New Features
- Future-proof for GraphQL-Ruby 2.0
# 1.21.2 (27 January 2022)
### New Features
- Dashboard, Routes: support lazy-loading the schema with `Routes::Lazy` #3868
- OperationStore: Update deprecated usage of `@redis.pipelined` to address warning
# 1.21.1 (20 January 2022)
### Bug Fix
- Stream, Defer: Include `hasNext: true|false` in patches
# 1.21.0 (20 January 2022)
### New Features
- Stream: Add `@stream` directive for evaluating list items one-at-a-time
# 1.20.4 (4 December 2021)
### Bug Fix
- Stable connections: Fix using startCursor / endCursor without nodes #3752
# 1.20.3 (27 November 2021)
### Bug Fix
- Stable Connections: Properly handle cursors containing invalid JSON #3735
# 1.20.2 (15 November 2021)
### New Features
- Operation Store sync: ActiveRecord backend performance improvements: when syncing operations, only validate newly-added operations, reduce allocations when normalizing incoming query strings
# 1.20.1 (8 November 2021)
### Bug Fix
- Operation Store sync: fix when operations are re-synced with new aliases
# 1.20.0 (5 November 2021)
### New Features
- Operation Store: Use Rails `insert_all` for better performance when adding new operations
# 1.19.2 (26 October 2021)
### New Features
- Pundit and CanCan integrations: Add `ResolverIntegration` modules for plain resolvers #3392
### Bug Fix
- OperationStore Redis backend: pipeline updates to last_used_at values #3672
# 1.19.1 (15 October 2021)
### Bug Fix
- OperationStore: fix a stack overflow error on GraphQL 1.9 #3653
# 1.19.0 (13 October 2021)
### New Features
- Dashboard: add a component for GraphQL-Enterprise rate limiters
# 1.18.3 (1 Sept 2021)
### Breaking Changes
- Stable cursors: raise an error on unrecognized orderings instead of ignoring them #3605
### Bug Fix
- Stable cursors: Handle `Arel::Attributes::Attribute` and `Arel::SqlLiteral` #3605
# 1.18.2 (16 August 2021)
### Bug Fix
- Stable connections: nicely handle incoming cursors with too many sort values #3581
# 1.18.1 (20 July 2021)
### Bug Fix
- Stable connections: improve handling of `SELECT` with `CASE` #3558
- Defer: fix to support runtime wrapper objects in graphql-ruby 1.12.13
# 1.18.0 (31 May 2021)
### New Features
- Ably subscriptions: send `quickAck: true` for a faster response from Ably
### Bug Fix
- Defer: support dataloader inside deferred blocks
# 1.17.15 (29 Apr 2021)
### New Features
- Defer: support `label:` argument which is returned in the patch for that deferral #3454
# 1.17.14 (14 Apr 2021)
- Dashboard: fix stack error when OperationStore isn't configured on a class-based schema
# 1.17.13 (14 Apr 2021)
- Stable Connections: When using aliases and GROUP BY, replace the alias when building a HAVING condition.
- Pundit integration: Add a `use_owner_role(true)` configuration option
# 1.17.12 (3 Apr 2021)
### Bug Fix
- Stable Connections: Re-select aliased fields that are referenced by ORDER BY. #3421
# 1.17.11 (12 Mar 2021)
### Bug Fix
- Pundit integration: properly halt when `unauthorized_by_pundit` returns errors-as-data after a mutation argument fails authorization #3384
# 1.17.10 (11 Mar 2021)
### Bug Fix
- Pundit, CanCan integrations: properly call configured auth hooks for arguments that are lists and input objects
# 1.17.9 (3 Mar 2021)
### Bug Fix
- Fix OperationStore assignment on GraphQL-Ruby 1.9
# 1.17.8 (23 Feb 2021)
### New Features
- Subscriptions: change the default `cleanup_delay_s:` to 5 seconds (use `cleanup_delay_s: 0` to get the old behavior)
### Bug Fix
- Subscriptions: Handle unsubscribe race condition #3357
# 1.17.7 (19 Feb 2021)
### New Features
- CanCan integration: support `can_can_subject:` config for overriding the use of `object` as the CanCan subject #3350
### Bug Fixes
- Subscriptions: Support `Redis::Namespace` without deprecation warnings for `script load` #3347
# 1.17.6 (18 Feb 2021)
### New Features
- Stable connections: implement `range_add_edge` to leverage GraphQL-Ruby 1.12.5's improved RangeAdd #2184
### Bug Fix
- Defer: Update to work with Dataloader
# 1.17.5 (13 Feb 2021)
### Bug Fix
- Subscriptions: Use `MULTI` instead of Lua for some operations
- Subscriptions: Use `EVAL_SHA` for duplicate scripts to reduce network overhead #3285
- Subscriptions: Don't use `redis.call`, which is unsupported in the `redis-namespace` gem #3322
# 1.17.4 (4 Feb 2021)
## Bug Fix
- Stable Relation Connection: Don't emit `OR ... IS NULL` for columns that are known to be `null: false` (this improves index utilization)
## 1.17.3 (2 Feb 2021)
### New Features
- Pusher subscriptions: `context[:compress_pusher_payload] = true` will cause the payload to be gzipped before being sent to Pusher
## 1.17.2 (30 Jan 2021)
### Bug Fix
- Subscriptions: don't generate keys inside Lua scripts (for redis-namespace compatibility, and probably better support for Redis cluster) #3307
## 1.17.1 (25 Jan 2021)
### New Features
- OperationStore: add `OperationStore::AddOperationBatch.call` for adding data directly
- Subscriptions: use Lua scripts for more efficient Redis access
## 1.17.0 (20 Jan 2021)
### New Features
- Updates for 1.12.0 compatibility
### Bug Fix
- OperationStore: improve performance by batching reads and writes during updates
## 1.16.2 (21 Dec 2020)
### New Features
- Subscriptions: Add `stale_ttl_s:` and `cleanup_delay_s:` to customize persistence in Redis #3252
## 1.16.1 (3 Dec 2020)
### Bug Fix
- Fix duplicate calls to `Argument#authorized?` in CanCan and Pundit integrations #3242
## 1.16.0 (10 Nov 2020)
### New Features
- Ably Subscriptions: `cipher_base:` sets up end-to-end encryption
## 1.15.7 (29 Sept 2020)
### Bug Fix
- Encoder: fix Ruby 2.7 warning #3161
- Stable connections: Handle `ARRAY[...]` selections and cursors on Postgres #3166
- Pundit: properly lookup policies for list inputs #3146
## 1.15.6 (17 Sept 2020)
### Bug Fix
- Stable Connections: Use method access to get `.cursor_#{idx}` values instead of `.attributes[:cursor_#{idx}]`, fixes #3149
## 1.15.5
### New Features
- Stable Connections: use `.to_sql` to handle orderings that use complex Arel expressions (#3109)
## 1.15.4 (28 July 2020)
### New Features
- Pundit: add `pundit_policy_class_for(object, context)` and `pundit_role_for(object, context)` for custom runtime lookups
## 1.15.3 (17 July 2020)
### Bug Fix
- Subscriptions: don't send empty updates when subscriptions return `:no_update`
## 1.15.2 (16 July 2020)
### New Features
- OperationStore: improve handling of archived operations in index views
## 1.15.1 (16 July 2020)
(Oops, bad release!)
## 1.15.0 (15 July 2020)
- OperationStore: Store & display `last_used_at` for operation store clients and operations. To upgrade, add the column to your ActiveRecord table:
```ruby
add_column :graphql_client_operations, :last_used_at, :datetime
```
(It works out-of-the-box with the Redis backend.)
You can opt out of this feature by adding `use GraphQL::Pro::OperationStore, ... default_touch_last_used_at: false` to your schema setup.
- OperationStore: Add archive/unarchive workflow for operations. To upgrade, add the column to your table:
```ruby
add_column :graphql_client_operations, :is_archived, :boolean, index: true
```
(It works out-of-the-box with the Redis backend.)
- OperationStore: Fix indexing of enum values
## 1.14.1 (29 June 2020)
- CanCan: Accept `can_can_attribute:` configuration, which is passed as the third input to `.can?(...)`
## 1.14.0 (13 June 2020)
### New Features
- Add PubnubSubscriptions
- Update subscription implementations to support `broadcast: true` when available
### Bug Fix
- More Ruby 2.7 warning fixes
## 1.13.6 (8 June 2020)
### Bug Fix
- Return the proper `pageInfo` values when it's requested before `edges` or `nodes` (#2972)
## 1.13.5 (11 May 2020)
### Bug Fix
- Fix some warnings on Ruby 2.7
## 1.13.4 (17 Apr 2020)
### Bug Fix
- StableRelationConnection: properly return `hasNextPage: true` when `before` and `max_page_size` are used.
## 1.13.3 (2 Apr 2020)
### New Features
- `GraphQL::Pro::OperationStore::Migration` can be used to copy persisted operations from one backend to another (eg, ActiveRecord to Redis). See the source file, `lib/graphql/pro/operation_store/migration.rb` for docs.
## 1.13.2 (28 Mar 2020)
### Deprecations
- `GraphQL::Pro::Subscriptions` is deprecated; use `GraphQL::Pro::PusherSubscriptions` instead which works the same, but better (see below). This new name avoids confusion with the later-added `AblySubscriptions`.
### New Features
- `GraphQL::Pro::PusherSubscriptions` replaces `GraphQL::Pro::Subscriptions` and adds orphaned record cleanup. (No more dangling records in Redis.)
## 1.13.1 (12 Mar 2020)
- Use `nonce: true` when working with cursors in new stable connections
## 1.13.0 (10 Feb 2020)
### New Features
- OperationStore supports a `redis:` backend
- OperationStore supports an arbitrary `backend_class:` for persistence operations
### Bug Fix
- Use a loop when clearing Redis subscription state to avoid large stack traces #2701
- Handle empty subscription keys when publishing updates #2061
## 1.12.2 (22 Jan 2020)
### Bug Fix
- Improve backwards compat with OperationStore (Improve adding `.tracer`, use `.graphql_name` when indexing)
## 1.12.1 (20 Jan 2020)
### Bug Fix
- Fix OperationStore on class-based schemas with query instrumenters that use the query string
## 1.12.0 (20 Jan 2020)
### Deprecations
- `GraphQL::Pro::Monitoring` is deprecated; see Tracing for a replacement: https://graphql-ruby.org/queries/tracing.html
- `GraphQL::Pro::Repository` is deprecated; see OperationStore for a replacement: https://graphql-ruby.org/operation_store/overview.html
### New Features
- New stable connection support based on GraphQL-Ruby 1.10's new pagination implementation. New classes provide better handling of `NULL` values in order-by columns and they can be applied on a field-by-field basis(`GraphQL::Pro::SqliteStableRelationConnection`, `GraphQL::Pro::MySQLStableRelationConnection`, `GraphQL::Pro::PostgresStableRelationConnection`).
### Bug Fix
- Add the Access query analyzer to class-based schemas
## 1.11.0 (10 Oct 2019)
### New Features
- Forwards-compatibility for graphql 1.10.0
- Support 1.10.0.pre1's input object argument `loads:` authorization
## 1.10.8 (8 Oct 2019)
### Bug Fix
- Continue authorizing input object arguments
- Use millisecond-aware string format for datetimes in cursors
## 1.10.7 (22 Jul 2019)
### Bug Fix
- Support multiple subscriptions in one document
## 1.10.6 (27 Jun 2019)
### New Features
- Support custom `#can_can_ability` methods on query context for CanCanIntegration
- Support custom `#pundit_user` method on query context for PunditIntegration
### Bug Fix
- Fix off-by-one error when paginating backwards from the last item in a stable relation connection
## 1.10.5 (11 May 2019)
### New Features
- Include expected HMAC digest in OperationStore debug output
## 1.10.4 (26 Mar 2019)
### Bug Fix
- Include content-length and content-type headers in OperationStore JSON responses
## 1.10.3 (13 Mar 2019)
### Bug Fix
- Support stable connections ordered by Arel SQL literals
## 1.10.2 (11 Mar 2019)
### Bug Fix
- Support stable connections on realized views (which don't have primary keys)
## 1.10.1 (8 Mar 2019)
### Bug Fix
- Pundit integration: support `pundit_policy_class` String names when scoping connections
## 1.10.0 (5 Mar 2019)
### New Features
- Add `GraphQL::Pro::Defer`, implementing `@defer` for streaming responses
## 1.9.13 (4 Mar 2019)
### Bug Fix
- Pundit integration: correctly authorize fields when Query root is nil
## 1.9.12 (22 Feb 2019)
### Bug Fix
- Pundit integration: use overridden `pundit_policy_class` for scoping and mutation authorization
## 1.9.11 (20 Feb 2019)
### Bug Fix
- Pundit integration: Fields use the owner's configured `pundit_policy_class` if there is one
- Pundit integration: avoid conflicts with `#initialize` for schema classes that don't need it
## 1.9.10 (19 Feb 2019)
### Bug Fix
- Support inheritance with `pundit_policy_class(...)`
## 1.9.9 (13 Feb 2019)
### New Features
- Support `pundit_policy_class(...)` and `pundit_policy_class:` to manually specify a class or class name.
## 1.9.8 (30 Jan 2019)
### New Features
- Inject `context` into policy lookup hooks instead of just the user
## 1.9.7 (30 Jan 2019)
### New Features
- Extract `pundit_policy` and `scope_by_pundit_policy` hooks for user override
## 1.9.6 (18 Jan 2019)
### Bug Fix
- Properly render subscription context in dashboard
## 1.9.5 (14 Jan 2019)
## Bug Fix
- Don't pass arrays to Pundit scopes (fixes https://github.com/rmosolgo/graphql-ruby/issues/2008)
## 1.9.4 (11 Jan 2019)
## Bug Fix
- Prepare for future compat with graphql-ruby 1.9
## 1.9.3 (3 Dec 2018)
### Bug Fix
- Include table name when adding a default order-by-id to ActiveRecord Relations
- Raise if a required cursor attribute is missing
- Improve `rake routes` output for operation store endpoint
- Support already-parsed queries in subscription RedisStorage
## 1.9.2 (2 Nov 2018)
### Bug Fix
- Derp, remove the dummy app's `.log` files from the gem bundle
- Fix ordering bug when a SQL function call doesn't have an explicit order
## 1.9.1 (1 Nov 2018)
### Bug Fix
- Fix Pusher reference in AblySubscriptions
## 1.9.0 (27 Oct 2018)
### New Features
- Add `GraphQL::Pro::AblySubscriptions` for GraphQL subscriptions over Ably.io transport
## 1.8.2 (22 Oct 2018)
### Bug Fix
- Support `NULLS LAST` in stable cursors
## 1.8.1 (16 Oct 2018)
### Bug Fix
- Improve operation store models to work when `config.active_record.primary_key_prefix_type` is set
## 1.8.0 (11 Oct 2018)
### New Features
- Support Rails 3.2 with OperationStore
- Use `.select` to filter items in CanCanIntegration
### Bug Fix
- Properly send an _ability_ and the configured `can_can_action` to `.accessible_by`
- Use a string (not integer) for `Content-Length` header in the dashboard
## 1.7.13 (2 Oct 2018)
### Breaking Change
- `PunditIntegration`: instead of raising `MutationAuthorizationFailed` when an argument fails authorization, it will send a `GraphQL::UnauthorizedError` to your `Schema.unauthorized_object` hook. (This is what all other authorization failures do.) To retain the previous behavior, in your base mutation, add:
```ruby
def unauthorized_by_pundit(owner, value)
# Raise a runtime error to halt query execution
raise "#{value} failed #{owner}'s auth check"
end
```
Otherwise, customize the handling of this behavior with `Schema.unauthorized_object`.
### Bug Fix
- Auth: mutation arguments which have authorization constraints but _don't_ load an object from the database will have _mutation instance_ passed to the auth check, not the input value.
## 1.7.12 (29 Aug 2018)
### New Features
- Add `GraphQL::Pro::CanCanIntegration` which leverages GraphQL-Ruby's built-in auth
## 1.7.11 (21 Aug 2018)
### Bug Fix
- `PunditIntegration`: Don't try to authorize loaded objects when they're `nil`
## 1.7.10 (10 Aug 2018)
### New Features
- Update `PunditIntegration` for arguments, unions, interfaces and mutations
## 1.7.9 (9 Aug 2018)
### New Features
- Add a new `PunditIntegration` which leverages the built-in authorization methods
## 1.7.8 (10 July 2018)
### Bug Fix
- Authorization: fix scoping lists of abstract type when there's no `#scope` method on the strategy
## 1.7.7 (10 May 2018)
### Bug Fix
- Fix ordering of authorization field instrumenter (put it at the end, not the beginning of the list)
## 1.7.6 (2 May 2018)
### New Features
- Authorization: Add `view`/`access`/`authorize` methods to `GraphQL::Schema::Mutation`
## 1.7.5 (19 Apr 2018)
### New Features
- Authorization: when a `fallback:` configuration is given, apply it to each field which doesn't have a configuration of its own or from its return type. _Don't_ apply that configuration at schema level (it's applied to each otherwise uncovered field instead).
## 1.7.4 (16 Apr 2018)
### New Features
- Support Mongoid::Criteria in authorization scoping
## 1.7.3 (12 Apr 2018)
### Bug Fix
- Fix authorization code for when `ActiveRecord` is not defined
## 1.7.2 (10 Apr 2018)
### Bug Fix
- Use a more permissive regexp (`/^\s*((?:[a-z._]+)\(.*\))\s*(asc|desc)?\s*$/im`) to parse SQL functions
## 1.7.1 (4 Apr 2018)
### Bug Fix
- Fix route helpers to support class-based schemas
## 1.7.0 (25 Mar 2018)
### New Features
- Support `1.8-pre` versions of GraphQL-Ruby
### Bug Fix
- Fix OperationStore when other query instrumenters need `.query_string`
## 1.6.5 (7 Feb 2018)
### Bug Fix
- Support `LEAST(...)` in stable cursors
## 1.6.4 (7 Feb 2018)
### Bug Fix
- Support `CASE ... END` in stable cursors
## 1.6.3 (26 Jan 2018)
### Bug Fix
- Support `FIELD(...)` in stable cursors
## 1.6.2 (13 Jan 2018)
### Bug Fix
- Improve detection of `OperationStore` for the dashboard
- Serve `Content-Type` and `Content-Length` headers with dashboard pages
- Better `Dashboard#inspect` for Rails routes output
- Use a string to apply order-by-primary-key for better Rails 3 support
## 1.6.1 (22 Nov 2017)
### New Features
- Support `composite_primary_keys` gem
## 1.6.0 (13 Nov 2017)
### Breaking Changes
- `GraphQL::Pro::UI` renamed to `GraphQL::Pro::Dashboard`
### Deprecations
- Routing method `.ui` was renamed to `.dashboard`
### New Features
- Added `GraphQL::Pro::Subscriptions`
- Added subscriptions component to Dashboard
## 1.5.9 (10 Oct 2017)
### Bug Fix
- Don't crash when scoping lists of abstract types with Pundit
## 1.5.8 (2 Oct 2017)
### New Features
- Use `authorize(:pundit, namespace: )` to lookup policies in a namespace instead of the global namespace.
### Bug Fix
- Introspection data is allowed through `fallback:` `authorize:` and `access:` filters. (It can be hidden with a `view:` filter.)
## 1.5.7 (20 Sept 2017)
### Bug Fix
- Properly return `nil` when a list of authorized objects returns `nil`
## 1.5.6 (19 Sept 2017)
### New Features
- Add `authorization(..., operation_store:)` option for authorizing operation store requests
## 1.5.5 (18 Sept 2017)
### New Features
- Support `ConnectionType.bidrectional_pagination?` in stable RelationConnection
## 1.5.4 (18 Sept 2017)
### Bug Fix
- Fix load issue when Rails is not present
## 1.5.3 (4 Sept 2017)
### Bug Fix
- Fix OperationStore views on PostgresQL
- Fix stable cursors when joined tables have the same column names
__Note:__ This is implemented by adding extra fields to the `SELECT`
clause with aliases like `cursor_#{idx}`, so you'll notice this in your
SQL logs.
## 1.5.2 (4 Aug 2017)
### Bug Fix
- Bump `graphql` dependency to `1.6`
## 1.5.1 (2 Aug 2017)
### New Features
- Routing extensions moved to `using GraphQL::Pro::Routes`
### Deprecations
- Deprecate `using GraphQL::Pro`, move extensions to `GraphQL::Pro::Routes`
## 1.5.0 (31 Jul 2017)
### New Features
- Add `GraphQL::Pro::OperationStore` for persisted queries with Rails
## 1.4.8 (14 Jul 2017)
### Bug Fix
- Update `authorization` to use type-level `resolve_type` hooks
## 1.4.7 (13 Jul 2017)
### Bug Fix
- Update authorization instrumentation for `graphql >= 1.6.5`
## 1.4.6 (6 Jul 2017)
### Bug Fix
- Fix typo in RelationConnection source
## 1.4.5 (6 Jul 2017)
### Bug Fix
- Correctly fall back to offset-based cursors with `before:` argument
## 1.4.4 (15 Jun 2017)
### New Features
- Add `Schema#unauthorized_object(obj, ctx)` hook for failed runtime checks
### Bug Fix
- Prevent usage of `parent_role:` with `view:` or `access:` (since parent role requires a runtime check)
- Fix versioned, encrypted cursors with 16-byte legacy cursors
## 1.4.3 (13 Jun 2017)
### New Features
- `OrderedRelationConnection` supports ordering by joined fields
### Bug Fix
- Update auth plugin for new Relay instrumenters
- `Pro::Encoder` supports `encoder(...)` as documented
## 1.4.2 (2 May 2017)
### Bug Fix
- Fix compatibility of `RelationConnection` and `RangeAdd` helper
## 1.4.1 (19 Apr 2017)
### New Features
- Add `:datadog` monitoring
## 1.4.0 (19 Apr 2017)
### New Features
- `ActiveRecord::Relation`s can be scoped by Pundit `Scope`s, CanCan `accessible_by`, or custom strategy's `#scope(gate, relation)` methods
- Default authorization configuration can be provided with `authorization(..., fallback: { ... })`
- Authorization's `:current_user` key can be customized with `authorization(..., current_user: ...)`
## 1.3.0 (7 Mar 2017)
### New Features
- Serve static, persisted queries with `GraphQL::Pro::Repository`
## 1.2.3 (2 May 2017)
### Bug Fix
- Fix compatibility of `RelationConnection` and `RangeAdd` helper
## 1.2.2 (6 Mar 2017)
### Bug Fix
- Raise `GraphQL::Pro::RelationConnection::InvalidRelationError` when a grouped, unordered relation is returned from a field. (This relation can't be stably paginated.)
## 1.2.1 (3 Mar 2017)
### New Features
- Formally support ActiveRecord `>= 4.1.0`
### Bug Fix
- Support grouped relations in `GraphQL::Pro::RelationConnection`
## 1.2.0 (1 Mar 2017)
### New Features
- Authorize fields based on their parent object, for example:
```ruby
AccountType = GraphQL::ObjectType.define do
name "Account"
# This field is visible to all users:
field :name, types.String
# This is only visible when the current user is an `:owner`
# of this account
field :account_balance, types.Int, authorize: { parent_role: :owner }
end
```
## 1.1.1 (22 Feb 2017)
### Bug Fixes
- Fix monitoring when `Query#selected_operation` is nil
## 1.1.0 (9 Feb 2017)
### New Features
- Add AppSignal monitoring platform
- Add type- and field-level opting in and opting out of monitoring
- Add `monitor_scalars: false` to skip monitoring on scalars
### Bug Fixes
- Fix `OrderedRelationConnection` when neither `first` nor `last` are provided (use `max_page_size` or don't limit)
## 1.0.4 (23 Jan 2017)
### Bug Fixes
- `OrderedRelationConnection` exposes more metadata methods: `parent`, `field`, `arguments`, `max_page_size`, `first`, `after`, `last`, `before`
## 1.0.3 (23 Jan 2017)
### Bug Fixes
- When an authorization check fails on a non-null field, propagate the null and add a response to the errors key (as if the field had returned null). It previously leaked the internal symbol `__graphql_pro_access_not_allowed__`.
- Apply a custom Pundit policy even when the value isn't `nil`. (It previously fell back to `Pundit.policy`, skipping a `pundit_policy_name` configuration.)
## 1.0.2
### Bug Fixes
- `OrderedRelationConnection` exposes the underlying relation as `#nodes` (like `RelationConnection` does), supporting custom connection fields.
## 1.0.1
### New Features
- CanCan integration now supports a custom `Ability` class with the `ability_class:` option:
```ruby
authorize :cancan, ability_class: CustomAbility
```
## 1.0.0
- `GraphQL::Pro` released
|