Jijo Bose
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.

Private fields, methods and, accessors in JavaScript

The class fields proposal provides private fields for classes and instances to JavaScript. With this proposal, any class element can be private.
Alkesh Ghorpade
Alkesh Ghorpade

I am a seasoned developer with over 9 years of experience in Ruby on Rails and Golang. My passion lies in tackling complex data structures and algorithm problems, always pushing myself to learn and grow. In my downtime, I find solace in the pages of books and the soothing sounds of a guitar. But I'm not just a one-trick pony! I love to stay active and challenge myself in other ways too. Whether it's on the football pitch, cricket field, table tennis table, or badminton court, I'm always up for some fun activities.

Rails 7 introduces ActiveModel::API

ActiveModel::API allows adding more functionality to ActiveModel::Model and makes itself a minimum API to interact with Action Pack and Action View.
Swaathi Kakarla
Swaathi Kakarla

Swaathi Kakarla is a Ruby on Rails Developer.

Rails 7 supports NullsFirst for all databases

Developers can now access Arel methods for null column ordering.
Ajinkya Deshmukh
Ajinkya Deshmukh

Ajinkya is a Frontend Developer.

ECMAScript2021 adds new features WeakRef and FinalizationRegistry

ECMAScript2021 introduces new features WeakRef and FinalizationRegistry to manage garbage collection.
Jijo Bose
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.

Rails 7 adds SSL support for postgresql in bin/rails dbconsole

Rails 7 added PGSSLMODE, PGSSLCERT, PGSSLKEY, and PGSSLROOTCERT to DBConsole class to load SSL-related environment variables from database config when running bin/rails dbconsole with postgresql.
Alkesh Ghorpade
Alkesh Ghorpade

I am a seasoned developer with over 9 years of experience in Ruby on Rails and Golang. My passion lies in tackling complex data structures and algorithm problems, always pushing myself to learn and grow. In my downtime, I find solace in the pages of books and the soothing sounds of a guitar. But I'm not just a one-trick pony! I love to stay active and challenge myself in other ways too. Whether it's on the football pitch, cricket field, table tennis table, or badminton court, I'm always up for some fun activities.

Rails 7 adds ActiveRecord::QueryMethods#in_order_of to return query results in a particular sequence

Starting with Rails 7, we can return ActiveRecord::Relation results in provided series using the in_order_of method.
Ajinkya Deshmukh
Ajinkya Deshmukh

Ajinkya is a Frontend Developer.

React DevTools adds a feature to trigger an error boundary, making testing easier

A new enhancement in React DevTools provides a toggle error button to test Error Boundaries.
Akhil G Krishnan
Akhil G Krishnan

I'm a Rails and React enthusiast with over two year experience in web application development. I'm also an active member of technical communities in Kerala. Born and raised in Alappuzha, Kerala. In my free time I use to travelling and do open source contributions.

Rails 7 replaced byebug with ruby/debug

Rails 7 removed byebug from their default debugger and replaced it with ruby/debug.
Akhil G Krishnan
Akhil G Krishnan

I'm a Rails and React enthusiast with over two year experience in web application development. I'm also an active member of technical communities in Kerala. Born and raised in Alappuzha, Kerala. In my free time I use to travelling and do open source contributions.

Ruby 3.1 allows value omission in hash literals

Ruby 3.1 adds the ability to use hash literals without having a value.
Murtaza Bagwala
Murtaza Bagwala

A passionate full stack software engineer having 7 years of experience in building scalable enterprise systems. I have worked predominantly with the JVM and Javascript ecosystem but currently exploring Rails. For me, software engineering is all about solving problems in the most optimal way. I am an avid practitioner of clean code practices and love to read about System Design and Architectures. When I am not coding I love to play playstation, read anything about aviation or go out for a long drive and of-course I am foodie by heart.

Normalizing Redux state to ensure good performance in React apps

In complex applications, client apps have to store and manage a large amount of nested data, and if the data is not normalized, it can be incredibly time-consuming for a program to lookup nested data which could become a performance concern.