Rails71

Rails 7.1 perform_all_later for Jobs

perform_all_later allows us to enqueue multiple jobs that belong to different classes simultaneously within ActiveJob.

Rails 7.1 Async Query Support in ActiveRecord

With the Active Record API for general async queries we can efficiently query not so fast queries asynchronously to improve the performance.

Integrate Google Calendar API into rails

Read about how we can integrate Google Calendar API.

Rails 7.1 MessagePack Serializer Support

Rails 7.1 adds native MessagePack support for MessageEncryptor and MessageVerifier, enabling smaller payloads and faster serialization.

Rails 7.1 generates_token_for Method

Generate tokens for specific purposes and verify their authenticity.

Rails 7.1 ActiveRecord Normalization

Rails 7.1 lets you define custom normalization rules for model attributes with the normalizes method.

Limiting Maximum Index Name Length in Ruby

Rails 7.1 defined maximum limit of 62 bytes for auto-generated index names.

Rails 7.1 Autoload Lib with Ignore Option

Autoloading lib directory isn't always straightforward. In this blog post, we'll delve into the autoloading of the lib directory using config.

Rails 7.1 SSL Enforcement by Default

Rails 7.1 enables force_ssl=true in production by default.

Rails 7.1 ErrorReporter Handles Many Errors

Rails introduces handle method for ErrorReporter API