Salesforce Winter ’21 Release Notes (Developer Perspective)

Update Resources with the PATCH HTTP Method in Apex Callouts

To make partial or full updates to a resource in an HTTP web service, specify the PATCH method in the HttpRequest class. Previously, only the PUT method was supported for full updates.

https://releasenotes.docs.salesforce.com/en-us/winter21/release-notes/rn_apex_callouts_patch.htm?edition=&impact=

Use the Safe Navigation Operator to Avoid Null Pointer Exceptions

Use the safe navigation operator (?.) to replace explicit, sequential checks for null references. This new operator short-circuits expressions that attempt to operate on a null value and returns null instead of throwing a NullPointerException.

Where: This change applies to Lightning Experience and Salesforce Classic in Enterprise, Performance, Unlimited, and Developer editions.

How: If the left-hand-side of the chain expression evaluates to null, the right-hand-side is not evaluated. Use the safe navigation operator (?.) in method, variable, and property chaining. The part of the expression that is not evaluated can include variable references, method references, or array expressions.

https://releasenotes.docs.salesforce.com/en-us/winter21/release-notes/rn_apex_SafeNavigationOperator.htm?edition=&impact=

Instead of checking System.isFuture() || System.isQueueable(), detect Apex Runtime Context with RequestId and Quiddity

//Get info about the current request
Request reqInfo = Request.getCurrent();

//Universally unique identifier for this request
//Same as requestId in splunk or REQUEST_ID in event monitoring
String currentRequestId = reqInfo.getRequestId();

//enum representing how Apex is running. e.g. BULK_API vs LIGHTNING
//Use this with a switch statement,
//instead of checking System.isFuture() || System.isQueueable() || ...
Quiddity currentType = reqInfo.getQuiddity();

Improve Apex Testing with New SObject Error Methods

If the SObject.addError() method has been called on an SObject instance, the SObject.hasErrors() method returns true. The SObject.getErrors() method returns a list of Database.Error objects that contain the errors. encountered.https://releasenotes.docs.salesforce.com/en-us/winter21/release-notes/rn_apex_trackErrors.htm?edition=&impact=

A new REST resource for Composite requests is now generally available

Then composite resources let you batch up multiple calls in a single call. By using this you can simplify your code, reduce network overhead, and improve your app’s performance.

composite graphs ensure that the steps in a given set of operations are either all completed or all terminated. It’s no longer necessary to check for a mix of successful and unsuccessful results. The Composite Graph resource payload increases the subrequest limit to 500 per payload, up from 25 per Standard Composite payload. A single API call can now do much more.

https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/using_composite_resources.htm

Transform Data with a Few Clicks (Pilot)

Data in your Salesforce org is stored across different objects. Use Data Processing Engine to bring all the data in one place and transform it based on your requirements. Start by creating an instance of Data Processing Engine. Then select data sources, define the various configurations, and choose whether you want to use the transformed data to create records or update existing records.

https://releasenotes.docs.salesforce.com/en-us/winter21/release-notes/rn_data_processing_engine_create.htm?edition=&impact=

1,085 thoughts on “Salesforce Winter ’21 Release Notes (Developer Perspective)”

  1. My coder is trying to persuade me to move to .net
    from PHP. I have always disliked the idea because of the expenses.
    But he’s tryiong none the less. I’ve been using Movable-type on various websites for about a
    year and am worried about switching to another
    platform. I have heard very good things about blogengine.net.

    Is there a way I can transfer all my wordpress posts into it?
    Any help would be greatly appreciated!

  2. Ηaving read this I belieѵed it was rather informative.
    I apprecіate you taking the time and effort to put this information together.
    I once again find myself spendіng ԝay too mucһ time both rеading and commenting.
    But ѕo what, it was still woгthwhile!

    my blog; business news india

  3. I am extremely impressed with your writing skills as well as with
    the layout on your weblog. Is this a paid theme or did you
    customize it yourself? Either way keep up the nice quality writing,
    it’s rare to see a nice blog like this one today.

  4. I’m amazed, I have to admit. Rarely do I come across a blog that’s both educative and entertaining, and without a doubt, you’ve
    hit the nail on the head. The problem is an issue that too few folks
    are speaking intelligently about. Now i’m very happy I came across this
    in my hunt for something relating to this.

  5. magnificent post, very informative. I wonder why
    the other experts of this sector do not notice this. You should continue your writing.
    I am confident, you have a great readers’ base already!

  6. What i do not understood is if truth be told how you’re not really a lot more neatly-liked
    than you may bbe now. You’re so intelligent. You know
    therefore significantly relating to this topic, produced me personally imagine
    it from a lot of numerous angles. Its ljke men aand
    women don’t seem to be interested excwpt it is something to accomplish wuth Girl gaga!
    Your personal stuffs great. At all times maintain it up!

    website

  7. An outstanding share! I’ve just forwarded this onto a colleague who had been conducting
    a little homework on this. And he actually ordered me lunch due to the fact that I stumbled upon it for
    him… lol. So let me reword this…. Thank YOU for the meal!!
    But yeah, thanks for spending some time to talk about this subject here
    on your website.

  8. I have been browsing on-line more than 3 hours lately, but I never found any fascinating
    article like yours. It is pretty value enough for
    me. In my opinion, if all web owners and bloggers made good content material as you
    probably did, the web might be much more helpful than ever before.

Comments are closed.