authorImg Viraj Bahulkar
authorImg Viraj Bahulkar

Viraj is a ReactJs Developer.

React 17 internally uses the browser's focusin and focusout events for onFocus and onBlur events

React's onFocus and onBlur events have switched to using the native focusin and focusout events under the hood.
authorImg Jijo Bose
authorImg Jijo Bose

I'm a Ruby on Rails and React Native enthusiast with over four years of experience creating innovative software solutions. I work well in teams and am always up for challenging projects. I enjoy playing chess and gaming in my free time.

Ruby 3.1 evaluates multiple assignments from left to right

Ruby changes the evaluation order for multiple assignments from left to right making it consistent with single assignment evaluation order.
authorImg Prateek Choudhary
authorImg Prateek Choudhary

Prateek is a Ruby on Rails Developer.

Rails 7 ActiveSupport::Cache::MemCacheStore now accepts an explicit nil for addresses argument

Those migrating from :dalli_store to :mem_cache_store can now pass an explicit nil for its addresses argument.
authorImg Rohit Joshi
authorImg Rohit Joshi

I am a Ruby on Rails developer with over two years of experience, most of which is working remotely. I am a typical Punekar and in my free time I play badminton, workout, go trekking and I like to interact with people. Feel free to slide into my DMs and say Hi! 😄

Rails 7 transforms a Ruby hash into HTML attributes for ERB interpolation

Rails 7 adds `tag.attributes`, which transforms a Hash into HTML Attributes, ready to be interpolated into ERB.
authorImg Santanu Karmakar
authorImg Santanu Karmakar

Santanu is a Ruby on Rails Developer.

Rails 7 adds disable_joins: true option to has_many :through association

In multiple database applications, associations can't join across databases. When set, Rails makes 2 or more queries rather than using join for associations.
authorImg Mayank Khanna
authorImg Mayank Khanna

I'm a React and RoR enthusiast with over two years of experience creating innovative software solutions that improve business productivity. I work well in teams and am always up for challenging projects. Born and raised in Pune, I enjoy cooking, painting and travelling in my free time.

Rails 7 allows constructors on has_one :through associations

Rails 7 allows build_association and create_association on has_one :through associations.
authorImg Aditi Tipnis
authorImg Aditi Tipnis

I am a react developer with 10 years of experience in software development. Born in Mumbai, I love slow travelling and exploring new places and activities.

React 17 adds support for KeyboardEvent.code property to SyntheticEvent

Starting with React 17, KeyboardEvent.code property is available on React keyboard event.
authorImg Mayank Khanna
authorImg Mayank Khanna

I'm a React and RoR enthusiast with over two years of experience creating innovative software solutions that improve business productivity. I work well in teams and am always up for challenging projects. Born and raised in Pune, I enjoy cooking, painting and travelling in my free time.

Rails 7 adds invert_where method to ActiveRecord

Rails 7 adds invert_where method that will invert all scope conditions.
authorImg Rakesh Khicher
authorImg Rakesh Khicher

Rakesh is a Ruby on Rails Developer.

Rails 7 adds `Enumerable#in_order_of` to put an enumerable in a certain order by a key.

With the addition of the `in_order_of` method, we can order enumerable based on the provided series.
authorImg Aditya Narsapurkar
authorImg Aditya Narsapurkar

Aditya is a Ruby on Rails and ReactJS Developer.

Rails 7 ActiveJob adds the ability to communicate enqueue failures to callers

ActiveJob's `perform_later` method provides a clean way of communicating enqueued job failures to the caller method, allowing developers to handle errors more efficiently.