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. Magnificent goods from you, man. I have understand
    your stuff previous to and you’re just too great.
    I really like what you have acquired here, really like what you’re stating
    and the way in which you say it. You make it enjoyable and
    you still care for to keep it sensible. I can’t wait to read much more from you.
    This is really a wonderful site.

  2. Hi, Neat post. There’s an issue together with your website in web explorer, would test this?

    IE nonetheless is the marketplace chief and a huge element of other people will miss
    your magnificent writing because of this problem.

  3. I will immediately clutch your rss feed as I can not find
    your e-mail subscription hyperlink or e-newsletter
    service. Do you’ve any? Please allow me understand so that I could subscribe.
    Thanks.

  4. Aw, this was an exceptionally nice post. Finding the
    time and actual effort to create a good article… but what can I
    say… I put things off a whole lot and don’t manage to get nearly anything done.

  5. Right now it appears like BlogEngine is the best blogging platform available right now.
    (from what I’ve read) Is that what you are using on your blog?

  6. It’s hard to come by experienced people about this subject, but you seem like you know what you’re talking about!
    Thanks

  7. It’s actually a cool and helpful piece of
    information. I am satisfied that you just shared this helpful information with
    us. Please stay us up to date like this. Thanks for sharing.

  8. Its like you read my thoughts! You seem to grasp a lot about this, like you wrote the book in it or something.
    I believe that you just could do with some percent to power the message house
    a bit, but instead of that, that is fantastic blog. A fantastic read.
    I will certainly be back.

  9. Spot on with this write-up, I absolutely feel this amazing site needs a lot more attention.
    I’ll probably be back again to see more, thanks for the information!

  10. Magnificent beat ! I wouⅼd ⅼike to apprentice ᴡhile
    уou amend your site, hߋw could i subscribe fߋr a blog web site?
    The account helped mе a acceptable deal. I hаd been a littⅼe bіt acquainted ߋf tһiѕ yοur broadcast proviɗed bright cleаr concept

  11. Ι’m noѡ not positive ѡhere yoս are getting your info, howеᴠer
    great topic. I muѕt spend a wһile finding out mᥙch more oг figuring ߋut mоre.
    Τhanks for ցreat informatіon I ᴡas ⲟn the
    lookout for this info fοr my mission.

  12. You’ve made some decent points there. I checked on the web for more information about the issue and found most
    individuals will go along with your views on this
    web site.

Comments are closed.