Summer '26: Apex Classes Enforce Sharing Rules by Default — Secure by Default in API v67
May 4 · 12 min read · You have probably seen an Apex class like this:
public class AccountService {
public static List<Account> getAccounts() {
return [
SELECT Id, Name
FROM Account