Matt
Matt
When posting issues, please include the following information to speed up the troubleshooting process: * **Version**:`master` branch * **Request and response headers**: 500 status, N/A * **Rails Stacktrace**: ``` ActiveModel::UnknownAttributeError...
I'm currently seeing the following error: ``` java.lang.UnsupportedOperationException: No suitable validator for id at com.networknt.schema.ValidatorTypeCode.newValidator(ValidatorTypeCode.java:124) ~[json-schema-validator-1.0.42.jar:?] at com.networknt.schema.JsonMetaSchema.newValidator(JsonMetaSchema.java:342) ~[json-schema-validator-1.0.42.jar:?] at com.networknt.schema.ValidationContext.newValidator(ValidationContext.java:53) ~[json-schema-validator-1.0.42.jar:?] at com.networknt.schema.JsonSchema.read(JsonSchema.java:198) ~[json-schema-validator-1.0.42.jar:?] at com.networknt.schema.JsonSchema.initialize(JsonSchema.java:76) ~[json-schema-validator-1.0.42.jar:?] at com.networknt.schema.PropertiesValidator.(PropertiesValidator.java:36)...
`this does not have any affect` is incorrect. It should be either `this does not have any effect` or `this does not affect`. This PR fixes it opting for the...
## The Problem The `tapioca` compiler for ActiveRecord models makes most columns nilable, ignoring database constraints. This is correct on paper, because when you call `Model.new` none of those would...
#### Input [→ View on sorbet.run](https://sorbet.run/#%23%20typed%3A%20true%0Aextend%20T%3A%3ASig%0A%0A%23%20source%3A%2F%2Factiverecord%2F%2Flib%2Factive_record%2Frelation.rb%23469%0Adef%20update%28id%20%3D%20T.unsafe%28nil%29%2C%20attributes%29%3B%20end%0A%0Aupdate%28a%3A%201%29) ```ruby # typed: true extend T::Sig # source://activerecord//lib/active_record/relation.rb#469 def update(id = T.unsafe(nil), attributes); end update(a: 1) ``` #### Observed output ``` editor.rb:7: Not enough...