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. Attractive component to content. I simply stumbled upon your blog and in accession capital to claim that I
    get actually enjoyed account your weblog posts. Anyway I will be subscribing to your augment and even I
    success you access consistently fast.

  2. Great article! This is the kind of information that are supposed to be shared across the
    internet. Disgrace on the search engines for no longer
    positioning this post upper! Come on over and discuss with my web site .
    Thanks =)

  3. When I initially commented I clicked the “Notify me when new comments are added” checkbox and now each time a comment is added I
    get several emails with the same comment. Is there any way you can remove people
    from that service? Many thanks!

  4. Thank you for any other magnificent article. The place else may just
    anybody get that type of information in such a perfect
    means of writing? I have a presentation subsequent week, and I am at the search for such info.

  5. It’s awesome to visit this web site
    and reading the views of all mates regarding this piece of writing, while I am alao keen of getting experience.

    site

  6. Does your site have a contact page? I’m having trouble locating it but, I’d
    like to send you an e-mail. I’ve got some creative ideas for your
    blog you might be interested in hearing. Either
    way, great blog and I look forward to seeing it grow over time.

  7. Hi there, I discovered your blog by the use of Google while looking for a similar matter, your website got here up,
    it appears to be like good. I’ve bookmarked it in my google bookmarks.

    Hello there, just became aware of your weblog thru Google, and located
    that it’s really informative. I’m gonna be careful for brussels.
    I will appreciate if you happen to proceed this in future.
    Numerous people will be benefited out of your writing.
    Cheers!

  8. Hi, Neat post. There is a problem with your website in web explorer, might test this?
    IE still is the market chief and a good section of other folks will omit your excellent writing because of
    this problem.

  9. Hey there! I know this is kinda off topic however I’d figured I’d ask.
    Would you be interested in exchanging links or maybe guest
    writing a blog article or vice-versa? My blog addresses a lot of the same subjects as yours and I think we could
    greatly benefit from each other. If you might be interested
    feel free to shoot me an e-mail. I look forward to hearing from you!

    Terrific blog by the way!

  10. of course like your website however you need to check the spelling on quite a few of your posts.
    Many of them are rife with spelling problems and I in finding it very bothersome to
    inform the reality however I will surely come again again.

    Take a look at my webpage: 自拍A片

Comments are closed.