From 107813a8df97e11f19903ab68640e785a4411c90 Mon Sep 17 00:00:00 2001 From: Steve Hetzel Date: Wed, 5 Jun 2024 10:38:03 -0600 Subject: [PATCH 1/8] Sh/better mdapi tmp retrieve (#1331) * fix: better mdapi temp dir structure and more output * fix: update tests for code changes --- src/client/metadataApiDeploy.ts | 3 +++ src/client/metadataApiRetrieve.ts | 25 ++++++++++++++++++++----- src/client/metadataTransfer.ts | 16 +++++++++------- test/client/metadataApiDeploy.test.ts | 7 +++++-- test/client/metadataApiRetrieve.test.ts | 9 +++++++-- 5 files changed, 44 insertions(+), 16 deletions(-) diff --git a/src/client/metadataApiDeploy.ts b/src/client/metadataApiDeploy.ts index b02a04ec84..016e4ccb33 100644 --- a/src/client/metadataApiDeploy.ts +++ b/src/client/metadataApiDeploy.ts @@ -104,6 +104,9 @@ export class MetadataApiDeploy extends MetadataTransfer< this.options = Object.assign({}, options); this.isRestDeploy = !!options.apiOptions?.rest; this.registry = options.registry ?? new RegistryAccess(); + if (this.mdapiTempDir) { + this.mdapiTempDir = join(this.mdapiTempDir, `${new Date().toISOString()}_deploy`); + } } /** diff --git a/src/client/metadataApiRetrieve.ts b/src/client/metadataApiRetrieve.ts index 9c21b038ae..c9f7b7beed 100644 --- a/src/client/metadataApiRetrieve.ts +++ b/src/client/metadataApiRetrieve.ts @@ -4,7 +4,7 @@ * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ -import * as path from 'node:path'; +import { join, parse } from 'node:path'; import fs from 'graceful-fs'; import JSZip from 'jszip'; import { asBoolean, isString } from '@salesforce/ts-types'; @@ -125,6 +125,9 @@ export class MetadataApiRetrieve extends MetadataTransfer< public constructor(options: MetadataApiRetrieveOptions) { super(options); this.options = Object.assign({}, MetadataApiRetrieve.DEFAULT_OPTIONS, options); + if (this.mdapiTempDir) { + this.mdapiTempDir = join(this.mdapiTempDir, `${new Date().toISOString()}_retrieve`); + } } /** @@ -172,6 +175,18 @@ export class MetadataApiRetrieve extends MetadataTransfer< if (isMdapiRetrieve) { await handleMdapiResponse(this.options, zipFileContents); } else { + // If mdapiTempDir is set, write the raw retrieve result to the temp dir + if (this.mdapiTempDir && zipFileContents) { + const outputDir = join(this.mdapiTempDir, 'metadata'); + fs.mkdirSync(outputDir, { recursive: true }); + const mdapiTempOptions = { + usernameOrConnection: this.options.usernameOrConnection, + output: outputDir, + unzip: true, + }; + await handleMdapiResponse(mdapiTempOptions, zipFileContents); + } + ({ componentSet, partialDeleteFileResponses } = await extract({ zip: zipFileContents, options: this.options, @@ -272,22 +287,22 @@ export type ScopedPostRetrieve = { const handleMdapiResponse = async (options: MetadataApiRetrieveOptions, zipFileContents: Buffer): Promise => { const name = options.zipFileName ?? 'unpackaged.zip'; - const zipFilePath = path.join(options.output, name); + const zipFilePath = join(options.output, name); fs.writeFileSync(zipFilePath, zipFileContents); if (options.unzip) { const zip = await JSZip.loadAsync(zipFileContents, { base64: true, createFolders: true }); - const extractPath = path.join(options.output, path.parse(name).name); + const extractPath = join(options.output, parse(name).name); fs.mkdirSync(extractPath, { recursive: true }); for (const filePath of Object.keys(zip.files)) { const zipObj = zip.file(filePath); if (!zipObj || zipObj?.dir) { - fs.mkdirSync(path.join(extractPath, filePath), { recursive: true }); + fs.mkdirSync(join(extractPath, filePath), { recursive: true }); } else { // eslint-disable-next-line no-await-in-loop const content = await zipObj?.async('nodebuffer'); if (content) { - fs.writeFileSync(path.join(extractPath, filePath), content); + fs.writeFileSync(join(extractPath, filePath), content); } } } diff --git a/src/client/metadataTransfer.ts b/src/client/metadataTransfer.ts index 4db4db9724..8e1fe25b62 100644 --- a/src/client/metadataTransfer.ts +++ b/src/client/metadataTransfer.ts @@ -42,6 +42,7 @@ export abstract class MetadataTransfer< protected components?: ComponentSet; protected logger: Logger; protected canceled = false; + protected mdapiTempDir?: string; private transferId: Options['id']; private event = new EventEmitter(); private usernameOrConnection: string | Connection; @@ -53,6 +54,7 @@ export abstract class MetadataTransfer< this.apiVersion = apiVersion; this.transferId = id; this.logger = Logger.childFromRoot(this.constructor.name); + this.mdapiTempDir = process.env.SF_MDAPI_TEMP_DIR; } // if you passed in an id, you don't have to worry about whether there'll be one if you ask for it @@ -160,24 +162,24 @@ export abstract class MetadataTransfer< } protected async maybeSaveTempDirectory(target: SfdxFileFormat, cs?: ComponentSet): Promise { - const mdapiTempDir = process.env.SF_MDAPI_TEMP_DIR; - if (mdapiTempDir) { + if (this.mdapiTempDir) { await Lifecycle.getInstance().emitWarning( 'The SF_MDAPI_TEMP_DIR environment variable is set, which may degrade performance' ); this.logger.debug( - `Converting metadata to: ${mdapiTempDir} because the SF_MDAPI_TEMP_DIR environment variable is set` + `Converting metadata to: ${this.mdapiTempDir} because the SF_MDAPI_TEMP_DIR environment variable is set` ); try { const source = cs ?? this.components ?? new ComponentSet(); - const converter = new MetadataConverter(); - await converter.convert(source, target, { + const outputDirectory = join(this.mdapiTempDir, target); + await new MetadataConverter().convert(source, target, { type: 'directory', - outputDirectory: mdapiTempDir, + outputDirectory, + genUniqueDir: false, }); if (target === 'source') { // for source convert the package.xml isn't included so write it separately - await fs.promises.writeFile(join(mdapiTempDir, 'package.xml'), await source.getPackageXml()); + await fs.promises.writeFile(join(outputDirectory, 'package.xml'), await source.getPackageXml()); } } catch (e) { this.logger.debug(e); diff --git a/test/client/metadataApiDeploy.test.ts b/test/client/metadataApiDeploy.test.ts index 2ac5c773ee..ed8f96bbfe 100644 --- a/test/client/metadataApiDeploy.test.ts +++ b/test/client/metadataApiDeploy.test.ts @@ -4,7 +4,7 @@ * Licensed under the BSD 3-Clause license. * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ -import { basename, join } from 'node:path'; +import { basename, join, sep } from 'node:path'; import { MockTestOrgData, TestContext } from '@salesforce/core/testSetup'; import chai, { assert, expect } from 'chai'; import { AnyJson, getString } from '@salesforce/ts-types'; @@ -100,7 +100,10 @@ describe('MetadataApiDeploy', () => { expect(deployStub.calledOnce).to.be.true; expect(deployStub.firstCall.args[0]).to.equal(zipBuffer); - expect(getString(convertStub.secondCall.args[2], 'outputDirectory', '')).to.equal('test'); + // @ts-expect-error protected property + const expectedDir = join(operation.mdapiTempDir, 'metadata'); + expect(expectedDir.startsWith(`test${sep}`)).to.be.true; + expect(getString(convertStub.secondCall.args[2], 'outputDirectory', '')).to.equal(expectedDir); } finally { delete process.env.SF_MDAPI_TEMP_DIR; } diff --git a/test/client/metadataApiRetrieve.test.ts b/test/client/metadataApiRetrieve.test.ts index 1c4d4ca046..5ae15f0cf7 100644 --- a/test/client/metadataApiRetrieve.test.ts +++ b/test/client/metadataApiRetrieve.test.ts @@ -5,7 +5,7 @@ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause */ import { fail } from 'node:assert'; -import { join } from 'node:path'; +import { join, sep } from 'node:path'; import { Messages } from '@salesforce/core'; import { assert, expect } from 'chai'; import chai = require('chai'); @@ -311,11 +311,16 @@ describe('MetadataApiRetrieve', () => { successes: toRetrieve, }); $$.SANDBOX.stub(fs.promises, 'writeFile'); + $$.SANDBOX.stub(fs, 'mkdirSync'); + $$.SANDBOX.stub(fs, 'writeFileSync'); await operation.start(); await operation.pollStatus(); - expect(getString(convertStub.secondCall.args[2], 'outputDirectory', '')).to.equal('test'); + // @ts-expect-error protected property + const expectedDir = join(operation.mdapiTempDir, 'source'); + expect(expectedDir.startsWith(`test${sep}`)).to.be.true; + expect(getString(convertStub.secondCall.args[2], 'outputDirectory', '')).to.equal(expectedDir); } finally { delete process.env.SF_MDAPI_TEMP_DIR; } From db3d7799863fde8dee9173e9d6911882853253d5 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Wed, 5 Jun 2024 22:07:14 +0000 Subject: [PATCH 2/8] chore: auto-update metadata coverage in METADATA_SUPPORT.md [no ci] --- METADATA_SUPPORT.md | 1017 ++++++++++++++++++++++++++----------------- 1 file changed, 614 insertions(+), 403 deletions(-) diff --git a/METADATA_SUPPORT.md b/METADATA_SUPPORT.md index 53f490ddff..957cba3585 100644 --- a/METADATA_SUPPORT.md +++ b/METADATA_SUPPORT.md @@ -15,8 +15,620 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t ## Next Release (v61) -> **Note** -> v61 coverage not available at this time +v61 introduces the following new types. Here's their current level of support + +|Metadata Type|Support|Notes| +|:---|:---|:---| +|AIApplication|✅|| +|AIApplicationConfig|✅|| +|AIReplyRecommendationsSettings|✅|| +|AIScoringModelDefVersion|✅|| +|AIScoringModelDefinition|✅|| +|AIUsecaseDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|AccountForecastSettings|✅|| +|AccountIntelligenceSettings|✅|| +|AccountRelationshipShareRule|✅|| +|AccountSettings|✅|| +|AccountingFieldMapping|✅|| +|AccountingModelConfig|✅|| +|AccountingSettings|✅|| +|AcctMgrTargetSettings|✅|| +|ActionLauncherItemDef|✅|| +|ActionLinkGroupTemplate|✅|| +|ActionPlanTemplate|✅|| +|ActionableEventOrchDef|✅|| +|ActionableEventTypeDef|✅|| +|ActionableListDefinition|✅|| +|ActionsSettings|✅|| +|ActivationPlatform|✅|| +|ActivitiesSettings|✅|| +|ActnblListKeyPrfmIndDef|✅|| +|AddressSettings|✅|| +|AdvAccountForecastSet|✅|| +|AdvAcctForecastDimSource|✅|| +|AdvAcctForecastPeriodGroup|✅|| +|AffinityScoreDefinition|✅|| +|Ai4mSettings|✅|| +|AnalyticSnapshot|✅|| +|AnalyticsSettings|✅|| +|AnimationRule|✅|| +|ApexClass|✅|| +|ApexComponent|✅|| +|ApexEmailNotifications|✅|| +|ApexPage|✅|| +|ApexSettings|✅|| +|ApexTestSuite|✅|| +|ApexTrigger|✅|| +|AppAnalyticsSettings|✅|| +|AppExperienceSettings|✅|| +|AppMenu|✅|| +|ApplicationRecordTypeConfig|✅|| +|ApplicationSubtypeDefinition|✅|| +|AppointmentAssignmentPolicy|✅|| +|AppointmentSchedulingPolicy|✅|| +|ApprovalProcess|✅|| +|AssessmentConfiguration|❌|Not supported, but support could be added| +|AssessmentQuestion|✅|| +|AssessmentQuestionSet|✅|| +|AssignmentRules|✅|| +|AssistantContextItem|✅|| +|AssistantDefinition|✅|| +|AssistantSkillQuickAction|✅|| +|AssistantSkillSobjectAction|✅|| +|AssistantVersion|✅|| +|AssociationEngineSettings|✅|| +|Audience|✅|| +|AuraDefinitionBundle|✅|| +|AuthProvider|✅|| +|AutoResponseRules|✅|| +|AutomatedContactsSettings|✅|| +|BatchCalcJobDefinition|✅|| +|BatchProcessJobDefinition|✅|| +|BenefitAction|✅|| +|BlacklistedConsumer|✅|| +|BldgEnrgyIntensityCnfg|✅|| +|BlockchainSettings|✅|| +|Bot|✅|| +|BotBlock|✅|| +|BotBlockVersion|❌|Not supported, but support could be added| +|BotSettings|✅|| +|BotTemplate|✅|| +|BotVersion|✅|| +|BranchManagementSettings|✅|| +|BrandingSet|✅|| +|BriefcaseDefinition|✅|| +|BusinessHoursSettings|✅|| +|BusinessProcess|✅|| +|BusinessProcessGroup|✅|| +|BusinessProcessTypeDefinition|✅|| +|CMSConnectSource|✅|| +|CallCenter|✅|| +|CallCenterRoutingMap|✅|| +|CallCoachingMediaProvider|⚠️|Supports deploy/retrieve but not source tracking| +|CampaignInfluenceModel|✅|| +|CampaignSettings|✅|| +|CanvasMetadata|✅|| +|CareBenefitVerifySettings|✅|| +|CareLimitType|✅|| +|CareProviderAfflRoleConfig|✅|| +|CareProviderSearchConfig|✅|| +|CareRequestConfiguration|✅|| +|CareSystemFieldMapping|✅|| +|CaseSettings|✅|| +|CaseSubjectParticle|✅|| +|Certificate|✅|| +|ChannelLayout|✅|| +|ChannelObjectLinkingRule|✅|| +|ChatterAnswersSettings|✅|| +|ChatterEmailsMDSettings|✅|| +|ChatterExtension|✅|| +|ChatterSettings|✅|| +|ClaimFinancialSettings|✅|| +|ClaimMgmtFoundationEnabledSettings|✅|| +|ClauseCatgConfiguration|✅|| +|CleanDataService|✅|| +|CodeBuilderSettings|✅|| +|CollectionsDashboardSettings|✅|| +|CommandAction|✅|| +|CommerceSettings|✅|| +|CommsServiceConsoleSettings|✅|| +|CommunitiesSettings|✅|| +|Community|✅|| +|CommunityTemplateDefinition|✅|| +|CommunityThemeDefinition|✅|| +|CompactLayout|✅|| +|CompanySettings|✅|| +|ConnectedApp|✅|| +|ConnectedAppSettings|✅|| +|ContentAsset|✅|| +|ContentSettings|✅|| +|ContextDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|ContextUseCaseMapping|❌|Not supported, but support could be added| +|ContractSettings|✅|| +|ContractType|❌|Not supported, but support could be added| +|ConversationChannelDefinition|✅|| +|ConversationServiceIntegrationSettings|✅|| +|ConversationVendorInfo|✅|| +|ConversationalIntelligenceSettings|✅|| +|CorsWhitelistOrigin|✅|| +|CspTrustedSite|✅|| +|CurrencySettings|✅|| +|CustomAddressFieldSettings|✅|| +|CustomApplication|✅|| +|CustomApplicationComponent|✅|| +|CustomFeedFilter|✅|| +|CustomField|✅|| +|CustomHelpMenuSection|✅|| +|CustomIndex|✅|| +|CustomLabels|✅|| +|CustomMetadata|✅|| +|CustomNotificationType|✅|| +|CustomObject|✅|| +|CustomObjectTranslation|✅|| +|CustomPageWebLink|✅|| +|CustomPermission|✅|| +|CustomSite|✅|| +|CustomTab|✅|| +|CustomValue|❌|Not supported, but support could be added| +|CustomerDataPlatformSettings|✅|| +|CustomizablePropensityScoringSettings|✅|| +|Dashboard|✅|| +|DashboardFolder|✅|| +|DataCalcInsightTemplate|✅|| +|DataCategoryGroup|✅|| +|DataConnectionParamTmpl|❌|Not supported, but support could be added| +|DataConnectorIngestApi|✅|| +|DataConnectorS3|✅|| +|DataDotComSettings|✅|| +|DataImportManagementSettings|✅|| +|DataKitObjectTemplate|✅|| +|DataPackageKitDefinition|✅|| +|DataPackageKitObject|✅|| +|DataSource|✅|| +|DataSourceBundleDefinition|✅|| +|DataSourceObject|✅|| +|DataSourceTenant|✅|| +|DataSrcDataModelFieldMap|✅|| +|DataStreamDefinition|✅|| +|DataStreamTemplate|✅|| +|DataWeaveResource|✅|| +|DecisionMatrixDefinition|✅|| +|DecisionMatrixDefinitionVersion|✅|| +|DecisionTable|✅|| +|DecisionTableDatasetLink|✅|| +|DelegateGroup|✅|| +|DeploymentSettings|✅|| +|DevHubSettings|✅|| +|DigitalExperience|✅|| +|DigitalExperienceBundle|✅|| +|DigitalExperienceConfig|✅|| +|DisclosureDefinition|✅|| +|DisclosureDefinitionVersion|✅|| +|DisclosureType|✅|| +|DiscoveryAIModel|✅|| +|DiscoveryGoal|✅|| +|DiscoverySettings|✅|| +|DiscoveryStory|✅|| +|Document|✅|| +|DocumentCategory|✅|| +|DocumentCategoryDocumentType|✅|| +|DocumentChecklistSettings|✅|| +|DocumentFolder|✅|| +|DocumentGenerationSetting|✅|| +|DocumentTemplate|❌|Not supported, but support could be added (but not for tracking)| +|DocumentType|✅|| +|DuplicateRule|✅|| +|DynamicFormsSettings|✅|| +|DynamicFulfillmentOrchestratorSettings|✅|| +|EACSettings|✅|| +|ESignatureConfig|✅|| +|ESignatureEnvelopeConfig|✅|| +|EclairGeoData|✅|| +|EinsteinAISettings|✅|| +|EinsteinAgentSettings|✅|| +|EinsteinAssistantSettings|✅|| +|EinsteinCopilotSettings|✅|| +|EinsteinDealInsightsSettings|✅|| +|EinsteinDocumentCaptureSettings|✅|| +|EinsteinGptSettings|✅|| +|EmailAdministrationSettings|✅|| +|EmailFolder|✅|| +|EmailIntegrationSettings|✅|| +|EmailServicesFunction|✅|| +|EmailTemplate|✅|| +|EmailTemplateFolder|✅|| +|EmailTemplateSettings|✅|| +|EmbeddedServiceBranding|✅|| +|EmbeddedServiceConfig|✅|| +|EmbeddedServiceFlowConfig|✅|| +|EmbeddedServiceLiveAgent|✅|| +|EmbeddedServiceMenuSettings|✅|| +|EmployeeDataSyncProfile|❌|Not supported, but support could be added| +|EmployeeFieldAccessSettings|✅|| +|EmployeeUserSettings|✅|| +|EnablementMeasureDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|EnablementProgramDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|EnhancedNotesSettings|✅|| +|EntitlementProcess|✅|| +|EntitlementSettings|✅|| +|EntitlementTemplate|✅|| +|EscalationRules|✅|| +|EssentialsSettings|✅|| +|EventLogObjectSettings|✅|| +|EventSettings|✅|| +|ExperienceBundle|✅|| +|ExperienceBundleSettings|✅|| +|ExperiencePropertyTypeBundle|✅|| +|ExplainabilityActionDefinition|✅|| +|ExplainabilityActionVersion|✅|| +|ExplainabilityMsgTemplate|✅|| +|ExpressionSetDefinition|✅|| +|ExpressionSetDefinitionVersion|✅|| +|ExpressionSetObjectAlias|✅|| +|ExtDataTranFieldTemplate|❌|Not supported, but support could be added| +|ExtDataTranObjectTemplate|✅|| +|ExternalAIModel|✅|| +|ExternalAuthIdentityProvider|❌|Not supported, but support could be added| +|ExternalClientAppSettings|✅|| +|ExternalClientApplication|✅|| +|ExternalCredential|✅|| +|ExternalDataConnector|✅|| +|ExternalDataSource|✅|| +|ExternalDataSrcDescriptor|❌|Not supported, but support could be added| +|ExternalDataTranField|❌|Not supported, but support could be added| +|ExternalDataTranObject|❌|Not supported, but support could be added| +|ExternalDocStorageConfig|❌|Not supported, but support could be added| +|ExternalServiceRegistration|✅|| +|ExtlClntAppConfigurablePolicies|✅|| +|ExtlClntAppGlobalOauthSettings|✅|| +|ExtlClntAppMobileConfigurablePolicies|✅|| +|ExtlClntAppMobileSettings|✅|| +|ExtlClntAppNotificationSettings|✅|| +|ExtlClntAppOauthConfigurablePolicies|✅|| +|ExtlClntAppOauthSettings|✅|| +|FeatureParameterBoolean|✅|| +|FeatureParameterDate|✅|| +|FeatureParameterInteger|✅|| +|FieldRestrictionRule|✅|| +|FieldServiceMobileExtension|✅|| +|FieldServiceSettings|✅|| +|FieldSet|✅|| +|FieldSrcTrgtRelationship|✅|| +|FileUploadAndDownloadSecuritySettings|✅|| +|FilesConnectSettings|✅|| +|FlexiPage|✅|| +|Flow|✅|| +|FlowCategory|✅|| +|FlowDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|FlowSettings|✅|| +|FlowTest|✅|| +|ForecastingFilter|✅|| +|ForecastingFilterCondition|✅|| +|ForecastingGroup|✅|| +|ForecastingObjectListSettings|✅|| +|ForecastingSettings|✅|| +|ForecastingSourceDefinition|✅|| +|ForecastingType|✅|| +|ForecastingTypeSource|✅|| +|FormulaSettings|✅|| +|FuelType|✅|| +|FuelTypeSustnUom|✅|| +|FunctionReference|⚠️|Supports deploy/retrieve but not source tracking| +|FundraisingConfig|✅|| +|GatewayProviderPaymentMethodType|✅|| +|GenAiFunction|✅|| +|GenAiPlanner|✅|| +|GenAiPlugin|❌|Not supported, but support could be added| +|GenAiPluginInstructionDef|❌|Not supported, but support could be added| +|GlobalValueSet|✅|| +|GlobalValueSetTranslation|✅|| +|GoogleAppsSettings|✅|| +|Group|✅|| +|HighVelocitySalesSettings|✅|| +|HomePageComponent|✅|| +|HomePageLayout|✅|| +|IPAddressRange|✅|| +|Icon|✅|| +|IdeasSettings|✅|| +|IdentityProviderSettings|✅|| +|IdentityVerificationProcDef|✅|| +|IframeWhiteListUrlSettings|✅|| +|InboundCertificate|✅|| +|InboundNetworkConnection|✅|| +|IncidentMgmtSettings|✅|| +|IncludeEstTaxInQuoteCPQSettings|✅|| +|IncludeEstTaxInQuoteSettings|✅|| +|Index|⚠️|Supports deploy/retrieve but not source tracking| +|IndustriesAutomotiveSettings|✅|| +|IndustriesContextSettings|✅|| +|IndustriesEinsteinFeatureSettings|✅|| +|IndustriesEventOrchSettings|✅|| +|IndustriesFieldServiceSettings|✅|| +|IndustriesGamificationSettings|✅|| +|IndustriesLoyaltySettings|✅|| +|IndustriesManufacturingSettings|✅|| +|IndustriesPricingSettings|✅|| +|IndustriesSettings|✅|| +|IndustriesUnifiedPromotionsSettings|✅|| +|InstalledPackage|⚠️|Supports deploy/retrieve but not source tracking| +|IntegrationProviderDef|✅|| +|InterestTaggingSettings|✅|| +|InternalDataConnector|✅|| +|InvLatePymntRiskCalcSettings|✅|| +|InventorySettings|✅|| +|InvocableActionSettings|✅|| +|IoTSettings|✅|| +|KeywordList|✅|| +|KnowledgeGenerationSettings|✅|| +|KnowledgeSettings|✅|| +|LanguageSettings|✅|| +|LargeQuotesandOrdersForRlmSettings|✅|| +|Layout|✅|| +|LeadConfigSettings|✅|| +|LeadConvertSettings|✅|| +|LearningAchievementConfig|❌|Not supported, but support could be added| +|Letterhead|✅|| +|LicensingSettings|✅|| +|LightningBolt|✅|| +|LightningComponentBundle|✅|| +|LightningExperienceSettings|✅|| +|LightningExperienceTheme|✅|| +|LightningMessageChannel|✅|| +|LightningOnboardingConfig|✅|| +|ListView|✅|| +|LiveAgentSettings|✅|| +|LiveChatAgentConfig|✅|| +|LiveChatButton|✅|| +|LiveChatDeployment|✅|| +|LiveChatSensitiveDataRule|✅|| +|LiveMessageSettings|✅|| +|LocationUse|✅|| +|LoyaltyProgramSetup|⚠️|Supports deploy/retrieve but not source tracking| +|MacroSettings|✅|| +|MailMergeSettings|✅|| +|ManagedContentType|⚠️|Supports deploy/retrieve but not source tracking| +|ManagedEventSubscription|✅|| +|ManagedTopics|✅|| +|MapsAndLocationSettings|✅|| +|MarketSegmentDefinition|✅|| +|MarketingAppExtActivity|❌|Not supported, but support could be added| +|MarketingAppExtension|✅|| +|MatchingRules|✅|| +|MediaAdSalesSettings|✅|| +|MeetingsSettings|✅|| +|MessagingChannel|⚠️|Supports deploy/retrieve but not source tracking| +|MfgProgramTemplate|✅|| +|MfgServiceConsoleSettings|✅|| +|MilestoneType|✅|| +|MktCalcInsightObjectDef|✅|| +|MktDataConnection|❌|Not supported, but support could be added| +|MktDataConnectionCred|❌|Not supported, but support could be added| +|MktDataConnectionParam|❌|Not supported, but support could be added| +|MktDataConnectionSrcParam|❌|Not supported, but support could be added| +|MktDataTranObject|✅|| +|MlDomain|✅|| +|MobSecurityCertPinConfig|✅|| +|MobileApplicationDetail|✅|| +|MobileSecurityAssignment|✅|| +|MobileSecurityPolicy|✅|| +|MobileSettings|✅|| +|ModerationRule|✅|| +|MutingPermissionSet|✅|| +|MyDomainDiscoverableLogin|✅|| +|MyDomainSettings|✅|| +|NameSettings|✅|| +|NamedCredential|✅|| +|NavigationMenu|✅|| +|Network|✅|| +|NetworkBranding|✅|| +|NotificationTypeConfig|✅|| +|NotificationsSettings|✅|| +|OauthCustomScope|✅|| +|OauthOidcSettings|✅|| +|OauthTokenExchangeHandler|✅|| +|ObjectHierarchyRelationship|✅|| +|ObjectLinkingSettings|✅|| +|ObjectSourceTargetMap|✅|| +|OcrSampleDocument|✅|| +|OcrTemplate|✅|| +|OmniChannelPricingSettings|✅|| +|OmniChannelSettings|✅|| +|OmniDataTransform|⚠️|Supports deploy/retrieve but not source tracking| +|OmniExtTrackingDef|⚠️|Supports deploy/retrieve but not source tracking| +|OmniIntegrationProcedure|⚠️|Supports deploy/retrieve but not source tracking| +|OmniInteractionAccessConfig|⚠️|Supports deploy/retrieve but not source tracking| +|OmniInteractionConfig|⚠️|Supports deploy/retrieve but not source tracking| +|OmniScript|⚠️|Supports deploy/retrieve but not source tracking| +|OmniSupervisorConfig|✅|| +|OmniTrackingGroup|⚠️|Supports deploy/retrieve but not source tracking| +|OmniUiCard|⚠️|Supports deploy/retrieve but not source tracking| +|OnlineSalesSettings|✅|| +|OpportunityScoreSettings|✅|| +|OpportunitySettings|✅|| +|OrderManagementSettings|✅|| +|OrderSettings|✅|| +|OrgSettings|✅|| +|OutboundNetworkConnection|✅|| +|PardotEinsteinSettings|✅|| +|PardotSettings|✅|| +|ParticipantRole|✅|| +|PartyDataModelSettings|✅|| +|PathAssistant|✅|| +|PathAssistantSettings|✅|| +|PaymentGatewayProvider|✅|| +|PaymentsManagementEnabledSettings|✅|| +|PaymentsSettings|✅|| +|PermissionSet|✅|| +|PermissionSetGroup|✅|| +|PermissionSetLicenseDefinition|✅|| +|PersonAccountOwnerPowerUser|✅|| +|PicklistSettings|✅|| +|PicklistValue|❌|Not supported, but support could be added| +|PipelineInspMetricConfig|✅|| +|PlatformCachePartition|✅|| +|PlatformEventChannel|✅|| +|PlatformEventChannelMember|✅|| +|PlatformEventSettings|✅|| +|PlatformEventSubscriberConfig|✅|| +|PlatformSlackSettings|✅|| +|PortalDelegablePermissionSet|❌|Not supported, but support could be added| +|PortalsSettings|✅|| +|PostTemplate|✅|| +|PredictionBuilderSettings|✅|| +|PresenceDeclineReason|✅|| +|PresenceUserConfig|✅|| +|PricingActionParameters|⚠️|Supports deploy/retrieve but not source tracking| +|PricingRecipe|✅|| +|PrivacySettings|✅|| +|ProcessFlowMigration|✅|| +|ProductAttrDisplayConfig|❌|Not supported, but support could be added| +|ProductAttributeSet|✅|| +|ProductConfiguratorSettings|✅|| +|ProductSettings|✅|| +|ProductSpecificationRecType|❌|Not supported, but support could be added| +|ProductSpecificationType|❌|Not supported, but support could be added| +|Profile|✅|| +|ProfilePasswordPolicy|✅|| +|ProfileSessionSetting|✅|| +|Prompt|✅|| +|Queue|✅|| +|QueueRoutingConfig|✅|| +|QuickAction|✅|| +|QuickTextSettings|✅|| +|QuoteSettings|✅|| +|RealTimeEventSettings|✅|| +|RecAlrtDataSrcExpSetDef|❌|Not supported, but support could be added| +|RecommendationBuilderSettings|✅|| +|RecommendationStrategy|✅|| +|RecordActionDeployment|✅|| +|RecordAggregationDefinition|✅|| +|RecordAlertCategory|✅|| +|RecordAlertDataSource|✅|| +|RecordAlertTemplate|✅|| +|RecordPageSettings|✅|| +|RecordType|✅|| +|RedirectWhitelistUrl|✅|| +|ReferencedDashboard|❌|Not supported, but support could be added| +|ReferralMarketingSettings|✅|| +|RegisteredExternalService|✅|| +|RelatedRecordAssocCriteria|❌|Not supported, but support could be added| +|RelationshipGraphDefinition|✅|| +|RemoteSiteSetting|✅|| +|Report|✅|| +|ReportFolder|✅|| +|ReportType|✅|| +|RestrictionRule|✅|| +|RetailExecutionSettings|✅|| +|RetrievalSummaryDefinition|✅|| +|RevenueManagementSettings|✅|| +|Role|✅|| +|SalesAgreementSettings|✅|| +|SalesWorkQueueSettings|✅|| +|SamlSsoConfig|✅|| +|SandboxSettings|✅|| +|SceGlobalModelOptOutSettings|✅|| +|SchedulingObjective|✅|| +|SchedulingRule|✅|| +|SchemaSettings|✅|| +|ScoreCategory|✅|| +|SearchCustomization|⚠️|Supports deploy/retrieve but not source tracking| +|SearchOrgWideObjectConfig|⚠️|Supports deploy/retrieve but not source tracking| +|SearchSettings|✅|| +|SecuritySettings|✅|| +|ServiceAISetupDefinition|✅|| +|ServiceAISetupField|✅|| +|ServiceChannel|✅|| +|ServiceCloudVoiceSettings|✅|| +|ServicePresenceStatus|✅|| +|ServiceProcess|✅|| +|ServiceSetupAssistantSettings|✅|| +|SharingCriteriaRule|✅|| +|SharingGuestRule|✅|| +|SharingOwnerRule|✅|| +|SharingReason|✅|| +|SharingRules|⚠️|Supports deploy/retrieve but not source tracking| +|SharingSet|✅|| +|SharingSettings|✅|| +|SharingTerritoryRule|✅|| +|SiteDotCom|✅|| +|SiteSettings|✅|| +|Skill|✅|| +|SkillType|✅|| +|SlackApp|✅|| +|SocialCustomerServiceSettings|✅|| +|SourceTrackingSettings|✅|| +|StandardValue|❌|Not supported, but support could be added| +|StandardValueSet|✅|| +|StandardValueSetTranslation|✅|| +|StaticResource|✅|| +|StnryAssetEnvSrcCnfg|✅|| +|StreamingAppDataConnector|✅|| +|SubscriptionManagementSettings|✅|| +|SurveySettings|✅|| +|SustainabilityUom|✅|| +|SustnUomConversion|✅|| +|SvcCatalogCategory|✅|| +|SvcCatalogFilterCriteria|✅|| +|SvcCatalogFulfillmentFlow|✅|| +|SvcCatalogItemDef|✅|| +|SynonymDictionary|✅|| +|SystemNotificationSettings|✅|| +|Territory|✅|| +|Territory2|✅|| +|Territory2Model|✅|| +|Territory2Rule|✅|| +|Territory2Settings|✅|| +|Territory2Type|✅|| +|TimeSheetTemplate|✅|| +|TimelineObjectDefinition|✅|| +|TopicsForObjects|✅|| +|TrailheadSettings|✅|| +|TransactionSecurityPolicy|✅|| +|Translations|✅|| +|TrialOrgSettings|✅|| +|UIObjectRelationConfig|✅|| +|UiPlugin|✅|| +|UserAccessPolicy|✅|| +|UserAuthCertificate|✅|| +|UserCriteria|✅|| +|UserEngagementSettings|✅|| +|UserInterfaceSettings|✅|| +|UserManagementSettings|✅|| +|UserProfileSearchScope|✅|| +|UserProvisioningConfig|✅|| +|ValidationRule|✅|| +|VehicleAssetEmssnSrcCnfg|✅|| +|ViewDefinition|✅|| +|VirtualVisitConfig|❌|Not supported, but support could be added| +|VoiceSettings|✅|| +|WarrantyLifecycleMgmtSettings|✅|| +|WaveAnalyticAssetCollection|❌|Not supported, but support could be added| +|WaveApplication|✅|| +|WaveComponent|✅|| +|WaveDashboard|✅|| +|WaveDataflow|✅|| +|WaveDataset|✅|| +|WaveLens|✅|| +|WaveRecipe|✅|| +|WaveTemplateBundle|✅|| +|WaveXmd|✅|| +|Web3Settings|✅|| +|WebLink|✅|| +|WebStoreBundle|✅|| +|WebStoreTemplate|✅|| +|WebToXSettings|✅|| +|WorkDotComSettings|✅|| +|WorkSkillRouting|✅|| +|Workflow|✅|| +|WorkflowAlert|✅|| +|WorkflowFieldUpdate|✅|| +|WorkflowFlowAction|❌|Not supported, but support could be added| +|WorkflowKnowledgePublish|✅|| +|WorkflowOutboundMessage|✅|| +|WorkflowRule|✅|| +|WorkflowSend|✅|| +|WorkflowTask|✅|| +|WorkforceEngagementSettings|✅|| ## Additional Types @@ -28,467 +640,66 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t > 1. settings types that are automatically supported - AccessControlPolicy -- AccountForecastSettings -- AccountingFieldMapping -- AccountingModelConfig -- AccountRelationshipShareRule -- AcctMgrTargetSettings -- ActionableEventOrchDef -- ActionableEventTypeDef -- ActionableListDefinition -- ActionLauncherItemDef -- ActionLinkGroupTemplate -- ActionPlanTemplate -- ActivationPlatform -- ActnblListKeyPrfmIndDef -- AdvAccountForecastSet -- AdvAcctForecastDimSource -- AdvAcctForecastPeriodGroup -- AffinityScoreDefinition -- AIApplication -- AIApplicationConfig - AIAssistantTemplate -- AIScoringModelDefinition -- AIScoringModelDefVersion -- AIUsecaseDefinition -- AnalyticSnapshot -- AnimationRule -- ApexClass -- ApexComponent -- ApexEmailNotifications -- ApexPage -- ApexTestSuite -- ApexTrigger -- ApplicationRecordTypeConfig -- ApplicationSubtypeDefinition -- AppMenu -- AppointmentAssignmentPolicy -- AppointmentSchedulingPolicy -- ApprovalProcess -- AssessmentQuestion -- AssessmentQuestionSet -- AssignmentRules - AssignmentRule -- AssistantContextItem -- AssistantDefinition - AssistantRecommendationType -- AssistantSkillQuickAction -- AssistantSkillSobjectAction -- AssistantVersion -- Audience -- AuraDefinitionBundle -- AuthProvider -- AutoResponseRules - AutoResponseRule -- BatchCalcJobDefinition -- BatchProcessJobDefinition -- BenefitAction -- BlacklistedConsumer -- BldgEnrgyIntensityCnfg -- Bot -- BotVersion -- BotBlock -- BotTemplate -- BrandingSet -- BriefcaseDefinition - BusinessProcessFeedbackConfiguration -- BusinessProcessGroup -- BusinessProcessTypeDefinition -- CallCenter -- CallCenterRoutingMap -- CallCoachingMediaProvider - CallCtrAgentFavTrfrDest -- CampaignInfluenceModel -- CanvasMetadata -- CareBenefitVerifySettings -- CareLimitType -- CareProviderAfflRoleConfig -- CareProviderSearchConfig -- CareRequestConfiguration -- CareSystemFieldMapping -- CaseSubjectParticle -- Certificate -- ChannelLayout -- ChannelObjectLinkingRule -- ChatterExtension -- ClauseCatgConfiguration -- CleanDataService -- CMSConnectSource -- CommandAction -- Community -- CommunityTemplateDefinition -- CommunityThemeDefinition -- ConnectedApp -- ContentAsset -- ContextDefinition -- ConversationChannelDefinition - ConversationMessageDefinition - ConversationVendorFieldDef -- ConversationVendorInfo -- CorsWhitelistOrigin -- CspTrustedSite -- CustomApplication -- CustomApplicationComponent - CustomDataType - CustomExperience -- CustomFeedFilter -- CustomHelpMenuSection -- CustomIndex -- CustomLabels - CustomLabel -- CustomMetadata -- CustomNotificationType -- CustomObject -- BusinessProcess -- CompactLayout -- CustomField -- FieldSet -- Index -- ListView -- RecordType -- SharingReason -- ValidationRule -- WebLink -- CustomObjectTranslation - CustomFieldTranslation -- CustomPageWebLink -- CustomPermission -- CustomSite -- CustomTab -- Dashboard -- DashboardFolder -- DataCalcInsightTemplate -- DataCategoryGroup -- DataConnectorIngestApi -- DataConnectorS3 - DataKitObjectDependency -- DataKitObjectTemplate -- DataPackageKitDefinition -- DataPackageKitObject - DataPipeline -- DataSource -- DataSourceBundleDefinition -- DataSourceObject -- DataSourceTenant -- DataSrcDataModelFieldMap -- DataStreamDefinition -- DataStreamTemplate -- DataWeaveResource -- DecisionMatrixDefinition -- DecisionMatrixDefinitionVersion -- DecisionTable -- DecisionTableDatasetLink -- DelegateGroup -- DigitalExperienceBundle -- DigitalExperience -- DigitalExperienceConfig -- DisclosureDefinition -- DisclosureDefinitionVersion -- DisclosureType -- DiscoveryAIModel -- DiscoveryGoal -- DiscoveryStory -- Document -- DocumentCategory -- DocumentCategoryDocumentType -- DocumentFolder -- DocumentGenerationSetting -- DocumentType -- DuplicateRule - DynamicTrigger -- EclairGeoData -- EmailFolder -- EmailServicesFunction -- EmailTemplate -- EmailTemplateFolder -- EmbeddedServiceBranding -- EmbeddedServiceConfig - EmbeddedServiceFieldService -- EmbeddedServiceFlowConfig -- EmbeddedServiceLiveAgent -- EmbeddedServiceMenuSettings -- EnablementMeasureDefinition -- EnablementProgramDefinition - EnblProgramTaskSubCategory -- EntitlementProcess -- EntitlementTemplate - EntityImplements -- EscalationRules - EscalationRule -- ESignatureConfig -- ESignatureEnvelopeConfig - EventDelivery - EventRelayConfig - EventSubscription - EventType -- ExperienceBundle -- ExperiencePropertyTypeBundle -- ExplainabilityActionDefinition -- ExplainabilityActionVersion -- ExplainabilityMsgTemplate -- ExpressionSetDefinition -- ExpressionSetDefinitionVersion - ExpressionSetMessageToken -- ExpressionSetObjectAlias -- ExtDataTranObjectTemplate - extDataTranFieldTemplate -- ExternalAIModel -- ExternalClientApplication -- ExternalCredential -- ExternalDataConnector -- ExternalDataSource -- ExternalServiceRegistration -- ExtlClntAppConfigurablePolicies -- ExtlClntAppGlobalOauthSettings -- ExtlClntAppMobileConfigurablePolicies -- ExtlClntAppMobileSettings -- ExtlClntAppNotificationSettings -- ExtlClntAppOauthConfigurablePolicies -- ExtlClntAppOauthSettings - ExtlClntAppSampleConfigurablePolicies - ExtlClntAppSampleSettings -- FeatureParameterBoolean -- FeatureParameterDate -- FeatureParameterInteger -- FieldRestrictionRule -- FieldServiceMobileExtension -- FieldSrcTrgtRelationship -- FlexiPage -- Flow -- FlowCategory -- FlowDefinition -- FlowTest -- ForecastingFilter -- ForecastingFilterCondition -- ForecastingGroup -- ForecastingSourceDefinition -- ForecastingType -- ForecastingTypeSource - Form - FormSection -- FuelType -- FuelTypeSustnUom -- FunctionReference -- FundraisingConfig -- GatewayProviderPaymentMethodType -- GenAiFunction -- GenAiPlanner - GenAiPromptTemplate - GenAiPromptTemplateActv - GlobalPicklist -- GlobalValueSet -- GlobalValueSetTranslation -- Group -- HomePageComponent -- HomePageLayout -- Icon -- IdentityVerificationProcDef -- IframeWhiteListUrlSettings -- InboundCertificate -- InboundNetworkConnection -- IndustriesManufacturingSettings - InsightType -- InstalledPackage - IntegrationHubSettings - IntegrationHubSettingsType -- IntegrationProviderDef -- InternalDataConnector - InternalOrganization -- IPAddressRange -- KeywordList -- Layout -- LeadConvertSettings - LearningItemType -- Letterhead - LicenseDefinition -- LightningBolt -- LightningComponentBundle -- LightningExperienceTheme -- LightningMessageChannel -- LightningOnboardingConfig -- LiveChatAgentConfig -- LiveChatButton -- LiveChatDeployment -- LiveChatSensitiveDataRule -- LocationUse -- LoyaltyProgramSetup -- ManagedContentType -- ManagedEventSubscription -- ManagedTopics - ManagedTopic -- MarketingAppExtension - MarketingResourceType -- MarketSegmentDefinition -- MatchingRules - MatchingRule -- MessagingChannel -- MfgProgramTemplate -- MilestoneType -- MktCalcInsightObjectDef -- MktDataTranObject - MktDataTranField - MLDataDefinition -- MlDomain - MlModelArtifact - MlModelConnection - MlModelSchema - MLPredictionDefinition - MLRecommendationDefinition -- MobileApplicationDetail -- MobileSecurityAssignment -- MobileSecurityPolicy - MobileSecurityPolicySet -- MobSecurityCertPinConfig -- ModerationRule -- MutingPermissionSet -- MyDomainDiscoverableLogin -- NamedCredential -- NavigationMenu -- Network -- NetworkBranding -- NotificationTypeConfig -- OauthCustomScope -- OauthTokenExchangeHandler -- ObjectHierarchyRelationship -- ObjectSourceTargetMap -- OcrSampleDocument -- OcrTemplate -- OmniDataTransform -- OmniExtTrackingDef -- OmniIntegrationProcedure -- OmniInteractionAccessConfig -- OmniInteractionConfig -- OmniScript -- OmniSupervisorConfig -- OmniTrackingGroup -- OmniUiCard - Orchestration - OrchestrationContext -- OutboundNetworkConnection -- ParticipantRole -- PathAssistant -- PaymentGatewayProvider -- PermissionSet -- PermissionSetGroup -- PermissionSetLicenseDefinition -- PersonAccountOwnerPowerUser -- PipelineInspMetricConfig -- PlatformCachePartition -- PlatformEventChannel -- PlatformEventChannelMember -- PlatformEventSubscriberConfig - Portal -- PostTemplate -- PresenceDeclineReason -- PresenceUserConfig -- PricingActionParameters -- PricingRecipe -- ProcessFlowMigration -- ProductAttributeSet - ProductSpecificationTypeDefinition -- Profile -- ProfilePasswordPolicy -- ProfileSessionSetting -- Prompt -- Queue -- QueueRoutingConfig -- QuickAction -- RecommendationStrategy -- RecordActionDeployment -- RecordAggregationDefinition -- RecordAlertCategory -- RecordAlertDataSource -- RecordAlertTemplate -- RedirectWhitelistUrl -- RegisteredExternalService -- RelationshipGraphDefinition -- RemoteSiteSetting -- Report -- ReportFolder -- ReportType -- RestrictionRule -- RetrievalSummaryDefinition -- Role -- SalesAgreementSettings -- SamlSsoConfig -- SchedulingObjective -- SchedulingRule - Scontrol -- ScoreCategory - SearchableObjDataSyncInfo - SearchCriteriaConfiguration -- SearchCustomization -- SearchOrgWideObjectConfig -- ServiceAISetupDefinition -- ServiceAISetupField -- ServiceChannel -- ServicePresenceStatus -- ServiceProcess - Settings -- SharingRules -- SharingCriteriaRule -- SharingGuestRule -- SharingOwnerRule -- SharingTerritoryRule -- SharingSet -- SiteDotCom -- Skill -- SkillType -- SlackApp -- StandardValueSet -- StandardValueSetTranslation -- StaticResource -- StnryAssetEnvSrcCnfg -- StreamingAppDataConnector -- SustainabilityUom -- SustnUomConversion -- SvcCatalogCategory - SvcCatalogFilterCondition -- SvcCatalogFilterCriteria -- SvcCatalogFulfillmentFlow -- SvcCatalogItemDef - SvcCatalogItemDefFiltrCrit -- SynonymDictionary -- Territory -- Territory2 -- Territory2Model -- Territory2Rule -- Territory2Type -- TimelineObjectDefinition -- TimeSheetTemplate -- TopicsForObjects -- TransactionSecurityPolicy -- Translations -- UIObjectRelationConfig -- UiPlugin - UiViewDefinition -- UserAccessPolicy -- UserAuthCertificate -- UserCriteria -- UserProfileSearchScope -- UserProvisioningConfig -- VehicleAssetEmssnSrcCnfg -- ViewDefinition - VisualizationPlugin -- WaveApplication -- WaveComponent -- WaveDashboard -- WaveDataflow -- WaveDataset -- WaveLens -- WaveRecipe -- WaveTemplateBundle -- WaveXmd -- WebStoreBundle -- WebStoreTemplate -- Workflow -- WorkflowAlert -- WorkflowFieldUpdate -- WorkflowKnowledgePublish -- WorkflowOutboundMessage -- WorkflowRule -- WorkflowSend -- WorkflowTask -- WorkSkillRouting - WorkSkillRoutingAttribute - XOrgHub From dbccee2e6e126aa874752fd933b0982e3b5c60f4 Mon Sep 17 00:00:00 2001 From: Mingxuan Zhang <132491513+mingxuanzhangsfdx@users.noreply.github.com> Date: Thu, 6 Jun 2024 09:48:50 -0700 Subject: [PATCH 3/8] chore: add automation of release and test workflow (#1334) --- .github/workflows/releaseWithCoreBundle.yml | 8 +++++++- .github/workflows/testWithCoreBundle.yml | 9 +++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/testWithCoreBundle.yml diff --git a/.github/workflows/releaseWithCoreBundle.yml b/.github/workflows/releaseWithCoreBundle.yml index 5bd376ab11..fad3504a4e 100644 --- a/.github/workflows/releaseWithCoreBundle.yml +++ b/.github/workflows/releaseWithCoreBundle.yml @@ -1,5 +1,10 @@ name: publish source-deploy-retrieve-bundle on: + workflow_run: + workflows: + - publish + types: + - completed workflow_dispatch: inputs: branch: @@ -10,7 +15,8 @@ on: jobs: call-release-workflow: + if: ${{ inputs.branch || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')}} uses: forcedotcom/bundle-publish-scripts/.github/workflows/releaseWithCoreBundle.yml@main secrets: inherit with: - branch: ${{ inputs.branch }} + branch: ${{ inputs.branch || 'main' }} diff --git a/.github/workflows/testWithCoreBundle.yml b/.github/workflows/testWithCoreBundle.yml new file mode 100644 index 0000000000..b9f504f0e8 --- /dev/null +++ b/.github/workflows/testWithCoreBundle.yml @@ -0,0 +1,9 @@ +name: Test With Core Bundle +on: + push: + branches-ignore: [main] + +jobs: + build-and-test: + uses: forcedotcom/bundle-publish-scripts/.github/workflows/validateBuildWithCoreBundle.yml@main + secrets: inherit From 9ab5c925ab9a9cc1619877f42f6696f8da7b5cda Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Thu, 6 Jun 2024 22:07:08 +0000 Subject: [PATCH 4/8] chore: auto-update metadata coverage in METADATA_SUPPORT.md [no ci] --- METADATA_SUPPORT.md | 1017 +++++++++++++++++-------------------------- 1 file changed, 403 insertions(+), 614 deletions(-) diff --git a/METADATA_SUPPORT.md b/METADATA_SUPPORT.md index 957cba3585..53f490ddff 100644 --- a/METADATA_SUPPORT.md +++ b/METADATA_SUPPORT.md @@ -15,620 +15,8 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t ## Next Release (v61) -v61 introduces the following new types. Here's their current level of support - -|Metadata Type|Support|Notes| -|:---|:---|:---| -|AIApplication|✅|| -|AIApplicationConfig|✅|| -|AIReplyRecommendationsSettings|✅|| -|AIScoringModelDefVersion|✅|| -|AIScoringModelDefinition|✅|| -|AIUsecaseDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|AccountForecastSettings|✅|| -|AccountIntelligenceSettings|✅|| -|AccountRelationshipShareRule|✅|| -|AccountSettings|✅|| -|AccountingFieldMapping|✅|| -|AccountingModelConfig|✅|| -|AccountingSettings|✅|| -|AcctMgrTargetSettings|✅|| -|ActionLauncherItemDef|✅|| -|ActionLinkGroupTemplate|✅|| -|ActionPlanTemplate|✅|| -|ActionableEventOrchDef|✅|| -|ActionableEventTypeDef|✅|| -|ActionableListDefinition|✅|| -|ActionsSettings|✅|| -|ActivationPlatform|✅|| -|ActivitiesSettings|✅|| -|ActnblListKeyPrfmIndDef|✅|| -|AddressSettings|✅|| -|AdvAccountForecastSet|✅|| -|AdvAcctForecastDimSource|✅|| -|AdvAcctForecastPeriodGroup|✅|| -|AffinityScoreDefinition|✅|| -|Ai4mSettings|✅|| -|AnalyticSnapshot|✅|| -|AnalyticsSettings|✅|| -|AnimationRule|✅|| -|ApexClass|✅|| -|ApexComponent|✅|| -|ApexEmailNotifications|✅|| -|ApexPage|✅|| -|ApexSettings|✅|| -|ApexTestSuite|✅|| -|ApexTrigger|✅|| -|AppAnalyticsSettings|✅|| -|AppExperienceSettings|✅|| -|AppMenu|✅|| -|ApplicationRecordTypeConfig|✅|| -|ApplicationSubtypeDefinition|✅|| -|AppointmentAssignmentPolicy|✅|| -|AppointmentSchedulingPolicy|✅|| -|ApprovalProcess|✅|| -|AssessmentConfiguration|❌|Not supported, but support could be added| -|AssessmentQuestion|✅|| -|AssessmentQuestionSet|✅|| -|AssignmentRules|✅|| -|AssistantContextItem|✅|| -|AssistantDefinition|✅|| -|AssistantSkillQuickAction|✅|| -|AssistantSkillSobjectAction|✅|| -|AssistantVersion|✅|| -|AssociationEngineSettings|✅|| -|Audience|✅|| -|AuraDefinitionBundle|✅|| -|AuthProvider|✅|| -|AutoResponseRules|✅|| -|AutomatedContactsSettings|✅|| -|BatchCalcJobDefinition|✅|| -|BatchProcessJobDefinition|✅|| -|BenefitAction|✅|| -|BlacklistedConsumer|✅|| -|BldgEnrgyIntensityCnfg|✅|| -|BlockchainSettings|✅|| -|Bot|✅|| -|BotBlock|✅|| -|BotBlockVersion|❌|Not supported, but support could be added| -|BotSettings|✅|| -|BotTemplate|✅|| -|BotVersion|✅|| -|BranchManagementSettings|✅|| -|BrandingSet|✅|| -|BriefcaseDefinition|✅|| -|BusinessHoursSettings|✅|| -|BusinessProcess|✅|| -|BusinessProcessGroup|✅|| -|BusinessProcessTypeDefinition|✅|| -|CMSConnectSource|✅|| -|CallCenter|✅|| -|CallCenterRoutingMap|✅|| -|CallCoachingMediaProvider|⚠️|Supports deploy/retrieve but not source tracking| -|CampaignInfluenceModel|✅|| -|CampaignSettings|✅|| -|CanvasMetadata|✅|| -|CareBenefitVerifySettings|✅|| -|CareLimitType|✅|| -|CareProviderAfflRoleConfig|✅|| -|CareProviderSearchConfig|✅|| -|CareRequestConfiguration|✅|| -|CareSystemFieldMapping|✅|| -|CaseSettings|✅|| -|CaseSubjectParticle|✅|| -|Certificate|✅|| -|ChannelLayout|✅|| -|ChannelObjectLinkingRule|✅|| -|ChatterAnswersSettings|✅|| -|ChatterEmailsMDSettings|✅|| -|ChatterExtension|✅|| -|ChatterSettings|✅|| -|ClaimFinancialSettings|✅|| -|ClaimMgmtFoundationEnabledSettings|✅|| -|ClauseCatgConfiguration|✅|| -|CleanDataService|✅|| -|CodeBuilderSettings|✅|| -|CollectionsDashboardSettings|✅|| -|CommandAction|✅|| -|CommerceSettings|✅|| -|CommsServiceConsoleSettings|✅|| -|CommunitiesSettings|✅|| -|Community|✅|| -|CommunityTemplateDefinition|✅|| -|CommunityThemeDefinition|✅|| -|CompactLayout|✅|| -|CompanySettings|✅|| -|ConnectedApp|✅|| -|ConnectedAppSettings|✅|| -|ContentAsset|✅|| -|ContentSettings|✅|| -|ContextDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|ContextUseCaseMapping|❌|Not supported, but support could be added| -|ContractSettings|✅|| -|ContractType|❌|Not supported, but support could be added| -|ConversationChannelDefinition|✅|| -|ConversationServiceIntegrationSettings|✅|| -|ConversationVendorInfo|✅|| -|ConversationalIntelligenceSettings|✅|| -|CorsWhitelistOrigin|✅|| -|CspTrustedSite|✅|| -|CurrencySettings|✅|| -|CustomAddressFieldSettings|✅|| -|CustomApplication|✅|| -|CustomApplicationComponent|✅|| -|CustomFeedFilter|✅|| -|CustomField|✅|| -|CustomHelpMenuSection|✅|| -|CustomIndex|✅|| -|CustomLabels|✅|| -|CustomMetadata|✅|| -|CustomNotificationType|✅|| -|CustomObject|✅|| -|CustomObjectTranslation|✅|| -|CustomPageWebLink|✅|| -|CustomPermission|✅|| -|CustomSite|✅|| -|CustomTab|✅|| -|CustomValue|❌|Not supported, but support could be added| -|CustomerDataPlatformSettings|✅|| -|CustomizablePropensityScoringSettings|✅|| -|Dashboard|✅|| -|DashboardFolder|✅|| -|DataCalcInsightTemplate|✅|| -|DataCategoryGroup|✅|| -|DataConnectionParamTmpl|❌|Not supported, but support could be added| -|DataConnectorIngestApi|✅|| -|DataConnectorS3|✅|| -|DataDotComSettings|✅|| -|DataImportManagementSettings|✅|| -|DataKitObjectTemplate|✅|| -|DataPackageKitDefinition|✅|| -|DataPackageKitObject|✅|| -|DataSource|✅|| -|DataSourceBundleDefinition|✅|| -|DataSourceObject|✅|| -|DataSourceTenant|✅|| -|DataSrcDataModelFieldMap|✅|| -|DataStreamDefinition|✅|| -|DataStreamTemplate|✅|| -|DataWeaveResource|✅|| -|DecisionMatrixDefinition|✅|| -|DecisionMatrixDefinitionVersion|✅|| -|DecisionTable|✅|| -|DecisionTableDatasetLink|✅|| -|DelegateGroup|✅|| -|DeploymentSettings|✅|| -|DevHubSettings|✅|| -|DigitalExperience|✅|| -|DigitalExperienceBundle|✅|| -|DigitalExperienceConfig|✅|| -|DisclosureDefinition|✅|| -|DisclosureDefinitionVersion|✅|| -|DisclosureType|✅|| -|DiscoveryAIModel|✅|| -|DiscoveryGoal|✅|| -|DiscoverySettings|✅|| -|DiscoveryStory|✅|| -|Document|✅|| -|DocumentCategory|✅|| -|DocumentCategoryDocumentType|✅|| -|DocumentChecklistSettings|✅|| -|DocumentFolder|✅|| -|DocumentGenerationSetting|✅|| -|DocumentTemplate|❌|Not supported, but support could be added (but not for tracking)| -|DocumentType|✅|| -|DuplicateRule|✅|| -|DynamicFormsSettings|✅|| -|DynamicFulfillmentOrchestratorSettings|✅|| -|EACSettings|✅|| -|ESignatureConfig|✅|| -|ESignatureEnvelopeConfig|✅|| -|EclairGeoData|✅|| -|EinsteinAISettings|✅|| -|EinsteinAgentSettings|✅|| -|EinsteinAssistantSettings|✅|| -|EinsteinCopilotSettings|✅|| -|EinsteinDealInsightsSettings|✅|| -|EinsteinDocumentCaptureSettings|✅|| -|EinsteinGptSettings|✅|| -|EmailAdministrationSettings|✅|| -|EmailFolder|✅|| -|EmailIntegrationSettings|✅|| -|EmailServicesFunction|✅|| -|EmailTemplate|✅|| -|EmailTemplateFolder|✅|| -|EmailTemplateSettings|✅|| -|EmbeddedServiceBranding|✅|| -|EmbeddedServiceConfig|✅|| -|EmbeddedServiceFlowConfig|✅|| -|EmbeddedServiceLiveAgent|✅|| -|EmbeddedServiceMenuSettings|✅|| -|EmployeeDataSyncProfile|❌|Not supported, but support could be added| -|EmployeeFieldAccessSettings|✅|| -|EmployeeUserSettings|✅|| -|EnablementMeasureDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|EnablementProgramDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|EnhancedNotesSettings|✅|| -|EntitlementProcess|✅|| -|EntitlementSettings|✅|| -|EntitlementTemplate|✅|| -|EscalationRules|✅|| -|EssentialsSettings|✅|| -|EventLogObjectSettings|✅|| -|EventSettings|✅|| -|ExperienceBundle|✅|| -|ExperienceBundleSettings|✅|| -|ExperiencePropertyTypeBundle|✅|| -|ExplainabilityActionDefinition|✅|| -|ExplainabilityActionVersion|✅|| -|ExplainabilityMsgTemplate|✅|| -|ExpressionSetDefinition|✅|| -|ExpressionSetDefinitionVersion|✅|| -|ExpressionSetObjectAlias|✅|| -|ExtDataTranFieldTemplate|❌|Not supported, but support could be added| -|ExtDataTranObjectTemplate|✅|| -|ExternalAIModel|✅|| -|ExternalAuthIdentityProvider|❌|Not supported, but support could be added| -|ExternalClientAppSettings|✅|| -|ExternalClientApplication|✅|| -|ExternalCredential|✅|| -|ExternalDataConnector|✅|| -|ExternalDataSource|✅|| -|ExternalDataSrcDescriptor|❌|Not supported, but support could be added| -|ExternalDataTranField|❌|Not supported, but support could be added| -|ExternalDataTranObject|❌|Not supported, but support could be added| -|ExternalDocStorageConfig|❌|Not supported, but support could be added| -|ExternalServiceRegistration|✅|| -|ExtlClntAppConfigurablePolicies|✅|| -|ExtlClntAppGlobalOauthSettings|✅|| -|ExtlClntAppMobileConfigurablePolicies|✅|| -|ExtlClntAppMobileSettings|✅|| -|ExtlClntAppNotificationSettings|✅|| -|ExtlClntAppOauthConfigurablePolicies|✅|| -|ExtlClntAppOauthSettings|✅|| -|FeatureParameterBoolean|✅|| -|FeatureParameterDate|✅|| -|FeatureParameterInteger|✅|| -|FieldRestrictionRule|✅|| -|FieldServiceMobileExtension|✅|| -|FieldServiceSettings|✅|| -|FieldSet|✅|| -|FieldSrcTrgtRelationship|✅|| -|FileUploadAndDownloadSecuritySettings|✅|| -|FilesConnectSettings|✅|| -|FlexiPage|✅|| -|Flow|✅|| -|FlowCategory|✅|| -|FlowDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|FlowSettings|✅|| -|FlowTest|✅|| -|ForecastingFilter|✅|| -|ForecastingFilterCondition|✅|| -|ForecastingGroup|✅|| -|ForecastingObjectListSettings|✅|| -|ForecastingSettings|✅|| -|ForecastingSourceDefinition|✅|| -|ForecastingType|✅|| -|ForecastingTypeSource|✅|| -|FormulaSettings|✅|| -|FuelType|✅|| -|FuelTypeSustnUom|✅|| -|FunctionReference|⚠️|Supports deploy/retrieve but not source tracking| -|FundraisingConfig|✅|| -|GatewayProviderPaymentMethodType|✅|| -|GenAiFunction|✅|| -|GenAiPlanner|✅|| -|GenAiPlugin|❌|Not supported, but support could be added| -|GenAiPluginInstructionDef|❌|Not supported, but support could be added| -|GlobalValueSet|✅|| -|GlobalValueSetTranslation|✅|| -|GoogleAppsSettings|✅|| -|Group|✅|| -|HighVelocitySalesSettings|✅|| -|HomePageComponent|✅|| -|HomePageLayout|✅|| -|IPAddressRange|✅|| -|Icon|✅|| -|IdeasSettings|✅|| -|IdentityProviderSettings|✅|| -|IdentityVerificationProcDef|✅|| -|IframeWhiteListUrlSettings|✅|| -|InboundCertificate|✅|| -|InboundNetworkConnection|✅|| -|IncidentMgmtSettings|✅|| -|IncludeEstTaxInQuoteCPQSettings|✅|| -|IncludeEstTaxInQuoteSettings|✅|| -|Index|⚠️|Supports deploy/retrieve but not source tracking| -|IndustriesAutomotiveSettings|✅|| -|IndustriesContextSettings|✅|| -|IndustriesEinsteinFeatureSettings|✅|| -|IndustriesEventOrchSettings|✅|| -|IndustriesFieldServiceSettings|✅|| -|IndustriesGamificationSettings|✅|| -|IndustriesLoyaltySettings|✅|| -|IndustriesManufacturingSettings|✅|| -|IndustriesPricingSettings|✅|| -|IndustriesSettings|✅|| -|IndustriesUnifiedPromotionsSettings|✅|| -|InstalledPackage|⚠️|Supports deploy/retrieve but not source tracking| -|IntegrationProviderDef|✅|| -|InterestTaggingSettings|✅|| -|InternalDataConnector|✅|| -|InvLatePymntRiskCalcSettings|✅|| -|InventorySettings|✅|| -|InvocableActionSettings|✅|| -|IoTSettings|✅|| -|KeywordList|✅|| -|KnowledgeGenerationSettings|✅|| -|KnowledgeSettings|✅|| -|LanguageSettings|✅|| -|LargeQuotesandOrdersForRlmSettings|✅|| -|Layout|✅|| -|LeadConfigSettings|✅|| -|LeadConvertSettings|✅|| -|LearningAchievementConfig|❌|Not supported, but support could be added| -|Letterhead|✅|| -|LicensingSettings|✅|| -|LightningBolt|✅|| -|LightningComponentBundle|✅|| -|LightningExperienceSettings|✅|| -|LightningExperienceTheme|✅|| -|LightningMessageChannel|✅|| -|LightningOnboardingConfig|✅|| -|ListView|✅|| -|LiveAgentSettings|✅|| -|LiveChatAgentConfig|✅|| -|LiveChatButton|✅|| -|LiveChatDeployment|✅|| -|LiveChatSensitiveDataRule|✅|| -|LiveMessageSettings|✅|| -|LocationUse|✅|| -|LoyaltyProgramSetup|⚠️|Supports deploy/retrieve but not source tracking| -|MacroSettings|✅|| -|MailMergeSettings|✅|| -|ManagedContentType|⚠️|Supports deploy/retrieve but not source tracking| -|ManagedEventSubscription|✅|| -|ManagedTopics|✅|| -|MapsAndLocationSettings|✅|| -|MarketSegmentDefinition|✅|| -|MarketingAppExtActivity|❌|Not supported, but support could be added| -|MarketingAppExtension|✅|| -|MatchingRules|✅|| -|MediaAdSalesSettings|✅|| -|MeetingsSettings|✅|| -|MessagingChannel|⚠️|Supports deploy/retrieve but not source tracking| -|MfgProgramTemplate|✅|| -|MfgServiceConsoleSettings|✅|| -|MilestoneType|✅|| -|MktCalcInsightObjectDef|✅|| -|MktDataConnection|❌|Not supported, but support could be added| -|MktDataConnectionCred|❌|Not supported, but support could be added| -|MktDataConnectionParam|❌|Not supported, but support could be added| -|MktDataConnectionSrcParam|❌|Not supported, but support could be added| -|MktDataTranObject|✅|| -|MlDomain|✅|| -|MobSecurityCertPinConfig|✅|| -|MobileApplicationDetail|✅|| -|MobileSecurityAssignment|✅|| -|MobileSecurityPolicy|✅|| -|MobileSettings|✅|| -|ModerationRule|✅|| -|MutingPermissionSet|✅|| -|MyDomainDiscoverableLogin|✅|| -|MyDomainSettings|✅|| -|NameSettings|✅|| -|NamedCredential|✅|| -|NavigationMenu|✅|| -|Network|✅|| -|NetworkBranding|✅|| -|NotificationTypeConfig|✅|| -|NotificationsSettings|✅|| -|OauthCustomScope|✅|| -|OauthOidcSettings|✅|| -|OauthTokenExchangeHandler|✅|| -|ObjectHierarchyRelationship|✅|| -|ObjectLinkingSettings|✅|| -|ObjectSourceTargetMap|✅|| -|OcrSampleDocument|✅|| -|OcrTemplate|✅|| -|OmniChannelPricingSettings|✅|| -|OmniChannelSettings|✅|| -|OmniDataTransform|⚠️|Supports deploy/retrieve but not source tracking| -|OmniExtTrackingDef|⚠️|Supports deploy/retrieve but not source tracking| -|OmniIntegrationProcedure|⚠️|Supports deploy/retrieve but not source tracking| -|OmniInteractionAccessConfig|⚠️|Supports deploy/retrieve but not source tracking| -|OmniInteractionConfig|⚠️|Supports deploy/retrieve but not source tracking| -|OmniScript|⚠️|Supports deploy/retrieve but not source tracking| -|OmniSupervisorConfig|✅|| -|OmniTrackingGroup|⚠️|Supports deploy/retrieve but not source tracking| -|OmniUiCard|⚠️|Supports deploy/retrieve but not source tracking| -|OnlineSalesSettings|✅|| -|OpportunityScoreSettings|✅|| -|OpportunitySettings|✅|| -|OrderManagementSettings|✅|| -|OrderSettings|✅|| -|OrgSettings|✅|| -|OutboundNetworkConnection|✅|| -|PardotEinsteinSettings|✅|| -|PardotSettings|✅|| -|ParticipantRole|✅|| -|PartyDataModelSettings|✅|| -|PathAssistant|✅|| -|PathAssistantSettings|✅|| -|PaymentGatewayProvider|✅|| -|PaymentsManagementEnabledSettings|✅|| -|PaymentsSettings|✅|| -|PermissionSet|✅|| -|PermissionSetGroup|✅|| -|PermissionSetLicenseDefinition|✅|| -|PersonAccountOwnerPowerUser|✅|| -|PicklistSettings|✅|| -|PicklistValue|❌|Not supported, but support could be added| -|PipelineInspMetricConfig|✅|| -|PlatformCachePartition|✅|| -|PlatformEventChannel|✅|| -|PlatformEventChannelMember|✅|| -|PlatformEventSettings|✅|| -|PlatformEventSubscriberConfig|✅|| -|PlatformSlackSettings|✅|| -|PortalDelegablePermissionSet|❌|Not supported, but support could be added| -|PortalsSettings|✅|| -|PostTemplate|✅|| -|PredictionBuilderSettings|✅|| -|PresenceDeclineReason|✅|| -|PresenceUserConfig|✅|| -|PricingActionParameters|⚠️|Supports deploy/retrieve but not source tracking| -|PricingRecipe|✅|| -|PrivacySettings|✅|| -|ProcessFlowMigration|✅|| -|ProductAttrDisplayConfig|❌|Not supported, but support could be added| -|ProductAttributeSet|✅|| -|ProductConfiguratorSettings|✅|| -|ProductSettings|✅|| -|ProductSpecificationRecType|❌|Not supported, but support could be added| -|ProductSpecificationType|❌|Not supported, but support could be added| -|Profile|✅|| -|ProfilePasswordPolicy|✅|| -|ProfileSessionSetting|✅|| -|Prompt|✅|| -|Queue|✅|| -|QueueRoutingConfig|✅|| -|QuickAction|✅|| -|QuickTextSettings|✅|| -|QuoteSettings|✅|| -|RealTimeEventSettings|✅|| -|RecAlrtDataSrcExpSetDef|❌|Not supported, but support could be added| -|RecommendationBuilderSettings|✅|| -|RecommendationStrategy|✅|| -|RecordActionDeployment|✅|| -|RecordAggregationDefinition|✅|| -|RecordAlertCategory|✅|| -|RecordAlertDataSource|✅|| -|RecordAlertTemplate|✅|| -|RecordPageSettings|✅|| -|RecordType|✅|| -|RedirectWhitelistUrl|✅|| -|ReferencedDashboard|❌|Not supported, but support could be added| -|ReferralMarketingSettings|✅|| -|RegisteredExternalService|✅|| -|RelatedRecordAssocCriteria|❌|Not supported, but support could be added| -|RelationshipGraphDefinition|✅|| -|RemoteSiteSetting|✅|| -|Report|✅|| -|ReportFolder|✅|| -|ReportType|✅|| -|RestrictionRule|✅|| -|RetailExecutionSettings|✅|| -|RetrievalSummaryDefinition|✅|| -|RevenueManagementSettings|✅|| -|Role|✅|| -|SalesAgreementSettings|✅|| -|SalesWorkQueueSettings|✅|| -|SamlSsoConfig|✅|| -|SandboxSettings|✅|| -|SceGlobalModelOptOutSettings|✅|| -|SchedulingObjective|✅|| -|SchedulingRule|✅|| -|SchemaSettings|✅|| -|ScoreCategory|✅|| -|SearchCustomization|⚠️|Supports deploy/retrieve but not source tracking| -|SearchOrgWideObjectConfig|⚠️|Supports deploy/retrieve but not source tracking| -|SearchSettings|✅|| -|SecuritySettings|✅|| -|ServiceAISetupDefinition|✅|| -|ServiceAISetupField|✅|| -|ServiceChannel|✅|| -|ServiceCloudVoiceSettings|✅|| -|ServicePresenceStatus|✅|| -|ServiceProcess|✅|| -|ServiceSetupAssistantSettings|✅|| -|SharingCriteriaRule|✅|| -|SharingGuestRule|✅|| -|SharingOwnerRule|✅|| -|SharingReason|✅|| -|SharingRules|⚠️|Supports deploy/retrieve but not source tracking| -|SharingSet|✅|| -|SharingSettings|✅|| -|SharingTerritoryRule|✅|| -|SiteDotCom|✅|| -|SiteSettings|✅|| -|Skill|✅|| -|SkillType|✅|| -|SlackApp|✅|| -|SocialCustomerServiceSettings|✅|| -|SourceTrackingSettings|✅|| -|StandardValue|❌|Not supported, but support could be added| -|StandardValueSet|✅|| -|StandardValueSetTranslation|✅|| -|StaticResource|✅|| -|StnryAssetEnvSrcCnfg|✅|| -|StreamingAppDataConnector|✅|| -|SubscriptionManagementSettings|✅|| -|SurveySettings|✅|| -|SustainabilityUom|✅|| -|SustnUomConversion|✅|| -|SvcCatalogCategory|✅|| -|SvcCatalogFilterCriteria|✅|| -|SvcCatalogFulfillmentFlow|✅|| -|SvcCatalogItemDef|✅|| -|SynonymDictionary|✅|| -|SystemNotificationSettings|✅|| -|Territory|✅|| -|Territory2|✅|| -|Territory2Model|✅|| -|Territory2Rule|✅|| -|Territory2Settings|✅|| -|Territory2Type|✅|| -|TimeSheetTemplate|✅|| -|TimelineObjectDefinition|✅|| -|TopicsForObjects|✅|| -|TrailheadSettings|✅|| -|TransactionSecurityPolicy|✅|| -|Translations|✅|| -|TrialOrgSettings|✅|| -|UIObjectRelationConfig|✅|| -|UiPlugin|✅|| -|UserAccessPolicy|✅|| -|UserAuthCertificate|✅|| -|UserCriteria|✅|| -|UserEngagementSettings|✅|| -|UserInterfaceSettings|✅|| -|UserManagementSettings|✅|| -|UserProfileSearchScope|✅|| -|UserProvisioningConfig|✅|| -|ValidationRule|✅|| -|VehicleAssetEmssnSrcCnfg|✅|| -|ViewDefinition|✅|| -|VirtualVisitConfig|❌|Not supported, but support could be added| -|VoiceSettings|✅|| -|WarrantyLifecycleMgmtSettings|✅|| -|WaveAnalyticAssetCollection|❌|Not supported, but support could be added| -|WaveApplication|✅|| -|WaveComponent|✅|| -|WaveDashboard|✅|| -|WaveDataflow|✅|| -|WaveDataset|✅|| -|WaveLens|✅|| -|WaveRecipe|✅|| -|WaveTemplateBundle|✅|| -|WaveXmd|✅|| -|Web3Settings|✅|| -|WebLink|✅|| -|WebStoreBundle|✅|| -|WebStoreTemplate|✅|| -|WebToXSettings|✅|| -|WorkDotComSettings|✅|| -|WorkSkillRouting|✅|| -|Workflow|✅|| -|WorkflowAlert|✅|| -|WorkflowFieldUpdate|✅|| -|WorkflowFlowAction|❌|Not supported, but support could be added| -|WorkflowKnowledgePublish|✅|| -|WorkflowOutboundMessage|✅|| -|WorkflowRule|✅|| -|WorkflowSend|✅|| -|WorkflowTask|✅|| -|WorkforceEngagementSettings|✅|| +> **Note** +> v61 coverage not available at this time ## Additional Types @@ -640,66 +28,467 @@ v61 introduces the following new types. Here's their current level of support > 1. settings types that are automatically supported - AccessControlPolicy +- AccountForecastSettings +- AccountingFieldMapping +- AccountingModelConfig +- AccountRelationshipShareRule +- AcctMgrTargetSettings +- ActionableEventOrchDef +- ActionableEventTypeDef +- ActionableListDefinition +- ActionLauncherItemDef +- ActionLinkGroupTemplate +- ActionPlanTemplate +- ActivationPlatform +- ActnblListKeyPrfmIndDef +- AdvAccountForecastSet +- AdvAcctForecastDimSource +- AdvAcctForecastPeriodGroup +- AffinityScoreDefinition +- AIApplication +- AIApplicationConfig - AIAssistantTemplate +- AIScoringModelDefinition +- AIScoringModelDefVersion +- AIUsecaseDefinition +- AnalyticSnapshot +- AnimationRule +- ApexClass +- ApexComponent +- ApexEmailNotifications +- ApexPage +- ApexTestSuite +- ApexTrigger +- ApplicationRecordTypeConfig +- ApplicationSubtypeDefinition +- AppMenu +- AppointmentAssignmentPolicy +- AppointmentSchedulingPolicy +- ApprovalProcess +- AssessmentQuestion +- AssessmentQuestionSet +- AssignmentRules - AssignmentRule +- AssistantContextItem +- AssistantDefinition - AssistantRecommendationType +- AssistantSkillQuickAction +- AssistantSkillSobjectAction +- AssistantVersion +- Audience +- AuraDefinitionBundle +- AuthProvider +- AutoResponseRules - AutoResponseRule +- BatchCalcJobDefinition +- BatchProcessJobDefinition +- BenefitAction +- BlacklistedConsumer +- BldgEnrgyIntensityCnfg +- Bot +- BotVersion +- BotBlock +- BotTemplate +- BrandingSet +- BriefcaseDefinition - BusinessProcessFeedbackConfiguration +- BusinessProcessGroup +- BusinessProcessTypeDefinition +- CallCenter +- CallCenterRoutingMap +- CallCoachingMediaProvider - CallCtrAgentFavTrfrDest +- CampaignInfluenceModel +- CanvasMetadata +- CareBenefitVerifySettings +- CareLimitType +- CareProviderAfflRoleConfig +- CareProviderSearchConfig +- CareRequestConfiguration +- CareSystemFieldMapping +- CaseSubjectParticle +- Certificate +- ChannelLayout +- ChannelObjectLinkingRule +- ChatterExtension +- ClauseCatgConfiguration +- CleanDataService +- CMSConnectSource +- CommandAction +- Community +- CommunityTemplateDefinition +- CommunityThemeDefinition +- ConnectedApp +- ContentAsset +- ContextDefinition +- ConversationChannelDefinition - ConversationMessageDefinition - ConversationVendorFieldDef +- ConversationVendorInfo +- CorsWhitelistOrigin +- CspTrustedSite +- CustomApplication +- CustomApplicationComponent - CustomDataType - CustomExperience +- CustomFeedFilter +- CustomHelpMenuSection +- CustomIndex +- CustomLabels - CustomLabel +- CustomMetadata +- CustomNotificationType +- CustomObject +- BusinessProcess +- CompactLayout +- CustomField +- FieldSet +- Index +- ListView +- RecordType +- SharingReason +- ValidationRule +- WebLink +- CustomObjectTranslation - CustomFieldTranslation +- CustomPageWebLink +- CustomPermission +- CustomSite +- CustomTab +- Dashboard +- DashboardFolder +- DataCalcInsightTemplate +- DataCategoryGroup +- DataConnectorIngestApi +- DataConnectorS3 - DataKitObjectDependency +- DataKitObjectTemplate +- DataPackageKitDefinition +- DataPackageKitObject - DataPipeline +- DataSource +- DataSourceBundleDefinition +- DataSourceObject +- DataSourceTenant +- DataSrcDataModelFieldMap +- DataStreamDefinition +- DataStreamTemplate +- DataWeaveResource +- DecisionMatrixDefinition +- DecisionMatrixDefinitionVersion +- DecisionTable +- DecisionTableDatasetLink +- DelegateGroup +- DigitalExperienceBundle +- DigitalExperience +- DigitalExperienceConfig +- DisclosureDefinition +- DisclosureDefinitionVersion +- DisclosureType +- DiscoveryAIModel +- DiscoveryGoal +- DiscoveryStory +- Document +- DocumentCategory +- DocumentCategoryDocumentType +- DocumentFolder +- DocumentGenerationSetting +- DocumentType +- DuplicateRule - DynamicTrigger +- EclairGeoData +- EmailFolder +- EmailServicesFunction +- EmailTemplate +- EmailTemplateFolder +- EmbeddedServiceBranding +- EmbeddedServiceConfig - EmbeddedServiceFieldService +- EmbeddedServiceFlowConfig +- EmbeddedServiceLiveAgent +- EmbeddedServiceMenuSettings +- EnablementMeasureDefinition +- EnablementProgramDefinition - EnblProgramTaskSubCategory +- EntitlementProcess +- EntitlementTemplate - EntityImplements +- EscalationRules - EscalationRule +- ESignatureConfig +- ESignatureEnvelopeConfig - EventDelivery - EventRelayConfig - EventSubscription - EventType +- ExperienceBundle +- ExperiencePropertyTypeBundle +- ExplainabilityActionDefinition +- ExplainabilityActionVersion +- ExplainabilityMsgTemplate +- ExpressionSetDefinition +- ExpressionSetDefinitionVersion - ExpressionSetMessageToken +- ExpressionSetObjectAlias +- ExtDataTranObjectTemplate - extDataTranFieldTemplate +- ExternalAIModel +- ExternalClientApplication +- ExternalCredential +- ExternalDataConnector +- ExternalDataSource +- ExternalServiceRegistration +- ExtlClntAppConfigurablePolicies +- ExtlClntAppGlobalOauthSettings +- ExtlClntAppMobileConfigurablePolicies +- ExtlClntAppMobileSettings +- ExtlClntAppNotificationSettings +- ExtlClntAppOauthConfigurablePolicies +- ExtlClntAppOauthSettings - ExtlClntAppSampleConfigurablePolicies - ExtlClntAppSampleSettings +- FeatureParameterBoolean +- FeatureParameterDate +- FeatureParameterInteger +- FieldRestrictionRule +- FieldServiceMobileExtension +- FieldSrcTrgtRelationship +- FlexiPage +- Flow +- FlowCategory +- FlowDefinition +- FlowTest +- ForecastingFilter +- ForecastingFilterCondition +- ForecastingGroup +- ForecastingSourceDefinition +- ForecastingType +- ForecastingTypeSource - Form - FormSection +- FuelType +- FuelTypeSustnUom +- FunctionReference +- FundraisingConfig +- GatewayProviderPaymentMethodType +- GenAiFunction +- GenAiPlanner - GenAiPromptTemplate - GenAiPromptTemplateActv - GlobalPicklist +- GlobalValueSet +- GlobalValueSetTranslation +- Group +- HomePageComponent +- HomePageLayout +- Icon +- IdentityVerificationProcDef +- IframeWhiteListUrlSettings +- InboundCertificate +- InboundNetworkConnection +- IndustriesManufacturingSettings - InsightType +- InstalledPackage - IntegrationHubSettings - IntegrationHubSettingsType +- IntegrationProviderDef +- InternalDataConnector - InternalOrganization +- IPAddressRange +- KeywordList +- Layout +- LeadConvertSettings - LearningItemType +- Letterhead - LicenseDefinition +- LightningBolt +- LightningComponentBundle +- LightningExperienceTheme +- LightningMessageChannel +- LightningOnboardingConfig +- LiveChatAgentConfig +- LiveChatButton +- LiveChatDeployment +- LiveChatSensitiveDataRule +- LocationUse +- LoyaltyProgramSetup +- ManagedContentType +- ManagedEventSubscription +- ManagedTopics - ManagedTopic +- MarketingAppExtension - MarketingResourceType +- MarketSegmentDefinition +- MatchingRules - MatchingRule +- MessagingChannel +- MfgProgramTemplate +- MilestoneType +- MktCalcInsightObjectDef +- MktDataTranObject - MktDataTranField - MLDataDefinition +- MlDomain - MlModelArtifact - MlModelConnection - MlModelSchema - MLPredictionDefinition - MLRecommendationDefinition +- MobileApplicationDetail +- MobileSecurityAssignment +- MobileSecurityPolicy - MobileSecurityPolicySet +- MobSecurityCertPinConfig +- ModerationRule +- MutingPermissionSet +- MyDomainDiscoverableLogin +- NamedCredential +- NavigationMenu +- Network +- NetworkBranding +- NotificationTypeConfig +- OauthCustomScope +- OauthTokenExchangeHandler +- ObjectHierarchyRelationship +- ObjectSourceTargetMap +- OcrSampleDocument +- OcrTemplate +- OmniDataTransform +- OmniExtTrackingDef +- OmniIntegrationProcedure +- OmniInteractionAccessConfig +- OmniInteractionConfig +- OmniScript +- OmniSupervisorConfig +- OmniTrackingGroup +- OmniUiCard - Orchestration - OrchestrationContext +- OutboundNetworkConnection +- ParticipantRole +- PathAssistant +- PaymentGatewayProvider +- PermissionSet +- PermissionSetGroup +- PermissionSetLicenseDefinition +- PersonAccountOwnerPowerUser +- PipelineInspMetricConfig +- PlatformCachePartition +- PlatformEventChannel +- PlatformEventChannelMember +- PlatformEventSubscriberConfig - Portal +- PostTemplate +- PresenceDeclineReason +- PresenceUserConfig +- PricingActionParameters +- PricingRecipe +- ProcessFlowMigration +- ProductAttributeSet - ProductSpecificationTypeDefinition +- Profile +- ProfilePasswordPolicy +- ProfileSessionSetting +- Prompt +- Queue +- QueueRoutingConfig +- QuickAction +- RecommendationStrategy +- RecordActionDeployment +- RecordAggregationDefinition +- RecordAlertCategory +- RecordAlertDataSource +- RecordAlertTemplate +- RedirectWhitelistUrl +- RegisteredExternalService +- RelationshipGraphDefinition +- RemoteSiteSetting +- Report +- ReportFolder +- ReportType +- RestrictionRule +- RetrievalSummaryDefinition +- Role +- SalesAgreementSettings +- SamlSsoConfig +- SchedulingObjective +- SchedulingRule - Scontrol +- ScoreCategory - SearchableObjDataSyncInfo - SearchCriteriaConfiguration +- SearchCustomization +- SearchOrgWideObjectConfig +- ServiceAISetupDefinition +- ServiceAISetupField +- ServiceChannel +- ServicePresenceStatus +- ServiceProcess - Settings +- SharingRules +- SharingCriteriaRule +- SharingGuestRule +- SharingOwnerRule +- SharingTerritoryRule +- SharingSet +- SiteDotCom +- Skill +- SkillType +- SlackApp +- StandardValueSet +- StandardValueSetTranslation +- StaticResource +- StnryAssetEnvSrcCnfg +- StreamingAppDataConnector +- SustainabilityUom +- SustnUomConversion +- SvcCatalogCategory - SvcCatalogFilterCondition +- SvcCatalogFilterCriteria +- SvcCatalogFulfillmentFlow +- SvcCatalogItemDef - SvcCatalogItemDefFiltrCrit +- SynonymDictionary +- Territory +- Territory2 +- Territory2Model +- Territory2Rule +- Territory2Type +- TimelineObjectDefinition +- TimeSheetTemplate +- TopicsForObjects +- TransactionSecurityPolicy +- Translations +- UIObjectRelationConfig +- UiPlugin - UiViewDefinition +- UserAccessPolicy +- UserAuthCertificate +- UserCriteria +- UserProfileSearchScope +- UserProvisioningConfig +- VehicleAssetEmssnSrcCnfg +- ViewDefinition - VisualizationPlugin +- WaveApplication +- WaveComponent +- WaveDashboard +- WaveDataflow +- WaveDataset +- WaveLens +- WaveRecipe +- WaveTemplateBundle +- WaveXmd +- WebStoreBundle +- WebStoreTemplate +- Workflow +- WorkflowAlert +- WorkflowFieldUpdate +- WorkflowKnowledgePublish +- WorkflowOutboundMessage +- WorkflowRule +- WorkflowSend +- WorkflowTask +- WorkSkillRouting - WorkSkillRoutingAttribute - XOrgHub From b1b78197e50aa05b221e2746f8c9fc8bd7af42fb Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Sat, 8 Jun 2024 22:07:36 +0000 Subject: [PATCH 5/8] chore: auto-update metadata coverage in METADATA_SUPPORT.md [no ci] --- METADATA_SUPPORT.md | 1039 ++++++++++++++++++++++++++----------------- 1 file changed, 630 insertions(+), 409 deletions(-) diff --git a/METADATA_SUPPORT.md b/METADATA_SUPPORT.md index 53f490ddff..5a28bb2a67 100644 --- a/METADATA_SUPPORT.md +++ b/METADATA_SUPPORT.md @@ -1,22 +1,647 @@ # Supported CLI Metadata Types -This list compares metadata types found in Salesforce v60 with the [metadata registry file](./src/registry/metadataRegistry.json) included in this repository. +This list compares metadata types found in Salesforce v61 with the [metadata registry file](./src/registry/metadataRegistry.json) included in this repository. This repository is used by both the Salesforce CLIs and Salesforce's VSCode Extensions. -Currently, there are 0/0 supported metadata types. +Currently, there are 576/610 supported metadata types. For status on any existing gaps, please search or file an issue in the [Salesforce CLI issues only repo](https://github.com/forcedotcom/cli/issues). To contribute a new metadata type, please see the [Contributing Metadata Types to the Registry](./contributing/metadata.md) |Metadata Type|Support|Notes| |:---|:---|:---| +|AIApplication|✅|| +|AIApplicationConfig|✅|| +|AIReplyRecommendationsSettings|✅|| +|AIScoringModelDefVersion|✅|| +|AIScoringModelDefinition|✅|| +|AIUsecaseDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|AccountForecastSettings|✅|| +|AccountIntelligenceSettings|✅|| +|AccountRelationshipShareRule|✅|| +|AccountSettings|✅|| +|AccountingFieldMapping|✅|| +|AccountingModelConfig|✅|| +|AccountingSettings|✅|| +|AcctMgrTargetSettings|✅|| +|ActionLauncherItemDef|✅|| +|ActionLinkGroupTemplate|✅|| +|ActionPlanTemplate|✅|| +|ActionableEventOrchDef|✅|| +|ActionableEventTypeDef|✅|| +|ActionableListDefinition|✅|| +|ActionsSettings|✅|| +|ActivationPlatform|✅|| +|ActivitiesSettings|✅|| +|ActnblListKeyPrfmIndDef|✅|| +|AddressSettings|✅|| +|AdvAccountForecastSet|✅|| +|AdvAcctForecastDimSource|✅|| +|AdvAcctForecastPeriodGroup|✅|| +|AffinityScoreDefinition|✅|| +|Ai4mSettings|✅|| +|AnalyticSnapshot|✅|| +|AnalyticsSettings|✅|| +|AnimationRule|✅|| +|ApexClass|✅|| +|ApexComponent|✅|| +|ApexEmailNotifications|✅|| +|ApexPage|✅|| +|ApexSettings|✅|| +|ApexTestSuite|✅|| +|ApexTrigger|✅|| +|AppAnalyticsSettings|✅|| +|AppExperienceSettings|✅|| +|AppMenu|✅|| +|ApplicationRecordTypeConfig|✅|| +|ApplicationSubtypeDefinition|✅|| +|AppointmentAssignmentPolicy|✅|| +|AppointmentSchedulingPolicy|✅|| +|ApprovalProcess|✅|| +|AssessmentConfiguration|❌|Not supported, but support could be added| +|AssessmentQuestion|✅|| +|AssessmentQuestionSet|✅|| +|AssignmentRules|✅|| +|AssistantContextItem|✅|| +|AssistantDefinition|✅|| +|AssistantSkillQuickAction|✅|| +|AssistantSkillSobjectAction|✅|| +|AssistantVersion|✅|| +|AssociationEngineSettings|✅|| +|Audience|✅|| +|AuraDefinitionBundle|✅|| +|AuthProvider|✅|| +|AutoResponseRules|✅|| +|AutomatedContactsSettings|✅|| +|BatchCalcJobDefinition|✅|| +|BatchProcessJobDefinition|✅|| +|BenefitAction|✅|| +|BlacklistedConsumer|✅|| +|BldgEnrgyIntensityCnfg|✅|| +|BlockchainSettings|✅|| +|Bot|✅|| +|BotBlock|✅|| +|BotBlockVersion|❌|Not supported, but support could be added| +|BotSettings|✅|| +|BotTemplate|✅|| +|BotVersion|✅|| +|BranchManagementSettings|✅|| +|BrandingSet|✅|| +|BriefcaseDefinition|✅|| +|BusinessHoursSettings|✅|| +|BusinessProcess|✅|| +|BusinessProcessGroup|✅|| +|BusinessProcessTypeDefinition|✅|| +|CMSConnectSource|✅|| +|CallCenter|✅|| +|CallCenterRoutingMap|✅|| +|CallCoachingMediaProvider|⚠️|Supports deploy/retrieve but not source tracking| +|CampaignInfluenceModel|✅|| +|CampaignSettings|✅|| +|CanvasMetadata|✅|| +|CareBenefitVerifySettings|✅|| +|CareLimitType|✅|| +|CareProviderAfflRoleConfig|✅|| +|CareProviderSearchConfig|✅|| +|CareRequestConfiguration|✅|| +|CareSystemFieldMapping|✅|| +|CaseSettings|✅|| +|CaseSubjectParticle|✅|| +|Certificate|✅|| +|ChannelLayout|✅|| +|ChannelObjectLinkingRule|✅|| +|ChatterAnswersSettings|✅|| +|ChatterEmailsMDSettings|✅|| +|ChatterExtension|✅|| +|ChatterSettings|✅|| +|ClaimFinancialSettings|✅|| +|ClaimMgmtFoundationEnabledSettings|✅|| +|ClauseCatgConfiguration|✅|| +|CleanDataService|✅|| +|CodeBuilderSettings|✅|| +|CollectionsDashboardSettings|✅|| +|CommandAction|✅|| +|CommerceSettings|✅|| +|CommsServiceConsoleSettings|✅|| +|CommunitiesSettings|✅|| +|Community|✅|| +|CommunityTemplateDefinition|✅|| +|CommunityThemeDefinition|✅|| +|CompactLayout|✅|| +|CompanySettings|✅|| +|ConnectedApp|✅|| +|ConnectedAppSettings|✅|| +|ContentAsset|✅|| +|ContentSettings|✅|| +|ContextDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|ContextUseCaseMapping|❌|Not supported, but support could be added| +|ContractSettings|✅|| +|ContractType|❌|Not supported, but support could be added| +|ConversationChannelDefinition|✅|| +|ConversationServiceIntegrationSettings|✅|| +|ConversationVendorInfo|✅|| +|ConversationalIntelligenceSettings|✅|| +|CorsWhitelistOrigin|✅|| +|CspTrustedSite|✅|| +|CurrencySettings|✅|| +|CustomAddressFieldSettings|✅|| +|CustomApplication|✅|| +|CustomApplicationComponent|✅|| +|CustomFeedFilter|✅|| +|CustomField|✅|| +|CustomHelpMenuSection|✅|| +|CustomIndex|✅|| +|CustomLabels|✅|| +|CustomMetadata|✅|| +|CustomNotificationType|✅|| +|CustomObject|✅|| +|CustomObjectTranslation|✅|| +|CustomPageWebLink|✅|| +|CustomPermission|✅|| +|CustomSite|✅|| +|CustomTab|✅|| +|CustomValue|❌|Not supported, but support could be added| +|CustomerDataPlatformSettings|✅|| +|CustomizablePropensityScoringSettings|✅|| +|Dashboard|✅|| +|DashboardFolder|✅|| +|DataCalcInsightTemplate|✅|| +|DataCategoryGroup|✅|| +|DataConnectionParamTmpl|❌|Not supported, but support could be added| +|DataConnectorIngestApi|✅|| +|DataConnectorS3|✅|| +|DataDotComSettings|✅|| +|DataImportManagementSettings|✅|| +|DataKitObjectTemplate|✅|| +|DataPackageKitDefinition|✅|| +|DataPackageKitObject|✅|| +|DataSource|✅|| +|DataSourceBundleDefinition|✅|| +|DataSourceObject|✅|| +|DataSourceTenant|✅|| +|DataSrcDataModelFieldMap|✅|| +|DataStreamDefinition|✅|| +|DataStreamTemplate|✅|| +|DataWeaveResource|✅|| +|DecisionMatrixDefinition|✅|| +|DecisionMatrixDefinitionVersion|✅|| +|DecisionTable|✅|| +|DecisionTableDatasetLink|✅|| +|DelegateGroup|✅|| +|DeploymentSettings|✅|| +|DevHubSettings|✅|| +|DigitalExperience|✅|| +|DigitalExperienceBundle|✅|| +|DigitalExperienceConfig|✅|| +|DisclosureDefinition|✅|| +|DisclosureDefinitionVersion|✅|| +|DisclosureType|✅|| +|DiscoveryAIModel|✅|| +|DiscoveryGoal|✅|| +|DiscoverySettings|✅|| +|DiscoveryStory|✅|| +|Document|✅|| +|DocumentCategory|✅|| +|DocumentCategoryDocumentType|✅|| +|DocumentChecklistSettings|✅|| +|DocumentFolder|✅|| +|DocumentGenerationSetting|✅|| +|DocumentTemplate|❌|Not supported, but support could be added (but not for tracking)| +|DocumentType|✅|| +|DuplicateRule|✅|| +|DynamicFormsSettings|✅|| +|DynamicFulfillmentOrchestratorSettings|✅|| +|EACSettings|✅|| +|ESignatureConfig|✅|| +|ESignatureEnvelopeConfig|✅|| +|EclairGeoData|✅|| +|EinsteinAISettings|✅|| +|EinsteinAgentSettings|✅|| +|EinsteinAssistantSettings|✅|| +|EinsteinCopilotSettings|✅|| +|EinsteinDealInsightsSettings|✅|| +|EinsteinDocumentCaptureSettings|✅|| +|EinsteinGptSettings|✅|| +|EmailAdministrationSettings|✅|| +|EmailFolder|✅|| +|EmailIntegrationSettings|✅|| +|EmailServicesFunction|✅|| +|EmailTemplate|✅|| +|EmailTemplateFolder|✅|| +|EmailTemplateSettings|✅|| +|EmbeddedServiceBranding|✅|| +|EmbeddedServiceConfig|✅|| +|EmbeddedServiceFlowConfig|✅|| +|EmbeddedServiceLiveAgent|✅|| +|EmbeddedServiceMenuSettings|✅|| +|EmployeeDataSyncProfile|❌|Not supported, but support could be added| +|EmployeeFieldAccessSettings|✅|| +|EmployeeUserSettings|✅|| +|EnablementMeasureDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|EnablementProgramDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|EnhancedNotesSettings|✅|| +|EntitlementProcess|✅|| +|EntitlementSettings|✅|| +|EntitlementTemplate|✅|| +|EscalationRules|✅|| +|EssentialsSettings|✅|| +|EventLogObjectSettings|✅|| +|EventSettings|✅|| +|ExperienceBundle|✅|| +|ExperienceBundleSettings|✅|| +|ExperiencePropertyTypeBundle|✅|| +|ExplainabilityActionDefinition|✅|| +|ExplainabilityActionVersion|✅|| +|ExplainabilityMsgTemplate|✅|| +|ExpressionSetDefinition|✅|| +|ExpressionSetDefinitionVersion|✅|| +|ExpressionSetObjectAlias|✅|| +|ExtDataTranFieldTemplate|❌|Not supported, but support could be added| +|ExtDataTranObjectTemplate|✅|| +|ExternalAIModel|✅|| +|ExternalAuthIdentityProvider|❌|Not supported, but support could be added| +|ExternalClientAppSettings|✅|| +|ExternalClientApplication|✅|| +|ExternalCredential|✅|| +|ExternalDataConnector|✅|| +|ExternalDataSource|✅|| +|ExternalDataSrcDescriptor|❌|Not supported, but support could be added| +|ExternalDataTranField|❌|Not supported, but support could be added| +|ExternalDataTranObject|❌|Not supported, but support could be added| +|ExternalDocStorageConfig|❌|Not supported, but support could be added| +|ExternalServiceRegistration|✅|| +|ExtlClntAppConfigurablePolicies|✅|| +|ExtlClntAppGlobalOauthSettings|✅|| +|ExtlClntAppMobileConfigurablePolicies|✅|| +|ExtlClntAppMobileSettings|✅|| +|ExtlClntAppNotificationSettings|✅|| +|ExtlClntAppOauthConfigurablePolicies|✅|| +|ExtlClntAppOauthSettings|✅|| +|FeatureParameterBoolean|✅|| +|FeatureParameterDate|✅|| +|FeatureParameterInteger|✅|| +|FieldRestrictionRule|✅|| +|FieldServiceMobileExtension|✅|| +|FieldServiceSettings|✅|| +|FieldSet|✅|| +|FieldSrcTrgtRelationship|✅|| +|FileUploadAndDownloadSecuritySettings|✅|| +|FilesConnectSettings|✅|| +|FlexiPage|✅|| +|Flow|✅|| +|FlowCategory|✅|| +|FlowDefinition|⚠️|Supports deploy/retrieve but not source tracking| +|FlowSettings|✅|| +|FlowTest|✅|| +|ForecastingFilter|✅|| +|ForecastingFilterCondition|✅|| +|ForecastingGroup|✅|| +|ForecastingObjectListSettings|✅|| +|ForecastingSettings|✅|| +|ForecastingSourceDefinition|✅|| +|ForecastingType|✅|| +|ForecastingTypeSource|✅|| +|FormulaSettings|✅|| +|FuelType|✅|| +|FuelTypeSustnUom|✅|| +|FunctionReference|⚠️|Supports deploy/retrieve but not source tracking| +|FundraisingConfig|✅|| +|GatewayProviderPaymentMethodType|✅|| +|GenAiFunction|✅|| +|GenAiPlanner|✅|| +|GenAiPlugin|❌|Not supported, but support could be added| +|GenAiPluginInstructionDef|❌|Not supported, but support could be added| +|GlobalValueSet|✅|| +|GlobalValueSetTranslation|✅|| +|GoogleAppsSettings|✅|| +|Group|✅|| +|HighVelocitySalesSettings|✅|| +|HomePageComponent|✅|| +|HomePageLayout|✅|| +|IPAddressRange|✅|| +|Icon|✅|| +|IdeasSettings|✅|| +|IdentityProviderSettings|✅|| +|IdentityVerificationProcDef|✅|| +|IframeWhiteListUrlSettings|✅|| +|InboundCertificate|✅|| +|InboundNetworkConnection|✅|| +|IncidentMgmtSettings|✅|| +|IncludeEstTaxInQuoteCPQSettings|✅|| +|IncludeEstTaxInQuoteSettings|✅|| +|Index|⚠️|Supports deploy/retrieve but not source tracking| +|IndustriesAutomotiveSettings|✅|| +|IndustriesContextSettings|✅|| +|IndustriesEinsteinFeatureSettings|✅|| +|IndustriesEventOrchSettings|✅|| +|IndustriesFieldServiceSettings|✅|| +|IndustriesGamificationSettings|✅|| +|IndustriesLoyaltySettings|✅|| +|IndustriesManufacturingSettings|✅|| +|IndustriesPricingSettings|✅|| +|IndustriesSettings|✅|| +|IndustriesUnifiedPromotionsSettings|✅|| +|InstalledPackage|⚠️|Supports deploy/retrieve but not source tracking| +|IntegrationProviderDef|✅|| +|InterestTaggingSettings|✅|| +|InternalDataConnector|✅|| +|InvLatePymntRiskCalcSettings|✅|| +|InventorySettings|✅|| +|InvocableActionSettings|✅|| +|IoTSettings|✅|| +|KeywordList|✅|| +|KnowledgeGenerationSettings|✅|| +|KnowledgeSettings|✅|| +|LanguageSettings|✅|| +|LargeQuotesandOrdersForRlmSettings|✅|| +|Layout|✅|| +|LeadConfigSettings|✅|| +|LeadConvertSettings|✅|| +|LearningAchievementConfig|❌|Not supported, but support could be added| +|Letterhead|✅|| +|LicensingSettings|✅|| +|LightningBolt|✅|| +|LightningComponentBundle|✅|| +|LightningExperienceSettings|✅|| +|LightningExperienceTheme|✅|| +|LightningMessageChannel|✅|| +|LightningOnboardingConfig|✅|| +|ListView|✅|| +|LiveAgentSettings|✅|| +|LiveChatAgentConfig|✅|| +|LiveChatButton|✅|| +|LiveChatDeployment|✅|| +|LiveChatSensitiveDataRule|✅|| +|LiveMessageSettings|✅|| +|LocationUse|✅|| +|LoyaltyProgramSetup|⚠️|Supports deploy/retrieve but not source tracking| +|MacroSettings|✅|| +|MailMergeSettings|✅|| +|ManagedContentType|⚠️|Supports deploy/retrieve but not source tracking| +|ManagedEventSubscription|✅|| +|ManagedTopics|✅|| +|MapsAndLocationSettings|✅|| +|MarketSegmentDefinition|✅|| +|MarketingAppExtActivity|❌|Not supported, but support could be added| +|MarketingAppExtension|✅|| +|MatchingRules|✅|| +|MediaAdSalesSettings|✅|| +|MeetingsSettings|✅|| +|MessagingChannel|⚠️|Supports deploy/retrieve but not source tracking| +|MfgProgramTemplate|✅|| +|MfgServiceConsoleSettings|✅|| +|MilestoneType|✅|| +|MktCalcInsightObjectDef|✅|| +|MktDataConnection|❌|Not supported, but support could be added| +|MktDataConnectionCred|❌|Not supported, but support could be added| +|MktDataConnectionParam|❌|Not supported, but support could be added| +|MktDataConnectionSrcParam|❌|Not supported, but support could be added| +|MktDataTranObject|✅|| +|MlDomain|✅|| +|MobSecurityCertPinConfig|✅|| +|MobileApplicationDetail|✅|| +|MobileSecurityAssignment|✅|| +|MobileSecurityPolicy|✅|| +|MobileSettings|✅|| +|ModerationRule|✅|| +|MutingPermissionSet|✅|| +|MyDomainDiscoverableLogin|✅|| +|MyDomainSettings|✅|| +|NameSettings|✅|| +|NamedCredential|✅|| +|NavigationMenu|✅|| +|Network|✅|| +|NetworkBranding|✅|| +|NotificationTypeConfig|✅|| +|NotificationsSettings|✅|| +|OauthCustomScope|✅|| +|OauthOidcSettings|✅|| +|OauthTokenExchangeHandler|✅|| +|ObjectHierarchyRelationship|✅|| +|ObjectLinkingSettings|✅|| +|ObjectSourceTargetMap|✅|| +|OcrSampleDocument|✅|| +|OcrTemplate|✅|| +|OmniChannelPricingSettings|✅|| +|OmniChannelSettings|✅|| +|OmniDataTransform|⚠️|Supports deploy/retrieve but not source tracking| +|OmniExtTrackingDef|⚠️|Supports deploy/retrieve but not source tracking| +|OmniIntegrationProcedure|⚠️|Supports deploy/retrieve but not source tracking| +|OmniInteractionAccessConfig|⚠️|Supports deploy/retrieve but not source tracking| +|OmniInteractionConfig|⚠️|Supports deploy/retrieve but not source tracking| +|OmniScript|⚠️|Supports deploy/retrieve but not source tracking| +|OmniSupervisorConfig|✅|| +|OmniTrackingGroup|⚠️|Supports deploy/retrieve but not source tracking| +|OmniUiCard|⚠️|Supports deploy/retrieve but not source tracking| +|OnlineSalesSettings|✅|| +|OpportunityScoreSettings|✅|| +|OpportunitySettings|✅|| +|OrderManagementSettings|✅|| +|OrderSettings|✅|| +|OrgSettings|✅|| +|OutboundNetworkConnection|✅|| +|PardotEinsteinSettings|✅|| +|PardotSettings|✅|| +|ParticipantRole|✅|| +|PartyDataModelSettings|✅|| +|PathAssistant|✅|| +|PathAssistantSettings|✅|| +|PaymentGatewayProvider|✅|| +|PaymentsManagementEnabledSettings|✅|| +|PaymentsSettings|✅|| +|PermissionSet|✅|| +|PermissionSetGroup|✅|| +|PermissionSetLicenseDefinition|✅|| +|PersonAccountOwnerPowerUser|✅|| +|PicklistSettings|✅|| +|PicklistValue|❌|Not supported, but support could be added| +|PipelineInspMetricConfig|✅|| +|PlatformCachePartition|✅|| +|PlatformEventChannel|✅|| +|PlatformEventChannelMember|✅|| +|PlatformEventSettings|✅|| +|PlatformEventSubscriberConfig|✅|| +|PlatformSlackSettings|✅|| +|PortalDelegablePermissionSet|❌|Not supported, but support could be added| +|PortalsSettings|✅|| +|PostTemplate|✅|| +|PredictionBuilderSettings|✅|| +|PresenceDeclineReason|✅|| +|PresenceUserConfig|✅|| +|PricingActionParameters|⚠️|Supports deploy/retrieve but not source tracking| +|PricingRecipe|✅|| +|PrivacySettings|✅|| +|ProcessFlowMigration|✅|| +|ProductAttrDisplayConfig|❌|Not supported, but support could be added| +|ProductAttributeSet|✅|| +|ProductConfiguratorSettings|✅|| +|ProductSettings|✅|| +|ProductSpecificationRecType|❌|Not supported, but support could be added| +|ProductSpecificationType|❌|Not supported, but support could be added| +|Profile|✅|| +|ProfilePasswordPolicy|✅|| +|ProfileSessionSetting|✅|| +|Prompt|✅|| +|Queue|✅|| +|QueueRoutingConfig|✅|| +|QuickAction|✅|| +|QuickTextSettings|✅|| +|QuoteSettings|✅|| +|RealTimeEventSettings|✅|| +|RecAlrtDataSrcExpSetDef|❌|Not supported, but support could be added| +|RecommendationBuilderSettings|✅|| +|RecommendationStrategy|✅|| +|RecordActionDeployment|✅|| +|RecordAggregationDefinition|✅|| +|RecordAlertCategory|✅|| +|RecordAlertDataSource|✅|| +|RecordAlertTemplate|✅|| +|RecordPageSettings|✅|| +|RecordType|✅|| +|RedirectWhitelistUrl|✅|| +|ReferencedDashboard|❌|Not supported, but support could be added| +|ReferralMarketingSettings|✅|| +|RegisteredExternalService|✅|| +|RelatedRecordAssocCriteria|❌|Not supported, but support could be added| +|RelationshipGraphDefinition|✅|| +|RemoteSiteSetting|✅|| +|Report|✅|| +|ReportFolder|✅|| +|ReportType|✅|| +|RestrictionRule|✅|| +|RetailExecutionSettings|✅|| +|RetrievalSummaryDefinition|✅|| +|RevenueManagementSettings|✅|| +|Role|✅|| +|SalesAgreementSettings|✅|| +|SalesWorkQueueSettings|✅|| +|SamlSsoConfig|✅|| +|SandboxSettings|✅|| +|SceGlobalModelOptOutSettings|✅|| +|SchedulingObjective|✅|| +|SchedulingRule|✅|| +|SchemaSettings|✅|| +|ScoreCategory|✅|| +|SearchCustomization|⚠️|Supports deploy/retrieve but not source tracking| +|SearchOrgWideObjectConfig|⚠️|Supports deploy/retrieve but not source tracking| +|SearchSettings|✅|| +|SecuritySettings|✅|| +|ServiceAISetupDefinition|✅|| +|ServiceAISetupField|✅|| +|ServiceChannel|✅|| +|ServiceCloudVoiceSettings|✅|| +|ServicePresenceStatus|✅|| +|ServiceProcess|✅|| +|ServiceSetupAssistantSettings|✅|| +|SharingCriteriaRule|✅|| +|SharingGuestRule|✅|| +|SharingOwnerRule|✅|| +|SharingReason|✅|| +|SharingRules|⚠️|Supports deploy/retrieve but not source tracking| +|SharingSet|✅|| +|SharingSettings|✅|| +|SharingTerritoryRule|✅|| +|SiteDotCom|✅|| +|SiteSettings|✅|| +|Skill|✅|| +|SkillType|✅|| +|SlackApp|✅|| +|SocialCustomerServiceSettings|✅|| +|SourceTrackingSettings|✅|| +|StandardValue|❌|Not supported, but support could be added| +|StandardValueSet|✅|| +|StandardValueSetTranslation|✅|| +|StaticResource|✅|| +|StnryAssetEnvSrcCnfg|✅|| +|StreamingAppDataConnector|✅|| +|SubscriptionManagementSettings|✅|| +|SurveySettings|✅|| +|SustainabilityUom|✅|| +|SustnUomConversion|✅|| +|SvcCatalogCategory|✅|| +|SvcCatalogFilterCriteria|✅|| +|SvcCatalogFulfillmentFlow|✅|| +|SvcCatalogItemDef|✅|| +|SynonymDictionary|✅|| +|SystemNotificationSettings|✅|| +|Territory|✅|| +|Territory2|✅|| +|Territory2Model|✅|| +|Territory2Rule|✅|| +|Territory2Settings|✅|| +|Territory2Type|✅|| +|TimeSheetTemplate|✅|| +|TimelineObjectDefinition|✅|| +|TopicsForObjects|✅|| +|TrailheadSettings|✅|| +|TransactionSecurityPolicy|✅|| +|Translations|✅|| +|TrialOrgSettings|✅|| +|UIObjectRelationConfig|✅|| +|UiPlugin|✅|| +|UserAccessPolicy|✅|| +|UserAuthCertificate|✅|| +|UserCriteria|✅|| +|UserEngagementSettings|✅|| +|UserInterfaceSettings|✅|| +|UserManagementSettings|✅|| +|UserProfileSearchScope|✅|| +|UserProvisioningConfig|✅|| +|ValidationRule|✅|| +|VehicleAssetEmssnSrcCnfg|✅|| +|ViewDefinition|✅|| +|VirtualVisitConfig|❌|Not supported, but support could be added| +|VoiceSettings|✅|| +|WarrantyLifecycleMgmtSettings|✅|| +|WaveAnalyticAssetCollection|❌|Not supported, but support could be added| +|WaveApplication|✅|| +|WaveComponent|✅|| +|WaveDashboard|✅|| +|WaveDataflow|✅|| +|WaveDataset|✅|| +|WaveLens|✅|| +|WaveRecipe|✅|| +|WaveTemplateBundle|✅|| +|WaveXmd|✅|| +|Web3Settings|✅|| +|WebLink|✅|| +|WebStoreBundle|✅|| +|WebStoreTemplate|✅|| +|WebToXSettings|✅|| +|WorkDotComSettings|✅|| +|WorkSkillRouting|✅|| +|Workflow|✅|| +|WorkflowAlert|✅|| +|WorkflowFieldUpdate|✅|| +|WorkflowFlowAction|❌|Not supported, but support could be added| +|WorkflowKnowledgePublish|✅|| +|WorkflowOutboundMessage|✅|| +|WorkflowRule|✅|| +|WorkflowSend|✅|| +|WorkflowTask|✅|| +|WorkforceEngagementSettings|✅|| -## Next Release (v61) +## Next Release (v62) -> **Note** -> v61 coverage not available at this time +v62 introduces the following new types. Here's their current level of support + +|Metadata Type|Support|Notes| +|:---|:---|:---| +|AccountPlanSettings|✅|| +|AnalyticsDashboard|❌|Not supported, but support could be added| +|ChannelRevMgmtSettings|✅|| +|ChoiceList|❌|Not supported, but support could be added| +|DataKitObjectDependency|✅|| +|EnblProgramTaskSubCategory|✅|| +|ExtlClntAppPushSettings|✅|| +|GenOpPlanRequestThreshold|❌|Not supported, but support could be added| +|HerokuIntegrationSettings|✅|| +|IndustriesRatingSettings|✅|| +|IndustriesUsageSettings|✅|| +|LearningItemType|✅|| +|StageDefinition|❌|Not supported, but support could be added| ## Additional Types @@ -28,467 +653,63 @@ To contribute a new metadata type, please see the [Contributing Metadata Types t > 1. settings types that are automatically supported - AccessControlPolicy -- AccountForecastSettings -- AccountingFieldMapping -- AccountingModelConfig -- AccountRelationshipShareRule -- AcctMgrTargetSettings -- ActionableEventOrchDef -- ActionableEventTypeDef -- ActionableListDefinition -- ActionLauncherItemDef -- ActionLinkGroupTemplate -- ActionPlanTemplate -- ActivationPlatform -- ActnblListKeyPrfmIndDef -- AdvAccountForecastSet -- AdvAcctForecastDimSource -- AdvAcctForecastPeriodGroup -- AffinityScoreDefinition -- AIApplication -- AIApplicationConfig - AIAssistantTemplate -- AIScoringModelDefinition -- AIScoringModelDefVersion -- AIUsecaseDefinition -- AnalyticSnapshot -- AnimationRule -- ApexClass -- ApexComponent -- ApexEmailNotifications -- ApexPage -- ApexTestSuite -- ApexTrigger -- ApplicationRecordTypeConfig -- ApplicationSubtypeDefinition -- AppMenu -- AppointmentAssignmentPolicy -- AppointmentSchedulingPolicy -- ApprovalProcess -- AssessmentQuestion -- AssessmentQuestionSet -- AssignmentRules - AssignmentRule -- AssistantContextItem -- AssistantDefinition - AssistantRecommendationType -- AssistantSkillQuickAction -- AssistantSkillSobjectAction -- AssistantVersion -- Audience -- AuraDefinitionBundle -- AuthProvider -- AutoResponseRules - AutoResponseRule -- BatchCalcJobDefinition -- BatchProcessJobDefinition -- BenefitAction -- BlacklistedConsumer -- BldgEnrgyIntensityCnfg -- Bot -- BotVersion -- BotBlock -- BotTemplate -- BrandingSet -- BriefcaseDefinition - BusinessProcessFeedbackConfiguration -- BusinessProcessGroup -- BusinessProcessTypeDefinition -- CallCenter -- CallCenterRoutingMap -- CallCoachingMediaProvider - CallCtrAgentFavTrfrDest -- CampaignInfluenceModel -- CanvasMetadata -- CareBenefitVerifySettings -- CareLimitType -- CareProviderAfflRoleConfig -- CareProviderSearchConfig -- CareRequestConfiguration -- CareSystemFieldMapping -- CaseSubjectParticle -- Certificate -- ChannelLayout -- ChannelObjectLinkingRule -- ChatterExtension -- ClauseCatgConfiguration -- CleanDataService -- CMSConnectSource -- CommandAction -- Community -- CommunityTemplateDefinition -- CommunityThemeDefinition -- ConnectedApp -- ContentAsset -- ContextDefinition -- ConversationChannelDefinition - ConversationMessageDefinition - ConversationVendorFieldDef -- ConversationVendorInfo -- CorsWhitelistOrigin -- CspTrustedSite -- CustomApplication -- CustomApplicationComponent - CustomDataType - CustomExperience -- CustomFeedFilter -- CustomHelpMenuSection -- CustomIndex -- CustomLabels - CustomLabel -- CustomMetadata -- CustomNotificationType -- CustomObject -- BusinessProcess -- CompactLayout -- CustomField -- FieldSet -- Index -- ListView -- RecordType -- SharingReason -- ValidationRule -- WebLink -- CustomObjectTranslation - CustomFieldTranslation -- CustomPageWebLink -- CustomPermission -- CustomSite -- CustomTab -- Dashboard -- DashboardFolder -- DataCalcInsightTemplate -- DataCategoryGroup -- DataConnectorIngestApi -- DataConnectorS3 -- DataKitObjectDependency -- DataKitObjectTemplate -- DataPackageKitDefinition -- DataPackageKitObject - DataPipeline -- DataSource -- DataSourceBundleDefinition -- DataSourceObject -- DataSourceTenant -- DataSrcDataModelFieldMap -- DataStreamDefinition -- DataStreamTemplate -- DataWeaveResource -- DecisionMatrixDefinition -- DecisionMatrixDefinitionVersion -- DecisionTable -- DecisionTableDatasetLink -- DelegateGroup -- DigitalExperienceBundle -- DigitalExperience -- DigitalExperienceConfig -- DisclosureDefinition -- DisclosureDefinitionVersion -- DisclosureType -- DiscoveryAIModel -- DiscoveryGoal -- DiscoveryStory -- Document -- DocumentCategory -- DocumentCategoryDocumentType -- DocumentFolder -- DocumentGenerationSetting -- DocumentType -- DuplicateRule - DynamicTrigger -- EclairGeoData -- EmailFolder -- EmailServicesFunction -- EmailTemplate -- EmailTemplateFolder -- EmbeddedServiceBranding -- EmbeddedServiceConfig - EmbeddedServiceFieldService -- EmbeddedServiceFlowConfig -- EmbeddedServiceLiveAgent -- EmbeddedServiceMenuSettings -- EnablementMeasureDefinition -- EnablementProgramDefinition -- EnblProgramTaskSubCategory -- EntitlementProcess -- EntitlementTemplate - EntityImplements -- EscalationRules - EscalationRule -- ESignatureConfig -- ESignatureEnvelopeConfig - EventDelivery - EventRelayConfig - EventSubscription - EventType -- ExperienceBundle -- ExperiencePropertyTypeBundle -- ExplainabilityActionDefinition -- ExplainabilityActionVersion -- ExplainabilityMsgTemplate -- ExpressionSetDefinition -- ExpressionSetDefinitionVersion - ExpressionSetMessageToken -- ExpressionSetObjectAlias -- ExtDataTranObjectTemplate - extDataTranFieldTemplate -- ExternalAIModel -- ExternalClientApplication -- ExternalCredential -- ExternalDataConnector -- ExternalDataSource -- ExternalServiceRegistration -- ExtlClntAppConfigurablePolicies -- ExtlClntAppGlobalOauthSettings -- ExtlClntAppMobileConfigurablePolicies -- ExtlClntAppMobileSettings -- ExtlClntAppNotificationSettings -- ExtlClntAppOauthConfigurablePolicies -- ExtlClntAppOauthSettings - ExtlClntAppSampleConfigurablePolicies - ExtlClntAppSampleSettings -- FeatureParameterBoolean -- FeatureParameterDate -- FeatureParameterInteger -- FieldRestrictionRule -- FieldServiceMobileExtension -- FieldSrcTrgtRelationship -- FlexiPage -- Flow -- FlowCategory -- FlowDefinition -- FlowTest -- ForecastingFilter -- ForecastingFilterCondition -- ForecastingGroup -- ForecastingSourceDefinition -- ForecastingType -- ForecastingTypeSource - Form - FormSection -- FuelType -- FuelTypeSustnUom -- FunctionReference -- FundraisingConfig -- GatewayProviderPaymentMethodType -- GenAiFunction -- GenAiPlanner - GenAiPromptTemplate - GenAiPromptTemplateActv - GlobalPicklist -- GlobalValueSet -- GlobalValueSetTranslation -- Group -- HomePageComponent -- HomePageLayout -- Icon -- IdentityVerificationProcDef -- IframeWhiteListUrlSettings -- InboundCertificate -- InboundNetworkConnection -- IndustriesManufacturingSettings - InsightType -- InstalledPackage - IntegrationHubSettings - IntegrationHubSettingsType -- IntegrationProviderDef -- InternalDataConnector - InternalOrganization -- IPAddressRange -- KeywordList -- Layout -- LeadConvertSettings -- LearningItemType -- Letterhead - LicenseDefinition -- LightningBolt -- LightningComponentBundle -- LightningExperienceTheme -- LightningMessageChannel -- LightningOnboardingConfig -- LiveChatAgentConfig -- LiveChatButton -- LiveChatDeployment -- LiveChatSensitiveDataRule -- LocationUse -- LoyaltyProgramSetup -- ManagedContentType -- ManagedEventSubscription -- ManagedTopics - ManagedTopic -- MarketingAppExtension - MarketingResourceType -- MarketSegmentDefinition -- MatchingRules - MatchingRule -- MessagingChannel -- MfgProgramTemplate -- MilestoneType -- MktCalcInsightObjectDef -- MktDataTranObject - MktDataTranField - MLDataDefinition -- MlDomain - MlModelArtifact - MlModelConnection - MlModelSchema - MLPredictionDefinition - MLRecommendationDefinition -- MobileApplicationDetail -- MobileSecurityAssignment -- MobileSecurityPolicy - MobileSecurityPolicySet -- MobSecurityCertPinConfig -- ModerationRule -- MutingPermissionSet -- MyDomainDiscoverableLogin -- NamedCredential -- NavigationMenu -- Network -- NetworkBranding -- NotificationTypeConfig -- OauthCustomScope -- OauthTokenExchangeHandler -- ObjectHierarchyRelationship -- ObjectSourceTargetMap -- OcrSampleDocument -- OcrTemplate -- OmniDataTransform -- OmniExtTrackingDef -- OmniIntegrationProcedure -- OmniInteractionAccessConfig -- OmniInteractionConfig -- OmniScript -- OmniSupervisorConfig -- OmniTrackingGroup -- OmniUiCard - Orchestration - OrchestrationContext -- OutboundNetworkConnection -- ParticipantRole -- PathAssistant -- PaymentGatewayProvider -- PermissionSet -- PermissionSetGroup -- PermissionSetLicenseDefinition -- PersonAccountOwnerPowerUser -- PipelineInspMetricConfig -- PlatformCachePartition -- PlatformEventChannel -- PlatformEventChannelMember -- PlatformEventSubscriberConfig - Portal -- PostTemplate -- PresenceDeclineReason -- PresenceUserConfig -- PricingActionParameters -- PricingRecipe -- ProcessFlowMigration -- ProductAttributeSet - ProductSpecificationTypeDefinition -- Profile -- ProfilePasswordPolicy -- ProfileSessionSetting -- Prompt -- Queue -- QueueRoutingConfig -- QuickAction -- RecommendationStrategy -- RecordActionDeployment -- RecordAggregationDefinition -- RecordAlertCategory -- RecordAlertDataSource -- RecordAlertTemplate -- RedirectWhitelistUrl -- RegisteredExternalService -- RelationshipGraphDefinition -- RemoteSiteSetting -- Report -- ReportFolder -- ReportType -- RestrictionRule -- RetrievalSummaryDefinition -- Role -- SalesAgreementSettings -- SamlSsoConfig -- SchedulingObjective -- SchedulingRule - Scontrol -- ScoreCategory - SearchableObjDataSyncInfo - SearchCriteriaConfiguration -- SearchCustomization -- SearchOrgWideObjectConfig -- ServiceAISetupDefinition -- ServiceAISetupField -- ServiceChannel -- ServicePresenceStatus -- ServiceProcess - Settings -- SharingRules -- SharingCriteriaRule -- SharingGuestRule -- SharingOwnerRule -- SharingTerritoryRule -- SharingSet -- SiteDotCom -- Skill -- SkillType -- SlackApp -- StandardValueSet -- StandardValueSetTranslation -- StaticResource -- StnryAssetEnvSrcCnfg -- StreamingAppDataConnector -- SustainabilityUom -- SustnUomConversion -- SvcCatalogCategory - SvcCatalogFilterCondition -- SvcCatalogFilterCriteria -- SvcCatalogFulfillmentFlow -- SvcCatalogItemDef - SvcCatalogItemDefFiltrCrit -- SynonymDictionary -- Territory -- Territory2 -- Territory2Model -- Territory2Rule -- Territory2Type -- TimelineObjectDefinition -- TimeSheetTemplate -- TopicsForObjects -- TransactionSecurityPolicy -- Translations -- UIObjectRelationConfig -- UiPlugin - UiViewDefinition -- UserAccessPolicy -- UserAuthCertificate -- UserCriteria -- UserProfileSearchScope -- UserProvisioningConfig -- VehicleAssetEmssnSrcCnfg -- ViewDefinition - VisualizationPlugin -- WaveApplication -- WaveComponent -- WaveDashboard -- WaveDataflow -- WaveDataset -- WaveLens -- WaveRecipe -- WaveTemplateBundle -- WaveXmd -- WebStoreBundle -- WebStoreTemplate -- Workflow -- WorkflowAlert -- WorkflowFieldUpdate -- WorkflowKnowledgePublish -- WorkflowOutboundMessage -- WorkflowRule -- WorkflowSend -- WorkflowTask -- WorkSkillRouting - WorkSkillRoutingAttribute - XOrgHub From efe70d4f9e6b66e7010fc63603bb7ac78ff2df2c Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Mon, 10 Jun 2024 08:57:15 -0500 Subject: [PATCH 6/8] fix(deps): devScripts update (#1337) * chore: updates from devScripts * chore: dep bumps * test: set api version on tests that start from Source format --------- Co-authored-by: mshanemc --- package.json | 6 +- .../mpdWithLabels/snapshots.test.ts | 3 +- yarn.lock | 92 +++++++------------ 3 files changed, 40 insertions(+), 61 deletions(-) diff --git a/package.json b/package.json index 7ff25fe360..61cb5bf5fe 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "node": ">=18.0.0" }, "dependencies": { - "@salesforce/core": "^7.3.9", + "@salesforce/core": "^7.3.12", "@salesforce/kit": "^3.1.1", "@salesforce/ts-types": "^2.0.9", "fast-levenshtein": "^3.0.0", @@ -40,8 +40,8 @@ }, "devDependencies": { "@jsforce/jsforce-node": "^3.2.0", - "@salesforce/cli-plugins-testkit": "^5.3.8", - "@salesforce/dev-scripts": "^9.1.2", + "@salesforce/cli-plugins-testkit": "^5.3.10", + "@salesforce/dev-scripts": "^10.1.0", "@types/deep-equal-in-any-order": "^1.0.1", "@types/fast-levenshtein": "^0.0.4", "@types/graceful-fs": "^4.1.9", diff --git a/test/snapshot/sampleProjects/mpdWithLabels/snapshots.test.ts b/test/snapshot/sampleProjects/mpdWithLabels/snapshots.test.ts index dcd27a25d1..206bb2f164 100644 --- a/test/snapshot/sampleProjects/mpdWithLabels/snapshots.test.ts +++ b/test/snapshot/sampleProjects/mpdWithLabels/snapshots.test.ts @@ -16,7 +16,7 @@ import { ComponentSetBuilder } from '../../../../src/collections/componentSetBui const folder = 'mpdWithLabels'; const tmpFolder = `${folder}Tmp`; const testOriginalDir = path.join('test', 'snapshot', 'sampleProjects', folder); -const testDir = testOriginalDir.replace(folder, `${folder}Tmp`); +const testDir = testOriginalDir.replace(folder, tmpFolder); const pkgDirs = ['force-app', 'my-app', path.join('foo-bar', 'app')]; const resolvedPkgDirs = pkgDirs.map((d) => path.join(testDir, d)); @@ -32,6 +32,7 @@ describe('recompose/decompose mpd project with labels', () => { }); const cs = await ComponentSetBuilder.build({ sourcepath: resolvedPkgDirs, + apiversion: '60.0', }); const converter = new MetadataConverter(); await converter.convert(cs, 'metadata', { diff --git a/yarn.lock b/yarn.lock index 85a44cd39c..e2f34fed63 100644 --- a/yarn.lock +++ b/yarn.lock @@ -548,54 +548,55 @@ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== -"@salesforce/cli-plugins-testkit@^5.3.8": - version "5.3.8" - resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.8.tgz#35c0d34b17e04a1162cdfa6c6450bda3f9062502" - integrity sha512-A+//ZlAwRPQQylIAPwo2Lob5PfSObyFbiYqYsG/ktBQlF41MASZHkCb/3/qJv1/2gPusVOUbEsmF1LRIj8reNg== +"@salesforce/cli-plugins-testkit@^5.3.10": + version "5.3.10" + resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.10.tgz#d2dbd19525b0c91ae6ea037c90d437f604855b03" + integrity sha512-D41LFxtkZGExooVecva5q/oGM+ggsoK7BDcxfdpHS+wD4c62pzQC9qeH7qb3QZczmvXf5Iyt1g/c9ajBzvk74g== dependencies: - "@salesforce/core" "^7.3.9" + "@salesforce/core" "^7.3.12" "@salesforce/kit" "^3.1.2" "@salesforce/ts-types" "^2.0.9" "@types/shelljs" "^0.8.15" - debug "^4.3.1" + debug "^4.3.5" jszip "^3.10.1" shelljs "^0.8.4" sinon "^17.0.2" strip-ansi "6.0.1" ts-retry-promise "^0.8.1" -"@salesforce/core@^7.3.8", "@salesforce/core@^7.3.9": - version "7.3.9" - resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-7.3.9.tgz#8abe2b3e2393989d11e92b7a6b96043fc9d5b9c8" - integrity sha512-eJqDiA5b7wU50Ee/xjmGzSnHrNVJ8S77B7enfX30gm7gxU3i3M3QeBdiV6XAOPLSIL96DseofP6Tv6c+rljlKA== +"@salesforce/core@^7.3.12", "@salesforce/core@^7.3.8": + version "7.3.12" + resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-7.3.12.tgz#9138980db21566c467f35afe9192f33bf77f160c" + integrity sha512-a53KYv2xaJpmFlN4haI7ewaMpRqdRwaqbm11wLn0il6+LNR1/2zkRdqE3opdTW6aXNvVecNu0YQj5/u3Uz3oPw== dependencies: "@jsforce/jsforce-node" "^3.2.0" - "@salesforce/kit" "^3.1.1" + "@salesforce/kit" "^3.1.2" "@salesforce/schemas" "^1.9.0" "@salesforce/ts-types" "^2.0.9" - ajv "^8.13.0" + ajv "^8.15.0" change-case "^4.1.2" + fast-levenshtein "^3.0.0" faye "^1.4.0" form-data "^4.0.0" js2xmlparser "^4.0.1" jsonwebtoken "9.0.2" jszip "3.10.1" pino "^8.21.0" - pino-abstract-transport "^1.1.0" + pino-abstract-transport "^1.2.0" pino-pretty "^10.3.1" proper-lockfile "^4.1.2" semver "^7.6.2" - ts-retry-promise "^0.7.1" + ts-retry-promise "^0.8.1" "@salesforce/dev-config@^4.1.0": version "4.1.0" resolved "https://registry.yarnpkg.com/@salesforce/dev-config/-/dev-config-4.1.0.tgz#e529576466d074e7a5f1441236510fef123da01e" integrity sha512-2iDDepiIwjXHS5IVY7pwv8jMo4xWosJ7p/UTj+lllpB/gnJiYLhjJPE4Z3FCGFKyvfg5jGaimCd8Ca6bLGsCQA== -"@salesforce/dev-scripts@^9.1.2": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-9.1.2.tgz#41180b427bc4d97acd6667410f6b7642bfc000fe" - integrity sha512-ZVNL2j3rU+qDZ6G1nxu6pV8HFdru2L9PYL//npEmvnofwt4j8fmYiZD39K8ljLN3RxT7X1//b55R1h0DbcgeLA== +"@salesforce/dev-scripts@^10.1.0": + version "10.1.0" + resolved "https://registry.yarnpkg.com/@salesforce/dev-scripts/-/dev-scripts-10.1.0.tgz#9bf765a5c8d46725e35d994fa32a1fe8f25019ba" + integrity sha512-8fItXnCR8G5n950Ymgrjc6CGJjR80376v6GIdjatv3AmMVJAB/GerglcNF/LIJjBXB5OLxiTLAjQdPCvWqBL1g== dependencies: "@commitlint/cli" "^17.1.2" "@commitlint/config-conventional" "^17.8.1" @@ -1028,10 +1029,10 @@ ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^8.11.0, ajv@^8.13.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.13.0.tgz#a3939eaec9fb80d217ddf0c3376948c023f28c91" - integrity sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA== +ajv@^8.11.0, ajv@^8.15.0: + version "8.16.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.16.0.tgz#22e2a92b94f005f7e0f9c9d39652ef0b8f6f0cb4" + integrity sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw== dependencies: fast-deep-equal "^3.1.3" json-schema-traverse "^1.0.0" @@ -1711,7 +1712,14 @@ dateformat@^4.6.3: resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5" integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA== -debug@4, debug@4.3.4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5: + version "4.3.5" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.5.tgz#e83444eceb9fedd4a1da56d671ae2446a01a6e1e" + integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg== + dependencies: + ms "2.1.2" + +debug@4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -4311,7 +4319,7 @@ picomatch@^3.0.1: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-3.0.1.tgz#817033161def55ec9638567a2f3bbc876b3e7516" integrity sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag== -pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.1.0, pino-abstract-transport@^1.2.0: +pino-abstract-transport@^1.0.0, pino-abstract-transport@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz#97f9f2631931e242da531b5c66d3079c12c9d1b5" integrity sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q== @@ -5015,16 +5023,7 @@ srcset@^5.0.0: resolved "https://registry.yarnpkg.com/srcset/-/srcset-5.0.0.tgz#9df6c3961b5b44a02532ce6ae4544832609e2e3f" integrity sha512-SqEZaAEhe0A6ETEa9O1IhSPC7MdvehZtCnTR0AftXk3QhY2UNgb+NApFOUPZILXk/YTDfFxMTNJOBpzrJsEdIA== -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -5083,14 +5082,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -5275,11 +5267,6 @@ ts-patch@^3.1.1: semver "^7.5.4" strip-ansi "^6.0.1" -ts-retry-promise@^0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/ts-retry-promise/-/ts-retry-promise-0.7.1.tgz#176d6eee6415f07b6c7c286d3657355e284a6906" - integrity sha512-NhHOCZ2AQORvH42hOPO5UZxShlcuiRtm7P2jIq2L2RY3PBxw2mLnUsEdHrIslVBFya1v5aZmrR55lWkzo13LrQ== - ts-retry-promise@^0.8.1: version "0.8.1" resolved "https://registry.yarnpkg.com/ts-retry-promise/-/ts-retry-promise-0.8.1.tgz#ba90eb07cb03677fcbf78fe38e94c9183927e154" @@ -5589,7 +5576,7 @@ workerpool@6.2.1: resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -5607,15 +5594,6 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" From 0b9bcd26cdd9a3702fb0e7cd85a569d802239b21 Mon Sep 17 00:00:00 2001 From: svc-cli-bot Date: Mon, 10 Jun 2024 13:57:42 +0000 Subject: [PATCH 7/8] chore(release): 11.6.6 [skip ci] --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce56a894f7..bd8b3d40d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [11.6.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.5...11.6.6) (2024-06-10) + + +### Bug Fixes + +* **deps:** devScripts update ([#1337](https://github.com/forcedotcom/source-deploy-retrieve/issues/1337)) ([efe70d4](https://github.com/forcedotcom/source-deploy-retrieve/commit/efe70d4f9e6b66e7010fc63603bb7ac78ff2df2c)) + + + ## [11.6.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.4...11.6.5) (2024-06-03) diff --git a/package.json b/package.json index 61cb5bf5fe..c53d46b5b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@salesforce/source-deploy-retrieve", - "version": "11.6.5", + "version": "11.6.6", "description": "JavaScript library to run Salesforce metadata deploys and retrieves", "main": "lib/src/index.js", "author": "Salesforce", From 4460cca0317e3693fc1a7a3b86b9a621e1715261 Mon Sep 17 00:00:00 2001 From: Shane McLaughlin Date: Mon, 10 Jun 2024 09:35:32 -0500 Subject: [PATCH 8/8] test: new ext nuts on PDR (#973) * test: new ext nuts on PDR * fix(deps): bump core/kit/ts-types --- .github/workflows/create-github-release.yml | 4 +- .github/workflows/test.yml | 1 + CHANGELOG.md | 1935 ++++--------------- METADATA_SUPPORT.md | 1260 ++++++------ contributing/metadata.md | 2 +- 5 files changed, 1038 insertions(+), 2164 deletions(-) diff --git a/.github/workflows/create-github-release.yml b/.github/workflows/create-github-release.yml index d0e48f970a..06579c29f8 100644 --- a/.github/workflows/create-github-release.yml +++ b/.github/workflows/create-github-release.yml @@ -6,12 +6,12 @@ on: - main - prerelease/** tags-ignore: - - "*" + - '*' workflow_dispatch: inputs: prerelease: type: string - description: "Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here." + description: 'Name to use for the prerelease: beta, dev, etc. NOTE: If this is already set in the package.json, it does not need to be passed in here.' jobs: release: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2b8a51d035..f33aca009d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,6 +71,7 @@ jobs: - 'yarn test:nuts:convert' - 'yarn test:nuts:deb' - 'yarn test:nuts:delete' + - 'yarn test:nuts:deploy' - 'yarn test:nuts:deploy:metadata:manifest' - 'yarn test:nuts:deploy:metadata:metadata' - 'yarn test:nuts:deploy:metadata:metadata-dir' diff --git a/CHANGELOG.md b/CHANGELOG.md index bd8b3d40d1..87fbc31234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,3340 +9,2215 @@ ## [11.6.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.4...11.6.5) (2024-06-03) - ### Bug Fixes -* "did you mean" for project metadata detects mdapi format ([8830972](https://github.com/forcedotcom/source-deploy-retrieve/commit/88309728e9f9c11387b56ebbd63adcfc76f40ba3)) - - +- "did you mean" for project metadata detects mdapi format ([8830972](https://github.com/forcedotcom/source-deploy-retrieve/commit/88309728e9f9c11387b56ebbd63adcfc76f40ba3)) ## [11.6.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.3...11.6.4) (2024-05-31) - ### Bug Fixes -* set forceIgnoredPaths on CS ([#1330](https://github.com/forcedotcom/source-deploy-retrieve/issues/1330)) ([f28206e](https://github.com/forcedotcom/source-deploy-retrieve/commit/f28206e4465a71c7bc50ee15d21bc8e8c00e33bd)) - - +- set forceIgnoredPaths on CS ([#1330](https://github.com/forcedotcom/source-deploy-retrieve/issues/1330)) ([f28206e](https://github.com/forcedotcom/source-deploy-retrieve/commit/f28206e4465a71c7bc50ee15d21bc8e8c00e33bd)) ## [11.6.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.2...11.6.3) (2024-05-26) - ### Bug Fixes -* **deps:** bump @salesforce/core from 7.3.8 to 7.3.9 ([#1324](https://github.com/forcedotcom/source-deploy-retrieve/issues/1324)) ([7c6e3c8](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c6e3c89b959938ce31c10ca0dd9bac463afadbb)) - - +- **deps:** bump @salesforce/core from 7.3.8 to 7.3.9 ([#1324](https://github.com/forcedotcom/source-deploy-retrieve/issues/1324)) ([7c6e3c8](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c6e3c89b959938ce31c10ca0dd9bac463afadbb)) ## [11.6.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.1...11.6.2) (2024-05-23) - ### Bug Fixes -* **mdTypes:** pluralize genai type dirs ([#1322](https://github.com/forcedotcom/source-deploy-retrieve/issues/1322)) ([faac5bc](https://github.com/forcedotcom/source-deploy-retrieve/commit/faac5bcac21dae01d051335e89441dd6c5aadc9f)) - - +- **mdTypes:** pluralize genai type dirs ([#1322](https://github.com/forcedotcom/source-deploy-retrieve/issues/1322)) ([faac5bc](https://github.com/forcedotcom/source-deploy-retrieve/commit/faac5bcac21dae01d051335e89441dd6c5aadc9f)) ## [11.6.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.6.0...11.6.1) (2024-05-22) - - # [11.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.5.0...11.6.0) (2024-05-21) - ### Features -* rename presets property ([#1312](https://github.com/forcedotcom/source-deploy-retrieve/issues/1312)) ([df722e3](https://github.com/forcedotcom/source-deploy-retrieve/commit/df722e3c67420b8ef65dd6832eb74d5b52ded54c)) - - +- rename presets property ([#1312](https://github.com/forcedotcom/source-deploy-retrieve/issues/1312)) ([df722e3](https://github.com/forcedotcom/source-deploy-retrieve/commit/df722e3c67420b8ef65dd6832eb74d5b52ded54c)) # [11.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.4.4...11.5.0) (2024-05-20) - ### Features -* **mdTypes:** add support for genAiFunction, genAiPlanner ([#1319](https://github.com/forcedotcom/source-deploy-retrieve/issues/1319)) ([01648b4](https://github.com/forcedotcom/source-deploy-retrieve/commit/01648b4e1254391a7ecf6e5aa4373bcf62aea802)) - - +- **mdTypes:** add support for genAiFunction, genAiPlanner ([#1319](https://github.com/forcedotcom/source-deploy-retrieve/issues/1319)) ([01648b4](https://github.com/forcedotcom/source-deploy-retrieve/commit/01648b4e1254391a7ecf6e5aa4373bcf62aea802)) ## [11.4.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.4.3...11.4.4) (2024-05-14) - ### Bug Fixes -* if no component set to match against, skip checking server response ([#1311](https://github.com/forcedotcom/source-deploy-retrieve/issues/1311)) ([2d7fa28](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d7fa28befcb9eea56ec339694604cac8000843f)) - - +- if no component set to match against, skip checking server response ([#1311](https://github.com/forcedotcom/source-deploy-retrieve/issues/1311)) ([2d7fa28](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d7fa28befcb9eea56ec339694604cac8000843f)) ## [11.4.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.4.2...11.4.3) (2024-05-10) - ### Bug Fixes -* md names handle spaces, colons, and both ([#1297](https://github.com/forcedotcom/source-deploy-retrieve/issues/1297)) ([76e9486](https://github.com/forcedotcom/source-deploy-retrieve/commit/76e9486ac642e59136dbd0133838349df56ac0f9)) - - +- md names handle spaces, colons, and both ([#1297](https://github.com/forcedotcom/source-deploy-retrieve/issues/1297)) ([76e9486](https://github.com/forcedotcom/source-deploy-retrieve/commit/76e9486ac642e59136dbd0133838349df56ac0f9)) ## [11.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.4.1...11.4.2) (2024-05-10) - ### Bug Fixes -* use `projectDir` when getting API version ([#1307](https://github.com/forcedotcom/source-deploy-retrieve/issues/1307)) ([a79023a](https://github.com/forcedotcom/source-deploy-retrieve/commit/a79023afaf08fe702d98ae56f387c8c3d47229bb)) - - +- use `projectDir` when getting API version ([#1307](https://github.com/forcedotcom/source-deploy-retrieve/issues/1307)) ([a79023a](https://github.com/forcedotcom/source-deploy-retrieve/commit/a79023afaf08fe702d98ae56f387c8c3d47229bb)) ## [11.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.4.0...11.4.1) (2024-05-10) - ### Bug Fixes -* prevent empty parent xml overwrites ([#1308](https://github.com/forcedotcom/source-deploy-retrieve/issues/1308)) ([b8a8c7f](https://github.com/forcedotcom/source-deploy-retrieve/commit/b8a8c7f6a37c9418a4acd57965414ac4a95446f4)) - - +- prevent empty parent xml overwrites ([#1308](https://github.com/forcedotcom/source-deploy-retrieve/issues/1308)) ([b8a8c7f](https://github.com/forcedotcom/source-deploy-retrieve/commit/b8a8c7f6a37c9418a4acd57965414ac4a95446f4)) # [11.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.3.0...11.4.0) (2024-05-06) - ### Features -* **mdTypes:** ForecastingGroup, SearchCustomization, SearchOrgWideObjectConfig, RetrievalSummaryDefinition ([#1306](https://github.com/forcedotcom/source-deploy-retrieve/issues/1306)) ([04d3318](https://github.com/forcedotcom/source-deploy-retrieve/commit/04d331828a68012537d990c81c996b3c0a88b632)) - - +- **mdTypes:** ForecastingGroup, SearchCustomization, SearchOrgWideObjectConfig, RetrievalSummaryDefinition ([#1306](https://github.com/forcedotcom/source-deploy-retrieve/issues/1306)) ([04d3318](https://github.com/forcedotcom/source-deploy-retrieve/commit/04d331828a68012537d990c81c996b3c0a88b632)) # [11.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.2.0...11.3.0) (2024-05-02) - ### Features -* warn about ignoring unpackaged ([#1301](https://github.com/forcedotcom/source-deploy-retrieve/issues/1301)) ([f81576f](https://github.com/forcedotcom/source-deploy-retrieve/commit/f81576f436429562574bae623a1b38666a97f65a)) - - +- warn about ignoring unpackaged ([#1301](https://github.com/forcedotcom/source-deploy-retrieve/issues/1301)) ([f81576f](https://github.com/forcedotcom/source-deploy-retrieve/commit/f81576f436429562574bae623a1b38666a97f65a)) # [11.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.1.3...11.2.0) (2024-04-30) - ### Features -* warn about legacy suffix use ([#1298](https://github.com/forcedotcom/source-deploy-retrieve/issues/1298)) ([6ad87d2](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ad87d2db19ef72aa00878b94115d77813eb1f56)) - - +- warn about legacy suffix use ([#1298](https://github.com/forcedotcom/source-deploy-retrieve/issues/1298)) ([6ad87d2](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ad87d2db19ef72aa00878b94115d77813eb1f56)) ## [11.1.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.1.2...11.1.3) (2024-04-30) - ### Bug Fixes -* preserve xml comments in decomposed files ([#1288](https://github.com/forcedotcom/source-deploy-retrieve/issues/1288)) ([ba1dc28](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba1dc2843e2c3c6f776b2833c5578665901cfe7d)) - - +- preserve xml comments in decomposed files ([#1288](https://github.com/forcedotcom/source-deploy-retrieve/issues/1288)) ([ba1dc28](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba1dc2843e2c3c6f776b2833c5578665901cfe7d)) ## [11.1.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.1.1...11.1.2) (2024-04-25) - ### Bug Fixes -* forceignore ignores output file correctly - cleanup extra type d… ([#1295](https://github.com/forcedotcom/source-deploy-retrieve/issues/1295)) ([287b13e](https://github.com/forcedotcom/source-deploy-retrieve/commit/287b13e60549fc5bc5a104a4d15a0ff549301d3b)) - - +- forceignore ignores output file correctly - cleanup extra type d… ([#1295](https://github.com/forcedotcom/source-deploy-retrieve/issues/1295)) ([287b13e](https://github.com/forcedotcom/source-deploy-retrieve/commit/287b13e60549fc5bc5a104a4d15a0ff549301d3b)) ## [11.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.1.0...11.1.1) (2024-04-23) - ### Bug Fixes -* from-org refactor ([#1296](https://github.com/forcedotcom/source-deploy-retrieve/issues/1296)) ([2fecb51](https://github.com/forcedotcom/source-deploy-retrieve/commit/2fecb513f4acd566c04671fa2917185e210257a2)) - - +- from-org refactor ([#1296](https://github.com/forcedotcom/source-deploy-retrieve/issues/1296)) ([2fecb51](https://github.com/forcedotcom/source-deploy-retrieve/commit/2fecb513f4acd566c04671fa2917185e210257a2)) # [11.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.0.2...11.1.0) (2024-04-23) - ### Features -* allow destructive changes with MetadataOptions ([#1294](https://github.com/forcedotcom/source-deploy-retrieve/issues/1294)) ([7dad1c7](https://github.com/forcedotcom/source-deploy-retrieve/commit/7dad1c7be70cfc6a50d78671d796753d9747154b)) - - +- allow destructive changes with MetadataOptions ([#1294](https://github.com/forcedotcom/source-deploy-retrieve/issues/1294)) ([7dad1c7](https://github.com/forcedotcom/source-deploy-retrieve/commit/7dad1c7be70cfc6a50d78671d796753d9747154b)) ## [11.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.0.1...11.0.2) (2024-04-21) - ### Bug Fixes -* **deps:** bump @salesforce/core from 7.2.0 to 7.3.0 ([#1291](https://github.com/forcedotcom/source-deploy-retrieve/issues/1291)) ([69be659](https://github.com/forcedotcom/source-deploy-retrieve/commit/69be6596b28a65626c1d5c07ca91dcff38533a7e)) - - +- **deps:** bump @salesforce/core from 7.2.0 to 7.3.0 ([#1291](https://github.com/forcedotcom/source-deploy-retrieve/issues/1291)) ([69be659](https://github.com/forcedotcom/source-deploy-retrieve/commit/69be6596b28a65626c1d5c07ca91dcff38533a7e)) ## [11.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/11.0.0...11.0.1) (2024-04-14) - ### Bug Fixes -* **deps:** bump @salesforce/core from 7.0.0 to 7.2.0 ([#1281](https://github.com/forcedotcom/source-deploy-retrieve/issues/1281)) ([ac430f3](https://github.com/forcedotcom/source-deploy-retrieve/commit/ac430f3a0df0e70b6ef8f8c4778eaac9ca195af6)) - - +- **deps:** bump @salesforce/core from 7.0.0 to 7.2.0 ([#1281](https://github.com/forcedotcom/source-deploy-retrieve/issues/1281)) ([ac430f3](https://github.com/forcedotcom/source-deploy-retrieve/commit/ac430f3a0df0e70b6ef8f8c4778eaac9ca195af6)) # [11.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.9.1...11.0.0) (2024-04-10) - -* feat!: sfdx-core7, jsforce-node (#1280) ([7d8d111](https://github.com/forcedotcom/source-deploy-retrieve/commit/7d8d11136b1917027d92ddd52220acd8879e5fc6)), closes [#1280](https://github.com/forcedotcom/source-deploy-retrieve/issues/1280) - +- feat!: sfdx-core7, jsforce-node (#1280) ([7d8d111](https://github.com/forcedotcom/source-deploy-retrieve/commit/7d8d11136b1917027d92ddd52220acd8879e5fc6)), closes [#1280](https://github.com/forcedotcom/source-deploy-retrieve/issues/1280) ### BREAKING CHANGES -* sfdx-core7, jsforce-node - - +- sfdx-core7, jsforce-node ## [10.9.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.9.0...10.9.1) (2024-04-05) - ### Bug Fixes -* expand mdTransfer error ([#1275](https://github.com/forcedotcom/source-deploy-retrieve/issues/1275)) ([8e12937](https://github.com/forcedotcom/source-deploy-retrieve/commit/8e129376bf9fe7c83db2d6b6f4fd0fad1eea25bf)) - - +- expand mdTransfer error ([#1275](https://github.com/forcedotcom/source-deploy-retrieve/issues/1275)) ([8e12937](https://github.com/forcedotcom/source-deploy-retrieve/commit/8e129376bf9fe7c83db2d6b6f4fd0fad1eea25bf)) # [10.9.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.8.0...10.9.0) (2024-04-03) - ### Features -* absolute paths for string replacements for out-of-project ([#1239](https://github.com/forcedotcom/source-deploy-retrieve/issues/1239)) ([0b3e75f](https://github.com/forcedotcom/source-deploy-retrieve/commit/0b3e75fcf4a9a689666672d917a88d889ca82961)) - - +- absolute paths for string replacements for out-of-project ([#1239](https://github.com/forcedotcom/source-deploy-retrieve/issues/1239)) ([0b3e75f](https://github.com/forcedotcom/source-deploy-retrieve/commit/0b3e75fcf4a9a689666672d917a88d889ca82961)) # [10.8.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.7.1...10.8.0) (2024-04-03) - ### Features -* variants instrumentation ([#1272](https://github.com/forcedotcom/source-deploy-retrieve/issues/1272)) ([1261096](https://github.com/forcedotcom/source-deploy-retrieve/commit/12610965bae0eed81e65f1fc81afffbddda7b024)) - - +- variants instrumentation ([#1272](https://github.com/forcedotcom/source-deploy-retrieve/issues/1272)) ([1261096](https://github.com/forcedotcom/source-deploy-retrieve/commit/12610965bae0eed81e65f1fc81afffbddda7b024)) ## [10.7.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.7.0...10.7.1) (2024-04-01) - ### Bug Fixes -* suffix mismatch ([#1270](https://github.com/forcedotcom/source-deploy-retrieve/issues/1270)) ([15b1ec1](https://github.com/forcedotcom/source-deploy-retrieve/commit/15b1ec10ab639977a35c2c82b3055a6bc73c74d2)) - - +- suffix mismatch ([#1270](https://github.com/forcedotcom/source-deploy-retrieve/issues/1270)) ([15b1ec1](https://github.com/forcedotcom/source-deploy-retrieve/commit/15b1ec10ab639977a35c2c82b3055a6bc73c74d2)) # [10.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.6.2...10.7.0) (2024-03-29) - ### Bug Fixes -* throw on bad presets ([#1266](https://github.com/forcedotcom/source-deploy-retrieve/issues/1266)) ([0385629](https://github.com/forcedotcom/source-deploy-retrieve/commit/03856296edf3d36eeaa83350fcf95386469984ed)) - +- throw on bad presets ([#1266](https://github.com/forcedotcom/source-deploy-retrieve/issues/1266)) ([0385629](https://github.com/forcedotcom/source-deploy-retrieve/commit/03856296edf3d36eeaa83350fcf95386469984ed)) ### Features -* add AffinityScoreDefinition metadatatype ([#1267](https://github.com/forcedotcom/source-deploy-retrieve/issues/1267)) ([18ff186](https://github.com/forcedotcom/source-deploy-retrieve/commit/18ff186c48bc75619e4999fa4a67bb8566d368a5)) - - +- add AffinityScoreDefinition metadatatype ([#1267](https://github.com/forcedotcom/source-deploy-retrieve/issues/1267)) ([18ff186](https://github.com/forcedotcom/source-deploy-retrieve/commit/18ff186c48bc75619e4999fa4a67bb8566d368a5)) ## [10.6.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.6.1...10.6.2) (2024-03-29) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.3.5 to 4.3.6 ([#1258](https://github.com/forcedotcom/source-deploy-retrieve/issues/1258)) ([7c17d45](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c17d4546b25c91cd0e0818715727151c85a0cb1)) - - +- **deps:** bump fast-xml-parser from 4.3.5 to 4.3.6 ([#1258](https://github.com/forcedotcom/source-deploy-retrieve/issues/1258)) ([7c17d45](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c17d4546b25c91cd0e0818715727151c85a0cb1)) ## [10.6.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.6.0...10.6.1) (2024-03-28) - ### Bug Fixes -* non-zip conversions return empty arrays for converted and deleted ([#1265](https://github.com/forcedotcom/source-deploy-retrieve/issues/1265)) ([06cc230](https://github.com/forcedotcom/source-deploy-retrieve/commit/06cc23016695f0c39df9b1699aea0583a0acbaaa)) - - +- non-zip conversions return empty arrays for converted and deleted ([#1265](https://github.com/forcedotcom/source-deploy-retrieve/issues/1265)) ([06cc230](https://github.com/forcedotcom/source-deploy-retrieve/commit/06cc23016695f0c39df9b1699aea0583a0acbaaa)) # [10.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.6...10.6.0) (2024-03-28) - ### Features -* registryCustomizations ([#1217](https://github.com/forcedotcom/source-deploy-retrieve/issues/1217)) ([eaa37b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/eaa37b2046f172b3f5183d516aa303975b9358ba)) - - +- registryCustomizations ([#1217](https://github.com/forcedotcom/source-deploy-retrieve/issues/1217)) ([eaa37b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/eaa37b2046f172b3f5183d516aa303975b9358ba)) ## [10.5.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.5...10.5.6) (2024-03-24) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.7.1 to 6.7.3 ([#1264](https://github.com/forcedotcom/source-deploy-retrieve/issues/1264)) ([12079ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/12079aef75b59413e05935b4e3bea382774da04c)) - - +- **deps:** bump @salesforce/core from 6.7.1 to 6.7.3 ([#1264](https://github.com/forcedotcom/source-deploy-retrieve/issues/1264)) ([12079ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/12079aef75b59413e05935b4e3bea382774da04c)) ## [10.5.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.4...10.5.5) (2024-03-22) - ### Bug Fixes -* allow the same SC in delete and deploy manifests ([#1261](https://github.com/forcedotcom/source-deploy-retrieve/issues/1261)) ([d4c7f53](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4c7f535ea7ed9f72cdc85d20cbbae5a3af12b78)) - - +- allow the same SC in delete and deploy manifests ([#1261](https://github.com/forcedotcom/source-deploy-retrieve/issues/1261)) ([d4c7f53](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4c7f535ea7ed9f72cdc85d20cbbae5a3af12b78)) ## [10.5.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.3...10.5.4) (2024-03-20) - ### Bug Fixes -* refactor for better typing and readability ([#1262](https://github.com/forcedotcom/source-deploy-retrieve/issues/1262)) ([8d89dbc](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d89dbc9d925f4be5cf6ff71020293eba538450f)) - - +- refactor for better typing and readability ([#1262](https://github.com/forcedotcom/source-deploy-retrieve/issues/1262)) ([8d89dbc](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d89dbc9d925f4be5cf6ff71020293eba538450f)) ## [10.5.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.2...10.5.3) (2024-03-19) - ### Bug Fixes -* handle string replacements for individual custom labels ([#1257](https://github.com/forcedotcom/source-deploy-retrieve/issues/1257)) ([70571e8](https://github.com/forcedotcom/source-deploy-retrieve/commit/70571e8d43b6395b86dc31ad0103859536f554f5)) - - +- handle string replacements for individual custom labels ([#1257](https://github.com/forcedotcom/source-deploy-retrieve/issues/1257)) ([70571e8](https://github.com/forcedotcom/source-deploy-retrieve/commit/70571e8d43b6395b86dc31ad0103859536f554f5)) ## [10.5.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.1...10.5.2) (2024-03-13) - ### Bug Fixes -* metadataConverter writes zip to dir and works outside of project ([#1252](https://github.com/forcedotcom/source-deploy-retrieve/issues/1252)) ([d947fc6](https://github.com/forcedotcom/source-deploy-retrieve/commit/d947fc6c1e500f3688b8f0cf3a49e56da660afa0)) - - +- metadataConverter writes zip to dir and works outside of project ([#1252](https://github.com/forcedotcom/source-deploy-retrieve/issues/1252)) ([d947fc6](https://github.com/forcedotcom/source-deploy-retrieve/commit/d947fc6c1e500f3688b8f0cf3a49e56da660afa0)) ## [10.5.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.5.0...10.5.1) (2024-03-03) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.5.5 to 6.7.0 ([#1250](https://github.com/forcedotcom/source-deploy-retrieve/issues/1250)) ([f36ce41](https://github.com/forcedotcom/source-deploy-retrieve/commit/f36ce416eeda7d5b3587d1e2ca3a54b21f22690b)) - - +- **deps:** bump @salesforce/core from 6.5.5 to 6.7.0 ([#1250](https://github.com/forcedotcom/source-deploy-retrieve/issues/1250)) ([f36ce41](https://github.com/forcedotcom/source-deploy-retrieve/commit/f36ce416eeda7d5b3587d1e2ca3a54b21f22690b)) # [10.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.4.2...10.5.0) (2024-02-26) - ### Features -* add EnablementProgramDefiniton ([#1243](https://github.com/forcedotcom/source-deploy-retrieve/issues/1243)) ([1bf5c33](https://github.com/forcedotcom/source-deploy-retrieve/commit/1bf5c33a69866dea0a5ee424ad69d1f542b1b4be)) - - +- add EnablementProgramDefiniton ([#1243](https://github.com/forcedotcom/source-deploy-retrieve/issues/1243)) ([1bf5c33](https://github.com/forcedotcom/source-deploy-retrieve/commit/1bf5c33a69866dea0a5ee424ad69d1f542b1b4be)) ## [10.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.4.1...10.4.2) (2024-02-25) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.3.4 to 4.3.5 ([#1244](https://github.com/forcedotcom/source-deploy-retrieve/issues/1244)) ([2484b4f](https://github.com/forcedotcom/source-deploy-retrieve/commit/2484b4f8f49ce273ecd9215f9000083a04325605)) - - +- **deps:** bump fast-xml-parser from 4.3.4 to 4.3.5 ([#1244](https://github.com/forcedotcom/source-deploy-retrieve/issues/1244)) ([2484b4f](https://github.com/forcedotcom/source-deploy-retrieve/commit/2484b4f8f49ce273ecd9215f9000083a04325605)) ## [10.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.4.0...10.4.1) (2024-02-25) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.5.3 to 6.5.5 ([#1245](https://github.com/forcedotcom/source-deploy-retrieve/issues/1245)) ([3f44568](https://github.com/forcedotcom/source-deploy-retrieve/commit/3f44568e85df74b84a665a534bac8c40bd8bcda0)) - - +- **deps:** bump @salesforce/core from 6.5.3 to 6.5.5 ([#1245](https://github.com/forcedotcom/source-deploy-retrieve/issues/1245)) ([3f44568](https://github.com/forcedotcom/source-deploy-retrieve/commit/3f44568e85df74b84a665a534bac8c40bd8bcda0)) # [10.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.10...10.4.0) (2024-02-21) - ### Features -* OauthTokenExchangeHandler, ActionableEventOrchDef, ActionableEventTypeDef, OmniExtTrackingDef ([#1241](https://github.com/forcedotcom/source-deploy-retrieve/issues/1241)) ([1423b76](https://github.com/forcedotcom/source-deploy-retrieve/commit/1423b7645e09f6983ca6449da1da3c5c42eb7d01)) - - +- OauthTokenExchangeHandler, ActionableEventOrchDef, ActionableEventTypeDef, OmniExtTrackingDef ([#1241](https://github.com/forcedotcom/source-deploy-retrieve/issues/1241)) ([1423b76](https://github.com/forcedotcom/source-deploy-retrieve/commit/1423b7645e09f6983ca6449da1da3c5c42eb7d01)) ## [10.3.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.9...10.3.10) (2024-02-18) - ### Bug Fixes -* **deps:** bump proxy-agent from 6.3.1 to 6.4.0 ([#1238](https://github.com/forcedotcom/source-deploy-retrieve/issues/1238)) ([819f4ce](https://github.com/forcedotcom/source-deploy-retrieve/commit/819f4ce6557438e86e9b3cd82d60e4308497d6a6)) - - +- **deps:** bump proxy-agent from 6.3.1 to 6.4.0 ([#1238](https://github.com/forcedotcom/source-deploy-retrieve/issues/1238)) ([819f4ce](https://github.com/forcedotcom/source-deploy-retrieve/commit/819f4ce6557438e86e9b3cd82d60e4308497d6a6)) ## [10.3.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.8...10.3.9) (2024-02-12) - - ## [10.3.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.7...10.3.8) (2024-02-09) - ### Bug Fixes -* defend against bad mdapi responses ([#1236](https://github.com/forcedotcom/source-deploy-retrieve/issues/1236)) ([d35911d](https://github.com/forcedotcom/source-deploy-retrieve/commit/d35911dda97c552f167c9ab7b3b9e818f7f4085b)) - - +- defend against bad mdapi responses ([#1236](https://github.com/forcedotcom/source-deploy-retrieve/issues/1236)) ([d35911d](https://github.com/forcedotcom/source-deploy-retrieve/commit/d35911dda97c552f167c9ab7b3b9e818f7f4085b)) ## [10.3.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.6...10.3.7) (2024-02-08) - ### Bug Fixes -* recompose decomposed xml using xmlElementName where it exists ([#1234](https://github.com/forcedotcom/source-deploy-retrieve/issues/1234)) ([4cf89e1](https://github.com/forcedotcom/source-deploy-retrieve/commit/4cf89e1f62a001d8006f165c014bfe7857f4bde0)) - - +- recompose decomposed xml using xmlElementName where it exists ([#1234](https://github.com/forcedotcom/source-deploy-retrieve/issues/1234)) ([4cf89e1](https://github.com/forcedotcom/source-deploy-retrieve/commit/4cf89e1f62a001d8006f165c014bfe7857f4bde0)) ## [10.3.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.5...10.3.6) (2024-02-08) - ### Bug Fixes -* decompose by any folder name ([#1233](https://github.com/forcedotcom/source-deploy-retrieve/issues/1233)) ([98901dd](https://github.com/forcedotcom/source-deploy-retrieve/commit/98901ddeac1d93d4093f4e9050a492bd8da6c029)) - - +- decompose by any folder name ([#1233](https://github.com/forcedotcom/source-deploy-retrieve/issues/1233)) ([98901dd](https://github.com/forcedotcom/source-deploy-retrieve/commit/98901ddeac1d93d4093f4e9050a492bd8da6c029)) ## [10.3.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.4...10.3.5) (2024-02-06) - ### Bug Fixes -* revert ESVersion,DMVersion ([#1160](https://github.com/forcedotcom/source-deploy-retrieve/issues/1160))" ([#1230](https://github.com/forcedotcom/source-deploy-retrieve/issues/1230)) ([0660e43](https://github.com/forcedotcom/source-deploy-retrieve/commit/0660e4316a1d2e606eeec9e4a446780875f9a99c)) - - +- revert ESVersion,DMVersion ([#1160](https://github.com/forcedotcom/source-deploy-retrieve/issues/1160))" ([#1230](https://github.com/forcedotcom/source-deploy-retrieve/issues/1230)) ([0660e43](https://github.com/forcedotcom/source-deploy-retrieve/commit/0660e4316a1d2e606eeec9e4a446780875f9a99c)) ## [10.3.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.3...10.3.4) (2024-02-06) - ### Bug Fixes -* deployment of ESVersion,DMVersion ([#1160](https://github.com/forcedotcom/source-deploy-retrieve/issues/1160)) ([51007ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/51007aef63c4d7422e3f1a271072c31bef1c88b5)) - - +- deployment of ESVersion,DMVersion ([#1160](https://github.com/forcedotcom/source-deploy-retrieve/issues/1160)) ([51007ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/51007aef63c4d7422e3f1a271072c31bef1c88b5)) ## [10.3.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.2...10.3.3) (2024-02-04) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.3.2 to 4.3.4 ([#1227](https://github.com/forcedotcom/source-deploy-retrieve/issues/1227)) ([02554d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/02554d564a4a1ed9cebfa194afa60da71f1573f1)) - - +- **deps:** bump fast-xml-parser from 4.3.2 to 4.3.4 ([#1227](https://github.com/forcedotcom/source-deploy-retrieve/issues/1227)) ([02554d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/02554d564a4a1ed9cebfa194afa60da71f1573f1)) ## [10.3.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.1...10.3.2) (2024-02-04) - ### Bug Fixes -* **deps:** bump ignore from 5.3.0 to 5.3.1 ([#1228](https://github.com/forcedotcom/source-deploy-retrieve/issues/1228)) ([8d9f6e1](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d9f6e1b404efc336761eb0f7b7ff53ca61ae8e9)) - - +- **deps:** bump ignore from 5.3.0 to 5.3.1 ([#1228](https://github.com/forcedotcom/source-deploy-retrieve/issues/1228)) ([8d9f6e1](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d9f6e1b404efc336761eb0f7b7ff53ca61ae8e9)) ## [10.3.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.3.0...10.3.1) (2024-01-31) - ### Bug Fixes -* override forceignore defaults ([#1224](https://github.com/forcedotcom/source-deploy-retrieve/issues/1224)) ([954097b](https://github.com/forcedotcom/source-deploy-retrieve/commit/954097b521e503e32973e0ab5396461e39453612)) - - +- override forceignore defaults ([#1224](https://github.com/forcedotcom/source-deploy-retrieve/issues/1224)) ([954097b](https://github.com/forcedotcom/source-deploy-retrieve/commit/954097b521e503e32973e0ab5396461e39453612)) # [10.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.14...10.3.0) (2024-01-30) - ### Features -* adding gen ai prompt template support ([ca3b440](https://github.com/forcedotcom/source-deploy-retrieve/commit/ca3b440352d006e5e69269597612e944fb0a9c9c)) - - +- adding gen ai prompt template support ([ca3b440](https://github.com/forcedotcom/source-deploy-retrieve/commit/ca3b440352d006e5e69269597612e944fb0a9c9c)) ## [10.2.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.13...10.2.14) (2024-01-28) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.4.7 to 6.5.1 ([#1222](https://github.com/forcedotcom/source-deploy-retrieve/issues/1222)) ([989b429](https://github.com/forcedotcom/source-deploy-retrieve/commit/989b429f2833141722f3ce259dd46875cb291e57)) - - +- **deps:** bump @salesforce/core from 6.4.7 to 6.5.1 ([#1222](https://github.com/forcedotcom/source-deploy-retrieve/issues/1222)) ([989b429](https://github.com/forcedotcom/source-deploy-retrieve/commit/989b429f2833141722f3ce259dd46875cb291e57)) ## [10.2.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.12...10.2.13) (2024-01-23) - ### Bug Fixes -* use appexchange org for last resort api version ([#1219](https://github.com/forcedotcom/source-deploy-retrieve/issues/1219)) ([c9f15b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9f15b213af54577a3b09c762b89029cb515e463)) - - +- use appexchange org for last resort api version ([#1219](https://github.com/forcedotcom/source-deploy-retrieve/issues/1219)) ([c9f15b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9f15b213af54577a3b09c762b89029cb515e463)) ## [10.2.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.11...10.2.12) (2024-01-23) - ### Bug Fixes -* metadataRegistry entries for IdentityVerificationProcDev were incorrect. fixed ([#1221](https://github.com/forcedotcom/source-deploy-retrieve/issues/1221)) ([4acf942](https://github.com/forcedotcom/source-deploy-retrieve/commit/4acf94294be7a403c20d3231cb04b8a4153c8214)) - - +- metadataRegistry entries for IdentityVerificationProcDev were incorrect. fixed ([#1221](https://github.com/forcedotcom/source-deploy-retrieve/issues/1221)) ([4acf942](https://github.com/forcedotcom/source-deploy-retrieve/commit/4acf94294be7a403c20d3231cb04b8a4153c8214)) ## [10.2.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.10...10.2.11) (2024-01-14) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.4.4 to 6.4.7 ([#1212](https://github.com/forcedotcom/source-deploy-retrieve/issues/1212)) ([10107d1](https://github.com/forcedotcom/source-deploy-retrieve/commit/10107d15fe192e9294c6cb66c87358c801279b60)) - - +- **deps:** bump @salesforce/core from 6.4.4 to 6.4.7 ([#1212](https://github.com/forcedotcom/source-deploy-retrieve/issues/1212)) ([10107d1](https://github.com/forcedotcom/source-deploy-retrieve/commit/10107d15fe192e9294c6cb66c87358c801279b60)) ## [10.2.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.9...10.2.10) (2024-01-12) - ### Bug Fixes -* add ExtlClntAppNotificationSettings to registry ([#1211](https://github.com/forcedotcom/source-deploy-retrieve/issues/1211)) ([3ed42c2](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ed42c2e5cdfaca06acb0be3821d02905e2e5306)) - - +- add ExtlClntAppNotificationSettings to registry ([#1211](https://github.com/forcedotcom/source-deploy-retrieve/issues/1211)) ([3ed42c2](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ed42c2e5cdfaca06acb0be3821d02905e2e5306)) ## [10.2.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.8...10.2.9) (2024-01-10) - ### Bug Fixes -* add DataCalcInsightTemplate and DataKitObjectTemplate ([#1210](https://github.com/forcedotcom/source-deploy-retrieve/issues/1210)) ([cb845b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/cb845b3759051438e3511530fefa36bdd0d189cd)) - - +- add DataCalcInsightTemplate and DataKitObjectTemplate ([#1210](https://github.com/forcedotcom/source-deploy-retrieve/issues/1210)) ([cb845b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/cb845b3759051438e3511530fefa36bdd0d189cd)) ## [10.2.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.7...10.2.8) (2024-01-09) - ### Bug Fixes -* add the ExpressionSetObjectAlias metadata type ([#1209](https://github.com/forcedotcom/source-deploy-retrieve/issues/1209)) ([896ec32](https://github.com/forcedotcom/source-deploy-retrieve/commit/896ec326982fdeea91feb03b2fd39e47bf407b29)) - - +- add the ExpressionSetObjectAlias metadata type ([#1209](https://github.com/forcedotcom/source-deploy-retrieve/issues/1209)) ([896ec32](https://github.com/forcedotcom/source-deploy-retrieve/commit/896ec326982fdeea91feb03b2fd39e47bf407b29)) ## [10.2.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.6...10.2.7) (2024-01-07) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.4.2 to 6.4.4 ([#1206](https://github.com/forcedotcom/source-deploy-retrieve/issues/1206)) ([5408f2b](https://github.com/forcedotcom/source-deploy-retrieve/commit/5408f2b308c9366063a1aef16397537c86ccd437)) - - +- **deps:** bump @salesforce/core from 6.4.2 to 6.4.4 ([#1206](https://github.com/forcedotcom/source-deploy-retrieve/issues/1206)) ([5408f2b](https://github.com/forcedotcom/source-deploy-retrieve/commit/5408f2b308c9366063a1aef16397537c86ccd437)) ## [10.2.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.5...10.2.6) (2024-01-04) - ### Bug Fixes -* Qa/1202 - add support for ExtDataTranObjectTemplate and ExtDataTranFieldTemplate ([#1203](https://github.com/forcedotcom/source-deploy-retrieve/issues/1203)) ([f4d03d8](https://github.com/forcedotcom/source-deploy-retrieve/commit/f4d03d84821ae9179738f2a2c0f0c4a429c38a37)) - - +- Qa/1202 - add support for ExtDataTranObjectTemplate and ExtDataTranFieldTemplate ([#1203](https://github.com/forcedotcom/source-deploy-retrieve/issues/1203)) ([f4d03d8](https://github.com/forcedotcom/source-deploy-retrieve/commit/f4d03d84821ae9179738f2a2c0f0c4a429c38a37)) ## [10.2.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.4...10.2.5) (2023-12-24) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.4.1 to 6.4.2 ([#1198](https://github.com/forcedotcom/source-deploy-retrieve/issues/1198)) ([46d1082](https://github.com/forcedotcom/source-deploy-retrieve/commit/46d1082e80d8ca2d8e7080a6385e9f0b590567b8)) - - +- **deps:** bump @salesforce/core from 6.4.1 to 6.4.2 ([#1198](https://github.com/forcedotcom/source-deploy-retrieve/issues/1198)) ([46d1082](https://github.com/forcedotcom/source-deploy-retrieve/commit/46d1082e80d8ca2d8e7080a6385e9f0b590567b8)) ## [10.2.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.3...10.2.4) (2023-12-17) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.4.0 to 6.4.1 ([#1193](https://github.com/forcedotcom/source-deploy-retrieve/issues/1193)) ([94dca14](https://github.com/forcedotcom/source-deploy-retrieve/commit/94dca14ca2205c347fff194370562fad895954df)) - - +- **deps:** bump @salesforce/core from 6.4.0 to 6.4.1 ([#1193](https://github.com/forcedotcom/source-deploy-retrieve/issues/1193)) ([94dca14](https://github.com/forcedotcom/source-deploy-retrieve/commit/94dca14ca2205c347fff194370562fad895954df)) ## [10.2.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.2...10.2.3) (2023-12-15) - ### Bug Fixes -* change mdcoverage url for getCurrentApiVersion ([#1191](https://github.com/forcedotcom/source-deploy-retrieve/issues/1191)) ([ff82bb9](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff82bb963a3f847023ade67de8e0b5c09038b5aa)) - - +- change mdcoverage url for getCurrentApiVersion ([#1191](https://github.com/forcedotcom/source-deploy-retrieve/issues/1191)) ([ff82bb9](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff82bb963a3f847023ade67de8e0b5c09038b5aa)) ## [10.2.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.1...10.2.2) (2023-12-15) - ### Bug Fixes -* implicit dependency ([#1192](https://github.com/forcedotcom/source-deploy-retrieve/issues/1192)) ([d691e5e](https://github.com/forcedotcom/source-deploy-retrieve/commit/d691e5e1eedb348584820e2cd16a86d8ac890043)) - - +- implicit dependency ([#1192](https://github.com/forcedotcom/source-deploy-retrieve/issues/1192)) ([d691e5e](https://github.com/forcedotcom/source-deploy-retrieve/commit/d691e5e1eedb348584820e2cd16a86d8ac890043)) ## [10.2.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.2.0...10.2.1) (2023-12-10) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.2.2 to 6.4.0 ([#1189](https://github.com/forcedotcom/source-deploy-retrieve/issues/1189)) ([2c72ce9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2c72ce9628fb37c6d5ebe2cd94e647c777538951)) - - +- **deps:** bump @salesforce/core from 6.2.2 to 6.4.0 ([#1189](https://github.com/forcedotcom/source-deploy-retrieve/issues/1189)) ([2c72ce9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2c72ce9628fb37c6d5ebe2cd94e647c777538951)) # [10.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.1.0...10.2.0) (2023-12-07) - ### Features -* 3 entities for Service Catalog Eligibility Rules ([#1185](https://github.com/forcedotcom/source-deploy-retrieve/issues/1185)) ([a1e0a58](https://github.com/forcedotcom/source-deploy-retrieve/commit/a1e0a58ade6de0449f70bfbb00184134afa99df4)) - - +- 3 entities for Service Catalog Eligibility Rules ([#1185](https://github.com/forcedotcom/source-deploy-retrieve/issues/1185)) ([a1e0a58](https://github.com/forcedotcom/source-deploy-retrieve/commit/a1e0a58ade6de0449f70bfbb00184134afa99df4)) # [10.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.0.4...10.1.0) (2023-12-05) - ### Features -* build ComponentSet using metadata and an org connection ([#1182](https://github.com/forcedotcom/source-deploy-retrieve/issues/1182)) ([d4d2b93](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4d2b93847c264cf303bdd81fac906364e09fc16)) - - +- build ComponentSet using metadata and an org connection ([#1182](https://github.com/forcedotcom/source-deploy-retrieve/issues/1182)) ([d4d2b93](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4d2b93847c264cf303bdd81fac906364e09fc16)) ## [10.0.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.0.3...10.0.4) (2023-12-03) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.2.0 to 6.2.2 ([#1184](https://github.com/forcedotcom/source-deploy-retrieve/issues/1184)) ([db6e0e8](https://github.com/forcedotcom/source-deploy-retrieve/commit/db6e0e85b36fbde5acdf5164a6ed4ee63a7713b1)) - - +- **deps:** bump @salesforce/core from 6.2.0 to 6.2.2 ([#1184](https://github.com/forcedotcom/source-deploy-retrieve/issues/1184)) ([db6e0e8](https://github.com/forcedotcom/source-deploy-retrieve/commit/db6e0e85b36fbde5acdf5164a6ed4ee63a7713b1)) ## [10.0.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.0.2...10.0.3) (2023-11-26) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.1.3 to 6.2.0 ([#1181](https://github.com/forcedotcom/source-deploy-retrieve/issues/1181)) ([125e7cf](https://github.com/forcedotcom/source-deploy-retrieve/commit/125e7cf639240bbae6d97b5661d5ee430934e6e2)) - - +- **deps:** bump @salesforce/core from 6.1.3 to 6.2.0 ([#1181](https://github.com/forcedotcom/source-deploy-retrieve/issues/1181)) ([125e7cf](https://github.com/forcedotcom/source-deploy-retrieve/commit/125e7cf639240bbae6d97b5661d5ee430934e6e2)) ## [10.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.0.1...10.0.2) (2023-11-19) - ### Bug Fixes -* **deps:** bump ignore from 5.2.4 to 5.3.0 ([#1177](https://github.com/forcedotcom/source-deploy-retrieve/issues/1177)) ([009bce2](https://github.com/forcedotcom/source-deploy-retrieve/commit/009bce2ee2d71cb76e7c9ddb159438577a69ab7b)) - - +- **deps:** bump ignore from 5.2.4 to 5.3.0 ([#1177](https://github.com/forcedotcom/source-deploy-retrieve/issues/1177)) ([009bce2](https://github.com/forcedotcom/source-deploy-retrieve/commit/009bce2ee2d71cb76e7c9ddb159438577a69ab7b)) ## [10.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/10.0.0...10.0.1) (2023-11-19) - ### Bug Fixes -* **deps:** bump @salesforce/core from 6.1.0 to 6.1.3 ([#1178](https://github.com/forcedotcom/source-deploy-retrieve/issues/1178)) ([4b42925](https://github.com/forcedotcom/source-deploy-retrieve/commit/4b429251bae7b3075b198a20c55fd0c9fc040632)) - - +- **deps:** bump @salesforce/core from 6.1.0 to 6.1.3 ([#1178](https://github.com/forcedotcom/source-deploy-retrieve/issues/1178)) ([4b42925](https://github.com/forcedotcom/source-deploy-retrieve/commit/4b429251bae7b3075b198a20c55fd0c9fc040632)) # [10.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.6...10.0.0) (2023-11-15) - -* feat!: require node18, use core6 ([6af3a90](https://github.com/forcedotcom/source-deploy-retrieve/commit/6af3a9004f7cb89ae02dee2259ec0f80b16f7b90)) - +- feat!: require node18, use core6 ([6af3a90](https://github.com/forcedotcom/source-deploy-retrieve/commit/6af3a9004f7cb89ae02dee2259ec0f80b16f7b90)) ### BREAKING CHANGES -* require node18+ - -* chore: core6 - +- require node18+ +- chore: core6 ## [9.8.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.5...9.8.6) (2023-11-12) - ### Bug Fixes -* **lint:** current linter rules ([#1159](https://github.com/forcedotcom/source-deploy-retrieve/issues/1159)) ([5ae721a](https://github.com/forcedotcom/source-deploy-retrieve/commit/5ae721ad469c0cc3d8a9697e9b69ad1f4dec1eeb)) - - +- **lint:** current linter rules ([#1159](https://github.com/forcedotcom/source-deploy-retrieve/issues/1159)) ([5ae721a](https://github.com/forcedotcom/source-deploy-retrieve/commit/5ae721ad469c0cc3d8a9697e9b69ad1f4dec1eeb)) ## [9.8.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.4...9.8.5) (2023-11-09) - ### Bug Fixes -* catch decoding errors ([#1167](https://github.com/forcedotcom/source-deploy-retrieve/issues/1167)) ([15f1137](https://github.com/forcedotcom/source-deploy-retrieve/commit/15f11371e3f9142da08341d47718745e4c740480)) - - +- catch decoding errors ([#1167](https://github.com/forcedotcom/source-deploy-retrieve/issues/1167)) ([15f1137](https://github.com/forcedotcom/source-deploy-retrieve/commit/15f11371e3f9142da08341d47718745e4c740480)) ## [9.8.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.3...9.8.4) (2023-11-05) - ### Bug Fixes -* **deps:** bump @salesforce/core from 5.3.16 to 5.3.17 ([#1166](https://github.com/forcedotcom/source-deploy-retrieve/issues/1166)) ([11030af](https://github.com/forcedotcom/source-deploy-retrieve/commit/11030afdd4b698dcdc887c1c3860d421a0692248)) - - +- **deps:** bump @salesforce/core from 5.3.16 to 5.3.17 ([#1166](https://github.com/forcedotcom/source-deploy-retrieve/issues/1166)) ([11030af](https://github.com/forcedotcom/source-deploy-retrieve/commit/11030afdd4b698dcdc887c1c3860d421a0692248)) ## [9.8.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.2...9.8.3) (2023-11-02) - ### Bug Fixes -* support metadata type managedEventSubscription ([#1162](https://github.com/forcedotcom/source-deploy-retrieve/issues/1162)) ([8afad5a](https://github.com/forcedotcom/source-deploy-retrieve/commit/8afad5a2859255a1d88744a07ba0f55bb3c1585b)) - - +- support metadata type managedEventSubscription ([#1162](https://github.com/forcedotcom/source-deploy-retrieve/issues/1162)) ([8afad5a](https://github.com/forcedotcom/source-deploy-retrieve/commit/8afad5a2859255a1d88744a07ba0f55bb3c1585b)) ## [9.8.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.1...9.8.2) (2023-11-02) - ### Bug Fixes -* add support for more metadata types ([#1161](https://github.com/forcedotcom/source-deploy-retrieve/issues/1161)) ([b4748aa](https://github.com/forcedotcom/source-deploy-retrieve/commit/b4748aae6811f23828804a9fd0a891ec43651faa)) - - +- add support for more metadata types ([#1161](https://github.com/forcedotcom/source-deploy-retrieve/issues/1161)) ([b4748aa](https://github.com/forcedotcom/source-deploy-retrieve/commit/b4748aae6811f23828804a9fd0a891ec43651faa)) ## [9.8.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.8.0...9.8.1) (2023-10-31) - ### Bug Fixes -* Wr/coft mpd ([#1146](https://github.com/forcedotcom/source-deploy-retrieve/issues/1146)) ([7fdfd33](https://github.com/forcedotcom/source-deploy-retrieve/commit/7fdfd337d843e95babc950c628c371eccd8d7e7c)) - - +- Wr/coft mpd ([#1146](https://github.com/forcedotcom/source-deploy-retrieve/issues/1146)) ([7fdfd33](https://github.com/forcedotcom/source-deploy-retrieve/commit/7fdfd337d843e95babc950c628c371eccd8d7e7c)) # [9.8.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.29...9.8.0) (2023-10-30) - ### Features -* replaces unzipper library with jszip ([#1086](https://github.com/forcedotcom/source-deploy-retrieve/issues/1086)) ([6bc0c12](https://github.com/forcedotcom/source-deploy-retrieve/commit/6bc0c12bc2cdb4cfe5f49c2b460843baf39ed388)) - - +- replaces unzipper library with jszip ([#1086](https://github.com/forcedotcom/source-deploy-retrieve/issues/1086)) ([6bc0c12](https://github.com/forcedotcom/source-deploy-retrieve/commit/6bc0c12bc2cdb4cfe5f49c2b460843baf39ed388)) ## [9.7.29](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.28...9.7.29) (2023-10-29) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 2.0.8 to 2.0.9 ([#1155](https://github.com/forcedotcom/source-deploy-retrieve/issues/1155)) ([04af179](https://github.com/forcedotcom/source-deploy-retrieve/commit/04af17922d850cd385d31dae226568cba43cc30b)) +- **deps:** bump @salesforce/ts-types from 2.0.8 to 2.0.9 ([#1155](https://github.com/forcedotcom/source-deploy-retrieve/issues/1155)) ([04af179](https://github.com/forcedotcom/source-deploy-retrieve/commit/04af17922d850cd385d31dae226568cba43cc30b)) +## [9.7.28](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.27...9.7.28) (2023-10-22) +### Bug Fixes -## [9.7.28](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.27...9.7.28) (2023-10-22) +- **deps:** bump @salesforce/core from 5.3.9 to 5.3.10 ([#1149](https://github.com/forcedotcom/source-deploy-retrieve/issues/1149)) ([d0d02e7](https://github.com/forcedotcom/source-deploy-retrieve/commit/d0d02e75f951e518f893c1f32b31aa93fd2ee8a4)) +## [9.7.27](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.26...9.7.27) (2023-10-17) ### Bug Fixes -* **deps:** bump @salesforce/core from 5.3.9 to 5.3.10 ([#1149](https://github.com/forcedotcom/source-deploy-retrieve/issues/1149)) ([d0d02e7](https://github.com/forcedotcom/source-deploy-retrieve/commit/d0d02e75f951e518f893c1f32b31aa93fd2ee8a4)) +- remove duplicates from file responses ([#1137](https://github.com/forcedotcom/source-deploy-retrieve/issues/1137)) ([a8b4ebf](https://github.com/forcedotcom/source-deploy-retrieve/commit/a8b4ebf14b9441c21bfc53514208e2b22c084ae3)) +## [9.7.26](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.25...9.7.26) (2023-10-17) +### Bug Fixes -## [9.7.27](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.26...9.7.27) (2023-10-17) +- **deps:** bump @salesforce/kit from 3.0.11 to 3.0.13 ([#1141](https://github.com/forcedotcom/source-deploy-retrieve/issues/1141)) ([1963957](https://github.com/forcedotcom/source-deploy-retrieve/commit/1963957cd41dc982ceb3b19d4258d70796589976)) +## [9.7.25](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.24...9.7.25) (2023-10-16) ### Bug Fixes -* remove duplicates from file responses ([#1137](https://github.com/forcedotcom/source-deploy-retrieve/issues/1137)) ([a8b4ebf](https://github.com/forcedotcom/source-deploy-retrieve/commit/a8b4ebf14b9441c21bfc53514208e2b22c084ae3)) +- component set maps treat encoded and decoded keys as the same ([#1138](https://github.com/forcedotcom/source-deploy-retrieve/issues/1138)) ([7fe0bab](https://github.com/forcedotcom/source-deploy-retrieve/commit/7fe0bab1d6815afa3daad7ed0a3cac4f5808ea20)) +## [9.7.24](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.23...9.7.24) (2023-10-09) +### Bug Fixes -## [9.7.26](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.25...9.7.26) (2023-10-17) +- include line/col numbers in deploy failures ([#1130](https://github.com/forcedotcom/source-deploy-retrieve/issues/1130)) ([dc6320f](https://github.com/forcedotcom/source-deploy-retrieve/commit/dc6320fca42c89e315e70c5332f896ca1985681b)) +## [9.7.23](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.22...9.7.23) (2023-10-08) ### Bug Fixes -* **deps:** bump @salesforce/kit from 3.0.11 to 3.0.13 ([#1141](https://github.com/forcedotcom/source-deploy-retrieve/issues/1141)) ([1963957](https://github.com/forcedotcom/source-deploy-retrieve/commit/1963957cd41dc982ceb3b19d4258d70796589976)) +- **deps:** bump fast-xml-parser from 4.2.7 to 4.3.2 ([#1134](https://github.com/forcedotcom/source-deploy-retrieve/issues/1134)) ([fdee418](https://github.com/forcedotcom/source-deploy-retrieve/commit/fdee41810a9cd053c192d5bd4ecc3d6dcb605271)) +## [9.7.22](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.21...9.7.22) (2023-10-04) +### Bug Fixes -## [9.7.25](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.24...9.7.25) (2023-10-16) +- support metadata type EventRelayConfig ([#1129](https://github.com/forcedotcom/source-deploy-retrieve/issues/1129)) ([d41afe8](https://github.com/forcedotcom/source-deploy-retrieve/commit/d41afe875bdcbaa4d8a67b1ec7d5fec2e1acd398)) +## [9.7.21](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.20...9.7.21) (2023-10-03) ### Bug Fixes -* component set maps treat encoded and decoded keys as the same ([#1138](https://github.com/forcedotcom/source-deploy-retrieve/issues/1138)) ([7fe0bab](https://github.com/forcedotcom/source-deploy-retrieve/commit/7fe0bab1d6815afa3daad7ed0a3cac4f5808ea20)) +- one-off handling of 1 html entity ([#1128](https://github.com/forcedotcom/source-deploy-retrieve/issues/1128)) ([544bccb](https://github.com/forcedotcom/source-deploy-retrieve/commit/544bccbeba8af94233ee102906ac5959403869de)) +## [9.7.20](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.19...9.7.20) (2023-10-01) +### Bug Fixes -## [9.7.24](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.23...9.7.24) (2023-10-09) +- **deps:** bump @salesforce/core from 5.2.10 to 5.3.1 ([#1123](https://github.com/forcedotcom/source-deploy-retrieve/issues/1123)) ([85c247b](https://github.com/forcedotcom/source-deploy-retrieve/commit/85c247b5d772a50e1470d2b2001c23f4c6e8178a)) +## [9.7.19](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.18...9.7.19) (2023-09-29) ### Bug Fixes -* include line/col numbers in deploy failures ([#1130](https://github.com/forcedotcom/source-deploy-retrieve/issues/1130)) ([dc6320f](https://github.com/forcedotcom/source-deploy-retrieve/commit/dc6320fca42c89e315e70c5332f896ca1985681b)) - - - -## [9.7.23](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.22...9.7.23) (2023-10-08) - - -### Bug Fixes - -* **deps:** bump fast-xml-parser from 4.2.7 to 4.3.2 ([#1134](https://github.com/forcedotcom/source-deploy-retrieve/issues/1134)) ([fdee418](https://github.com/forcedotcom/source-deploy-retrieve/commit/fdee41810a9cd053c192d5bd4ecc3d6dcb605271)) - - - -## [9.7.22](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.21...9.7.22) (2023-10-04) - - -### Bug Fixes - -* support metadata type EventRelayConfig ([#1129](https://github.com/forcedotcom/source-deploy-retrieve/issues/1129)) ([d41afe8](https://github.com/forcedotcom/source-deploy-retrieve/commit/d41afe875bdcbaa4d8a67b1ec7d5fec2e1acd398)) - - - -## [9.7.21](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.20...9.7.21) (2023-10-03) - - -### Bug Fixes - -* one-off handling of 1 html entity ([#1128](https://github.com/forcedotcom/source-deploy-retrieve/issues/1128)) ([544bccb](https://github.com/forcedotcom/source-deploy-retrieve/commit/544bccbeba8af94233ee102906ac5959403869de)) - - - -## [9.7.20](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.19...9.7.20) (2023-10-01) - - -### Bug Fixes - -* **deps:** bump @salesforce/core from 5.2.10 to 5.3.1 ([#1123](https://github.com/forcedotcom/source-deploy-retrieve/issues/1123)) ([85c247b](https://github.com/forcedotcom/source-deploy-retrieve/commit/85c247b5d772a50e1470d2b2001c23f4c6e8178a)) - - - -## [9.7.19](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.18...9.7.19) (2023-09-29) - - -### Bug Fixes - -* metadata type support for ExtlClntAppConfigurablePolicies ([9aeb1cc](https://github.com/forcedotcom/source-deploy-retrieve/commit/9aeb1ccf5ac520a37b074cd3911d996fe048f8e7)) - - +- metadata type support for ExtlClntAppConfigurablePolicies ([9aeb1cc](https://github.com/forcedotcom/source-deploy-retrieve/commit/9aeb1ccf5ac520a37b074cd3911d996fe048f8e7)) ## [9.7.18](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.17...9.7.18) (2023-09-27) - ### Bug Fixes -* **mdTypes:** add ConversationChannelDefinition support ([f82fa77](https://github.com/forcedotcom/source-deploy-retrieve/commit/f82fa77269b645ed1c25cdccc845f7699b93ad14)) - - +- **mdTypes:** add ConversationChannelDefinition support ([f82fa77](https://github.com/forcedotcom/source-deploy-retrieve/commit/f82fa77269b645ed1c25cdccc845f7699b93ad14)) ## [9.7.17](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.16...9.7.17) (2023-09-26) - ### Bug Fixes -* new coverage locations ([#1119](https://github.com/forcedotcom/source-deploy-retrieve/issues/1119)) ([9e6e076](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e6e076520332812c922388b836be28af26ec6b5)) - - +- new coverage locations ([#1119](https://github.com/forcedotcom/source-deploy-retrieve/issues/1119)) ([9e6e076](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e6e076520332812c922388b836be28af26ec6b5)) ## [9.7.16](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.15...9.7.16) (2023-09-24) - ### Bug Fixes -* **deps:** bump @salesforce/core from 5.2.9 to 5.2.10 ([#1116](https://github.com/forcedotcom/source-deploy-retrieve/issues/1116)) ([5cf4338](https://github.com/forcedotcom/source-deploy-retrieve/commit/5cf4338a4d59f56f855017176aa8ffc6ab575361)) - - +- **deps:** bump @salesforce/core from 5.2.9 to 5.2.10 ([#1116](https://github.com/forcedotcom/source-deploy-retrieve/issues/1116)) ([5cf4338](https://github.com/forcedotcom/source-deploy-retrieve/commit/5cf4338a4d59f56f855017176aa8ffc6ab575361)) ## [9.7.15](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.14...9.7.15) (2023-09-18) - ### Bug Fixes -* handle opt-in force-ignore (directories fix) ([8c619a8](https://github.com/forcedotcom/source-deploy-retrieve/commit/8c619a82d9b517c58611333d1461d2803481d028)) - - +- handle opt-in force-ignore (directories fix) ([8c619a8](https://github.com/forcedotcom/source-deploy-retrieve/commit/8c619a82d9b517c58611333d1461d2803481d028)) ## [9.7.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.13...9.7.14) (2023-09-17) - ### Bug Fixes -* **deps:** bump @salesforce/core from 5.2.7 to 5.2.9 ([#1111](https://github.com/forcedotcom/source-deploy-retrieve/issues/1111)) ([da20fb4](https://github.com/forcedotcom/source-deploy-retrieve/commit/da20fb463b27514e4b05e563530282f17b835335)) - - +- **deps:** bump @salesforce/core from 5.2.7 to 5.2.9 ([#1111](https://github.com/forcedotcom/source-deploy-retrieve/issues/1111)) ([da20fb4](https://github.com/forcedotcom/source-deploy-retrieve/commit/da20fb463b27514e4b05e563530282f17b835335)) ## [9.7.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.12...9.7.13) (2023-09-10) - - ## [9.7.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.11...9.7.12) (2023-09-10) - ### Bug Fixes -* **deps:** bump proxy-agent from 6.3.0 to 6.3.1 ([#1105](https://github.com/forcedotcom/source-deploy-retrieve/issues/1105)) ([268fa40](https://github.com/forcedotcom/source-deploy-retrieve/commit/268fa40ec5b8d159a397a72d6ad8bc975e46d797)) - - +- **deps:** bump proxy-agent from 6.3.0 to 6.3.1 ([#1105](https://github.com/forcedotcom/source-deploy-retrieve/issues/1105)) ([268fa40](https://github.com/forcedotcom/source-deploy-retrieve/commit/268fa40ec5b8d159a397a72d6ad8bc975e46d797)) ## [9.7.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.10...9.7.11) (2023-09-10) - ### Bug Fixes -* **deps:** bump @salesforce/core from 5.2.6 to 5.2.7 ([#1107](https://github.com/forcedotcom/source-deploy-retrieve/issues/1107)) ([35b8850](https://github.com/forcedotcom/source-deploy-retrieve/commit/35b8850e25ad1197ed16e0b3d0d673f0af46b5ca)) - - +- **deps:** bump @salesforce/core from 5.2.6 to 5.2.7 ([#1107](https://github.com/forcedotcom/source-deploy-retrieve/issues/1107)) ([35b8850](https://github.com/forcedotcom/source-deploy-retrieve/commit/35b8850e25ad1197ed16e0b3d0d673f0af46b5ca)) ## [9.7.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.9...9.7.10) (2023-09-08) - ### Bug Fixes -* retry server enomem ([#1103](https://github.com/forcedotcom/source-deploy-retrieve/issues/1103)) ([987c77d](https://github.com/forcedotcom/source-deploy-retrieve/commit/987c77dd63da7122120ce2febd9d9c9b15e869e0)) - - +- retry server enomem ([#1103](https://github.com/forcedotcom/source-deploy-retrieve/issues/1103)) ([987c77d](https://github.com/forcedotcom/source-deploy-retrieve/commit/987c77dd63da7122120ce2febd9d9c9b15e869e0)) ## [9.7.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.8...9.7.9) (2023-09-05) - ### Reverts -* Revert "feat!: component set components are now DecodableMaps (#1080)" (#1101) ([615c477](https://github.com/forcedotcom/source-deploy-retrieve/commit/615c477f777d71742c5a741e3852b3f780bf44c0)), closes [#1080](https://github.com/forcedotcom/source-deploy-retrieve/issues/1080) [#1101](https://github.com/forcedotcom/source-deploy-retrieve/issues/1101) - - +- Revert "feat!: component set components are now DecodableMaps (#1080)" (#1101) ([615c477](https://github.com/forcedotcom/source-deploy-retrieve/commit/615c477f777d71742c5a741e3852b3f780bf44c0)), closes [#1080](https://github.com/forcedotcom/source-deploy-retrieve/issues/1080) [#1101](https://github.com/forcedotcom/source-deploy-retrieve/issues/1101) ## [9.7.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.7...9.7.8) (2023-08-27) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 3.0.9 to 3.0.11 ([#1090](https://github.com/forcedotcom/source-deploy-retrieve/issues/1090)) ([17c4ef0](https://github.com/forcedotcom/source-deploy-retrieve/commit/17c4ef059d9f9585613c2ee6707ffe8449358600)) - - +- **deps:** bump @salesforce/kit from 3.0.9 to 3.0.11 ([#1090](https://github.com/forcedotcom/source-deploy-retrieve/issues/1090)) ([17c4ef0](https://github.com/forcedotcom/source-deploy-retrieve/commit/17c4ef059d9f9585613c2ee6707ffe8449358600)) ## [9.7.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.6...9.7.7) (2023-08-22) - ### Bug Fixes -* @W-12612279 Adding FundraisingConfig to metadata registry ([#1085](https://github.com/forcedotcom/source-deploy-retrieve/issues/1085)) ([e5c23d8](https://github.com/forcedotcom/source-deploy-retrieve/commit/e5c23d8f33a3cf7d864a49bcdb7d6f820ee83a04)) - - +- @W-12612279 Adding FundraisingConfig to metadata registry ([#1085](https://github.com/forcedotcom/source-deploy-retrieve/issues/1085)) ([e5c23d8](https://github.com/forcedotcom/source-deploy-retrieve/commit/e5c23d8f33a3cf7d864a49bcdb7d6f820ee83a04)) ## [9.7.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.5...9.7.6) (2023-08-20) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 2.0.6 to 2.0.7 ([#1083](https://github.com/forcedotcom/source-deploy-retrieve/issues/1083)) ([a239052](https://github.com/forcedotcom/source-deploy-retrieve/commit/a239052fb3cb0546c1b7956231837bdfa63a911b)) - - +- **deps:** bump @salesforce/ts-types from 2.0.6 to 2.0.7 ([#1083](https://github.com/forcedotcom/source-deploy-retrieve/issues/1083)) ([a239052](https://github.com/forcedotcom/source-deploy-retrieve/commit/a239052fb3cb0546c1b7956231837bdfa63a911b)) ## [9.7.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.4...9.7.5) (2023-08-20) - ### Bug Fixes -* **deps:** bump @salesforce/core from 5.2.0 to 5.2.1 ([#1084](https://github.com/forcedotcom/source-deploy-retrieve/issues/1084)) ([d5dfb49](https://github.com/forcedotcom/source-deploy-retrieve/commit/d5dfb491d7c4e0922bdce9e9101ac7da52d88c38)) - - +- **deps:** bump @salesforce/core from 5.2.0 to 5.2.1 ([#1084](https://github.com/forcedotcom/source-deploy-retrieve/issues/1084)) ([d5dfb49](https://github.com/forcedotcom/source-deploy-retrieve/commit/d5dfb491d7c4e0922bdce9e9101ac7da52d88c38)) ## [9.7.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.3...9.7.4) (2023-08-14) - ### Bug Fixes -* match using decoded component keys in ComponentSet.has() ([#1070](https://github.com/forcedotcom/source-deploy-retrieve/issues/1070)) ([a113e91](https://github.com/forcedotcom/source-deploy-retrieve/commit/a113e91867d39db5c9525336864d825d3a3e05b1)) - - +- match using decoded component keys in ComponentSet.has() ([#1070](https://github.com/forcedotcom/source-deploy-retrieve/issues/1070)) ([a113e91](https://github.com/forcedotcom/source-deploy-retrieve/commit/a113e91867d39db5c9525336864d825d3a3e05b1)) ## [9.7.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.2...9.7.3) (2023-08-10) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.2.6 to 4.2.7 ([#1068](https://github.com/forcedotcom/source-deploy-retrieve/issues/1068)) ([a67e1ed](https://github.com/forcedotcom/source-deploy-retrieve/commit/a67e1ed342caaeba8bc93e8d0f16ee4553a2f5fb)) - - +- **deps:** bump fast-xml-parser from 4.2.6 to 4.2.7 ([#1068](https://github.com/forcedotcom/source-deploy-retrieve/issues/1068)) ([a67e1ed](https://github.com/forcedotcom/source-deploy-retrieve/commit/a67e1ed342caaeba8bc93e8d0f16ee4553a2f5fb)) ## [9.7.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.1...9.7.2) (2023-08-07) - ### Bug Fixes -* **deps:** core5 ([e0c926a](https://github.com/forcedotcom/source-deploy-retrieve/commit/e0c926a958c85c77441515b4392dfdada66f4652)) - - +- **deps:** core5 ([e0c926a](https://github.com/forcedotcom/source-deploy-retrieve/commit/e0c926a958c85c77441515b4392dfdada66f4652)) ## [9.7.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.7.0...9.7.1) (2023-08-03) - ### Bug Fixes -* throw when expected file is ENOENT ([#1062](https://github.com/forcedotcom/source-deploy-retrieve/issues/1062)) ([ad3f441](https://github.com/forcedotcom/source-deploy-retrieve/commit/ad3f441fe8b165cd67ceec08713da4ce26c66997)) - - +- throw when expected file is ENOENT ([#1062](https://github.com/forcedotcom/source-deploy-retrieve/issues/1062)) ([ad3f441](https://github.com/forcedotcom/source-deploy-retrieve/commit/ad3f441fe8b165cd67ceec08713da4ce26c66997)) # [9.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.6.1...9.7.0) (2023-08-02) - ### Features -* add a wildcard expansion to metadata full names when building the CS ([#1063](https://github.com/forcedotcom/source-deploy-retrieve/issues/1063)) ([6a6770b](https://github.com/forcedotcom/source-deploy-retrieve/commit/6a6770b1fc9a263637107b6bdefff863f1eb1264)) - - +- add a wildcard expansion to metadata full names when building the CS ([#1063](https://github.com/forcedotcom/source-deploy-retrieve/issues/1063)) ([6a6770b](https://github.com/forcedotcom/source-deploy-retrieve/commit/6a6770b1fc9a263637107b6bdefff863f1eb1264)) ## [9.6.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.6.0...9.6.1) (2023-07-30) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.2.5 to 4.2.6 ([#1060](https://github.com/forcedotcom/source-deploy-retrieve/issues/1060)) ([12468f0](https://github.com/forcedotcom/source-deploy-retrieve/commit/12468f0c1d3bc111ecac3f4a47660a211b6e20ae)) - - +- **deps:** bump fast-xml-parser from 4.2.5 to 4.2.6 ([#1060](https://github.com/forcedotcom/source-deploy-retrieve/issues/1060)) ([12468f0](https://github.com/forcedotcom/source-deploy-retrieve/commit/12468f0c1d3bc111ecac3f4a47660a211b6e20ae)) # [9.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.5.0...9.6.0) (2023-07-28) - ### Features -* ASM_StdValueSet Registry Update ([#1055](https://github.com/forcedotcom/source-deploy-retrieve/issues/1055)) ([ddae78f](https://github.com/forcedotcom/source-deploy-retrieve/commit/ddae78f4f506ac81e8f3a5eddc57ce4ea2dafa56)) - - +- ASM_StdValueSet Registry Update ([#1055](https://github.com/forcedotcom/source-deploy-retrieve/issues/1055)) ([ddae78f](https://github.com/forcedotcom/source-deploy-retrieve/commit/ddae78f4f506ac81e8f3a5eddc57ce4ea2dafa56)) # [9.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.7...9.5.0) (2023-07-26) - ### Features -* **md-types:** messagingChannel ([#1054](https://github.com/forcedotcom/source-deploy-retrieve/issues/1054)) ([afcff87](https://github.com/forcedotcom/source-deploy-retrieve/commit/afcff87c773a118e12229ce98076688047af0734)) - - +- **md-types:** messagingChannel ([#1054](https://github.com/forcedotcom/source-deploy-retrieve/issues/1054)) ([afcff87](https://github.com/forcedotcom/source-deploy-retrieve/commit/afcff87c773a118e12229ce98076688047af0734)) ## [9.4.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.6...9.4.7) (2023-07-25) - - ## [9.4.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.5...9.4.6) (2023-07-24) - ### Bug Fixes -* spread/push argument limits ([#1046](https://github.com/forcedotcom/source-deploy-retrieve/issues/1046)) ([f878d65](https://github.com/forcedotcom/source-deploy-retrieve/commit/f878d65977cbed6d8a4d3dc1924f14084efcf141)) - - +- spread/push argument limits ([#1046](https://github.com/forcedotcom/source-deploy-retrieve/issues/1046)) ([f878d65](https://github.com/forcedotcom/source-deploy-retrieve/commit/f878d65977cbed6d8a4d3dc1924f14084efcf141)) ## [9.4.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.4...9.4.5) (2023-07-24) - ### Bug Fixes -* missing stdValue ([#1052](https://github.com/forcedotcom/source-deploy-retrieve/issues/1052)) ([0c29b11](https://github.com/forcedotcom/source-deploy-retrieve/commit/0c29b11b943e4d6f3b97acd9ee39a3480982c20a)) - - +- missing stdValue ([#1052](https://github.com/forcedotcom/source-deploy-retrieve/issues/1052)) ([0c29b11](https://github.com/forcedotcom/source-deploy-retrieve/commit/0c29b11b943e4d6f3b97acd9ee39a3480982c20a)) ## [9.4.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.3...9.4.4) (2023-07-23) - ### Bug Fixes -* **deps:** bump proxy-agent from 6.2.2 to 6.3.0 ([#1050](https://github.com/forcedotcom/source-deploy-retrieve/issues/1050)) ([8928932](https://github.com/forcedotcom/source-deploy-retrieve/commit/8928932b4f70723fc29e6b06e5eda1e5061a4ad5)) - - +- **deps:** bump proxy-agent from 6.2.2 to 6.3.0 ([#1050](https://github.com/forcedotcom/source-deploy-retrieve/issues/1050)) ([8928932](https://github.com/forcedotcom/source-deploy-retrieve/commit/8928932b4f70723fc29e6b06e5eda1e5061a4ad5)) ## [9.4.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.2...9.4.3) (2023-07-23) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 3.0.4 to 3.0.6 ([#1051](https://github.com/forcedotcom/source-deploy-retrieve/issues/1051)) ([2d2c94d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d2c94d19ce38e9400f048bbaf88cea13ffa250e)) - - +- **deps:** bump @salesforce/kit from 3.0.4 to 3.0.6 ([#1051](https://github.com/forcedotcom/source-deploy-retrieve/issues/1051)) ([2d2c94d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d2c94d19ce38e9400f048bbaf88cea13ffa250e)) ## [9.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.1...9.4.2) (2023-07-17) - ### Bug Fixes -* **deps:** bump proxy-agent from 6.2.1 to 6.2.2 ([#1041](https://github.com/forcedotcom/source-deploy-retrieve/issues/1041)) ([57bf5ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/57bf5abf555e5d17fd6934ac9057aa5339694580)) - - +- **deps:** bump proxy-agent from 6.2.1 to 6.2.2 ([#1041](https://github.com/forcedotcom/source-deploy-retrieve/issues/1041)) ([57bf5ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/57bf5abf555e5d17fd6934ac9057aa5339694580)) ## [9.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.4.0...9.4.1) (2023-07-16) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 2.0.3 to 2.0.5 ([#1044](https://github.com/forcedotcom/source-deploy-retrieve/issues/1044)) ([2f5a70b](https://github.com/forcedotcom/source-deploy-retrieve/commit/2f5a70bdce4c955d9244c3990be20e82f537eee1)) - - +- **deps:** bump @salesforce/ts-types from 2.0.3 to 2.0.5 ([#1044](https://github.com/forcedotcom/source-deploy-retrieve/issues/1044)) ([2f5a70b](https://github.com/forcedotcom/source-deploy-retrieve/commit/2f5a70bdce4c955d9244c3990be20e82f537eee1)) # [9.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.3.4...9.4.0) (2023-07-14) - ### Features -* **md-types:** ServiceProcess and ProcessFlowMigration ([#1039](https://github.com/forcedotcom/source-deploy-retrieve/issues/1039)) ([2e3f49d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2e3f49d204be064f153b4b317da8bfab6d1809c6)) - - +- **md-types:** ServiceProcess and ProcessFlowMigration ([#1039](https://github.com/forcedotcom/source-deploy-retrieve/issues/1039)) ([2e3f49d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2e3f49d204be064f153b4b317da8bfab6d1809c6)) ## [9.3.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.3.3...9.3.4) (2023-07-09) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 3.0.3 to 3.0.4 ([#1036](https://github.com/forcedotcom/source-deploy-retrieve/issues/1036)) ([7ea893e](https://github.com/forcedotcom/source-deploy-retrieve/commit/7ea893edb268fd422cf55a82b7f567ce5b0236e9)) - - +- **deps:** bump @salesforce/kit from 3.0.3 to 3.0.4 ([#1036](https://github.com/forcedotcom/source-deploy-retrieve/issues/1036)) ([7ea893e](https://github.com/forcedotcom/source-deploy-retrieve/commit/7ea893edb268fd422cf55a82b7f567ce5b0236e9)) ## [9.3.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.3.2...9.3.3) (2023-07-07) - ### Bug Fixes -* add mobile plugin types to registry ([#1033](https://github.com/forcedotcom/source-deploy-retrieve/issues/1033)) ([09a2648](https://github.com/forcedotcom/source-deploy-retrieve/commit/09a2648d50bd269e26424f79e08b245798f6baf5)) - - +- add mobile plugin types to registry ([#1033](https://github.com/forcedotcom/source-deploy-retrieve/issues/1033)) ([09a2648](https://github.com/forcedotcom/source-deploy-retrieve/commit/09a2648d50bd269e26424f79e08b245798f6baf5)) ## [9.3.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.3.1...9.3.2) (2023-07-06) - - ## [9.3.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.3.0...9.3.1) (2023-07-05) - ### Bug Fixes -* add AQLMUFInterval StandardValueSet ([#1030](https://github.com/forcedotcom/source-deploy-retrieve/issues/1030)) ([3ab3931](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ab39312be8e75b412a87984e0fdad3ec00ec2ce)) - - +- add AQLMUFInterval StandardValueSet ([#1030](https://github.com/forcedotcom/source-deploy-retrieve/issues/1030)) ([3ab3931](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ab39312be8e75b412a87984e0fdad3ec00ec2ce)) # [9.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.8...9.3.0) (2023-06-27) - ### Features -* allowUnsetEnvVariable ([#1019](https://github.com/forcedotcom/source-deploy-retrieve/issues/1019)) ([0eeaccf](https://github.com/forcedotcom/source-deploy-retrieve/commit/0eeaccfb1ed05ad742a1472cc025fe2c4cabee5e)) - - +- allowUnsetEnvVariable ([#1019](https://github.com/forcedotcom/source-deploy-retrieve/issues/1019)) ([0eeaccf](https://github.com/forcedotcom/source-deploy-retrieve/commit/0eeaccfb1ed05ad742a1472cc025fe2c4cabee5e)) ## [9.2.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.7...9.2.8) (2023-06-26) - ### Bug Fixes -* Sm/connection-resolve-skip-missing-components ([#1021](https://github.com/forcedotcom/source-deploy-retrieve/issues/1021)) ([ad4068d](https://github.com/forcedotcom/source-deploy-retrieve/commit/ad4068de9890291b9c3c72691dfd362e116758c0)) - - +- Sm/connection-resolve-skip-missing-components ([#1021](https://github.com/forcedotcom/source-deploy-retrieve/issues/1021)) ([ad4068d](https://github.com/forcedotcom/source-deploy-retrieve/commit/ad4068de9890291b9c3c72691dfd362e116758c0)) ## [9.2.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.6...9.2.7) (2023-06-26) - ### Bug Fixes -* restore missing error actions ([#1020](https://github.com/forcedotcom/source-deploy-retrieve/issues/1020)) ([dbbeb21](https://github.com/forcedotcom/source-deploy-retrieve/commit/dbbeb21dcb4a5f04234fe276c436359523a4c904)) - - +- restore missing error actions ([#1020](https://github.com/forcedotcom/source-deploy-retrieve/issues/1020)) ([dbbeb21](https://github.com/forcedotcom/source-deploy-retrieve/commit/dbbeb21dcb4a5f04234fe276c436359523a4c904)) ## [9.2.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.5...9.2.6) (2023-06-25) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.2.4 to 4.2.5 ([#1024](https://github.com/forcedotcom/source-deploy-retrieve/issues/1024)) ([93427a0](https://github.com/forcedotcom/source-deploy-retrieve/commit/93427a05489fbadb236415015cdf2b80c39603e8)) - - +- **deps:** bump fast-xml-parser from 4.2.4 to 4.2.5 ([#1024](https://github.com/forcedotcom/source-deploy-retrieve/issues/1024)) ([93427a0](https://github.com/forcedotcom/source-deploy-retrieve/commit/93427a05489fbadb236415015cdf2b80c39603e8)) ## [9.2.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.4...9.2.5) (2023-06-21) - ### Bug Fixes -* update metadata names for mobile settings and policies ([#1013](https://github.com/forcedotcom/source-deploy-retrieve/issues/1013)) ([4b6a8ff](https://github.com/forcedotcom/source-deploy-retrieve/commit/4b6a8ffbed3927b94e1e67af3b46837f94620a01)) - - +- update metadata names for mobile settings and policies ([#1013](https://github.com/forcedotcom/source-deploy-retrieve/issues/1013)) ([4b6a8ff](https://github.com/forcedotcom/source-deploy-retrieve/commit/4b6a8ffbed3927b94e1e67af3b46837f94620a01)) ## [9.2.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.3...9.2.4) (2023-06-19) - ### Bug Fixes -* better output for mystery component ([#1018](https://github.com/forcedotcom/source-deploy-retrieve/issues/1018)) ([bcc2c4d](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcc2c4dbbd87ffcb5daddbe8a1036d1dc6efceab)) - - +- better output for mystery component ([#1018](https://github.com/forcedotcom/source-deploy-retrieve/issues/1018)) ([bcc2c4d](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcc2c4dbbd87ffcb5daddbe8a1036d1dc6efceab)) ## [9.2.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.2...9.2.3) (2023-06-18) - ### Bug Fixes -* **deps:** bump @salesforce/core from 4.3.0 to 4.3.1 ([#1016](https://github.com/forcedotcom/source-deploy-retrieve/issues/1016)) ([24b99e4](https://github.com/forcedotcom/source-deploy-retrieve/commit/24b99e45fdd4998f319804c446b62ce0f9d83eff)) - - +- **deps:** bump @salesforce/core from 4.3.0 to 4.3.1 ([#1016](https://github.com/forcedotcom/source-deploy-retrieve/issues/1016)) ([24b99e4](https://github.com/forcedotcom/source-deploy-retrieve/commit/24b99e45fdd4998f319804c446b62ce0f9d83eff)) ## [9.2.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.1...9.2.2) (2023-06-12) - ### Bug Fixes -* bump versions of fast-xml-parser and proxy-agent ([#1006](https://github.com/forcedotcom/source-deploy-retrieve/issues/1006)) ([cf67f0d](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf67f0d4fa2aad99eb02b02a6ebd2d4e126dce86)) - - +- bump versions of fast-xml-parser and proxy-agent ([#1006](https://github.com/forcedotcom/source-deploy-retrieve/issues/1006)) ([cf67f0d](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf67f0d4fa2aad99eb02b02a6ebd2d4e126dce86)) ## [9.2.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.2.0...9.2.1) (2023-06-06) - ### Bug Fixes -* **deps:** bump @salesforce/core from 4.1.0 to 4.1.2 ([#1004](https://github.com/forcedotcom/source-deploy-retrieve/issues/1004)) ([4ec56e7](https://github.com/forcedotcom/source-deploy-retrieve/commit/4ec56e7b527ec2736aa7478e9448e9fc964a6a7a)) - - +- **deps:** bump @salesforce/core from 4.1.0 to 4.1.2 ([#1004](https://github.com/forcedotcom/source-deploy-retrieve/issues/1004)) ([4ec56e7](https://github.com/forcedotcom/source-deploy-retrieve/commit/4ec56e7b527ec2736aa7478e9448e9fc964a6a7a)) # [9.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/9.1.0...9.2.0) (2023-06-05) - ### Features -* validate manifests ([#996](https://github.com/forcedotcom/source-deploy-retrieve/issues/996)) ([173aba7](https://github.com/forcedotcom/source-deploy-retrieve/commit/173aba737afc4ed19a31b8af97802b54b07cb572)) - - +- validate manifests ([#996](https://github.com/forcedotcom/source-deploy-retrieve/issues/996)) ([173aba7](https://github.com/forcedotcom/source-deploy-retrieve/commit/173aba737afc4ed19a31b8af97802b54b07cb572)) # [9.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.6.0...9.1.0) (2023-05-31) - ### Features -* swap archiver for jszip ([03ff2df](https://github.com/forcedotcom/source-deploy-retrieve/commit/03ff2df81cdec6b6c1188857ca92f4cc472b2255)), closes [#986](https://github.com/forcedotcom/source-deploy-retrieve/issues/986) - - +- swap archiver for jszip ([03ff2df](https://github.com/forcedotcom/source-deploy-retrieve/commit/03ff2df81cdec6b6c1188857ca92f4cc472b2255)), closes [#986](https://github.com/forcedotcom/source-deploy-retrieve/issues/986) # [8.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.5.3...8.6.0) (2023-05-25) - ### Features -* missing type language ([#989](https://github.com/forcedotcom/source-deploy-retrieve/issues/989)) ([3e26daf](https://github.com/forcedotcom/source-deploy-retrieve/commit/3e26daf752925a2e8eb0c15d6af1c7a51837d049)) - - +- missing type language ([#989](https://github.com/forcedotcom/source-deploy-retrieve/issues/989)) ([3e26daf](https://github.com/forcedotcom/source-deploy-retrieve/commit/3e26daf752925a2e8eb0c15d6af1c7a51837d049)) ## [8.5.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.5.2...8.5.3) (2023-05-22) - ### Bug Fixes -* bump core to latest ([#982](https://github.com/forcedotcom/source-deploy-retrieve/issues/982)) ([7a34fc0](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a34fc0214cf6172383f3b5e54f4dbeda36066a3)), closes [#983](https://github.com/forcedotcom/source-deploy-retrieve/issues/983) - - +- bump core to latest ([#982](https://github.com/forcedotcom/source-deploy-retrieve/issues/982)) ([7a34fc0](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a34fc0214cf6172383f3b5e54f4dbeda36066a3)), closes [#983](https://github.com/forcedotcom/source-deploy-retrieve/issues/983) ## [8.5.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.5.1...8.5.2) (2023-05-21) - ### Bug Fixes -* **deps:** bump unzipper from 0.10.11 to 0.10.14 ([#978](https://github.com/forcedotcom/source-deploy-retrieve/issues/978)) ([777f799](https://github.com/forcedotcom/source-deploy-retrieve/commit/777f799e2ebc63602f8695e8b59d9c5cbb795f51)) - - +- **deps:** bump unzipper from 0.10.11 to 0.10.14 ([#978](https://github.com/forcedotcom/source-deploy-retrieve/issues/978)) ([777f799](https://github.com/forcedotcom/source-deploy-retrieve/commit/777f799e2ebc63602f8695e8b59d9c5cbb795f51)) ## [8.5.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.5.0...8.5.1) (2023-05-17) - ### Bug Fixes -* prevent [object Object] and provide component details ([#972](https://github.com/forcedotcom/source-deploy-retrieve/issues/972)) ([a16b9a2](https://github.com/forcedotcom/source-deploy-retrieve/commit/a16b9a256b7ff2eac99f466b11ba30312b09ab92)) - - +- prevent [object Object] and provide component details ([#972](https://github.com/forcedotcom/source-deploy-retrieve/issues/972)) ([a16b9a2](https://github.com/forcedotcom/source-deploy-retrieve/commit/a16b9a256b7ff2eac99f466b11ba30312b09ab92)) # [8.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.4.0...8.5.0) (2023-05-17) - ### Features -* support for UserAccessPolicy ([#971](https://github.com/forcedotcom/source-deploy-retrieve/issues/971)) ([7a102b0](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a102b0eb64c5ac5ecca9f55f2ce43a78f6763f6)) - - +- support for UserAccessPolicy ([#971](https://github.com/forcedotcom/source-deploy-retrieve/issues/971)) ([7a102b0](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a102b0eb64c5ac5ecca9f55f2ce43a78f6763f6)) # [8.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.3.1...8.4.0) (2023-05-09) - ### Features -* add skilltype to metadata registry ([761492e](https://github.com/forcedotcom/source-deploy-retrieve/commit/761492ee750db05c715e0da26437040caf32602d)) - - +- add skilltype to metadata registry ([761492e](https://github.com/forcedotcom/source-deploy-retrieve/commit/761492ee750db05c715e0da26437040caf32602d)) ## [8.3.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.3.0...8.3.1) (2023-05-09) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.2.0 to 4.2.2 ([#945](https://github.com/forcedotcom/source-deploy-retrieve/issues/945)) ([f458c52](https://github.com/forcedotcom/source-deploy-retrieve/commit/f458c5262ec479ba8f64116f0baa50bd107a2b45)) - - +- **deps:** bump fast-xml-parser from 4.2.0 to 4.2.2 ([#945](https://github.com/forcedotcom/source-deploy-retrieve/issues/945)) ([f458c52](https://github.com/forcedotcom/source-deploy-retrieve/commit/f458c5262ec479ba8f64116f0baa50bd107a2b45)) # [8.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.2.0...8.3.0) (2023-05-08) - ### Features -* offer suggestions for unresolved metadata types ([#948](https://github.com/forcedotcom/source-deploy-retrieve/issues/948)) ([c4633b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/c4633b27e718f0f6790f817bc438860df90aa0ad)), closes [#953](https://github.com/forcedotcom/source-deploy-retrieve/issues/953) - - +- offer suggestions for unresolved metadata types ([#948](https://github.com/forcedotcom/source-deploy-retrieve/issues/948)) ([c4633b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/c4633b27e718f0f6790f817bc438860df90aa0ad)), closes [#953](https://github.com/forcedotcom/source-deploy-retrieve/issues/953) # [8.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.1.0...8.2.0) (2023-05-08) - ### Features -* added FSC standard value sets ([#965](https://github.com/forcedotcom/source-deploy-retrieve/issues/965)) ([82e637f](https://github.com/forcedotcom/source-deploy-retrieve/commit/82e637fdb0a349dd6e7b62b4882e438d38b6a975)) - - +- added FSC standard value sets ([#965](https://github.com/forcedotcom/source-deploy-retrieve/issues/965)) ([82e637f](https://github.com/forcedotcom/source-deploy-retrieve/commit/82e637fdb0a349dd6e7b62b4882e438d38b6a975)) # [8.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.8...8.1.0) (2023-05-08) - ### Features -* add scoringframwork types to metadata registry ([#964](https://github.com/forcedotcom/source-deploy-retrieve/issues/964)) ([0003f44](https://github.com/forcedotcom/source-deploy-retrieve/commit/0003f44e818b5aac46f2ac1d090d9e9fbfd25893)) - - +- add scoringframwork types to metadata registry ([#964](https://github.com/forcedotcom/source-deploy-retrieve/issues/964)) ([0003f44](https://github.com/forcedotcom/source-deploy-retrieve/commit/0003f44e818b5aac46f2ac1d090d9e9fbfd25893)) ## [8.0.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.7...8.0.8) (2023-05-08) - ### Bug Fixes -* **deps:** bump vm2 from 3.9.15 to 3.9.17 ([#963](https://github.com/forcedotcom/source-deploy-retrieve/issues/963)) ([42a9d5d](https://github.com/forcedotcom/source-deploy-retrieve/commit/42a9d5d3ffd550759c96a1bd1e6de0c4dcafb472)) - - +- **deps:** bump vm2 from 3.9.15 to 3.9.17 ([#963](https://github.com/forcedotcom/source-deploy-retrieve/issues/963)) ([42a9d5d](https://github.com/forcedotcom/source-deploy-retrieve/commit/42a9d5d3ffd550759c96a1bd1e6de0c4dcafb472)) ## [8.0.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.6...8.0.7) (2023-05-05) - ### Bug Fixes -* windows path replacements ([#958](https://github.com/forcedotcom/source-deploy-retrieve/issues/958)) ([b71932b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b71932b60d9f0dbe0c4efbce705ab16fa7d7d7a9)) - - +- windows path replacements ([#958](https://github.com/forcedotcom/source-deploy-retrieve/issues/958)) ([b71932b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b71932b60d9f0dbe0c4efbce705ab16fa7d7d7a9)) ## [8.0.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.5...8.0.6) (2023-05-04) - ### Bug Fixes -* another connection error ([#957](https://github.com/forcedotcom/source-deploy-retrieve/issues/957)) ([657c5f8](https://github.com/forcedotcom/source-deploy-retrieve/commit/657c5f8e0ac93e4dabb34ac2d5ed802d25354c72)) - - +- another connection error ([#957](https://github.com/forcedotcom/source-deploy-retrieve/issues/957)) ([657c5f8](https://github.com/forcedotcom/source-deploy-retrieve/commit/657c5f8e0ac93e4dabb34ac2d5ed802d25354c72)) ## [8.0.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.4...8.0.5) (2023-05-02) - ### Bug Fixes -* update the update2 script for TS strict compile ([#954](https://github.com/forcedotcom/source-deploy-retrieve/issues/954)) ([e85a395](https://github.com/forcedotcom/source-deploy-retrieve/commit/e85a39596f985ecb9b81cc794aa86a549337e8e4)) - - +- update the update2 script for TS strict compile ([#954](https://github.com/forcedotcom/source-deploy-retrieve/issues/954)) ([e85a395](https://github.com/forcedotcom/source-deploy-retrieve/commit/e85a39596f985ecb9b81cc794aa86a549337e8e4)) ## [8.0.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.3...8.0.4) (2023-04-27) - ### Bug Fixes -* update directory name for oauth policies and mobile policies ([#947](https://github.com/forcedotcom/source-deploy-retrieve/issues/947)) ([dbcf936](https://github.com/forcedotcom/source-deploy-retrieve/commit/dbcf9366719f177084c49a28e4a81b2b731fc69d)) - - +- update directory name for oauth policies and mobile policies ([#947](https://github.com/forcedotcom/source-deploy-retrieve/issues/947)) ([dbcf936](https://github.com/forcedotcom/source-deploy-retrieve/commit/dbcf9366719f177084c49a28e4a81b2b731fc69d)) ## [8.0.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.2...8.0.3) (2023-04-23) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.34.6 to 3.34.8 ([#942](https://github.com/forcedotcom/source-deploy-retrieve/issues/942)) ([b79301a](https://github.com/forcedotcom/source-deploy-retrieve/commit/b79301a05aa4a9f466776b47ca89ad957836ec8f)) - - +- **deps:** bump @salesforce/core from 3.34.6 to 3.34.8 ([#942](https://github.com/forcedotcom/source-deploy-retrieve/issues/942)) ([b79301a](https://github.com/forcedotcom/source-deploy-retrieve/commit/b79301a05aa4a9f466776b47ca89ad957836ec8f)) ## [8.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/8.0.1...8.0.2) (2023-04-19) - ### Bug Fixes -* retry on net errors when retrieving MD info ([#941](https://github.com/forcedotcom/source-deploy-retrieve/issues/941)) ([2094e59](https://github.com/forcedotcom/source-deploy-retrieve/commit/2094e5911587f8f7754a988467cd334ec5df5357)) - - +- retry on net errors when retrieving MD info ([#941](https://github.com/forcedotcom/source-deploy-retrieve/issues/941)) ([2094e59](https://github.com/forcedotcom/source-deploy-retrieve/commit/2094e5911587f8f7754a988467cd334ec5df5357)) ## [8.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.15.1...8.0.1) (2023-04-11) - - ## [7.15.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.15.0...7.15.1) (2023-04-09) - ### Bug Fixes -* **deps:** bump fast-xml-parser from 4.1.3 to 4.1.4 ([#933](https://github.com/forcedotcom/source-deploy-retrieve/issues/933)) ([e7da9ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/e7da9ba38cbf37d44be10ef396bc2645b77d1a9b)) - - +- **deps:** bump fast-xml-parser from 4.1.3 to 4.1.4 ([#933](https://github.com/forcedotcom/source-deploy-retrieve/issues/933)) ([e7da9ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/e7da9ba38cbf37d44be10ef396bc2645b77d1a9b)) # [7.15.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.6...7.15.0) (2023-04-06) - ### Features -* upgrade fast-xml-parser ([#926](https://github.com/forcedotcom/source-deploy-retrieve/issues/926)) ([92423e6](https://github.com/forcedotcom/source-deploy-retrieve/commit/92423e699d620d7dad1dfc817261c4d24ae5b936)) - - +- upgrade fast-xml-parser ([#926](https://github.com/forcedotcom/source-deploy-retrieve/issues/926)) ([92423e6](https://github.com/forcedotcom/source-deploy-retrieve/commit/92423e699d620d7dad1dfc817261c4d24ae5b936)) ## [7.14.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.5...7.14.6) (2023-04-06) - ### Bug Fixes -* ensure retrieval and deployment of views with screen aware variants ([#930](https://github.com/forcedotcom/source-deploy-retrieve/issues/930)) ([ae6bb43](https://github.com/forcedotcom/source-deploy-retrieve/commit/ae6bb4352246319d556fc1832afd053db6299791)) - - +- ensure retrieval and deployment of views with screen aware variants ([#930](https://github.com/forcedotcom/source-deploy-retrieve/issues/930)) ([ae6bb43](https://github.com/forcedotcom/source-deploy-retrieve/commit/ae6bb4352246319d556fc1832afd053db6299791)) ## [7.14.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.4...7.14.5) (2023-04-05) - ### Bug Fixes -* get correct file paths for a DigitalExperience component ([#925](https://github.com/forcedotcom/source-deploy-retrieve/issues/925)) ([6ba8b87](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ba8b878d7dff7ca316e719cc7cf28bc707b7653)) - - +- get correct file paths for a DigitalExperience component ([#925](https://github.com/forcedotcom/source-deploy-retrieve/issues/925)) ([6ba8b87](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ba8b878d7dff7ca316e719cc7cf28bc707b7653)) ## [7.14.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.3...7.14.4) (2023-04-04) - ### Bug Fixes -* bump dev-scripts to avoid deleting perf data ([ddfa738](https://github.com/forcedotcom/source-deploy-retrieve/commit/ddfa73881a75d9cb61587ddb6950696dd805df06)) - - +- bump dev-scripts to avoid deleting perf data ([ddfa738](https://github.com/forcedotcom/source-deploy-retrieve/commit/ddfa73881a75d9cb61587ddb6950696dd805df06)) ## [7.14.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.2...7.14.3) (2023-04-04) - ### Bug Fixes -* bump dev-scripts to avoid deleting perf data ([#927](https://github.com/forcedotcom/source-deploy-retrieve/issues/927)) ([90359a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/90359a74203bda6cc264648dbbc2c43189c84a35)) - - +- bump dev-scripts to avoid deleting perf data ([#927](https://github.com/forcedotcom/source-deploy-retrieve/issues/927)) ([90359a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/90359a74203bda6cc264648dbbc2c43189c84a35)) ## [7.14.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.1...7.14.2) (2023-03-29) - ### Bug Fixes -* use always forward slash for DEB and DE fullName ([1511388](https://github.com/forcedotcom/source-deploy-retrieve/commit/1511388bd7953d849a269021f822acb4a69d07d7)) - - +- use always forward slash for DEB and DE fullName ([1511388](https://github.com/forcedotcom/source-deploy-retrieve/commit/1511388bd7953d849a269021f822acb4a69d07d7)) ## [7.14.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.14.0...7.14.1) (2023-03-28) - ### Bug Fixes -* more types support wildcard and names ([#894](https://github.com/forcedotcom/source-deploy-retrieve/issues/894)) ([c62939c](https://github.com/forcedotcom/source-deploy-retrieve/commit/c62939c21e5ce2d8183961f95e385538821b8068)) - - +- more types support wildcard and names ([#894](https://github.com/forcedotcom/source-deploy-retrieve/issues/894)) ([c62939c](https://github.com/forcedotcom/source-deploy-retrieve/commit/c62939c21e5ce2d8183961f95e385538821b8068)) # [7.14.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.13.2...7.14.0) (2023-03-27) - ### Features -* explicitly set projectDir on componentSet to prevent use of cwd ([55753d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/55753d597f05ea2734f55bcd4839a35f2fffcb86)) - - +- explicitly set projectDir on componentSet to prevent use of cwd ([55753d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/55753d597f05ea2734f55bcd4839a35f2fffcb86)) ## [7.13.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.13.1...7.13.2) (2023-03-27) - ### Reverts -* Revert "chore: auto-update metadata coverage in METADATA_SUPPORT.md" ([a43597e](https://github.com/forcedotcom/source-deploy-retrieve/commit/a43597e048752faa13efe2d6aff516eed97fd53d)) - - +- Revert "chore: auto-update metadata coverage in METADATA_SUPPORT.md" ([a43597e](https://github.com/forcedotcom/source-deploy-retrieve/commit/a43597e048752faa13efe2d6aff516eed97fd53d)) ## [7.13.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.13.0...7.13.1) (2023-03-26) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.34.1 to 3.34.4 ([#898](https://github.com/forcedotcom/source-deploy-retrieve/issues/898)) ([d5c1b83](https://github.com/forcedotcom/source-deploy-retrieve/commit/d5c1b837ff56a3ff0305141e3742f42b882d2e60)) - - +- **deps:** bump @salesforce/core from 3.34.1 to 3.34.4 ([#898](https://github.com/forcedotcom/source-deploy-retrieve/issues/898)) ([d5c1b83](https://github.com/forcedotcom/source-deploy-retrieve/commit/d5c1b837ff56a3ff0305141e3742f42b882d2e60)) # [7.13.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.12.2...7.13.0) (2023-03-22) - ### Features -* enable cLI support for ExtlClntAppGlobalOauthSettings ([#893](https://github.com/forcedotcom/source-deploy-retrieve/issues/893)) ([eee8773](https://github.com/forcedotcom/source-deploy-retrieve/commit/eee8773a1fd6bb654349a3ec7483e14b12546bfc)) - - +- enable cLI support for ExtlClntAppGlobalOauthSettings ([#893](https://github.com/forcedotcom/source-deploy-retrieve/issues/893)) ([eee8773](https://github.com/forcedotcom/source-deploy-retrieve/commit/eee8773a1fd6bb654349a3ec7483e14b12546bfc)) ## [7.12.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.12.1...7.12.2) (2023-03-20) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.33.6 to 3.34.1 ([#886](https://github.com/forcedotcom/source-deploy-retrieve/issues/886)) ([c9ed7c4](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9ed7c4a6ea7074292396e2c9df269b911826db2)) - - +- **deps:** bump @salesforce/core from 3.33.6 to 3.34.1 ([#886](https://github.com/forcedotcom/source-deploy-retrieve/issues/886)) ([c9ed7c4](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9ed7c4a6ea7074292396e2c9df269b911826db2)) ## [7.12.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.12.0...7.12.1) (2023-03-19) - ### Bug Fixes -* **deps:** bump graceful-fs from 4.2.10 to 4.2.11 ([#888](https://github.com/forcedotcom/source-deploy-retrieve/issues/888)) ([ba1943d](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba1943d74e60c6a6d0f440b92bbb0aa91cfb70b5)) - - +- **deps:** bump graceful-fs from 4.2.10 to 4.2.11 ([#888](https://github.com/forcedotcom/source-deploy-retrieve/issues/888)) ([ba1943d](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba1943d74e60c6a6d0f440b92bbb0aa91cfb70b5)) # [7.12.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.11.3...7.12.0) (2023-03-13) - ### Features -* Pr/875 ([#885](https://github.com/forcedotcom/source-deploy-retrieve/issues/885)) ([411d011](https://github.com/forcedotcom/source-deploy-retrieve/commit/411d0111a0a5e7d932f885e3d772f8044f794ede)) - - +- Pr/875 ([#885](https://github.com/forcedotcom/source-deploy-retrieve/issues/885)) ([411d011](https://github.com/forcedotcom/source-deploy-retrieve/commit/411d0111a0a5e7d932f885e3d772f8044f794ede)) ## [7.11.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.11.2...7.11.3) (2023-03-07) - - ## [7.11.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.11.1...7.11.2) (2023-03-04) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.8.5 to 1.9.0 ([#873](https://github.com/forcedotcom/source-deploy-retrieve/issues/873)) ([8b3a0be](https://github.com/forcedotcom/source-deploy-retrieve/commit/8b3a0be5ff7274854a17615007a269fa91caa54a)) - - +- **deps:** bump @salesforce/kit from 1.8.5 to 1.9.0 ([#873](https://github.com/forcedotcom/source-deploy-retrieve/issues/873)) ([8b3a0be](https://github.com/forcedotcom/source-deploy-retrieve/commit/8b3a0be5ff7274854a17615007a269fa91caa54a)) ## [7.11.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.11.0...7.11.1) (2023-03-03) - ### Bug Fixes -* potential undefined in SDREvent orgId ([82a6d2d](https://github.com/forcedotcom/source-deploy-retrieve/commit/82a6d2d14a8e50c37646065bd0033238284dfaf1)) - - +- potential undefined in SDREvent orgId ([82a6d2d](https://github.com/forcedotcom/source-deploy-retrieve/commit/82a6d2d14a8e50c37646065bd0033238284dfaf1)) # [7.11.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.10.1...7.11.0) (2023-02-28) - ### Features -* handle QueryLocator issues ([e4e7c5c](https://github.com/forcedotcom/source-deploy-retrieve/commit/e4e7c5ce21a69b360bd4a38fcd674a589619bf7e)) - - +- handle QueryLocator issues ([e4e7c5c](https://github.com/forcedotcom/source-deploy-retrieve/commit/e4e7c5ce21a69b360bd4a38fcd674a589619bf7e)) ## [7.10.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.10.0...7.10.1) (2023-02-19) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.8.4 to 1.8.5 ([#857](https://github.com/forcedotcom/source-deploy-retrieve/issues/857)) ([0ee6ca2](https://github.com/forcedotcom/source-deploy-retrieve/commit/0ee6ca27cd22643da2811ac24d3717720a08cc5c)) - - +- **deps:** bump @salesforce/kit from 1.8.4 to 1.8.5 ([#857](https://github.com/forcedotcom/source-deploy-retrieve/issues/857)) ([0ee6ca2](https://github.com/forcedotcom/source-deploy-retrieve/commit/0ee6ca27cd22643da2811ac24d3717720a08cc5c)) # [7.10.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.9.3...7.10.0) (2023-02-17) - ### Features -* Add Option to Suppress Pre- and Post-Retrieve Events ([#854](https://github.com/forcedotcom/source-deploy-retrieve/issues/854)) ([2eef7d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/2eef7d5ffc81c51e8f30748f475484ccf2876e5b)) - - +- Add Option to Suppress Pre- and Post-Retrieve Events ([#854](https://github.com/forcedotcom/source-deploy-retrieve/issues/854)) ([2eef7d5](https://github.com/forcedotcom/source-deploy-retrieve/commit/2eef7d5ffc81c51e8f30748f475484ccf2876e5b)) ## [7.9.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.9.2...7.9.3) (2023-02-14) - ### Bug Fixes -* more retryable mdapi errors ([e84ffc1](https://github.com/forcedotcom/source-deploy-retrieve/commit/e84ffc1e377fb75040dde76b818bcba3831d92cd)) - - +- more retryable mdapi errors ([e84ffc1](https://github.com/forcedotcom/source-deploy-retrieve/commit/e84ffc1e377fb75040dde76b818bcba3831d92cd)) ## [7.9.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.9.1...7.9.2) (2023-02-12) - ### Bug Fixes -* **deps:** bump minimatch from 5.1.2 to 5.1.6 ([#848](https://github.com/forcedotcom/source-deploy-retrieve/issues/848)) ([cb92e33](https://github.com/forcedotcom/source-deploy-retrieve/commit/cb92e334847d859c2bc2850136167ef9033b3f33)) - - +- **deps:** bump minimatch from 5.1.2 to 5.1.6 ([#848](https://github.com/forcedotcom/source-deploy-retrieve/issues/848)) ([cb92e33](https://github.com/forcedotcom/source-deploy-retrieve/commit/cb92e334847d859c2bc2850136167ef9033b3f33)) ## [7.9.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.9.0...7.9.1) (2023-02-09) - ### Bug Fixes -* only delete non-forceignored sub-directories ([#847](https://github.com/forcedotcom/source-deploy-retrieve/issues/847)) ([90e9415](https://github.com/forcedotcom/source-deploy-retrieve/commit/90e941522898ec68c55e3dcce95fb5468fa5f2c0)) - - +- only delete non-forceignored sub-directories ([#847](https://github.com/forcedotcom/source-deploy-retrieve/issues/847)) ([90e9415](https://github.com/forcedotcom/source-deploy-retrieve/commit/90e941522898ec68c55e3dcce95fb5468fa5f2c0)) # [7.9.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.8.2...7.9.0) (2023-02-08) - ### Features -* **mdTypes:** support for ExperiencePropertyType Bundle ([#846](https://github.com/forcedotcom/source-deploy-retrieve/issues/846)) ([63a9989](https://github.com/forcedotcom/source-deploy-retrieve/commit/63a9989345106e8fd970622974145ab207a45e75)) - - +- **mdTypes:** support for ExperiencePropertyType Bundle ([#846](https://github.com/forcedotcom/source-deploy-retrieve/issues/846)) ([63a9989](https://github.com/forcedotcom/source-deploy-retrieve/commit/63a9989345106e8fd970622974145ab207a45e75)) ## [7.8.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.8.1...7.8.2) (2023-02-05) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.32.13 to 3.33.1 ([#843](https://github.com/forcedotcom/source-deploy-retrieve/issues/843)) ([19fde88](https://github.com/forcedotcom/source-deploy-retrieve/commit/19fde88795de4b9ef0c1cb14b32a155924b0fcbc)) - - +- **deps:** bump @salesforce/core from 3.32.13 to 3.33.1 ([#843](https://github.com/forcedotcom/source-deploy-retrieve/issues/843)) ([19fde88](https://github.com/forcedotcom/source-deploy-retrieve/commit/19fde88795de4b9ef0c1cb14b32a155924b0fcbc)) ## [7.8.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.8.0...7.8.1) (2023-02-05) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.8.3 to 1.8.4 ([#841](https://github.com/forcedotcom/source-deploy-retrieve/issues/841)) ([80325eb](https://github.com/forcedotcom/source-deploy-retrieve/commit/80325eb8ca98d20af72b1f1a75a4f245d63bccf7)) - - +- **deps:** bump @salesforce/kit from 1.8.3 to 1.8.4 ([#841](https://github.com/forcedotcom/source-deploy-retrieve/issues/841)) ([80325eb](https://github.com/forcedotcom/source-deploy-retrieve/commit/80325eb8ca98d20af72b1f1a75a4f245d63bccf7)) # [7.8.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.7...7.8.0) (2023-02-02) - ### Bug Fixes -* handle forceignored files for partial bundle deletes ([#840](https://github.com/forcedotcom/source-deploy-retrieve/issues/840)) ([fcaaec0](https://github.com/forcedotcom/source-deploy-retrieve/commit/fcaaec06966c1bdd4d1eb16ca0b47affa035ef2a)) - +- handle forceignored files for partial bundle deletes ([#840](https://github.com/forcedotcom/source-deploy-retrieve/issues/840)) ([fcaaec0](https://github.com/forcedotcom/source-deploy-retrieve/commit/fcaaec06966c1bdd4d1eb16ca0b47affa035ef2a)) ### Features -* metadata script updates and dev-scripts ([1b777de](https://github.com/forcedotcom/source-deploy-retrieve/commit/1b777defcbed9e8d133817008bc2756af3b32f67)) - - +- metadata script updates and dev-scripts ([1b777de](https://github.com/forcedotcom/source-deploy-retrieve/commit/1b777defcbed9e8d133817008bc2756af3b32f67)) ## [7.7.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.6...7.7.7) (2023-02-01) - ### Bug Fixes -* **mdTypes:** AccountingFieldMapping, AccountingModelConfig, ActionLauncherItemDef, PipelineInspMetricConfig , ActionableListDefinition, LocationUse, ExplainabilityMsgTemplate, IntegrationProviderDef, PersonAccountOwnerPowerUser, ProductSpecificationTypeDefinition ([98ce025](https://github.com/forcedotcom/source-deploy-retrieve/commit/98ce025adaf22bba6429f50ffa78c0d3ee442973)) - - +- **mdTypes:** AccountingFieldMapping, AccountingModelConfig, ActionLauncherItemDef, PipelineInspMetricConfig , ActionableListDefinition, LocationUse, ExplainabilityMsgTemplate, IntegrationProviderDef, PersonAccountOwnerPowerUser, ProductSpecificationTypeDefinition ([98ce025](https://github.com/forcedotcom/source-deploy-retrieve/commit/98ce025adaf22bba6429f50ffa78c0d3ee442973)) ## [7.7.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.5...7.7.6) (2023-01-29) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.8.0 to 1.8.3 ([#835](https://github.com/forcedotcom/source-deploy-retrieve/issues/835)) ([61f4856](https://github.com/forcedotcom/source-deploy-retrieve/commit/61f48562a898c9f94d4062eab1fc699878f3c9de)) - - +- **deps:** bump @salesforce/kit from 1.8.0 to 1.8.3 ([#835](https://github.com/forcedotcom/source-deploy-retrieve/issues/835)) ([61f4856](https://github.com/forcedotcom/source-deploy-retrieve/commit/61f48562a898c9f94d4062eab1fc699878f3c9de)) ## [7.7.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.4...7.7.5) (2023-01-20) - ### Bug Fixes -* only emit events once per lifecycle ([#825](https://github.com/forcedotcom/source-deploy-retrieve/issues/825)) ([22324bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/22324bda69bc61730e7db75aed1a4689de8df229)) - - +- only emit events once per lifecycle ([#825](https://github.com/forcedotcom/source-deploy-retrieve/issues/825)) ([22324bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/22324bda69bc61730e7db75aed1a4689de8df229)) ## [7.7.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.3...7.7.4) (2023-01-20) - ### Bug Fixes -* await SVS promises to write to manifest ([#824](https://github.com/forcedotcom/source-deploy-retrieve/issues/824)) ([02895e2](https://github.com/forcedotcom/source-deploy-retrieve/commit/02895e287e4af2672316a07103307b1bd1b7354c)) - - +- await SVS promises to write to manifest ([#824](https://github.com/forcedotcom/source-deploy-retrieve/issues/824)) ([02895e2](https://github.com/forcedotcom/source-deploy-retrieve/commit/02895e287e4af2672316a07103307b1bd1b7354c)) ## [7.7.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.2...7.7.3) (2023-01-17) - ### Bug Fixes -* deletes the local component and replaces with remote for partial delete retrieve ([#806](https://github.com/forcedotcom/source-deploy-retrieve/issues/806)) ([2df0529](https://github.com/forcedotcom/source-deploy-retrieve/commit/2df05295137acd3fe9daee1b9988dfa210f8032a)) - - +- deletes the local component and replaces with remote for partial delete retrieve ([#806](https://github.com/forcedotcom/source-deploy-retrieve/issues/806)) ([2df0529](https://github.com/forcedotcom/source-deploy-retrieve/commit/2df05295137acd3fe9daee1b9988dfa210f8032a)) ## [7.7.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.1...7.7.2) (2023-01-15) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.32.12 to 3.32.13 ([#820](https://github.com/forcedotcom/source-deploy-retrieve/issues/820)) ([eccee64](https://github.com/forcedotcom/source-deploy-retrieve/commit/eccee64d8e4f11f503aba49bb3e1b114d1705c4d)) - - +- **deps:** bump @salesforce/core from 3.32.12 to 3.32.13 ([#820](https://github.com/forcedotcom/source-deploy-retrieve/issues/820)) ([eccee64](https://github.com/forcedotcom/source-deploy-retrieve/commit/eccee64d8e4f11f503aba49bb3e1b114d1705c4d)) ## [7.7.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.7.0...7.7.1) (2023-01-15) - ### Bug Fixes -* pass output dir to SfProject ([#817](https://github.com/forcedotcom/source-deploy-retrieve/issues/817)) ([2aa0a4a](https://github.com/forcedotcom/source-deploy-retrieve/commit/2aa0a4aaf2dbc77839795a2b8cb1aa67743ac15e)) - - +- pass output dir to SfProject ([#817](https://github.com/forcedotcom/source-deploy-retrieve/issues/817)) ([2aa0a4a](https://github.com/forcedotcom/source-deploy-retrieve/commit/2aa0a4aaf2dbc77839795a2b8cb1aa67743ac15e)) # [7.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.6.0...7.7.0) (2023-01-12) - ### Features -* replacement telemetry ([4c442ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/4c442ea9e931d78bcad3cfe4278190a797abfe45)) - - +- replacement telemetry ([4c442ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/4c442ea9e931d78bcad3cfe4278190a797abfe45)) # [7.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.23...7.6.0) (2023-01-09) - ### Features -* type improvements for deployResult ([b961860](https://github.com/forcedotcom/source-deploy-retrieve/commit/b961860df0dc7d1abb5b08da1e107e684b40a8b7)) - - +- type improvements for deployResult ([b961860](https://github.com/forcedotcom/source-deploy-retrieve/commit/b961860df0dc7d1abb5b08da1e107e684b40a8b7)) ## [7.5.23](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.22...7.5.23) (2023-01-08) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 1.7.1 to 1.7.2 ([#815](https://github.com/forcedotcom/source-deploy-retrieve/issues/815)) ([820becb](https://github.com/forcedotcom/source-deploy-retrieve/commit/820becbe2e6e2105963873d12fb2f6aa4d858d7a)) - - +- **deps:** bump @salesforce/ts-types from 1.7.1 to 1.7.2 ([#815](https://github.com/forcedotcom/source-deploy-retrieve/issues/815)) ([820becb](https://github.com/forcedotcom/source-deploy-retrieve/commit/820becbe2e6e2105963873d12fb2f6aa4d858d7a)) ## [7.5.22](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.21...7.5.22) (2023-01-01) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.32.8 to 3.32.12 ([#810](https://github.com/forcedotcom/source-deploy-retrieve/issues/810)) ([bcf8412](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcf8412faa1ee0d65f53fcb69ee0896887350325)) - - +- **deps:** bump @salesforce/core from 3.32.8 to 3.32.12 ([#810](https://github.com/forcedotcom/source-deploy-retrieve/issues/810)) ([bcf8412](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcf8412faa1ee0d65f53fcb69ee0896887350325)) ## [7.5.21](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.20...7.5.21) (2023-01-01) - ### Bug Fixes -* **deps:** bump minimatch from 5.1.0 to 5.1.2 ([#811](https://github.com/forcedotcom/source-deploy-retrieve/issues/811)) ([13b2578](https://github.com/forcedotcom/source-deploy-retrieve/commit/13b25787c6957ad4e52bcce9a9fe569c9539587a)) - - +- **deps:** bump minimatch from 5.1.0 to 5.1.2 ([#811](https://github.com/forcedotcom/source-deploy-retrieve/issues/811)) ([13b2578](https://github.com/forcedotcom/source-deploy-retrieve/commit/13b25787c6957ad4e52bcce9a9fe569c9539587a)) ## [7.5.20](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.19...7.5.20) (2023-01-01) - ### Bug Fixes -* **deps:** bump ignore from 5.2.1 to 5.2.4 ([#812](https://github.com/forcedotcom/source-deploy-retrieve/issues/812)) ([ff96534](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff96534c542a02df3628dfd23e2248c99209a844)) - - +- **deps:** bump ignore from 5.2.1 to 5.2.4 ([#812](https://github.com/forcedotcom/source-deploy-retrieve/issues/812)) ([ff96534](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff96534c542a02df3628dfd23e2248c99209a844)) ## [7.5.19](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.18...7.5.19) (2022-12-25) - ### Bug Fixes -* **deps:** bump got from 11.8.5 to 11.8.6 ([#805](https://github.com/forcedotcom/source-deploy-retrieve/issues/805)) ([856e99a](https://github.com/forcedotcom/source-deploy-retrieve/commit/856e99a1ad6921637e6a63b88d4b12d860818b18)) - - +- **deps:** bump got from 11.8.5 to 11.8.6 ([#805](https://github.com/forcedotcom/source-deploy-retrieve/issues/805)) ([856e99a](https://github.com/forcedotcom/source-deploy-retrieve/commit/856e99a1ad6921637e6a63b88d4b12d860818b18)) ## [7.5.18](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.17...7.5.18) (2022-12-18) - ### Bug Fixes -* **deps:** bump ignore from 5.2.0 to 5.2.1 ([#794](https://github.com/forcedotcom/source-deploy-retrieve/issues/794)) ([de8306c](https://github.com/forcedotcom/source-deploy-retrieve/commit/de8306c570da2e2e3fb98d54bb7647755d0e9a75)) - - +- **deps:** bump ignore from 5.2.0 to 5.2.1 ([#794](https://github.com/forcedotcom/source-deploy-retrieve/issues/794)) ([de8306c](https://github.com/forcedotcom/source-deploy-retrieve/commit/de8306c570da2e2e3fb98d54bb7647755d0e9a75)) ## [7.5.17](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.16...7.5.17) (2022-12-14) - ### Bug Fixes -* **types:** FuelType, FuelTypeSustnUom, SustainabilityUom, SustnUomConversion ([d4f7b53](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4f7b534a349dbedcc9109533d8d53e491bac2d2)) - - +- **types:** FuelType, FuelTypeSustnUom, SustainabilityUom, SustnUomConversion ([d4f7b53](https://github.com/forcedotcom/source-deploy-retrieve/commit/d4f7b534a349dbedcc9109533d8d53e491bac2d2)) ## [7.5.16](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.15...7.5.16) (2022-12-13) - ### Bug Fixes -* always send deploy event and fix telemetry for mdapi deploy ([#797](https://github.com/forcedotcom/source-deploy-retrieve/issues/797)) ([42ab03e](https://github.com/forcedotcom/source-deploy-retrieve/commit/42ab03edd938156450547f423c2f1990b3f2d9df)) - - +- always send deploy event and fix telemetry for mdapi deploy ([#797](https://github.com/forcedotcom/source-deploy-retrieve/issues/797)) ([42ab03e](https://github.com/forcedotcom/source-deploy-retrieve/commit/42ab03edd938156450547f423c2f1990b3f2d9df)) ## [7.5.15](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.14...7.5.15) (2022-12-09) - ### Bug Fixes -* correct apiVersion and sourceApiVersion values before transfer and send events ([#791](https://github.com/forcedotcom/source-deploy-retrieve/issues/791)) ([2e865e9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2e865e97a200cd4e493bde577970fb4f49862e7f)) - - +- correct apiVersion and sourceApiVersion values before transfer and send events ([#791](https://github.com/forcedotcom/source-deploy-retrieve/issues/791)) ([2e865e9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2e865e97a200cd4e493bde577970fb4f49862e7f)) ## [7.5.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.13...7.5.14) (2022-12-04) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.32.1 to 3.32.6 ([#789](https://github.com/forcedotcom/source-deploy-retrieve/issues/789)) ([9e5f33d](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e5f33da04daa4179fab495463f02385863fba80)) - - +- **deps:** bump @salesforce/core from 3.32.1 to 3.32.6 ([#789](https://github.com/forcedotcom/source-deploy-retrieve/issues/789)) ([9e5f33d](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e5f33da04daa4179fab495463f02385863fba80)) ## [7.5.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.12...7.5.13) (2022-11-22) - ### Bug Fixes -* include string errors during convert ([#781](https://github.com/forcedotcom/source-deploy-retrieve/issues/781)) ([2f10c45](https://github.com/forcedotcom/source-deploy-retrieve/commit/2f10c458d6f393926f1dcded3bd1692899434dc6)) - - +- include string errors during convert ([#781](https://github.com/forcedotcom/source-deploy-retrieve/issues/781)) ([2f10c45](https://github.com/forcedotcom/source-deploy-retrieve/commit/2f10c458d6f393926f1dcded3bd1692899434dc6)) ## [7.5.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.11...7.5.12) (2022-11-21) - - ## [7.5.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.10...7.5.11) (2022-11-21) - ### Bug Fixes -* add supportsPartialDelete property to registry ([#780](https://github.com/forcedotcom/source-deploy-retrieve/issues/780)) ([3c5fde2](https://github.com/forcedotcom/source-deploy-retrieve/commit/3c5fde2952760499bb58239fa6430485877c060d)) - - +- add supportsPartialDelete property to registry ([#780](https://github.com/forcedotcom/source-deploy-retrieve/issues/780)) ([3c5fde2](https://github.com/forcedotcom/source-deploy-retrieve/commit/3c5fde2952760499bb58239fa6430485877c060d)) ## [7.5.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.9...7.5.10) (2022-11-20) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.31.17 to 3.32.1 ([#779](https://github.com/forcedotcom/source-deploy-retrieve/issues/779)) ([05ed7ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/05ed7bae5828d4390acdc768661add6406b1c663)) - - +- **deps:** bump @salesforce/core from 3.31.17 to 3.32.1 ([#779](https://github.com/forcedotcom/source-deploy-retrieve/issues/779)) ([05ed7ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/05ed7bae5828d4390acdc768661add6406b1c663)) ## [7.5.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.8...7.5.9) (2022-11-15) - ### Bug Fixes -* **metadataTypes:** ExtlClntAppMobileConfigurablePolicies ([90b1a3e](https://github.com/forcedotcom/source-deploy-retrieve/commit/90b1a3eaa0c0117b0be3c112622f27cf93af68fe)) - - +- **metadataTypes:** ExtlClntAppMobileConfigurablePolicies ([90b1a3e](https://github.com/forcedotcom/source-deploy-retrieve/commit/90b1a3eaa0c0117b0be3c112622f27cf93af68fe)) ## [7.5.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.7...7.5.8) (2022-11-13) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.7.2 to 1.8.0 ([#773](https://github.com/forcedotcom/source-deploy-retrieve/issues/773)) ([e4e4711](https://github.com/forcedotcom/source-deploy-retrieve/commit/e4e4711262b9d100b4ddfc2acb980cfd238e3afe)) - - +- **deps:** bump @salesforce/kit from 1.7.2 to 1.8.0 ([#773](https://github.com/forcedotcom/source-deploy-retrieve/issues/773)) ([e4e4711](https://github.com/forcedotcom/source-deploy-retrieve/commit/e4e4711262b9d100b4ddfc2acb980cfd238e3afe)) ## [7.5.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.6...7.5.7) (2022-11-12) - - ## [7.5.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.5...7.5.6) (2022-11-07) +### Bug Fixes -### Bug Fixes - -* **metadataTypes:** ESDef/DMDef in metadata-registry ([7ee3943](https://github.com/forcedotcom/source-deploy-retrieve/commit/7ee39432c3bdf30e8f153f21a8af5c22e4638af7)) - - +- **metadataTypes:** ESDef/DMDef in metadata-registry ([7ee3943](https://github.com/forcedotcom/source-deploy-retrieve/commit/7ee39432c3bdf30e8f153f21a8af5c22e4638af7)) ## [7.5.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.4...7.5.5) (2022-11-07) - ### Bug Fixes -* **metadataTypes:** timelineobjectdefinition ([de6fac3](https://github.com/forcedotcom/source-deploy-retrieve/commit/de6fac359e4310f22a1a271d05053f706bddb249)) - - +- **metadataTypes:** timelineobjectdefinition ([de6fac3](https://github.com/forcedotcom/source-deploy-retrieve/commit/de6fac359e4310f22a1a271d05053f706bddb249)) ## [7.5.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.3...7.5.4) (2022-11-06) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.7.0 to 1.7.2 ([#766](https://github.com/forcedotcom/source-deploy-retrieve/issues/766)) ([bfff8d1](https://github.com/forcedotcom/source-deploy-retrieve/commit/bfff8d110ff4797f22c4574c212aac34b545b7ad)) - - +- **deps:** bump @salesforce/kit from 1.7.0 to 1.7.2 ([#766](https://github.com/forcedotcom/source-deploy-retrieve/issues/766)) ([bfff8d1](https://github.com/forcedotcom/source-deploy-retrieve/commit/bfff8d110ff4797f22c4574c212aac34b545b7ad)) ## [7.5.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.2...7.5.3) (2022-11-06) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 1.7.0 to 1.7.1 ([#764](https://github.com/forcedotcom/source-deploy-retrieve/issues/764)) ([62be695](https://github.com/forcedotcom/source-deploy-retrieve/commit/62be6959b724b3f9d12a7655ff36968766aade2b)) - - +- **deps:** bump @salesforce/ts-types from 1.7.0 to 1.7.1 ([#764](https://github.com/forcedotcom/source-deploy-retrieve/issues/764)) ([62be695](https://github.com/forcedotcom/source-deploy-retrieve/commit/62be6959b724b3f9d12a7655ff36968766aade2b)) ## [7.5.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.1...7.5.2) (2022-11-04) - ### Bug Fixes -* don't wait for archiver finalize ([81e32c2](https://github.com/forcedotcom/source-deploy-retrieve/commit/81e32c2d89947cf5f4c4aa4375c5c778a0ffebea)) - - +- don't wait for archiver finalize ([81e32c2](https://github.com/forcedotcom/source-deploy-retrieve/commit/81e32c2d89947cf5f4c4aa4375c5c778a0ffebea)) ## [7.5.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.5.0...7.5.1) (2022-11-02) - ### Bug Fixes -* **metadataTypes:** ExtlClntAppOauthConfigurablePolicies, ExtlClntAppMobileSettings ([#757](https://github.com/forcedotcom/source-deploy-retrieve/issues/757)) ([a6af2bf](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6af2bf3381036f8ba6cd5957e2c8d05b018598f)) - - +- **metadataTypes:** ExtlClntAppOauthConfigurablePolicies, ExtlClntAppMobileSettings ([#757](https://github.com/forcedotcom/source-deploy-retrieve/issues/757)) ([a6af2bf](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6af2bf3381036f8ba6cd5957e2c8d05b018598f)) # [7.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.4.2...7.5.0) (2022-10-31) - ### Features -* string replacements in deploy ([#748](https://github.com/forcedotcom/source-deploy-retrieve/issues/748)) ([a23c6b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/a23c6b359f5c9944aea555006d707a700caaf462)) - - +- string replacements in deploy ([#748](https://github.com/forcedotcom/source-deploy-retrieve/issues/748)) ([a23c6b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/a23c6b359f5c9944aea555006d707a700caaf462)) ## [7.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.4.1...7.4.2) (2022-10-30) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.31.10 to 3.31.17 ([#754](https://github.com/forcedotcom/source-deploy-retrieve/issues/754)) ([cd89eaa](https://github.com/forcedotcom/source-deploy-retrieve/commit/cd89eaab1f33ac973b77599f52476e79b8787493)) - - +- **deps:** bump @salesforce/core from 3.31.10 to 3.31.17 ([#754](https://github.com/forcedotcom/source-deploy-retrieve/issues/754)) ([cd89eaa](https://github.com/forcedotcom/source-deploy-retrieve/commit/cd89eaab1f33ac973b77599f52476e79b8787493)) ## [7.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.4.0...7.4.1) (2022-10-30) - ### Bug Fixes -* **deps:** bump @salesforce/ts-types from 1.5.21 to 1.7.0 ([#753](https://github.com/forcedotcom/source-deploy-retrieve/issues/753)) ([a11923c](https://github.com/forcedotcom/source-deploy-retrieve/commit/a11923ce266ed75bcafb63d9c3684cef4d90ee83)) - - +- **deps:** bump @salesforce/ts-types from 1.5.21 to 1.7.0 ([#753](https://github.com/forcedotcom/source-deploy-retrieve/issues/753)) ([a11923c](https://github.com/forcedotcom/source-deploy-retrieve/commit/a11923ce266ed75bcafb63d9c3684cef4d90ee83)) # [7.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.3.1...7.4.0) (2022-10-27) - ### Features -* **metadataTypes:** ExtlClntAppOauthPlcyCnfg, ExtlClntAppOauthSettings, ExtlClntAppMobileSet ([b4f61ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/b4f61ae32902eb14ca25de517086663b8da26c47)) - - +- **metadataTypes:** ExtlClntAppOauthPlcyCnfg, ExtlClntAppOauthSettings, ExtlClntAppMobileSet ([b4f61ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/b4f61ae32902eb14ca25de517086663b8da26c47)) ## [7.3.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.3.0...7.3.1) (2022-10-26) - ### Bug Fixes -* fix MAE suffix ([#750](https://github.com/forcedotcom/source-deploy-retrieve/issues/750)) ([503a02c](https://github.com/forcedotcom/source-deploy-retrieve/commit/503a02c84e251d1a04705e9962f8b98ef19416fd)) - - +- fix MAE suffix ([#750](https://github.com/forcedotcom/source-deploy-retrieve/issues/750)) ([503a02c](https://github.com/forcedotcom/source-deploy-retrieve/commit/503a02c84e251d1a04705e9962f8b98ef19416fd)) # [7.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.2.0...7.3.0) (2022-10-26) - ### Features -* **metadataTypes:** adding omnisupervisorconfig support ([#747](https://github.com/forcedotcom/source-deploy-retrieve/issues/747)) ([bf45ac1](https://github.com/forcedotcom/source-deploy-retrieve/commit/bf45ac18935aa2facb942eade57168d6725f2566)) - - +- **metadataTypes:** adding omnisupervisorconfig support ([#747](https://github.com/forcedotcom/source-deploy-retrieve/issues/747)) ([bf45ac1](https://github.com/forcedotcom/source-deploy-retrieve/commit/bf45ac18935aa2facb942eade57168d6725f2566)) # [7.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.1.1...7.2.0) (2022-10-26) - ### Features -* **metadataTypes:** DisclosureType DisclosureDefinition DisclosureDefinitionVersion ClauseCatgConfiguration ([555017e](https://github.com/forcedotcom/source-deploy-retrieve/commit/555017e8db2a83e753d061c7a923fea3ca5dad48)) - - +- **metadataTypes:** DisclosureType DisclosureDefinition DisclosureDefinitionVersion ClauseCatgConfiguration ([555017e](https://github.com/forcedotcom/source-deploy-retrieve/commit/555017e8db2a83e753d061c7a923fea3ca5dad48)) ## [7.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.1.0...7.1.1) (2022-10-25) - ### Bug Fixes -* add a better error message with invalid manifests ([#740](https://github.com/forcedotcom/source-deploy-retrieve/issues/740)) ([8458c58](https://github.com/forcedotcom/source-deploy-retrieve/commit/8458c58fb2b8dfa2a7f1d170ce11dbd892329304)) - - +- add a better error message with invalid manifests ([#740](https://github.com/forcedotcom/source-deploy-retrieve/issues/740)) ([8458c58](https://github.com/forcedotcom/source-deploy-retrieve/commit/8458c58fb2b8dfa2a7f1d170ce11dbd892329304)) # [7.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/7.0.1...7.1.0) (2022-10-21) - ### Features -* **metadata registry:** adding BotBlock to metadata registry ([#741](https://github.com/forcedotcom/source-deploy-retrieve/issues/741)) ([8d7bdda](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d7bdda1a2967465c7519743f2bed0bb5c7fd456)) - - +- **metadata registry:** adding BotBlock to metadata registry ([#741](https://github.com/forcedotcom/source-deploy-retrieve/issues/741)) ([8d7bdda](https://github.com/forcedotcom/source-deploy-retrieve/commit/8d7bdda1a2967465c7519743f2bed0bb5c7fd456)) ## [7.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.10.0...7.0.1) (2022-10-17) - ### Bug Fixes -* bump major version ([7d157c8](https://github.com/forcedotcom/source-deploy-retrieve/commit/7d157c808fb9c00c45e5e16813c98bb20004133f)) - - +- bump major version ([7d157c8](https://github.com/forcedotcom/source-deploy-retrieve/commit/7d157c808fb9c00c45e5e16813c98bb20004133f)) # [6.10.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.9.1...6.10.0) (2022-10-17) - ### Features -* remove deployStrategies, bump devScripts ([f7a86ad](https://github.com/forcedotcom/source-deploy-retrieve/commit/f7a86ad0455bbd9830d415bbc2126fc648312b39)) - - +- remove deployStrategies, bump devScripts ([f7a86ad](https://github.com/forcedotcom/source-deploy-retrieve/commit/f7a86ad0455bbd9830d415bbc2126fc648312b39)) ## [6.9.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.9.0...6.9.1) (2022-10-09) - ### Bug Fixes -* **deps:** bump @salesforce/kit from 1.6.1 to 1.7.0 ([#733](https://github.com/forcedotcom/source-deploy-retrieve/issues/733)) ([27db5ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/27db5ea104d98bb8371441bffd13c9b1245915f3)) - - +- **deps:** bump @salesforce/kit from 1.6.1 to 1.7.0 ([#733](https://github.com/forcedotcom/source-deploy-retrieve/issues/733)) ([27db5ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/27db5ea104d98bb8371441bffd13c9b1245915f3)) # [6.9.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.6...6.9.0) (2022-10-06) - ### Features -* 5 new metadata type support ([c031034](https://github.com/forcedotcom/source-deploy-retrieve/commit/c031034cf847c15a195acac797c83844c8a4e270)) - - +- 5 new metadata type support ([c031034](https://github.com/forcedotcom/source-deploy-retrieve/commit/c031034cf847c15a195acac797c83844c8a4e270)) ## [6.8.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.5...6.8.6) (2022-10-05) - - ## [6.8.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.4...6.8.5) (2022-10-05) - ### Bug Fixes -* show individual cft in a retrieve ([#728](https://github.com/forcedotcom/source-deploy-retrieve/issues/728)) ([44dae0c](https://github.com/forcedotcom/source-deploy-retrieve/commit/44dae0cdb3f88d8cdc4adf1b4b017278f1435add)) - - +- show individual cft in a retrieve ([#728](https://github.com/forcedotcom/source-deploy-retrieve/issues/728)) ([44dae0c](https://github.com/forcedotcom/source-deploy-retrieve/commit/44dae0cdb3f88d8cdc4adf1b4b017278f1435add)) ## [6.8.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.3...6.8.4) (2022-10-05) - ### Bug Fixes -* deploy/push a CustomFieldTranslation without its parent ([89214fd](https://github.com/forcedotcom/source-deploy-retrieve/commit/89214fd5f5caf0a2aadbee69c9614984cec95862)) - - +- deploy/push a CustomFieldTranslation without its parent ([89214fd](https://github.com/forcedotcom/source-deploy-retrieve/commit/89214fd5f5caf0a2aadbee69c9614984cec95862)) ## [6.8.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.2...6.8.3) (2022-10-04) - ### Bug Fixes -* bump core ([7c7922b](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c7922bba6e6b60528c9d82ee5c08c7534f79dd0)) - - +- bump core ([7c7922b](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c7922bba6e6b60528c9d82ee5c08c7534f79dd0)) ## [6.8.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.1...6.8.2) (2022-09-25) - ### Bug Fixes -* **deps:** bump @salesforce/core from 3.26.3 to 3.30.8 ([#716](https://github.com/forcedotcom/source-deploy-retrieve/issues/716)) ([51d9a6d](https://github.com/forcedotcom/source-deploy-retrieve/commit/51d9a6d310f58db1ad03c42b9930d34458bab5f5)) - - +- **deps:** bump @salesforce/core from 3.26.3 to 3.30.8 ([#716](https://github.com/forcedotcom/source-deploy-retrieve/issues/716)) ([51d9a6d](https://github.com/forcedotcom/source-deploy-retrieve/commit/51d9a6d310f58db1ad03c42b9930d34458bab5f5)) ## [6.8.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.8.0...6.8.1) (2022-09-20) - ### Bug Fixes -* handle empty files for deploy ([2a76c26](https://github.com/forcedotcom/source-deploy-retrieve/commit/2a76c26c0c9caefcfa8d7a945f265b207818a561)) - - +- handle empty files for deploy ([2a76c26](https://github.com/forcedotcom/source-deploy-retrieve/commit/2a76c26c0c9caefcfa8d7a945f265b207818a561)) # [6.8.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.7.0...6.8.0) (2022-09-09) - ### Features -* support digitalExperienceBundle md types ([585aa1d](https://github.com/forcedotcom/source-deploy-retrieve/commit/585aa1da151447bf1e93ef93a4fe6697ac28b146)) - - +- support digitalExperienceBundle md types ([585aa1d](https://github.com/forcedotcom/source-deploy-retrieve/commit/585aa1da151447bf1e93ef93a4fe6697ac28b146)) # [6.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.6.0...6.7.0) (2022-09-08) - ### Features -* new metadata types and script improvements ([a768e0c](https://github.com/forcedotcom/source-deploy-retrieve/commit/a768e0ccb1338ea250813604f3aa63c2814d6b77)) - - +- new metadata types and script improvements ([a768e0c](https://github.com/forcedotcom/source-deploy-retrieve/commit/a768e0ccb1338ea250813604f3aa63c2814d6b77)) # [6.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/6.5.0...6.6.0) (2022-09-08) - ### Features -* Enable CLI support for ExternalClientApplication ([a67ee80](https://github.com/forcedotcom/source-deploy-retrieve/commit/a67ee80945bd760a8e7a47868bf5db03ec1e9136)) - - +- Enable CLI support for ExternalClientApplication ([a67ee80](https://github.com/forcedotcom/source-deploy-retrieve/commit/a67ee80945bd760a8e7a47868bf5db03ec1e9136)) # [6.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.3.0...6.5.0) (2022-08-31) - ### Bug Fixes -* fix pjson major version ([a7ccf7f](https://github.com/forcedotcom/source-deploy-retrieve/commit/a7ccf7fde1d55c5e10d5095c4c283b400481f07e)) -* remove pjson bump from 688 ([#698](https://github.com/forcedotcom/source-deploy-retrieve/issues/698)) ([32673d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/32673d647249416f5a7d7fb3318f94a4c230b457)) -* use standard xmldom module ([5d2fc96](https://github.com/forcedotcom/source-deploy-retrieve/commit/5d2fc968df16f784c8f5d3b57d056c4a5772aa53)) - +- fix pjson major version ([a7ccf7f](https://github.com/forcedotcom/source-deploy-retrieve/commit/a7ccf7fde1d55c5e10d5095c4c283b400481f07e)) +- remove pjson bump from 688 ([#698](https://github.com/forcedotcom/source-deploy-retrieve/issues/698)) ([32673d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/32673d647249416f5a7d7fb3318f94a4c230b457)) +- use standard xmldom module ([5d2fc96](https://github.com/forcedotcom/source-deploy-retrieve/commit/5d2fc968df16f784c8f5d3b57d056c4a5772aa53)) ### Features -* add 'MarketingAppExtension' to the registry ([a3ea5ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/a3ea5ab9258691060ac6fe4019507f42a879fbcc)) - - +- add 'MarketingAppExtension' to the registry ([a3ea5ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/a3ea5ab9258691060ac6fe4019507f42a879fbcc)) # [6.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.9...v6.3.0) (2022-08-11) - ### Features -* don't run nuts on release/main ([#690](https://github.com/forcedotcom/source-deploy-retrieve/issues/690)) ([9d6d92e](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d6d92e6840dc8897543d57a7b770c6d2c0b32dd)) - - +- don't run nuts on release/main ([#690](https://github.com/forcedotcom/source-deploy-retrieve/issues/690)) ([9d6d92e](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d6d92e6840dc8897543d57a7b770c6d2c0b32dd)) ## [6.2.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.8...v6.2.9) (2022-08-09) - ### Bug Fixes -* removing support for connect center [#671](https://github.com/forcedotcom/source-deploy-retrieve/issues/671) ([#682](https://github.com/forcedotcom/source-deploy-retrieve/issues/682)) ([7810733](https://github.com/forcedotcom/source-deploy-retrieve/commit/78107335d20c20bcf9a1ebfc4cefc2693267bac4)) - - +- removing support for connect center [#671](https://github.com/forcedotcom/source-deploy-retrieve/issues/671) ([#682](https://github.com/forcedotcom/source-deploy-retrieve/issues/682)) ([7810733](https://github.com/forcedotcom/source-deploy-retrieve/commit/78107335d20c20bcf9a1ebfc4cefc2693267bac4)) ## [6.2.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.7...v6.2.8) (2022-08-08) - - ## [6.2.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.6...v6.2.7) (2022-08-03) - - ## [6.2.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.5...v6.2.6) (2022-07-25) - ### Bug Fixes -* only scan pkgDirs when merging non-decomposed MD ([#666](https://github.com/forcedotcom/source-deploy-retrieve/issues/666)) ([098875f](https://github.com/forcedotcom/source-deploy-retrieve/commit/098875f547ba7fcc8d35ccc8f2cce60ee04ece77)) - - +- only scan pkgDirs when merging non-decomposed MD ([#666](https://github.com/forcedotcom/source-deploy-retrieve/issues/666)) ([098875f](https://github.com/forcedotcom/source-deploy-retrieve/commit/098875f547ba7fcc8d35ccc8f2cce60ee04ece77)) ## [6.2.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.4...v6.2.5) (2022-07-21) - ### Bug Fixes -* handle namespaces on lwc markup ([#669](https://github.com/forcedotcom/source-deploy-retrieve/issues/669)) ([8817545](https://github.com/forcedotcom/source-deploy-retrieve/commit/8817545a43f78f7327745e4638c74f6f838fa6ea)) - - +- handle namespaces on lwc markup ([#669](https://github.com/forcedotcom/source-deploy-retrieve/issues/669)) ([8817545](https://github.com/forcedotcom/source-deploy-retrieve/commit/8817545a43f78f7327745e4638c74f6f838fa6ea)) ## [6.2.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.3...v6.2.4) (2022-07-18) - ### Bug Fixes -* static resources without content due to ignore produce nice error ([#663](https://github.com/forcedotcom/source-deploy-retrieve/issues/663)) ([cf18e1b](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf18e1b5bb0bacf398e69b247520c019a2b00498)) - - +- static resources without content due to ignore produce nice error ([#663](https://github.com/forcedotcom/source-deploy-retrieve/issues/663)) ([cf18e1b](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf18e1b5bb0bacf398e69b247520c019a2b00498)) ## [6.2.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.2...v6.2.3) (2022-07-15) - - ## [6.2.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.1...v6.2.2) (2022-07-12) - - ## [6.2.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.2.0...v6.2.1) (2022-07-07) - ### Bug Fixes -* proxy support for coverage report ([#659](https://github.com/forcedotcom/source-deploy-retrieve/issues/659)) ([8121a94](https://github.com/forcedotcom/source-deploy-retrieve/commit/8121a94e0ca9d2d96e4c5711c2844eb88500dfac)) - - +- proxy support for coverage report ([#659](https://github.com/forcedotcom/source-deploy-retrieve/issues/659)) ([8121a94](https://github.com/forcedotcom/source-deploy-retrieve/commit/8121a94e0ca9d2d96e4c5711c2844eb88500dfac)) # [6.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.1.0...v6.2.0) (2022-06-23) - ### Features -* use StateAggregator ([#646](https://github.com/forcedotcom/source-deploy-retrieve/issues/646)) ([f1d8848](https://github.com/forcedotcom/source-deploy-retrieve/commit/f1d8848c747362594abd519c579f3aebfee48bec)) - - +- use StateAggregator ([#646](https://github.com/forcedotcom/source-deploy-retrieve/issues/646)) ([f1d8848](https://github.com/forcedotcom/source-deploy-retrieve/commit/f1d8848c747362594abd519c579f3aebfee48bec)) # [6.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.0.4...v6.1.0) (2022-06-20) - ### Features -* SDR emits new lifecycle events ([d92b491](https://github.com/forcedotcom/source-deploy-retrieve/commit/d92b49163a02837da118f932dde394d78c3fbfa8)) - - +- SDR emits new lifecycle events ([d92b491](https://github.com/forcedotcom/source-deploy-retrieve/commit/d92b49163a02837da118f932dde394d78c3fbfa8)) ## [6.0.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.0.3...v6.0.4) (2022-06-16) - ### Bug Fixes -* allow larger directories to be compressed, test in plugin-source ([#649](https://github.com/forcedotcom/source-deploy-retrieve/issues/649)) ([ba713fb](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba713fba64c255b3367f314d56d01ecd16f0846d)) - - +- allow larger directories to be compressed, test in plugin-source ([#649](https://github.com/forcedotcom/source-deploy-retrieve/issues/649)) ([ba713fb](https://github.com/forcedotcom/source-deploy-retrieve/commit/ba713fba64c255b3367f314d56d01ecd16f0846d)) ## [6.0.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.0.2...v6.0.3) (2022-06-07) - - ## [6.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.0.1...v6.0.2) (2022-05-24) - ### Bug Fixes -* remove api version default ([6ea4ebd](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ea4ebd867ab8246ea04035afc5ba93f57427827)) - - +- remove api version default ([6ea4ebd](https://github.com/forcedotcom/source-deploy-retrieve/commit/6ea4ebd867ab8246ea04035afc5ba93f57427827)) ## [6.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v6.0.0...v6.0.1) (2022-05-23) - - # [6.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.15.0...v6.0.0) (2022-05-20) - - # [5.15.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.14.0...v5.15.0) (2022-05-12) - ### Features -* **metadata registry:** adding BotTemplate to metadata registry ([#616](https://github.com/forcedotcom/source-deploy-retrieve/issues/616)) ([c1da4da](https://github.com/forcedotcom/source-deploy-retrieve/commit/c1da4dadc2cd268871b4f0933f431031159d4bf8)) - - +- **metadata registry:** adding BotTemplate to metadata registry ([#616](https://github.com/forcedotcom/source-deploy-retrieve/issues/616)) ([c1da4da](https://github.com/forcedotcom/source-deploy-retrieve/commit/c1da4dadc2cd268871b4f0933f431031159d4bf8)) # [5.14.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.13.1...v5.14.0) (2022-05-11) - ### Features -* add dataweaveresource ([#626](https://github.com/forcedotcom/source-deploy-retrieve/issues/626)) ([1a2eaf6](https://github.com/forcedotcom/source-deploy-retrieve/commit/1a2eaf60915dc051556907b939960fa7ddab332f)) - - +- add dataweaveresource ([#626](https://github.com/forcedotcom/source-deploy-retrieve/issues/626)) ([1a2eaf6](https://github.com/forcedotcom/source-deploy-retrieve/commit/1a2eaf60915dc051556907b939960fa7ddab332f)) ## [5.13.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.13.0...v5.13.1) (2022-05-11) - ### Bug Fixes -* support file responses for metadata format deploys ([#619](https://github.com/forcedotcom/source-deploy-retrieve/issues/619)) ([9cceb4c](https://github.com/forcedotcom/source-deploy-retrieve/commit/9cceb4c082031e9d6c3dbe386d83493a0c101dfc)) - - +- support file responses for metadata format deploys ([#619](https://github.com/forcedotcom/source-deploy-retrieve/issues/619)) ([9cceb4c](https://github.com/forcedotcom/source-deploy-retrieve/commit/9cceb4c082031e9d6c3dbe386d83493a0c101dfc)) # [5.13.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.14...v5.13.0) (2022-05-11) - ### Features -* 2 new metadata types for Assessment ([1ac6eeb](https://github.com/forcedotcom/source-deploy-retrieve/commit/1ac6eebd6e13b954b41a457a2a2ff5e4eca85a1e)) - - +- 2 new metadata types for Assessment ([1ac6eeb](https://github.com/forcedotcom/source-deploy-retrieve/commit/1ac6eebd6e13b954b41a457a2a2ff5e4eca85a1e)) ## [5.12.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.13...v5.12.14) (2022-05-09) - - ## [5.12.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.12...v5.12.13) (2022-05-05) - ### Bug Fixes -* resolveTypeFromStrictFolder for children of decomposed types with decomposition topLevel ([#628](https://github.com/forcedotcom/source-deploy-retrieve/issues/628)) ([8bef60b](https://github.com/forcedotcom/source-deploy-retrieve/commit/8bef60b43f56ce249022912b75769b92f31c209e)) - - +- resolveTypeFromStrictFolder for children of decomposed types with decomposition topLevel ([#628](https://github.com/forcedotcom/source-deploy-retrieve/issues/628)) ([8bef60b](https://github.com/forcedotcom/source-deploy-retrieve/commit/8bef60b43f56ce249022912b75769b92f31c209e)) ## [5.12.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.11...v5.12.12) (2022-04-28) - - ## [5.12.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.10...v5.12.11) (2022-04-21) - - ## [5.12.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.9...v5.12.10) (2022-04-18) - - ## [5.12.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.8...v5.12.9) (2022-04-13) - ### Bug Fixes -* add telemetry to metadata api deploy ([#606](https://github.com/forcedotcom/source-deploy-retrieve/issues/606)) ([c9d584c](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9d584c28aad4f444548b1e4c357f714d82cd669)) - - +- add telemetry to metadata api deploy ([#606](https://github.com/forcedotcom/source-deploy-retrieve/issues/606)) ([c9d584c](https://github.com/forcedotcom/source-deploy-retrieve/commit/c9d584c28aad4f444548b1e4c357f714d82cd669)) ## [5.12.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.7...v5.12.8) (2022-04-07) - - ## [5.12.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.6...v5.12.7) (2022-04-01) - ### Bug Fixes -* resolve strictDirectoryName types in mdapi format ([#601](https://github.com/forcedotcom/source-deploy-retrieve/issues/601)) ([823966e](https://github.com/forcedotcom/source-deploy-retrieve/commit/823966e8e003151c97700a397d467a794794e902)) - - +- resolve strictDirectoryName types in mdapi format ([#601](https://github.com/forcedotcom/source-deploy-retrieve/issues/601)) ([823966e](https://github.com/forcedotcom/source-deploy-retrieve/commit/823966e8e003151c97700a397d467a794794e902)) ## [5.12.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.5...v5.12.6) (2022-03-28) - - ## [5.12.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.4...v5.12.5) (2022-03-25) - - ## [5.12.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.3...v5.12.4) (2022-03-11) - ### Reverts -* revert commit that added deasync dependancy (#591) ([b01c15b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b01c15b1d85cfa4e2f657e8d8e997927c7983117)), closes [#591](https://github.com/forcedotcom/source-deploy-retrieve/issues/591) [#583](https://github.com/forcedotcom/source-deploy-retrieve/issues/583) - - +- revert commit that added deasync dependancy (#591) ([b01c15b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b01c15b1d85cfa4e2f657e8d8e997927c7983117)), closes [#591](https://github.com/forcedotcom/source-deploy-retrieve/issues/591) [#583](https://github.com/forcedotcom/source-deploy-retrieve/issues/583) ## [5.12.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.2...v5.12.3) (2022-03-02) - ### Bug Fixes -* **metadata registry:** update directory name for flowtest in registry ([#589](https://github.com/forcedotcom/source-deploy-retrieve/issues/589)) ([d6112a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/d6112a7325289fb55d3aee343cf77bcd2f68eb7f)) - - +- **metadata registry:** update directory name for flowtest in registry ([#589](https://github.com/forcedotcom/source-deploy-retrieve/issues/589)) ([d6112a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/d6112a7325289fb55d3aee343cf77bcd2f68eb7f)) ## [5.12.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.1...v5.12.2) (2022-03-01) - ### Bug Fixes -* add ComponentSetBuilder from plugin-source ([#576](https://github.com/forcedotcom/source-deploy-retrieve/issues/576)) ([16c02d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/16c02d611d442cc9efadc5fba51b8db8293ea7f5)) - - +- add ComponentSetBuilder from plugin-source ([#576](https://github.com/forcedotcom/source-deploy-retrieve/issues/576)) ([16c02d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/16c02d611d442cc9efadc5fba51b8db8293ea7f5)) ## [5.12.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.12.0...v5.12.1) (2022-03-01) - - # [5.12.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.11.0...v5.12.0) (2022-02-22) - ### Features -* **metadata registry:** adding flowtest type to metadata registry ([#580](https://github.com/forcedotcom/source-deploy-retrieve/issues/580)) ([40431f6](https://github.com/forcedotcom/source-deploy-retrieve/commit/40431f60eb29d02e33b5fc4f5f2066271b06c630)) - - +- **metadata registry:** adding flowtest type to metadata registry ([#580](https://github.com/forcedotcom/source-deploy-retrieve/issues/580)) ([40431f6](https://github.com/forcedotcom/source-deploy-retrieve/commit/40431f60eb29d02e33b5fc4f5f2066271b06c630)) # [5.11.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.10.0...v5.11.0) (2022-02-22) - ### Features -* cache fileResponses on deployResult ([#573](https://github.com/forcedotcom/source-deploy-retrieve/issues/573)) ([b38185b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b38185b7cd73b05ef1e1940b878b09eb2d198101)) - - +- cache fileResponses on deployResult ([#573](https://github.com/forcedotcom/source-deploy-retrieve/issues/573)) ([b38185b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b38185b7cd73b05ef1e1940b878b09eb2d198101)) # [5.10.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.11...v5.10.0) (2022-02-17) - ### Features -* new UiViewDefinition metadata type ([#572](https://github.com/forcedotcom/source-deploy-retrieve/issues/572)) ([9b3e0ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/9b3e0ead89e87b17263b61b734a8edb1c900fc01)) - - +- new UiViewDefinition metadata type ([#572](https://github.com/forcedotcom/source-deploy-retrieve/issues/572)) ([9b3e0ea](https://github.com/forcedotcom/source-deploy-retrieve/commit/9b3e0ead89e87b17263b61b734a8edb1c900fc01)) ## [5.9.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.10...v5.9.11) (2022-02-17) - - ## [5.9.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.9...v5.9.10) (2022-02-15) - - ## [5.9.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.8...v5.9.9) (2022-02-11) - - ## [5.9.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.7...v5.9.8) (2022-02-08) - ### Bug Fixes -* sort ComponentSet.getObject ([#570](https://github.com/forcedotcom/source-deploy-retrieve/issues/570)) ([ff3425c](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff3425ca5e89e6e813a4fafe5f759c623c3f64fd)) - - +- sort ComponentSet.getObject ([#570](https://github.com/forcedotcom/source-deploy-retrieve/issues/570)) ([ff3425c](https://github.com/forcedotcom/source-deploy-retrieve/commit/ff3425ca5e89e6e813a4fafe5f759c623c3f64fd)) ## [5.9.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.6...v5.9.7) (2022-02-07) - ### Bug Fixes -* stat will follow symlinks ([#559](https://github.com/forcedotcom/source-deploy-retrieve/issues/559)) ([f52e3cf](https://github.com/forcedotcom/source-deploy-retrieve/commit/f52e3cf49da3584bbe4a315ef2872eafe17134e2)) - - +- stat will follow symlinks ([#559](https://github.com/forcedotcom/source-deploy-retrieve/issues/559)) ([f52e3cf](https://github.com/forcedotcom/source-deploy-retrieve/commit/f52e3cf49da3584bbe4a315ef2872eafe17134e2)) ## [5.9.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.5...v5.9.6) (2022-02-07) - ### Bug Fixes -* warn and convert on windows seps in .forceignore ([#557](https://github.com/forcedotcom/source-deploy-retrieve/issues/557)) ([a9700d7](https://github.com/forcedotcom/source-deploy-retrieve/commit/a9700d7132b891525459ee98b4a70dcdc066716e)) - - +- warn and convert on windows seps in .forceignore ([#557](https://github.com/forcedotcom/source-deploy-retrieve/issues/557)) ([a9700d7](https://github.com/forcedotcom/source-deploy-retrieve/commit/a9700d7132b891525459ee98b4a70dcdc066716e)) ## [5.9.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.4...v5.9.5) (2022-01-31) - ### Bug Fixes -* convert CFT ([#558](https://github.com/forcedotcom/source-deploy-retrieve/issues/558)) ([4978247](https://github.com/forcedotcom/source-deploy-retrieve/commit/4978247f57b7db8e6b08c96d7a985dad67dc0dbc)) - - +- convert CFT ([#558](https://github.com/forcedotcom/source-deploy-retrieve/issues/558)) ([4978247](https://github.com/forcedotcom/source-deploy-retrieve/commit/4978247f57b7db8e6b08c96d7a985dad67dc0dbc)) ## [5.9.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.3...v5.9.4) (2022-01-24) - - ## [5.9.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.2...v5.9.3) (2022-01-20) - ### Bug Fixes -* custom label merging ([2d5ded2](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d5ded2f45242535061d545dc7de56d12630bce2)) - - +- custom label merging ([2d5ded2](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d5ded2f45242535061d545dc7de56d12630bce2)) ## [5.9.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.1...v5.9.2) (2022-01-12) - - ## [5.9.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.9.0...v5.9.1) (2022-01-05) - - # [5.9.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.5...v5.9.0) (2022-01-04) - ### Features -* add retrieve in mdapi format ([#519](https://github.com/forcedotcom/source-deploy-retrieve/issues/519)) ([4db9b18](https://github.com/forcedotcom/source-deploy-retrieve/commit/4db9b1813712617970c714f30d7d2f1ef2578a2f)) - - +- add retrieve in mdapi format ([#519](https://github.com/forcedotcom/source-deploy-retrieve/issues/519)) ([4db9b18](https://github.com/forcedotcom/source-deploy-retrieve/commit/4db9b1813712617970c714f30d7d2f1ef2578a2f)) ## [5.8.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.4...v5.8.5) (2022-01-04) - ### Bug Fixes -* can retrive COFT with COT automatically ([#517](https://github.com/forcedotcom/source-deploy-retrieve/issues/517)) ([7b9a464](https://github.com/forcedotcom/source-deploy-retrieve/commit/7b9a46483323921e69de88b086f602eaefa6f869)) - - +- can retrive COFT with COT automatically ([#517](https://github.com/forcedotcom/source-deploy-retrieve/issues/517)) ([7b9a464](https://github.com/forcedotcom/source-deploy-retrieve/commit/7b9a46483323921e69de88b086f602eaefa6f869)) ## [5.8.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.3...v5.8.4) (2022-01-03) - ### Bug Fixes -* add variable polling times based on comp. set ([#520](https://github.com/forcedotcom/source-deploy-retrieve/issues/520)) ([e97744f](https://github.com/forcedotcom/source-deploy-retrieve/commit/e97744f243d943c85ca8df22e004c278fbad0715)) - - +- add variable polling times based on comp. set ([#520](https://github.com/forcedotcom/source-deploy-retrieve/issues/520)) ([e97744f](https://github.com/forcedotcom/source-deploy-retrieve/commit/e97744f243d943c85ca8df22e004c278fbad0715)) ## [5.8.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.2...v5.8.3) (2022-01-03) - ### Bug Fixes -* wrap error from fast-xml-parser when invalid xml parsed ([#518](https://github.com/forcedotcom/source-deploy-retrieve/issues/518)) ([407af67](https://github.com/forcedotcom/source-deploy-retrieve/commit/407af6754994b9b8b0484ee7a8dcb380ada2c554)) - - +- wrap error from fast-xml-parser when invalid xml parsed ([#518](https://github.com/forcedotcom/source-deploy-retrieve/issues/518)) ([407af67](https://github.com/forcedotcom/source-deploy-retrieve/commit/407af6754994b9b8b0484ee7a8dcb380ada2c554)) ## [5.8.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.1...v5.8.2) (2021-12-16) - - ## [5.8.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.8.0...v5.8.1) (2021-12-15) - ### Bug Fixes -* network error tolerance ([#513](https://github.com/forcedotcom/source-deploy-retrieve/issues/513)) ([7042a79](https://github.com/forcedotcom/source-deploy-retrieve/commit/7042a79659ca1348118281a418eb559a3daf2305)) - - +- network error tolerance ([#513](https://github.com/forcedotcom/source-deploy-retrieve/issues/513)) ([7042a79](https://github.com/forcedotcom/source-deploy-retrieve/commit/7042a79659ca1348118281a418eb559a3daf2305)) # [5.8.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.7.1...v5.8.0) (2021-12-01) - ### Features -* update version of core ([#511](https://github.com/forcedotcom/source-deploy-retrieve/issues/511)) ([172df7a](https://github.com/forcedotcom/source-deploy-retrieve/commit/172df7ab980aed2b25d92f9d950147eeae76b846)) - - +- update version of core ([#511](https://github.com/forcedotcom/source-deploy-retrieve/issues/511)) ([172df7a](https://github.com/forcedotcom/source-deploy-retrieve/commit/172df7ab980aed2b25d92f9d950147eeae76b846)) ## [5.7.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.7.0...v5.7.1) (2021-11-30) - - # [5.7.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.4...v5.7.0) (2021-11-24) - ### Features -* add metadata types StnryAssetEnvSrcCnfg, BldgEnrgyIntensityCnfg, VehicleAssetEmssnSrcCnfg ([#508](https://github.com/forcedotcom/source-deploy-retrieve/issues/508)) ([e3dc3ef](https://github.com/forcedotcom/source-deploy-retrieve/commit/e3dc3ef51d8fba19ec9dfda43ca41ddaf26c9bc0)) - - +- add metadata types StnryAssetEnvSrcCnfg, BldgEnrgyIntensityCnfg, VehicleAssetEmssnSrcCnfg ([#508](https://github.com/forcedotcom/source-deploy-retrieve/issues/508)) ([e3dc3ef](https://github.com/forcedotcom/source-deploy-retrieve/commit/e3dc3ef51d8fba19ec9dfda43ca41ddaf26c9bc0)) ## [5.6.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.3...v5.6.4) (2021-11-22) - ### Bug Fixes -* run unspecified child types through forceignore to avoid retrieving ([#505](https://github.com/forcedotcom/source-deploy-retrieve/issues/505)) ([4e327b6](https://github.com/forcedotcom/source-deploy-retrieve/commit/4e327b60de27168dc0b3e8a63ba70dbce96df03a)) - - +- run unspecified child types through forceignore to avoid retrieving ([#505](https://github.com/forcedotcom/source-deploy-retrieve/issues/505)) ([4e327b6](https://github.com/forcedotcom/source-deploy-retrieve/commit/4e327b60de27168dc0b3e8a63ba70dbce96df03a)) ## [5.6.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.2...v5.6.3) (2021-11-18) - - ## [5.6.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.1...v5.6.2) (2021-11-18) - - ## [5.6.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.6.0...v5.6.1) (2021-11-17) - - # [5.6.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.5.0...v5.6.0) (2021-11-16) - ### Features -* support new OmniScript and OmniIntegrationProcedure type ([#502](https://github.com/forcedotcom/source-deploy-retrieve/issues/502)) ([9e1c089](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e1c089fcff06491a3dca55c86098b29377b3764)) - +- support new OmniScript and OmniIntegrationProcedure type ([#502](https://github.com/forcedotcom/source-deploy-retrieve/issues/502)) ([9e1c089](https://github.com/forcedotcom/source-deploy-retrieve/commit/9e1c089fcff06491a3dca55c86098b29377b3764)) ### Reverts -* Revert "feat: support new OmniScript and OmniIntegrationProcedure type (#502)" (#503) ([e964685](https://github.com/forcedotcom/source-deploy-retrieve/commit/e964685a6649eb0dc6f635a55f3f0e065d6556b9)), closes [#502](https://github.com/forcedotcom/source-deploy-retrieve/issues/502) [#503](https://github.com/forcedotcom/source-deploy-retrieve/issues/503) - - +- Revert "feat: support new OmniScript and OmniIntegrationProcedure type (#502)" (#503) ([e964685](https://github.com/forcedotcom/source-deploy-retrieve/commit/e964685a6649eb0dc6f635a55f3f0e065d6556b9)), closes [#502](https://github.com/forcedotcom/source-deploy-retrieve/issues/502) [#503](https://github.com/forcedotcom/source-deploy-retrieve/issues/503) # [5.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.4.2...v5.5.0) (2021-11-11) - ### Features -* construct virtual tree from name/type ([e475175](https://github.com/forcedotcom/source-deploy-retrieve/commit/e475175799c90c0d62fe9eda782e9ebd025c3990)) - - +- construct virtual tree from name/type ([e475175](https://github.com/forcedotcom/source-deploy-retrieve/commit/e475175799c90c0d62fe9eda782e9ebd025c3990)) ## [5.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.4.1...v5.4.2) (2021-11-10) +### Bug Fixes -### Bug Fixes - -* adds an action when only one of the required for MCT was ignored ([#494](https://github.com/forcedotcom/source-deploy-retrieve/issues/494)) ([3ee999c](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ee999c84ad52077e5d090a854baabd4853a1957)) - - +- adds an action when only one of the required for MCT was ignored ([#494](https://github.com/forcedotcom/source-deploy-retrieve/issues/494)) ([3ee999c](https://github.com/forcedotcom/source-deploy-retrieve/commit/3ee999c84ad52077e5d090a854baabd4853a1957)) ## [5.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.4.0...v5.4.1) (2021-11-04) - ### Bug Fixes -* unconfuse sitedotcom vs site ([#498](https://github.com/forcedotcom/source-deploy-retrieve/issues/498)) ([5a55d02](https://github.com/forcedotcom/source-deploy-retrieve/commit/5a55d0290a5aed128be061d249aa4b5245be1f5d)) - - +- unconfuse sitedotcom vs site ([#498](https://github.com/forcedotcom/source-deploy-retrieve/issues/498)) ([5a55d02](https://github.com/forcedotcom/source-deploy-retrieve/commit/5a55d0290a5aed128be061d249aa4b5245be1f5d)) # [5.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.3.0...v5.4.0) (2021-11-03) - ### Features -* new types OmniUiCard, OmniDataTransform ([3460dde](https://github.com/forcedotcom/source-deploy-retrieve/commit/3460dde71a274c23031f33ae8d408f755198f65d)) - - +- new types OmniUiCard, OmniDataTransform ([3460dde](https://github.com/forcedotcom/source-deploy-retrieve/commit/3460dde71a274c23031f33ae8d408f755198f65d)) # [5.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.2.0...v5.3.0) (2021-11-03) - ### Features -* registry support for fieldRestrictionRule ([#486](https://github.com/forcedotcom/source-deploy-retrieve/issues/486)) ([abf0cdd](https://github.com/forcedotcom/source-deploy-retrieve/commit/abf0cdd722507fcc8c8d66aa37a13b02b2f72776)) - - +- registry support for fieldRestrictionRule ([#486](https://github.com/forcedotcom/source-deploy-retrieve/issues/486)) ([abf0cdd](https://github.com/forcedotcom/source-deploy-retrieve/commit/abf0cdd722507fcc8c8d66aa37a13b02b2f72776)) # [5.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.1.3...v5.2.0) (2021-11-02) - ### Features -* modify fileResponse for not found in org on Deletes ([#472](https://github.com/forcedotcom/source-deploy-retrieve/issues/472)) ([9d258fc](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d258fc3f46989de2a89d429ca4994d5ed756eab)) - - +- modify fileResponse for not found in org on Deletes ([#472](https://github.com/forcedotcom/source-deploy-retrieve/issues/472)) ([9d258fc](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d258fc3f46989de2a89d429ca4994d5ed756eab)) ## [5.1.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.1.2...v5.1.3) (2021-11-02) - - ## [5.1.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.1.1...v5.1.2) (2021-10-29) - - ## [5.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.1.0...v5.1.1) (2021-10-28) - ### Bug Fixes -* ensure component.content is always assigned ([#485](https://github.com/forcedotcom/source-deploy-retrieve/issues/485)) ([d77f475](https://github.com/forcedotcom/source-deploy-retrieve/commit/d77f47502634206ac59181362b7f17da82ed01e7)) - - +- ensure component.content is always assigned ([#485](https://github.com/forcedotcom/source-deploy-retrieve/issues/485)) ([d77f475](https://github.com/forcedotcom/source-deploy-retrieve/commit/d77f47502634206ac59181362b7f17da82ed01e7)) # [5.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.0.3...v5.1.0) (2021-10-28) - ### Features -* construct virtual tree from array of paths ([#480](https://github.com/forcedotcom/source-deploy-retrieve/issues/480)) ([99954dc](https://github.com/forcedotcom/source-deploy-retrieve/commit/99954dc731d078e99283eed940b98ee63688a024)) - - +- construct virtual tree from array of paths ([#480](https://github.com/forcedotcom/source-deploy-retrieve/issues/480)) ([99954dc](https://github.com/forcedotcom/source-deploy-retrieve/commit/99954dc731d078e99283eed940b98ee63688a024)) ## [5.0.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.0.2...v5.0.3) (2021-10-28) - ### Bug Fixes -* keys split into 2 strings, which allows # in fullName ([#474](https://github.com/forcedotcom/source-deploy-retrieve/issues/474)) ([79aec1f](https://github.com/forcedotcom/source-deploy-retrieve/commit/79aec1f7af6db21ee498721f425b122a53f14310)) - - +- keys split into 2 strings, which allows # in fullName ([#474](https://github.com/forcedotcom/source-deploy-retrieve/issues/474)) ([79aec1f](https://github.com/forcedotcom/source-deploy-retrieve/commit/79aec1f7af6db21ee498721f425b122a53f14310)) ## [5.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.0.1...v5.0.2) (2021-10-28) - ### Bug Fixes -* doesn't call Object.entries on undefined ([#484](https://github.com/forcedotcom/source-deploy-retrieve/issues/484)) ([089198e](https://github.com/forcedotcom/source-deploy-retrieve/commit/089198e7e1472724951765c2bca7be7003609b64)) - - +- doesn't call Object.entries on undefined ([#484](https://github.com/forcedotcom/source-deploy-retrieve/issues/484)) ([089198e](https://github.com/forcedotcom/source-deploy-retrieve/commit/089198e7e1472724951765c2bca7be7003609b64)) ## [5.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v5.0.0...v5.0.1) (2021-10-21) - ### Bug Fixes -* migrate registry.json from fork ([#482](https://github.com/forcedotcom/source-deploy-retrieve/issues/482)) ([cad3700](https://github.com/forcedotcom/source-deploy-retrieve/commit/cad370037ef529a575723f89061d46b9503a1a60)) - - +- migrate registry.json from fork ([#482](https://github.com/forcedotcom/source-deploy-retrieve/issues/482)) ([cad3700](https://github.com/forcedotcom/source-deploy-retrieve/commit/cad370037ef529a575723f89061d46b9503a1a60)) # [5.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.12...v5.0.0) (2021-10-21) - - ## [4.5.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.11...v4.5.12) (2021-10-20) - - ## [4.5.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.10...v4.5.11) (2021-10-13) - - ## [4.5.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.9...v4.5.10) (2021-10-13) - ### Bug Fixes -* use matching content file strategy ([#471](https://github.com/forcedotcom/source-deploy-retrieve/issues/471)) ([86b21d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/86b21d69b913058f3b3fc641f6ef7ce9a0c2fe92)) - - +- use matching content file strategy ([#471](https://github.com/forcedotcom/source-deploy-retrieve/issues/471)) ([86b21d6](https://github.com/forcedotcom/source-deploy-retrieve/commit/86b21d69b913058f3b3fc641f6ef7ce9a0c2fe92)) ## [4.5.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.8...v4.5.9) (2021-10-12) - ### Bug Fixes -* bump api version to 53.0 ([#476](https://github.com/forcedotcom/source-deploy-retrieve/issues/476)) ([a62aac5](https://github.com/forcedotcom/source-deploy-retrieve/commit/a62aac52037e40f3bfbf0ff516054d8096ecbfed)) - - +- bump api version to 53.0 ([#476](https://github.com/forcedotcom/source-deploy-retrieve/issues/476)) ([a62aac5](https://github.com/forcedotcom/source-deploy-retrieve/commit/a62aac52037e40f3bfbf0ff516054d8096ecbfed)) ## [4.5.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.7...v4.5.8) (2021-10-12) - - ## [4.5.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.6...v4.5.7) (2021-10-11) - ### Bug Fixes -* use parent xml to parse child ([#470](https://github.com/forcedotcom/source-deploy-retrieve/issues/470)) ([440d2be](https://github.com/forcedotcom/source-deploy-retrieve/commit/440d2beda3cdd8cc64137ac64d361e230d8f5e30)) - - +- use parent xml to parse child ([#470](https://github.com/forcedotcom/source-deploy-retrieve/issues/470)) ([440d2be](https://github.com/forcedotcom/source-deploy-retrieve/commit/440d2beda3cdd8cc64137ac64d361e230d8f5e30)) ## [4.5.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.5...v4.5.6) (2021-10-07) - - ## [4.5.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.4...v4.5.5) (2021-10-06) - ### Bug Fixes -* replace fs with graceful-fs ([#468](https://github.com/forcedotcom/source-deploy-retrieve/issues/468)) ([2b5214c](https://github.com/forcedotcom/source-deploy-retrieve/commit/2b5214c655b94e009e18482f50f121c6217c5e24)) - - +- replace fs with graceful-fs ([#468](https://github.com/forcedotcom/source-deploy-retrieve/issues/468)) ([2b5214c](https://github.com/forcedotcom/source-deploy-retrieve/commit/2b5214c655b94e009e18482f50f121c6217c5e24)) ## [4.5.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.3...v4.5.4) (2021-10-06) - - ## [4.5.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.2...v4.5.3) (2021-10-06) - ### Bug Fixes -* set correct status on file responses ([#465](https://github.com/forcedotcom/source-deploy-retrieve/issues/465)) ([3e95508](https://github.com/forcedotcom/source-deploy-retrieve/commit/3e9550846a0528f7c6c5ea02881003a87601fc1f)) - - +- set correct status on file responses ([#465](https://github.com/forcedotcom/source-deploy-retrieve/issues/465)) ([3e95508](https://github.com/forcedotcom/source-deploy-retrieve/commit/3e9550846a0528f7c6c5ea02881003a87601fc1f)) ## [4.5.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.1...v4.5.2) (2021-10-03) - ### Bug Fixes -* support mixed wildcards and names in manifests ([#464](https://github.com/forcedotcom/source-deploy-retrieve/issues/464)) ([58e14ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/58e14ba1b89ec6b63cfc748ef46d39d40ab8f348)) - - +- support mixed wildcards and names in manifests ([#464](https://github.com/forcedotcom/source-deploy-retrieve/issues/464)) ([58e14ba](https://github.com/forcedotcom/source-deploy-retrieve/commit/58e14ba1b89ec6b63cfc748ef46d39d40ab8f348)) ## [4.5.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.5.0...v4.5.1) (2021-09-30) - - # [4.5.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.8...v4.5.0) (2021-09-30) - ### Features -* support epb types ([#463](https://github.com/forcedotcom/source-deploy-retrieve/issues/463)) ([1963483](https://github.com/forcedotcom/source-deploy-retrieve/commit/1963483ca9795437cba09568f1bd0f29d33affd1)) - - +- support epb types ([#463](https://github.com/forcedotcom/source-deploy-retrieve/issues/463)) ([1963483](https://github.com/forcedotcom/source-deploy-retrieve/commit/1963483ca9795437cba09568f1bd0f29d33affd1)) ## [4.4.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.7...v4.4.8) (2021-09-30) - ### Bug Fixes -* resolve CustomFieldTranslations properly ([#461](https://github.com/forcedotcom/source-deploy-retrieve/issues/461)) ([cf764bb](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf764bb9ce02844553e6374efa1d538e414ab697)) - - +- resolve CustomFieldTranslations properly ([#461](https://github.com/forcedotcom/source-deploy-retrieve/issues/461)) ([cf764bb](https://github.com/forcedotcom/source-deploy-retrieve/commit/cf764bb9ce02844553e6374efa1d538e414ab697)) ## [4.4.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.6...v4.4.7) (2021-09-28) - ### Bug Fixes -* release sfdx-core update ([#462](https://github.com/forcedotcom/source-deploy-retrieve/issues/462)) ([ed44dff](https://github.com/forcedotcom/source-deploy-retrieve/commit/ed44dfff1757eb307f24fcbcdc1efa0e7f197ca7)) - - +- release sfdx-core update ([#462](https://github.com/forcedotcom/source-deploy-retrieve/issues/462)) ([ed44dff](https://github.com/forcedotcom/source-deploy-retrieve/commit/ed44dfff1757eb307f24fcbcdc1efa0e7f197ca7)) ## [4.4.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.5...v4.4.6) (2021-09-24) - ### Bug Fixes -* resolve folderContentTypes in mdapi format for windows ([#457](https://github.com/forcedotcom/source-deploy-retrieve/issues/457)) ([25fbec5](https://github.com/forcedotcom/source-deploy-retrieve/commit/25fbec55720e7bab39a9e7e4f0368f44882c15de)) - - +- resolve folderContentTypes in mdapi format for windows ([#457](https://github.com/forcedotcom/source-deploy-retrieve/issues/457)) ([25fbec5](https://github.com/forcedotcom/source-deploy-retrieve/commit/25fbec55720e7bab39a9e7e4f0368f44882c15de)) ## [4.4.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.4...v4.4.5) (2021-09-23) - ### Bug Fixes -* adds support for nested InFolder metadata types ([#455](https://github.com/forcedotcom/source-deploy-retrieve/issues/455)) ([b2b90a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/b2b90a7093a60d264776b663f6280ba3a101c237)) - - +- adds support for nested InFolder metadata types ([#455](https://github.com/forcedotcom/source-deploy-retrieve/issues/455)) ([b2b90a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/b2b90a7093a60d264776b663f6280ba3a101c237)) ## [4.4.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.3...v4.4.4) (2021-09-20) - ### Bug Fixes -* remove XML_NS_KEY from children when written in metadata format ([#451](https://github.com/forcedotcom/source-deploy-retrieve/issues/451)) ([991ba16](https://github.com/forcedotcom/source-deploy-retrieve/commit/991ba161be918c4475381b657d768d8a88a32521)) - - +- remove XML_NS_KEY from children when written in metadata format ([#451](https://github.com/forcedotcom/source-deploy-retrieve/issues/451)) ([991ba16](https://github.com/forcedotcom/source-deploy-retrieve/commit/991ba161be918c4475381b657d768d8a88a32521)) ## [4.4.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.2...v4.4.3) (2021-09-16) - ### Bug Fixes -* better support for non-nested inFolder types ([#452](https://github.com/forcedotcom/source-deploy-retrieve/issues/452)) ([f1237cb](https://github.com/forcedotcom/source-deploy-retrieve/commit/f1237cb887f1a24d121aadac9e5cf5f059d5203f)) - - +- better support for non-nested inFolder types ([#452](https://github.com/forcedotcom/source-deploy-retrieve/issues/452)) ([f1237cb](https://github.com/forcedotcom/source-deploy-retrieve/commit/f1237cb887f1a24d121aadac9e5cf5f059d5203f)) ## [4.4.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.1...v4.4.2) (2021-09-16) - ### Bug Fixes -* **registry.json:** registry update for ManagedTopics ([#453](https://github.com/forcedotcom/source-deploy-retrieve/issues/453)) ([70f7ca8](https://github.com/forcedotcom/source-deploy-retrieve/commit/70f7ca82491b900836216bad86e99cc976044635)) - - +- **registry.json:** registry update for ManagedTopics ([#453](https://github.com/forcedotcom/source-deploy-retrieve/issues/453)) ([70f7ca8](https://github.com/forcedotcom/source-deploy-retrieve/commit/70f7ca82491b900836216bad86e99cc976044635)) ## [4.4.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.4.0...v4.4.1) (2021-09-09) - ### Bug Fixes -* fix functions to function suffix ([#449](https://github.com/forcedotcom/source-deploy-retrieve/issues/449)) ([7c2ba22](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c2ba22cd47c89e11a480d7b9d8ac7c909283427)) - - +- fix functions to function suffix ([#449](https://github.com/forcedotcom/source-deploy-retrieve/issues/449)) ([7c2ba22](https://github.com/forcedotcom/source-deploy-retrieve/commit/7c2ba22cd47c89e11a480d7b9d8ac7c909283427)) # [4.4.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.5...v4.4.0) (2021-09-09) - ### Bug Fixes -* node 16 error parsing issue ([#448](https://github.com/forcedotcom/source-deploy-retrieve/issues/448)) ([54e1fdd](https://github.com/forcedotcom/source-deploy-retrieve/commit/54e1fddc5fb26675aad69c27036b9cb7ac7e978c)) - +- node 16 error parsing issue ([#448](https://github.com/forcedotcom/source-deploy-retrieve/issues/448)) ([54e1fdd](https://github.com/forcedotcom/source-deploy-retrieve/commit/54e1fddc5fb26675aad69c27036b9cb7ac7e978c)) ### Features -* add required child type entries to manifest ([#446](https://github.com/forcedotcom/source-deploy-retrieve/issues/446)) ([c99198b](https://github.com/forcedotcom/source-deploy-retrieve/commit/c99198b37cd752f10b7c12e72ccf1304464cfccf)) - - +- add required child type entries to manifest ([#446](https://github.com/forcedotcom/source-deploy-retrieve/issues/446)) ([c99198b](https://github.com/forcedotcom/source-deploy-retrieve/commit/c99198b37cd752f10b7c12e72ccf1304464cfccf)) ## [4.3.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.4...v4.3.5) (2021-09-02) - ### Bug Fixes -* force RestrictionRule to a strict directory ([#447](https://github.com/forcedotcom/source-deploy-retrieve/issues/447)) ([00b5315](https://github.com/forcedotcom/source-deploy-retrieve/commit/00b531559774036df5d45baf1d0da9e83c3262e9)) - - +- force RestrictionRule to a strict directory ([#447](https://github.com/forcedotcom/source-deploy-retrieve/issues/447)) ([00b5315](https://github.com/forcedotcom/source-deploy-retrieve/commit/00b531559774036df5d45baf1d0da9e83c3262e9)) ## [4.3.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.3...v4.3.4) (2021-09-02) - - ## [4.3.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.2...v4.3.3) (2021-08-31) - ### Bug Fixes -* Wr/aura under object main ([#443](https://github.com/forcedotcom/source-deploy-retrieve/issues/443)) ([cc5e471](https://github.com/forcedotcom/source-deploy-retrieve/commit/cc5e471b347ca1c2ed764de9c1db21d29d7af01e)) - - +- Wr/aura under object main ([#443](https://github.com/forcedotcom/source-deploy-retrieve/issues/443)) ([cc5e471](https://github.com/forcedotcom/source-deploy-retrieve/commit/cc5e471b347ca1c2ed764de9c1db21d29d7af01e)) ## [4.3.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.1...v4.3.2) (2021-08-26) - - ## [4.3.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.3.0...v4.3.1) (2021-08-25) - ### Bug Fixes -* add children to manifest during convert ([#442](https://github.com/forcedotcom/source-deploy-retrieve/issues/442)) ([3017e9d](https://github.com/forcedotcom/source-deploy-retrieve/commit/3017e9d45c6f0bbbb9adefaa455ce9775128e2bf)) - - +- add children to manifest during convert ([#442](https://github.com/forcedotcom/source-deploy-retrieve/issues/442)) ([3017e9d](https://github.com/forcedotcom/source-deploy-retrieve/commit/3017e9d45c6f0bbbb9adefaa455ce9775128e2bf)) # [4.3.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.2.0...v4.3.0) (2021-08-25) - ### Features -* add InboundCertificate to metadata registry ([#441](https://github.com/forcedotcom/source-deploy-retrieve/issues/441)) ([d833485](https://github.com/forcedotcom/source-deploy-retrieve/commit/d833485b5e9aeebfb9dd5baf89fab95f4e6032d8)) - - +- add InboundCertificate to metadata registry ([#441](https://github.com/forcedotcom/source-deploy-retrieve/issues/441)) ([d833485](https://github.com/forcedotcom/source-deploy-retrieve/commit/d833485b5e9aeebfb9dd5baf89fab95f4e6032d8)) # [4.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.1.1...v4.2.0) (2021-08-25) - - ## [4.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.1.0...v4.1.1) (2021-08-20) - - # [4.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.0.2...v4.1.0) (2021-08-12) - - ## [4.0.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.0.1...v4.0.2) (2021-08-05) - ### Bug Fixes -* static resource size consistency ([#411](https://github.com/forcedotcom/source-deploy-retrieve/issues/411)) ([b107776](https://github.com/forcedotcom/source-deploy-retrieve/commit/b10777606cecbda52c72b5b279169956e0a15977)) - +- static resource size consistency ([#411](https://github.com/forcedotcom/source-deploy-retrieve/issues/411)) ([b107776](https://github.com/forcedotcom/source-deploy-retrieve/commit/b10777606cecbda52c72b5b279169956e0a15977)) ### Features -* added SDR Handbook to the repo ([#400](https://github.com/forcedotcom/source-deploy-retrieve/issues/400)) ([618ee7a](https://github.com/forcedotcom/source-deploy-retrieve/commit/618ee7acca544a9c981062457380b44e07883172)) - - +- added SDR Handbook to the repo ([#400](https://github.com/forcedotcom/source-deploy-retrieve/issues/400)) ([618ee7a](https://github.com/forcedotcom/source-deploy-retrieve/commit/618ee7acca544a9c981062457380b44e07883172)) ## [4.0.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v4.0.0...v4.0.1) (2021-07-28) - ### Bug Fixes -* add missing types from toolbelt to the best of my ability ([#393](https://github.com/forcedotcom/source-deploy-retrieve/issues/393)) ([eb69441](https://github.com/forcedotcom/source-deploy-retrieve/commit/eb6944167ac6bc16276324115d1ed6b87c700862)) -* add RunTestResult type ([#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395)) ([d9d768f](https://github.com/forcedotcom/source-deploy-retrieve/commit/d9d768f280a255151f905c570f72c46cf72d2aef)) -* add RunTestResult type ([#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395)) ([#398](https://github.com/forcedotcom/source-deploy-retrieve/issues/398)) ([f06f1b4](https://github.com/forcedotcom/source-deploy-retrieve/commit/f06f1b488c28e1c76dbe5bdf3008c780d9ca3837)) -* bump version of archiver for NodeJS v16 ([#399](https://github.com/forcedotcom/source-deploy-retrieve/issues/399)) ([63d45c0](https://github.com/forcedotcom/source-deploy-retrieve/commit/63d45c0d3cf0b88f6ec3cd666e016356754705b6)) -* ignore duplicate components in server response ([#401](https://github.com/forcedotcom/source-deploy-retrieve/issues/401)) ([734b956](https://github.com/forcedotcom/source-deploy-retrieve/commit/734b9562b95d180b60b2c9dd601fb6f3c1ff8ca6)) - +- add missing types from toolbelt to the best of my ability ([#393](https://github.com/forcedotcom/source-deploy-retrieve/issues/393)) ([eb69441](https://github.com/forcedotcom/source-deploy-retrieve/commit/eb6944167ac6bc16276324115d1ed6b87c700862)) +- add RunTestResult type ([#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395)) ([d9d768f](https://github.com/forcedotcom/source-deploy-retrieve/commit/d9d768f280a255151f905c570f72c46cf72d2aef)) +- add RunTestResult type ([#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395)) ([#398](https://github.com/forcedotcom/source-deploy-retrieve/issues/398)) ([f06f1b4](https://github.com/forcedotcom/source-deploy-retrieve/commit/f06f1b488c28e1c76dbe5bdf3008c780d9ca3837)) +- bump version of archiver for NodeJS v16 ([#399](https://github.com/forcedotcom/source-deploy-retrieve/issues/399)) ([63d45c0](https://github.com/forcedotcom/source-deploy-retrieve/commit/63d45c0d3cf0b88f6ec3cd666e016356754705b6)) +- ignore duplicate components in server response ([#401](https://github.com/forcedotcom/source-deploy-retrieve/issues/401)) ([734b956](https://github.com/forcedotcom/source-deploy-retrieve/commit/734b9562b95d180b60b2c9dd601fb6f3c1ff8ca6)) ### Reverts -* Revert "fix: add missing types from toolbelt to the best of my ability (#393)" (#404) ([bcdf424](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcdf4240c984004e2ccc0f407636bee34b9155d5)), closes [#393](https://github.com/forcedotcom/source-deploy-retrieve/issues/393) [#404](https://github.com/forcedotcom/source-deploy-retrieve/issues/404) -* Revert "chore: add CustomFieldTranslation to registry (#389)" (#403) ([9d0eec0](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d0eec0ce7639205fe05938f9736fdbd5038ad16)), closes [#389](https://github.com/forcedotcom/source-deploy-retrieve/issues/389) [#403](https://github.com/forcedotcom/source-deploy-retrieve/issues/403) -* Revert "fix: add RunTestResult type (#395)" (#402) ([aa08964](https://github.com/forcedotcom/source-deploy-retrieve/commit/aa0896461773ab860d78981fed56cdc32c37ed01)), closes [#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395) [#402](https://github.com/forcedotcom/source-deploy-retrieve/issues/402) - - +- Revert "fix: add missing types from toolbelt to the best of my ability (#393)" (#404) ([bcdf424](https://github.com/forcedotcom/source-deploy-retrieve/commit/bcdf4240c984004e2ccc0f407636bee34b9155d5)), closes [#393](https://github.com/forcedotcom/source-deploy-retrieve/issues/393) [#404](https://github.com/forcedotcom/source-deploy-retrieve/issues/404) +- Revert "chore: add CustomFieldTranslation to registry (#389)" (#403) ([9d0eec0](https://github.com/forcedotcom/source-deploy-retrieve/commit/9d0eec0ce7639205fe05938f9736fdbd5038ad16)), closes [#389](https://github.com/forcedotcom/source-deploy-retrieve/issues/389) [#403](https://github.com/forcedotcom/source-deploy-retrieve/issues/403) +- Revert "fix: add RunTestResult type (#395)" (#402) ([aa08964](https://github.com/forcedotcom/source-deploy-retrieve/commit/aa0896461773ab860d78981fed56cdc32c37ed01)), closes [#395](https://github.com/forcedotcom/source-deploy-retrieve/issues/395) [#402](https://github.com/forcedotcom/source-deploy-retrieve/issues/402) # [4.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v3.1.1...v4.0.0) (2021-07-16) - - ## [3.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v3.1.0...v3.1.1) (2021-07-09) - ### Bug Fixes -* add WaveComponent to metadata registry ([#366](https://github.com/forcedotcom/source-deploy-retrieve/issues/366)) ([b573b2b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b573b2b78943e1ec2bd6961f885392e7bbfc948d)) -* bumps the version of core to 2.25.1 ([#369](https://github.com/forcedotcom/source-deploy-retrieve/issues/369)) ([b04b283](https://github.com/forcedotcom/source-deploy-retrieve/commit/b04b283be4a0b3f85bd20b7b442f0bce08ab1db1)) - - +- add WaveComponent to metadata registry ([#366](https://github.com/forcedotcom/source-deploy-retrieve/issues/366)) ([b573b2b](https://github.com/forcedotcom/source-deploy-retrieve/commit/b573b2b78943e1ec2bd6961f885392e7bbfc948d)) +- bumps the version of core to 2.25.1 ([#369](https://github.com/forcedotcom/source-deploy-retrieve/issues/369)) ([b04b283](https://github.com/forcedotcom/source-deploy-retrieve/commit/b04b283be4a0b3f85bd20b7b442f0bce08ab1db1)) # [3.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.2.0...v3.1.0) (2021-06-30) - ### Bug Fixes -* codeowners file and package version ([f850c60](https://github.com/forcedotcom/source-deploy-retrieve/commit/f850c60be2dfeb660840247c76608279d28ee51e)) - - +- codeowners file and package version ([f850c60](https://github.com/forcedotcom/source-deploy-retrieve/commit/f850c60be2dfeb660840247c76608279d28ee51e)) # [2.2.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v3.0.0...v2.2.0) (2021-06-30) - ### Bug Fixes -* bump the version of @salesforce/core for PollingClient fix ([#361](https://github.com/forcedotcom/source-deploy-retrieve/issues/361)) ([65f04b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/65f04b2fa1fdc98f96948236c809fb7f8bd70c55)) -* export MetadataApiDeployStatus from the top level ([#358](https://github.com/forcedotcom/source-deploy-retrieve/issues/358)) ([02183bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/02183bd339bf1d6e20f936e983a0fbf6990eb73d)) - - +- bump the version of @salesforce/core for PollingClient fix ([#361](https://github.com/forcedotcom/source-deploy-retrieve/issues/361)) ([65f04b2](https://github.com/forcedotcom/source-deploy-retrieve/commit/65f04b2fa1fdc98f96948236c809fb7f8bd70c55)) +- export MetadataApiDeployStatus from the top level ([#358](https://github.com/forcedotcom/source-deploy-retrieve/issues/358)) ([02183bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/02183bd339bf1d6e20f936e983a0fbf6990eb73d)) # [3.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.5...v3.0.0) (2021-06-11) - ### Bug Fixes -* add rest option from core ([#352](https://github.com/forcedotcom/source-deploy-retrieve/issues/352)) ([38c1f99](https://github.com/forcedotcom/source-deploy-retrieve/commit/38c1f99357ee1a35f0df2b9dad375402f11a43a4)) -* use MetadataApiDeploy instance methods ([#343](https://github.com/forcedotcom/source-deploy-retrieve/issues/343)) ([a563429](https://github.com/forcedotcom/source-deploy-retrieve/commit/a563429540da9b8d0829b043d34e1120ddf73463)) - +- add rest option from core ([#352](https://github.com/forcedotcom/source-deploy-retrieve/issues/352)) ([38c1f99](https://github.com/forcedotcom/source-deploy-retrieve/commit/38c1f99357ee1a35f0df2b9dad375402f11a43a4)) +- use MetadataApiDeploy instance methods ([#343](https://github.com/forcedotcom/source-deploy-retrieve/issues/343)) ([a563429](https://github.com/forcedotcom/source-deploy-retrieve/commit/a563429540da9b8d0829b043d34e1120ddf73463)) ### Features -* add support for making asynchronous metadata transfers ([#334](https://github.com/forcedotcom/source-deploy-retrieve/issues/334)) ([5614b14](https://github.com/forcedotcom/source-deploy-retrieve/commit/5614b14495afdc123b88d68f98e93ca4a39687e8)) - +- add support for making asynchronous metadata transfers ([#334](https://github.com/forcedotcom/source-deploy-retrieve/issues/334)) ([5614b14](https://github.com/forcedotcom/source-deploy-retrieve/commit/5614b14495afdc123b88d68f98e93ca4a39687e8)) ### BREAKING CHANGES -* metadata transfers are now done in 2 steps - start and pollStatus +- metadata transfers are now done in 2 steps - start and pollStatus -* refactor: updates for review +- refactor: updates for review make componentSet option optional. update jsdoc. regenerate yarn.lock with yarnkpkg registry. -* refactor(yarn.lock): start with existing yarn.lock +- refactor(yarn.lock): start with existing yarn.lock do not regenerate the yarn.lock from scratch; use existing. - - ## [2.1.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.4...v2.1.5) (2021-06-03) - ### Bug Fixes -* export FileProperties from the top level ([#335](https://github.com/forcedotcom/source-deploy-retrieve/issues/335)) ([b3b01c3](https://github.com/forcedotcom/source-deploy-retrieve/commit/b3b01c332ce73c7d19aff48b226f90aa581a98f7)) - - +- export FileProperties from the top level ([#335](https://github.com/forcedotcom/source-deploy-retrieve/issues/335)) ([b3b01c3](https://github.com/forcedotcom/source-deploy-retrieve/commit/b3b01c332ce73c7d19aff48b226f90aa581a98f7)) ## [2.1.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.3...v2.1.4) (2021-05-24) - ### Bug Fixes -* fix cannot split issue ([#333](https://github.com/forcedotcom/source-deploy-retrieve/issues/333)) ([a167e18](https://github.com/forcedotcom/source-deploy-retrieve/commit/a167e18189df34ee61662fa3036e31fa77852e55)) -* improve messaging for force ignore old vs new parsers ([#324](https://github.com/forcedotcom/source-deploy-retrieve/issues/324)) ([53d66f3](https://github.com/forcedotcom/source-deploy-retrieve/commit/53d66f359469f7cf5f9f513aa418e371245c7ca8)) - +- fix cannot split issue ([#333](https://github.com/forcedotcom/source-deploy-retrieve/issues/333)) ([a167e18](https://github.com/forcedotcom/source-deploy-retrieve/commit/a167e18189df34ee61662fa3036e31fa77852e55)) +- improve messaging for force ignore old vs new parsers ([#324](https://github.com/forcedotcom/source-deploy-retrieve/issues/324)) ([53d66f3](https://github.com/forcedotcom/source-deploy-retrieve/commit/53d66f359469f7cf5f9f513aa418e371245c7ca8)) ### Features -* adds option to convert source directly to the specified directory ([#332](https://github.com/forcedotcom/source-deploy-retrieve/issues/332)) ([4e7dbb3](https://github.com/forcedotcom/source-deploy-retrieve/commit/4e7dbb330eac7d7a68e7eed9eccf8996b029cf42)) - - +- adds option to convert source directly to the specified directory ([#332](https://github.com/forcedotcom/source-deploy-retrieve/issues/332)) ([4e7dbb3](https://github.com/forcedotcom/source-deploy-retrieve/commit/4e7dbb330eac7d7a68e7eed9eccf8996b029cf42)) ## [2.1.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.2...v2.1.3) (2021-04-29) - ### Bug Fixes -* preserve leading zeroes in xml node values ([#319](https://github.com/forcedotcom/source-deploy-retrieve/issues/319)) ([2528abc](https://github.com/forcedotcom/source-deploy-retrieve/commit/2528abca20380c49695db1ba2b2f9739885a8858)) - - +- preserve leading zeroes in xml node values ([#319](https://github.com/forcedotcom/source-deploy-retrieve/issues/319)) ([2528abc](https://github.com/forcedotcom/source-deploy-retrieve/commit/2528abca20380c49695db1ba2b2f9739885a8858)) ## [2.1.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.1...v2.1.2) (2021-04-22) - - ## [2.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.1.0...v2.1.1) (2021-04-20) - ### Bug Fixes -* update missing config for wave and other types ([#307](https://github.com/forcedotcom/source-deploy-retrieve/issues/307)) ([bc9953d](https://github.com/forcedotcom/source-deploy-retrieve/commit/bc9953de94592575edd9cd882081de254e60ec8f)) - - +- update missing config for wave and other types ([#307](https://github.com/forcedotcom/source-deploy-retrieve/issues/307)) ([bc9953d](https://github.com/forcedotcom/source-deploy-retrieve/commit/bc9953de94592575edd9cd882081de254e60ec8f)) # [2.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v2.0.0...v2.1.0) (2021-04-14) - ### Bug Fixes -* add fullName to CompSet to be added to package.xml ([#296](https://github.com/forcedotcom/source-deploy-retrieve/issues/296)) ([c48eb45](https://github.com/forcedotcom/source-deploy-retrieve/commit/c48eb459f0047281863a2562509f51a58c324220)) - +- add fullName to CompSet to be added to package.xml ([#296](https://github.com/forcedotcom/source-deploy-retrieve/issues/296)) ([c48eb45](https://github.com/forcedotcom/source-deploy-retrieve/commit/c48eb459f0047281863a2562509f51a58c324220)) ### Features -* support split CustomLabels on deploy and retrieve ([#278](https://github.com/forcedotcom/source-deploy-retrieve/issues/278)) ([7a0f003](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a0f0038b465d75be22f61eb56c042bbf53e4029)) - - +- support split CustomLabels on deploy and retrieve ([#278](https://github.com/forcedotcom/source-deploy-retrieve/issues/278)) ([7a0f003](https://github.com/forcedotcom/source-deploy-retrieve/commit/7a0f0038b465d75be22f61eb56c042bbf53e4029)) # [2.0.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.24...v2.0.0) (2021-04-07) - ### Bug Fixes -* add SFDX_MDAPI_TEMP_DIR and test ([#266](https://github.com/forcedotcom/source-deploy-retrieve/issues/266)) ([1709237](https://github.com/forcedotcom/source-deploy-retrieve/commit/17092374a0757710db19a61c93e90d3165acb6f7)) - +- add SFDX_MDAPI_TEMP_DIR and test ([#266](https://github.com/forcedotcom/source-deploy-retrieve/issues/266)) ([1709237](https://github.com/forcedotcom/source-deploy-retrieve/commit/17092374a0757710db19a61c93e90d3165acb6f7)) ### Features -* add workskillrouting type to registry ([#287](https://github.com/forcedotcom/source-deploy-retrieve/issues/287)) ([3a4802b](https://github.com/forcedotcom/source-deploy-retrieve/commit/3a4802b1bb631deb26ae3faabcb34348617355e1)) -* generate api documentation ([#275](https://github.com/forcedotcom/source-deploy-retrieve/issues/275)) ([2d6fd6d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d6fd6da90ae79b5fb4eba0f7f22c15c53d03491)) -* update from manifest initializer ([#279](https://github.com/forcedotcom/source-deploy-retrieve/issues/279)) ([839494d](https://github.com/forcedotcom/source-deploy-retrieve/commit/839494d28a28e1a255c76db6b0cbc41e6cce3cd2)) - - +- add workskillrouting type to registry ([#287](https://github.com/forcedotcom/source-deploy-retrieve/issues/287)) ([3a4802b](https://github.com/forcedotcom/source-deploy-retrieve/commit/3a4802b1bb631deb26ae3faabcb34348617355e1)) +- generate api documentation ([#275](https://github.com/forcedotcom/source-deploy-retrieve/issues/275)) ([2d6fd6d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2d6fd6da90ae79b5fb4eba0f7f22c15c53d03491)) +- update from manifest initializer ([#279](https://github.com/forcedotcom/source-deploy-retrieve/issues/279)) ([839494d](https://github.com/forcedotcom/source-deploy-retrieve/commit/839494d28a28e1a255c76db6b0cbc41e6cce3cd2)) ## [1.1.24](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.23...v1.1.24) (2021-04-06) - - ## [1.1.23](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.22...v1.1.23) (2021-04-06) - - ## [1.1.22](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.21...v1.1.22) (2021-04-06) - - ## [1.1.21](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.20...v1.1.21) (2021-03-30) - ### Bug Fixes -* merge deploy api options ([#272](https://github.com/forcedotcom/source-deploy-retrieve/issues/272)) ([64f86bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/64f86bd49f55d86d36e3ab72be7440b36667cf0c)) -* set an overridden apiVersion on a created connection ([#274](https://github.com/forcedotcom/source-deploy-retrieve/issues/274)) ([48aedd9](https://github.com/forcedotcom/source-deploy-retrieve/commit/48aedd90054f35b797b13469e6e8223f55c93a95)) - +- merge deploy api options ([#272](https://github.com/forcedotcom/source-deploy-retrieve/issues/272)) ([64f86bd](https://github.com/forcedotcom/source-deploy-retrieve/commit/64f86bd49f55d86d36e3ab72be7440b36667cf0c)) +- set an overridden apiVersion on a created connection ([#274](https://github.com/forcedotcom/source-deploy-retrieve/issues/274)) ([48aedd9](https://github.com/forcedotcom/source-deploy-retrieve/commit/48aedd90054f35b797b13469e6e8223f55c93a95)) ### Features -* better options for from source component set initializer ([#276](https://github.com/forcedotcom/source-deploy-retrieve/issues/276)) ([94200bf](https://github.com/forcedotcom/source-deploy-retrieve/commit/94200bf745a8e967c11fee554be820520e11f318)) - - +- better options for from source component set initializer ([#276](https://github.com/forcedotcom/source-deploy-retrieve/issues/276)) ([94200bf](https://github.com/forcedotcom/source-deploy-retrieve/commit/94200bf745a8e967c11fee554be820520e11f318)) ## [1.1.20](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.19...v1.1.20) (2021-03-18) - ### Bug Fixes -* convert Document metadata type to document ([#263](https://github.com/forcedotcom/source-deploy-retrieve/issues/263)) ([49a0bf9](https://github.com/forcedotcom/source-deploy-retrieve/commit/49a0bf95d69a3084598c0a6d28cd498bac3ba9d9)) - - +- convert Document metadata type to document ([#263](https://github.com/forcedotcom/source-deploy-retrieve/issues/263)) ([49a0bf9](https://github.com/forcedotcom/source-deploy-retrieve/commit/49a0bf95d69a3084598c0a6d28cd498bac3ba9d9)) ## [1.1.19](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.18...v1.1.19) (2021-03-03) - ### Bug Fixes -* add retrieve via packageNames param ([#251](https://github.com/forcedotcom/source-deploy-retrieve/issues/251)) ([b2c3ad4](https://github.com/forcedotcom/source-deploy-retrieve/commit/b2c3ad4bad979c9daef0978e829c0631a8fef3f5)) -* unzipping some static resources fail ([#260](https://github.com/forcedotcom/source-deploy-retrieve/issues/260)) ([b8584fd](https://github.com/forcedotcom/source-deploy-retrieve/commit/b8584fdbf477e6e409db2ac1cdd909dc67ea5489)) - +- add retrieve via packageNames param ([#251](https://github.com/forcedotcom/source-deploy-retrieve/issues/251)) ([b2c3ad4](https://github.com/forcedotcom/source-deploy-retrieve/commit/b2c3ad4bad979c9daef0978e829c0631a8fef3f5)) +- unzipping some static resources fail ([#260](https://github.com/forcedotcom/source-deploy-retrieve/issues/260)) ([b8584fd](https://github.com/forcedotcom/source-deploy-retrieve/commit/b8584fdbf477e6e409db2ac1cdd909dc67ea5489)) ### Features -* metadata api deploy transfer result ([#249](https://github.com/forcedotcom/source-deploy-retrieve/issues/249)) ([788482b](https://github.com/forcedotcom/source-deploy-retrieve/commit/788482b1c48784830f16b866a70fe9aaa4af5fda)) - - +- metadata api deploy transfer result ([#249](https://github.com/forcedotcom/source-deploy-retrieve/issues/249)) ([788482b](https://github.com/forcedotcom/source-deploy-retrieve/commit/788482b1c48784830f16b866a70fe9aaa4af5fda)) ## [1.1.18](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.17...v1.1.18) (2021-02-24) - ### Bug Fixes -* address deploy/retrieve timeout with metadata transfer paradigm ([#236](https://github.com/forcedotcom/source-deploy-retrieve/issues/236)) ([7bb0535](https://github.com/forcedotcom/source-deploy-retrieve/commit/7bb05353eb67fa2f0ac6c01027da674872618582)) -* build issue with outdated reference ([#241](https://github.com/forcedotcom/source-deploy-retrieve/issues/241)) ([727407b](https://github.com/forcedotcom/source-deploy-retrieve/commit/727407b005528589e9f69cb3cbaa8a11f414be6f)) -* convert folder components to source format correctly ([#239](https://github.com/forcedotcom/source-deploy-retrieve/issues/239)) ([821600e](https://github.com/forcedotcom/source-deploy-retrieve/commit/821600ebda51c6544d117d85b53aa25092bd7256)) -* recomposition failing if no parent xml ([#245](https://github.com/forcedotcom/source-deploy-retrieve/issues/245)) ([48a4eb4](https://github.com/forcedotcom/source-deploy-retrieve/commit/48a4eb4d8c5889e1713e72a8a799f63b45e745d9)) -* remove octet-stream as archive type ([#244](https://github.com/forcedotcom/source-deploy-retrieve/issues/244)) ([bc00187](https://github.com/forcedotcom/source-deploy-retrieve/commit/bc00187c1d509b24cc43674098bd3a6636aed428)) - +- address deploy/retrieve timeout with metadata transfer paradigm ([#236](https://github.com/forcedotcom/source-deploy-retrieve/issues/236)) ([7bb0535](https://github.com/forcedotcom/source-deploy-retrieve/commit/7bb05353eb67fa2f0ac6c01027da674872618582)) +- build issue with outdated reference ([#241](https://github.com/forcedotcom/source-deploy-retrieve/issues/241)) ([727407b](https://github.com/forcedotcom/source-deploy-retrieve/commit/727407b005528589e9f69cb3cbaa8a11f414be6f)) +- convert folder components to source format correctly ([#239](https://github.com/forcedotcom/source-deploy-retrieve/issues/239)) ([821600e](https://github.com/forcedotcom/source-deploy-retrieve/commit/821600ebda51c6544d117d85b53aa25092bd7256)) +- recomposition failing if no parent xml ([#245](https://github.com/forcedotcom/source-deploy-retrieve/issues/245)) ([48a4eb4](https://github.com/forcedotcom/source-deploy-retrieve/commit/48a4eb4d8c5889e1713e72a8a799f63b45e745d9)) +- remove octet-stream as archive type ([#244](https://github.com/forcedotcom/source-deploy-retrieve/issues/244)) ([bc00187](https://github.com/forcedotcom/source-deploy-retrieve/commit/bc00187c1d509b24cc43674098bd3a6636aed428)) ### Features -* get file statuses from retrieve result ([#243](https://github.com/forcedotcom/source-deploy-retrieve/issues/243)) ([aa9f9db](https://github.com/forcedotcom/source-deploy-retrieve/commit/aa9f9db9f4a82584ba3640ce6f5a2a0d1619bef5)) -* turn component set into a lazy collection ([#247](https://github.com/forcedotcom/source-deploy-retrieve/issues/247)) ([6b4f306](https://github.com/forcedotcom/source-deploy-retrieve/commit/6b4f30605da59544a08a61dd567f2ed73fe8b5f3)) - - +- get file statuses from retrieve result ([#243](https://github.com/forcedotcom/source-deploy-retrieve/issues/243)) ([aa9f9db](https://github.com/forcedotcom/source-deploy-retrieve/commit/aa9f9db9f4a82584ba3640ce6f5a2a0d1619bef5)) +- turn component set into a lazy collection ([#247](https://github.com/forcedotcom/source-deploy-retrieve/issues/247)) ([6b4f306](https://github.com/forcedotcom/source-deploy-retrieve/commit/6b4f30605da59544a08a61dd567f2ed73fe8b5f3)) ## [1.1.17](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.16...v1.1.17) (2021-02-11) - - ## [1.1.16](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.15...v1.1.16) (2021-02-09) - ### Features -* support decomposed components across multiple directories ([#224](https://github.com/forcedotcom/source-deploy-retrieve/issues/224)) ([b3cfcb2](https://github.com/forcedotcom/source-deploy-retrieve/commit/b3cfcb2715f966e6298759138f18d79a15ca87d5)) - - +- support decomposed components across multiple directories ([#224](https://github.com/forcedotcom/source-deploy-retrieve/issues/224)) ([b3cfcb2](https://github.com/forcedotcom/source-deploy-retrieve/commit/b3cfcb2715f966e6298759138f18d79a15ca87d5)) ## [1.1.15](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.14...v1.1.15) (2021-01-13) - ### Bug Fixes -* issue supplying connection object when deploying or retrieving ([#226](https://github.com/forcedotcom/source-deploy-retrieve/issues/226)) ([55c177a](https://github.com/forcedotcom/source-deploy-retrieve/commit/55c177ad7d295cc1ab93bdedba4553a7aae9f450)) - +- issue supplying connection object when deploying or retrieving ([#226](https://github.com/forcedotcom/source-deploy-retrieve/issues/226)) ([55c177a](https://github.com/forcedotcom/source-deploy-retrieve/commit/55c177ad7d295cc1ab93bdedba4553a7aae9f450)) ### Features -* merge against multiple sources of the same component ([#223](https://github.com/forcedotcom/source-deploy-retrieve/issues/223)) ([65bd80a](https://github.com/forcedotcom/source-deploy-retrieve/commit/65bd80af3c46cde87437abd7da8e1229a3315517)) - - +- merge against multiple sources of the same component ([#223](https://github.com/forcedotcom/source-deploy-retrieve/issues/223)) ([65bd80a](https://github.com/forcedotcom/source-deploy-retrieve/commit/65bd80af3c46cde87437abd7da8e1229a3315517)) ## [1.1.14](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.13...v1.1.14) (2020-12-08) - ### Bug Fixes -* child components not being deployed ([#220](https://github.com/forcedotcom/source-deploy-retrieve/issues/220)) ([d23056b](https://github.com/forcedotcom/source-deploy-retrieve/commit/d23056b98c25cf5f0dd1971b8b87657c4c20674f)) - - +- child components not being deployed ([#220](https://github.com/forcedotcom/source-deploy-retrieve/issues/220)) ([d23056b](https://github.com/forcedotcom/source-deploy-retrieve/commit/d23056b98c25cf5f0dd1971b8b87657c4c20674f)) ## [1.1.13](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.12...v1.1.13) (2020-12-03) - ### Bug Fixes -* add to component set even if unresolved source ([#217](https://github.com/forcedotcom/source-deploy-retrieve/issues/217)) ([c2dd4b1](https://github.com/forcedotcom/source-deploy-retrieve/commit/c2dd4b173e71629afd34f7d0ed2aa3ecf5676005)) -* follow commitizen format on CircleCI automation ([#216](https://github.com/forcedotcom/source-deploy-retrieve/issues/216)) ([9fdf131](https://github.com/forcedotcom/source-deploy-retrieve/commit/9fdf1312585345e0b4901b8e908a47992322e65e)) - - +- add to component set even if unresolved source ([#217](https://github.com/forcedotcom/source-deploy-retrieve/issues/217)) ([c2dd4b1](https://github.com/forcedotcom/source-deploy-retrieve/commit/c2dd4b173e71629afd34f7d0ed2aa3ecf5676005)) +- follow commitizen format on CircleCI automation ([#216](https://github.com/forcedotcom/source-deploy-retrieve/issues/216)) ([9fdf131](https://github.com/forcedotcom/source-deploy-retrieve/commit/9fdf1312585345e0b4901b8e908a47992322e65e)) ## [1.1.12](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.11...v1.1.12) (2020-12-03) - ### Bug Fixes -* correct status when retrieving with wildcard ([#209](https://github.com/forcedotcom/source-deploy-retrieve/issues/209)) ([de7c4dc](https://github.com/forcedotcom/source-deploy-retrieve/commit/de7c4dc4b584785a12aa6e8fb6fb373fd0537243)) -* handling folders during various operations ([#208](https://github.com/forcedotcom/source-deploy-retrieve/issues/208)) ([7525a73](https://github.com/forcedotcom/source-deploy-retrieve/commit/7525a73ab248bdbe6b1a18ce11838c5398e902c6)) -* retrieve reports correct file outputs ([#210](https://github.com/forcedotcom/source-deploy-retrieve/issues/210)) ([1a4f35a](https://github.com/forcedotcom/source-deploy-retrieve/commit/1a4f35a54d52040f9a25c0121f8e79c0a8539ce7)) -* xmlns set during source conversion ([#213](https://github.com/forcedotcom/source-deploy-retrieve/issues/213)) ([790c674](https://github.com/forcedotcom/source-deploy-retrieve/commit/790c674d4374dba8c597c61c83f020d79a383921)) - +- correct status when retrieving with wildcard ([#209](https://github.com/forcedotcom/source-deploy-retrieve/issues/209)) ([de7c4dc](https://github.com/forcedotcom/source-deploy-retrieve/commit/de7c4dc4b584785a12aa6e8fb6fb373fd0537243)) +- handling folders during various operations ([#208](https://github.com/forcedotcom/source-deploy-retrieve/issues/208)) ([7525a73](https://github.com/forcedotcom/source-deploy-retrieve/commit/7525a73ab248bdbe6b1a18ce11838c5398e902c6)) +- retrieve reports correct file outputs ([#210](https://github.com/forcedotcom/source-deploy-retrieve/issues/210)) ([1a4f35a](https://github.com/forcedotcom/source-deploy-retrieve/commit/1a4f35a54d52040f9a25c0121f8e79c0a8539ce7)) +- xmlns set during source conversion ([#213](https://github.com/forcedotcom/source-deploy-retrieve/issues/213)) ([790c674](https://github.com/forcedotcom/source-deploy-retrieve/commit/790c674d4374dba8c597c61c83f020d79a383921)) ### Features -* multiple resolve targets when parsing manifest ([#211](https://github.com/forcedotcom/source-deploy-retrieve/issues/211)) ([cede5f6](https://github.com/forcedotcom/source-deploy-retrieve/commit/cede5f6f5611951c48dc66606eba664b13aeffaa)) -* multiple source-backed components per member in ComponentSet ([#212](https://github.com/forcedotcom/source-deploy-retrieve/issues/212)) ([deeaccb](https://github.com/forcedotcom/source-deploy-retrieve/commit/deeaccb60b2efb2372451b839f7c05c1d595a34d)) - - +- multiple resolve targets when parsing manifest ([#211](https://github.com/forcedotcom/source-deploy-retrieve/issues/211)) ([cede5f6](https://github.com/forcedotcom/source-deploy-retrieve/commit/cede5f6f5611951c48dc66606eba664b13aeffaa)) +- multiple source-backed components per member in ComponentSet ([#212](https://github.com/forcedotcom/source-deploy-retrieve/issues/212)) ([deeaccb](https://github.com/forcedotcom/source-deploy-retrieve/commit/deeaccb60b2efb2372451b839f7c05c1d595a34d)) ## [1.1.11](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.10...v1.1.11) (2020-11-12) - ### Bug Fixes -* fixed bug in old parser when using the defaults ([#200](https://github.com/forcedotcom/source-deploy-retrieve/issues/200)) ([33c8f1d](https://github.com/forcedotcom/source-deploy-retrieve/commit/33c8f1d01f8f64f0938e5fb20a515c40dd721138)) - +- fixed bug in old parser when using the defaults ([#200](https://github.com/forcedotcom/source-deploy-retrieve/issues/200)) ([33c8f1d](https://github.com/forcedotcom/source-deploy-retrieve/commit/33c8f1d01f8f64f0938e5fb20a515c40dd721138)) ### Features -* handle wildcards in working set ([#205](https://github.com/forcedotcom/source-deploy-retrieve/issues/205)) ([2af13b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/2af13b37ed69dbb8c788bbf30d7b5e3746b9e93c)) -* introduce working set paradigm, package xml parsing ([#201](https://github.com/forcedotcom/source-deploy-retrieve/issues/201)) ([abbc814](https://github.com/forcedotcom/source-deploy-retrieve/commit/abbc8144ee0eca0788669183db07a5dc10c7db73)) - - +- handle wildcards in working set ([#205](https://github.com/forcedotcom/source-deploy-retrieve/issues/205)) ([2af13b3](https://github.com/forcedotcom/source-deploy-retrieve/commit/2af13b37ed69dbb8c788bbf30d7b5e3746b9e93c)) +- introduce working set paradigm, package xml parsing ([#201](https://github.com/forcedotcom/source-deploy-retrieve/issues/201)) ([abbc814](https://github.com/forcedotcom/source-deploy-retrieve/commit/abbc8144ee0eca0788669183db07a5dc10c7db73)) ## [1.1.10](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.9...v1.1.10) (2020-11-06) - ### Bug Fixes -* make forceignore exported as a top level feature ([#198](https://github.com/forcedotcom/source-deploy-retrieve/issues/198)) ([f9fbdaa](https://github.com/forcedotcom/source-deploy-retrieve/commit/f9fbdaa7c721b347aa2d4d48a649e7512275c3e1)) -* remove tests from being published ([#203](https://github.com/forcedotcom/source-deploy-retrieve/issues/203)) ([f464521](https://github.com/forcedotcom/source-deploy-retrieve/commit/f4645212313db58e4edf01d8ef3f06d5f17e5970)) - - +- make forceignore exported as a top level feature ([#198](https://github.com/forcedotcom/source-deploy-retrieve/issues/198)) ([f9fbdaa](https://github.com/forcedotcom/source-deploy-retrieve/commit/f9fbdaa7c721b347aa2d4d48a649e7512275c3e1)) +- remove tests from being published ([#203](https://github.com/forcedotcom/source-deploy-retrieve/issues/203)) ([f464521](https://github.com/forcedotcom/source-deploy-retrieve/commit/f4645212313db58e4edf01d8ef3f06d5f17e5970)) ## [1.1.9](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.8...v1.1.9) (2020-10-29) - ### Features -* convert and merge static resources ([#186](https://github.com/forcedotcom/source-deploy-retrieve/issues/186)) ([39d717d](https://github.com/forcedotcom/source-deploy-retrieve/commit/39d717db0d3d5118560326e17ae338167447b149)) - - +- convert and merge static resources ([#186](https://github.com/forcedotcom/source-deploy-retrieve/issues/186)) ([39d717d](https://github.com/forcedotcom/source-deploy-retrieve/commit/39d717db0d3d5118560326e17ae338167447b149)) ## [1.1.8](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.7...v1.1.8) (2020-10-23) - ### Bug Fixes -* forceignore not respecting trailing / on windows ([#190](https://github.com/forcedotcom/source-deploy-retrieve/issues/190)) ([e3c7e49](https://github.com/forcedotcom/source-deploy-retrieve/commit/e3c7e498cb275c423e0f0b6b4c4f32cfd3c3cc36)) -* prevent duplicate -meta.xml suffix for metadata xml only components ([#188](https://github.com/forcedotcom/source-deploy-retrieve/issues/188)) ([63225b0](https://github.com/forcedotcom/source-deploy-retrieve/commit/63225b0190170de30671a4032d4ecae16da8fecb)) - +- forceignore not respecting trailing / on windows ([#190](https://github.com/forcedotcom/source-deploy-retrieve/issues/190)) ([e3c7e49](https://github.com/forcedotcom/source-deploy-retrieve/commit/e3c7e498cb275c423e0f0b6b4c4f32cfd3c3cc36)) +- prevent duplicate -meta.xml suffix for metadata xml only components ([#188](https://github.com/forcedotcom/source-deploy-retrieve/issues/188)) ([63225b0](https://github.com/forcedotcom/source-deploy-retrieve/commit/63225b0190170de30671a4032d4ecae16da8fecb)) ### Features -* convert and merge components for default transformer types ([#176](https://github.com/forcedotcom/source-deploy-retrieve/issues/176)) ([3d07aea](https://github.com/forcedotcom/source-deploy-retrieve/commit/3d07aeaa5c75a25849d6ef36fa24cc7ed557d463)) -* convert and merge decomposed component types ([#184](https://github.com/forcedotcom/source-deploy-retrieve/issues/184)) ([a3b1bc3](https://github.com/forcedotcom/source-deploy-retrieve/commit/a3b1bc37e113d2a91f3b8782c642b4ab1cbce8e8)) - - +- convert and merge components for default transformer types ([#176](https://github.com/forcedotcom/source-deploy-retrieve/issues/176)) ([3d07aea](https://github.com/forcedotcom/source-deploy-retrieve/commit/3d07aeaa5c75a25849d6ef36fa24cc7ed557d463)) +- convert and merge decomposed component types ([#184](https://github.com/forcedotcom/source-deploy-retrieve/issues/184)) ([a3b1bc3](https://github.com/forcedotcom/source-deploy-retrieve/commit/a3b1bc37e113d2a91f3b8782c642b4ab1cbce8e8)) ## [1.1.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.6...v1.1.7) (2020-10-15) - - ## [1.1.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.5...v1.1.6) (2020-10-07) - ### Bug Fixes -* check for only children tags during decompose ([#166](https://github.com/forcedotcom/source-deploy-retrieve/issues/166)) ([2c0b4b9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2c0b4b9a43363ce188474b6ad82e8a0c430ea3d7)) - +- check for only children tags during decompose ([#166](https://github.com/forcedotcom/source-deploy-retrieve/issues/166)) ([2c0b4b9](https://github.com/forcedotcom/source-deploy-retrieve/commit/2c0b4b9a43363ce188474b6ad82e8a0c430ea3d7)) ### Features -* enhance metadata retrieve result info ([#155](https://github.com/forcedotcom/source-deploy-retrieve/issues/155)) ([98f29e9](https://github.com/forcedotcom/source-deploy-retrieve/commit/98f29e959eebcf57e5ca6baf514058d157669bd7)) - +- enhance metadata retrieve result info ([#155](https://github.com/forcedotcom/source-deploy-retrieve/issues/155)) ([98f29e9](https://github.com/forcedotcom/source-deploy-retrieve/commit/98f29e959eebcf57e5ca6baf514058d157669bd7)) ### Performance Improvements -* update metadata api retrieve to convert using zip tree container ([#164](https://github.com/forcedotcom/source-deploy-retrieve/issues/164)) ([39b81f9](https://github.com/forcedotcom/source-deploy-retrieve/commit/39b81f93b1072468ff48e04441e298178353f0df)) - - +- update metadata api retrieve to convert using zip tree container ([#164](https://github.com/forcedotcom/source-deploy-retrieve/issues/164)) ([39b81f9](https://github.com/forcedotcom/source-deploy-retrieve/commit/39b81f93b1072468ff48e04441e298178353f0df)) ## [1.1.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.4...v1.1.5) (2020-10-01) - ### Bug Fixes -* output package creation to follow sfdx package convention ([#153](https://github.com/forcedotcom/source-deploy-retrieve/issues/153)) ([42f991d](https://github.com/forcedotcom/source-deploy-retrieve/commit/42f991d2f73e249e8de4efe8c6ab67b29bb01067)) -* zip tree container adding duplicate entries ([#158](https://github.com/forcedotcom/source-deploy-retrieve/issues/158)) ([a6c7a56](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6c7a561bfcc7254c22a2aa1175455137659ae60)) - +- output package creation to follow sfdx package convention ([#153](https://github.com/forcedotcom/source-deploy-retrieve/issues/153)) ([42f991d](https://github.com/forcedotcom/source-deploy-retrieve/commit/42f991d2f73e249e8de4efe8c6ab67b29bb01067)) +- zip tree container adding duplicate entries ([#158](https://github.com/forcedotcom/source-deploy-retrieve/issues/158)) ([a6c7a56](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6c7a561bfcc7254c22a2aa1175455137659ae60)) ### Features -* add zip tree container and stream() method to tree container interface ([#154](https://github.com/forcedotcom/source-deploy-retrieve/issues/154)) ([dfe28aa](https://github.com/forcedotcom/source-deploy-retrieve/commit/dfe28aab6323aaf6235b7a82b1c8e0f2131a7598)) - - +- add zip tree container and stream() method to tree container interface ([#154](https://github.com/forcedotcom/source-deploy-retrieve/issues/154)) ([dfe28aa](https://github.com/forcedotcom/source-deploy-retrieve/commit/dfe28aab6323aaf6235b7a82b1c8e0f2131a7598)) ## [1.1.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.3...v1.1.4) (2020-09-23) - ### Bug Fixes -* create dirs for zip conversion ([#148](https://github.com/forcedotcom/source-deploy-retrieve/issues/148)) @@W-8091341@ ([0f934d3](https://github.com/forcedotcom/source-deploy-retrieve/commit/0f934d37e1712029df176884634fc878b58e4c1a)) -* moved the forceignore deprecation logic to SDR ([#129](https://github.com/forcedotcom/source-deploy-retrieve/issues/129)) ([2347d2d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2347d2d01e11e61313a694297a525a005cf650d2)) - - +- create dirs for zip conversion ([#148](https://github.com/forcedotcom/source-deploy-retrieve/issues/148)) @@W-8091341@ ([0f934d3](https://github.com/forcedotcom/source-deploy-retrieve/commit/0f934d37e1712029df176884634fc878b58e4c1a)) +- moved the forceignore deprecation logic to SDR ([#129](https://github.com/forcedotcom/source-deploy-retrieve/issues/129)) ([2347d2d](https://github.com/forcedotcom/source-deploy-retrieve/commit/2347d2d01e11e61313a694297a525a005cf650d2)) ## [1.1.3](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.2...v1.1.3) (2020-09-16) - ### Bug Fixes -* duplicate SourceComponents when scanning StaticResources with a directory for content ([#138](https://github.com/forcedotcom/source-deploy-retrieve/issues/138)) ([54e19ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/54e19ae61f170f2f4ef6db057e71ac02e299d0b1)) - +- duplicate SourceComponents when scanning StaticResources with a directory for content ([#138](https://github.com/forcedotcom/source-deploy-retrieve/issues/138)) ([54e19ae](https://github.com/forcedotcom/source-deploy-retrieve/commit/54e19ae61f170f2f4ef6db057e71ac02e299d0b1)) ### Features -* **convert:** Support decomposing child components at same level as parent ([#142](https://github.com/forcedotcom/source-deploy-retrieve/issues/142)) ([a6b33c9](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6b33c9d92247de911878a5f99fe7e97ad4fb51d)) -* Decompose CustomObjects (metadata format -> source format) ([#136](https://github.com/forcedotcom/source-deploy-retrieve/issues/136)) ([4c59248](https://github.com/forcedotcom/source-deploy-retrieve/commit/4c592485a4b473e81421d5fe16f899d125ee61ac)) -* new commitizen implementation ([#134](https://github.com/forcedotcom/source-deploy-retrieve/issues/134)) ([325e600](https://github.com/forcedotcom/source-deploy-retrieve/commit/325e60032f434a34ac46fb5b989505a0de80a94c)) - - +- **convert:** Support decomposing child components at same level as parent ([#142](https://github.com/forcedotcom/source-deploy-retrieve/issues/142)) ([a6b33c9](https://github.com/forcedotcom/source-deploy-retrieve/commit/a6b33c9d92247de911878a5f99fe7e97ad4fb51d)) +- Decompose CustomObjects (metadata format -> source format) ([#136](https://github.com/forcedotcom/source-deploy-retrieve/issues/136)) ([4c59248](https://github.com/forcedotcom/source-deploy-retrieve/commit/4c592485a4b473e81421d5fe16f899d125ee61ac)) +- new commitizen implementation ([#134](https://github.com/forcedotcom/source-deploy-retrieve/issues/134)) ([325e600](https://github.com/forcedotcom/source-deploy-retrieve/commit/325e60032f434a34ac46fb5b989505a0de80a94c)) ## [1.1.2](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.1...v1.1.2) (2020-09-10) - ### Features -* Convert source -> metadata format for StaticResources ([#127](https://github.com/forcedotcom/source-deploy-retrieve/issues/127)) ([bab7ecb](https://github.com/forcedotcom/source-deploy-retrieve/commit/bab7ecbfe45bcb018fc31785c83a3c236662bd7f)) - - +- Convert source -> metadata format for StaticResources ([#127](https://github.com/forcedotcom/source-deploy-retrieve/issues/127)) ([bab7ecb](https://github.com/forcedotcom/source-deploy-retrieve/commit/bab7ecbfe45bcb018fc31785c83a3c236662bd7f)) ## [1.1.1](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.1.0...v1.1.1) (2020-09-05) - ### Bug Fixes -* correctly identify CustomSite and SiteDotCom components ([a054fb8](https://github.com/forcedotcom/source-deploy-retrieve/commit/a054fb8829bf3f781d0b121f72ffff5fc977ebe4)) - - +- correctly identify CustomSite and SiteDotCom components ([a054fb8](https://github.com/forcedotcom/source-deploy-retrieve/commit/a054fb8829bf3f781d0b121f72ffff5fc977ebe4)) # [1.1.0](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.0.7...v1.1.0) (2020-08-27) - ### Bug Fixes -* NetworkBranding content file not included in source conversion ([#106](https://github.com/forcedotcom/source-deploy-retrieve/issues/106)) ([60f19a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/60f19a7548ee99f29d4b9efe00e712f62e2f0e5d)) -* recomposition failing for child components ([#112](https://github.com/forcedotcom/source-deploy-retrieve/issues/112)) ([fd4a3ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/fd4a3ab3524c0fc7d51db2993a040594cc11ff0e)) - - +- NetworkBranding content file not included in source conversion ([#106](https://github.com/forcedotcom/source-deploy-retrieve/issues/106)) ([60f19a7](https://github.com/forcedotcom/source-deploy-retrieve/commit/60f19a7548ee99f29d4b9efe00e712f62e2f0e5d)) +- recomposition failing for child components ([#112](https://github.com/forcedotcom/source-deploy-retrieve/issues/112)) ([fd4a3ab](https://github.com/forcedotcom/source-deploy-retrieve/commit/fd4a3ab3524c0fc7d51db2993a040594cc11ff0e)) ## [1.0.7](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.0.6...v1.0.7) (2020-04-30) - - ## [1.0.6](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.0.5...v1.0.6) (2020-04-27) - - ## [1.0.5](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.0.4...v1.0.5) (2020-04-20) - - ## [1.0.4](https://github.com/forcedotcom/source-deploy-retrieve/compare/v1.0.1...v1.0.4) (2020-04-09) - - ## 1.0.1 (2020-04-02) - - - diff --git a/METADATA_SUPPORT.md b/METADATA_SUPPORT.md index 5a28bb2a67..30d915debc 100644 --- a/METADATA_SUPPORT.md +++ b/METADATA_SUPPORT.md @@ -8,644 +8,642 @@ Currently, there are 576/610 supported metadata types. For status on any existing gaps, please search or file an issue in the [Salesforce CLI issues only repo](https://github.com/forcedotcom/cli/issues). To contribute a new metadata type, please see the [Contributing Metadata Types to the Registry](./contributing/metadata.md) -|Metadata Type|Support|Notes| -|:---|:---|:---| -|AIApplication|✅|| -|AIApplicationConfig|✅|| -|AIReplyRecommendationsSettings|✅|| -|AIScoringModelDefVersion|✅|| -|AIScoringModelDefinition|✅|| -|AIUsecaseDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|AccountForecastSettings|✅|| -|AccountIntelligenceSettings|✅|| -|AccountRelationshipShareRule|✅|| -|AccountSettings|✅|| -|AccountingFieldMapping|✅|| -|AccountingModelConfig|✅|| -|AccountingSettings|✅|| -|AcctMgrTargetSettings|✅|| -|ActionLauncherItemDef|✅|| -|ActionLinkGroupTemplate|✅|| -|ActionPlanTemplate|✅|| -|ActionableEventOrchDef|✅|| -|ActionableEventTypeDef|✅|| -|ActionableListDefinition|✅|| -|ActionsSettings|✅|| -|ActivationPlatform|✅|| -|ActivitiesSettings|✅|| -|ActnblListKeyPrfmIndDef|✅|| -|AddressSettings|✅|| -|AdvAccountForecastSet|✅|| -|AdvAcctForecastDimSource|✅|| -|AdvAcctForecastPeriodGroup|✅|| -|AffinityScoreDefinition|✅|| -|Ai4mSettings|✅|| -|AnalyticSnapshot|✅|| -|AnalyticsSettings|✅|| -|AnimationRule|✅|| -|ApexClass|✅|| -|ApexComponent|✅|| -|ApexEmailNotifications|✅|| -|ApexPage|✅|| -|ApexSettings|✅|| -|ApexTestSuite|✅|| -|ApexTrigger|✅|| -|AppAnalyticsSettings|✅|| -|AppExperienceSettings|✅|| -|AppMenu|✅|| -|ApplicationRecordTypeConfig|✅|| -|ApplicationSubtypeDefinition|✅|| -|AppointmentAssignmentPolicy|✅|| -|AppointmentSchedulingPolicy|✅|| -|ApprovalProcess|✅|| -|AssessmentConfiguration|❌|Not supported, but support could be added| -|AssessmentQuestion|✅|| -|AssessmentQuestionSet|✅|| -|AssignmentRules|✅|| -|AssistantContextItem|✅|| -|AssistantDefinition|✅|| -|AssistantSkillQuickAction|✅|| -|AssistantSkillSobjectAction|✅|| -|AssistantVersion|✅|| -|AssociationEngineSettings|✅|| -|Audience|✅|| -|AuraDefinitionBundle|✅|| -|AuthProvider|✅|| -|AutoResponseRules|✅|| -|AutomatedContactsSettings|✅|| -|BatchCalcJobDefinition|✅|| -|BatchProcessJobDefinition|✅|| -|BenefitAction|✅|| -|BlacklistedConsumer|✅|| -|BldgEnrgyIntensityCnfg|✅|| -|BlockchainSettings|✅|| -|Bot|✅|| -|BotBlock|✅|| -|BotBlockVersion|❌|Not supported, but support could be added| -|BotSettings|✅|| -|BotTemplate|✅|| -|BotVersion|✅|| -|BranchManagementSettings|✅|| -|BrandingSet|✅|| -|BriefcaseDefinition|✅|| -|BusinessHoursSettings|✅|| -|BusinessProcess|✅|| -|BusinessProcessGroup|✅|| -|BusinessProcessTypeDefinition|✅|| -|CMSConnectSource|✅|| -|CallCenter|✅|| -|CallCenterRoutingMap|✅|| -|CallCoachingMediaProvider|⚠️|Supports deploy/retrieve but not source tracking| -|CampaignInfluenceModel|✅|| -|CampaignSettings|✅|| -|CanvasMetadata|✅|| -|CareBenefitVerifySettings|✅|| -|CareLimitType|✅|| -|CareProviderAfflRoleConfig|✅|| -|CareProviderSearchConfig|✅|| -|CareRequestConfiguration|✅|| -|CareSystemFieldMapping|✅|| -|CaseSettings|✅|| -|CaseSubjectParticle|✅|| -|Certificate|✅|| -|ChannelLayout|✅|| -|ChannelObjectLinkingRule|✅|| -|ChatterAnswersSettings|✅|| -|ChatterEmailsMDSettings|✅|| -|ChatterExtension|✅|| -|ChatterSettings|✅|| -|ClaimFinancialSettings|✅|| -|ClaimMgmtFoundationEnabledSettings|✅|| -|ClauseCatgConfiguration|✅|| -|CleanDataService|✅|| -|CodeBuilderSettings|✅|| -|CollectionsDashboardSettings|✅|| -|CommandAction|✅|| -|CommerceSettings|✅|| -|CommsServiceConsoleSettings|✅|| -|CommunitiesSettings|✅|| -|Community|✅|| -|CommunityTemplateDefinition|✅|| -|CommunityThemeDefinition|✅|| -|CompactLayout|✅|| -|CompanySettings|✅|| -|ConnectedApp|✅|| -|ConnectedAppSettings|✅|| -|ContentAsset|✅|| -|ContentSettings|✅|| -|ContextDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|ContextUseCaseMapping|❌|Not supported, but support could be added| -|ContractSettings|✅|| -|ContractType|❌|Not supported, but support could be added| -|ConversationChannelDefinition|✅|| -|ConversationServiceIntegrationSettings|✅|| -|ConversationVendorInfo|✅|| -|ConversationalIntelligenceSettings|✅|| -|CorsWhitelistOrigin|✅|| -|CspTrustedSite|✅|| -|CurrencySettings|✅|| -|CustomAddressFieldSettings|✅|| -|CustomApplication|✅|| -|CustomApplicationComponent|✅|| -|CustomFeedFilter|✅|| -|CustomField|✅|| -|CustomHelpMenuSection|✅|| -|CustomIndex|✅|| -|CustomLabels|✅|| -|CustomMetadata|✅|| -|CustomNotificationType|✅|| -|CustomObject|✅|| -|CustomObjectTranslation|✅|| -|CustomPageWebLink|✅|| -|CustomPermission|✅|| -|CustomSite|✅|| -|CustomTab|✅|| -|CustomValue|❌|Not supported, but support could be added| -|CustomerDataPlatformSettings|✅|| -|CustomizablePropensityScoringSettings|✅|| -|Dashboard|✅|| -|DashboardFolder|✅|| -|DataCalcInsightTemplate|✅|| -|DataCategoryGroup|✅|| -|DataConnectionParamTmpl|❌|Not supported, but support could be added| -|DataConnectorIngestApi|✅|| -|DataConnectorS3|✅|| -|DataDotComSettings|✅|| -|DataImportManagementSettings|✅|| -|DataKitObjectTemplate|✅|| -|DataPackageKitDefinition|✅|| -|DataPackageKitObject|✅|| -|DataSource|✅|| -|DataSourceBundleDefinition|✅|| -|DataSourceObject|✅|| -|DataSourceTenant|✅|| -|DataSrcDataModelFieldMap|✅|| -|DataStreamDefinition|✅|| -|DataStreamTemplate|✅|| -|DataWeaveResource|✅|| -|DecisionMatrixDefinition|✅|| -|DecisionMatrixDefinitionVersion|✅|| -|DecisionTable|✅|| -|DecisionTableDatasetLink|✅|| -|DelegateGroup|✅|| -|DeploymentSettings|✅|| -|DevHubSettings|✅|| -|DigitalExperience|✅|| -|DigitalExperienceBundle|✅|| -|DigitalExperienceConfig|✅|| -|DisclosureDefinition|✅|| -|DisclosureDefinitionVersion|✅|| -|DisclosureType|✅|| -|DiscoveryAIModel|✅|| -|DiscoveryGoal|✅|| -|DiscoverySettings|✅|| -|DiscoveryStory|✅|| -|Document|✅|| -|DocumentCategory|✅|| -|DocumentCategoryDocumentType|✅|| -|DocumentChecklistSettings|✅|| -|DocumentFolder|✅|| -|DocumentGenerationSetting|✅|| -|DocumentTemplate|❌|Not supported, but support could be added (but not for tracking)| -|DocumentType|✅|| -|DuplicateRule|✅|| -|DynamicFormsSettings|✅|| -|DynamicFulfillmentOrchestratorSettings|✅|| -|EACSettings|✅|| -|ESignatureConfig|✅|| -|ESignatureEnvelopeConfig|✅|| -|EclairGeoData|✅|| -|EinsteinAISettings|✅|| -|EinsteinAgentSettings|✅|| -|EinsteinAssistantSettings|✅|| -|EinsteinCopilotSettings|✅|| -|EinsteinDealInsightsSettings|✅|| -|EinsteinDocumentCaptureSettings|✅|| -|EinsteinGptSettings|✅|| -|EmailAdministrationSettings|✅|| -|EmailFolder|✅|| -|EmailIntegrationSettings|✅|| -|EmailServicesFunction|✅|| -|EmailTemplate|✅|| -|EmailTemplateFolder|✅|| -|EmailTemplateSettings|✅|| -|EmbeddedServiceBranding|✅|| -|EmbeddedServiceConfig|✅|| -|EmbeddedServiceFlowConfig|✅|| -|EmbeddedServiceLiveAgent|✅|| -|EmbeddedServiceMenuSettings|✅|| -|EmployeeDataSyncProfile|❌|Not supported, but support could be added| -|EmployeeFieldAccessSettings|✅|| -|EmployeeUserSettings|✅|| -|EnablementMeasureDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|EnablementProgramDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|EnhancedNotesSettings|✅|| -|EntitlementProcess|✅|| -|EntitlementSettings|✅|| -|EntitlementTemplate|✅|| -|EscalationRules|✅|| -|EssentialsSettings|✅|| -|EventLogObjectSettings|✅|| -|EventSettings|✅|| -|ExperienceBundle|✅|| -|ExperienceBundleSettings|✅|| -|ExperiencePropertyTypeBundle|✅|| -|ExplainabilityActionDefinition|✅|| -|ExplainabilityActionVersion|✅|| -|ExplainabilityMsgTemplate|✅|| -|ExpressionSetDefinition|✅|| -|ExpressionSetDefinitionVersion|✅|| -|ExpressionSetObjectAlias|✅|| -|ExtDataTranFieldTemplate|❌|Not supported, but support could be added| -|ExtDataTranObjectTemplate|✅|| -|ExternalAIModel|✅|| -|ExternalAuthIdentityProvider|❌|Not supported, but support could be added| -|ExternalClientAppSettings|✅|| -|ExternalClientApplication|✅|| -|ExternalCredential|✅|| -|ExternalDataConnector|✅|| -|ExternalDataSource|✅|| -|ExternalDataSrcDescriptor|❌|Not supported, but support could be added| -|ExternalDataTranField|❌|Not supported, but support could be added| -|ExternalDataTranObject|❌|Not supported, but support could be added| -|ExternalDocStorageConfig|❌|Not supported, but support could be added| -|ExternalServiceRegistration|✅|| -|ExtlClntAppConfigurablePolicies|✅|| -|ExtlClntAppGlobalOauthSettings|✅|| -|ExtlClntAppMobileConfigurablePolicies|✅|| -|ExtlClntAppMobileSettings|✅|| -|ExtlClntAppNotificationSettings|✅|| -|ExtlClntAppOauthConfigurablePolicies|✅|| -|ExtlClntAppOauthSettings|✅|| -|FeatureParameterBoolean|✅|| -|FeatureParameterDate|✅|| -|FeatureParameterInteger|✅|| -|FieldRestrictionRule|✅|| -|FieldServiceMobileExtension|✅|| -|FieldServiceSettings|✅|| -|FieldSet|✅|| -|FieldSrcTrgtRelationship|✅|| -|FileUploadAndDownloadSecuritySettings|✅|| -|FilesConnectSettings|✅|| -|FlexiPage|✅|| -|Flow|✅|| -|FlowCategory|✅|| -|FlowDefinition|⚠️|Supports deploy/retrieve but not source tracking| -|FlowSettings|✅|| -|FlowTest|✅|| -|ForecastingFilter|✅|| -|ForecastingFilterCondition|✅|| -|ForecastingGroup|✅|| -|ForecastingObjectListSettings|✅|| -|ForecastingSettings|✅|| -|ForecastingSourceDefinition|✅|| -|ForecastingType|✅|| -|ForecastingTypeSource|✅|| -|FormulaSettings|✅|| -|FuelType|✅|| -|FuelTypeSustnUom|✅|| -|FunctionReference|⚠️|Supports deploy/retrieve but not source tracking| -|FundraisingConfig|✅|| -|GatewayProviderPaymentMethodType|✅|| -|GenAiFunction|✅|| -|GenAiPlanner|✅|| -|GenAiPlugin|❌|Not supported, but support could be added| -|GenAiPluginInstructionDef|❌|Not supported, but support could be added| -|GlobalValueSet|✅|| -|GlobalValueSetTranslation|✅|| -|GoogleAppsSettings|✅|| -|Group|✅|| -|HighVelocitySalesSettings|✅|| -|HomePageComponent|✅|| -|HomePageLayout|✅|| -|IPAddressRange|✅|| -|Icon|✅|| -|IdeasSettings|✅|| -|IdentityProviderSettings|✅|| -|IdentityVerificationProcDef|✅|| -|IframeWhiteListUrlSettings|✅|| -|InboundCertificate|✅|| -|InboundNetworkConnection|✅|| -|IncidentMgmtSettings|✅|| -|IncludeEstTaxInQuoteCPQSettings|✅|| -|IncludeEstTaxInQuoteSettings|✅|| -|Index|⚠️|Supports deploy/retrieve but not source tracking| -|IndustriesAutomotiveSettings|✅|| -|IndustriesContextSettings|✅|| -|IndustriesEinsteinFeatureSettings|✅|| -|IndustriesEventOrchSettings|✅|| -|IndustriesFieldServiceSettings|✅|| -|IndustriesGamificationSettings|✅|| -|IndustriesLoyaltySettings|✅|| -|IndustriesManufacturingSettings|✅|| -|IndustriesPricingSettings|✅|| -|IndustriesSettings|✅|| -|IndustriesUnifiedPromotionsSettings|✅|| -|InstalledPackage|⚠️|Supports deploy/retrieve but not source tracking| -|IntegrationProviderDef|✅|| -|InterestTaggingSettings|✅|| -|InternalDataConnector|✅|| -|InvLatePymntRiskCalcSettings|✅|| -|InventorySettings|✅|| -|InvocableActionSettings|✅|| -|IoTSettings|✅|| -|KeywordList|✅|| -|KnowledgeGenerationSettings|✅|| -|KnowledgeSettings|✅|| -|LanguageSettings|✅|| -|LargeQuotesandOrdersForRlmSettings|✅|| -|Layout|✅|| -|LeadConfigSettings|✅|| -|LeadConvertSettings|✅|| -|LearningAchievementConfig|❌|Not supported, but support could be added| -|Letterhead|✅|| -|LicensingSettings|✅|| -|LightningBolt|✅|| -|LightningComponentBundle|✅|| -|LightningExperienceSettings|✅|| -|LightningExperienceTheme|✅|| -|LightningMessageChannel|✅|| -|LightningOnboardingConfig|✅|| -|ListView|✅|| -|LiveAgentSettings|✅|| -|LiveChatAgentConfig|✅|| -|LiveChatButton|✅|| -|LiveChatDeployment|✅|| -|LiveChatSensitiveDataRule|✅|| -|LiveMessageSettings|✅|| -|LocationUse|✅|| -|LoyaltyProgramSetup|⚠️|Supports deploy/retrieve but not source tracking| -|MacroSettings|✅|| -|MailMergeSettings|✅|| -|ManagedContentType|⚠️|Supports deploy/retrieve but not source tracking| -|ManagedEventSubscription|✅|| -|ManagedTopics|✅|| -|MapsAndLocationSettings|✅|| -|MarketSegmentDefinition|✅|| -|MarketingAppExtActivity|❌|Not supported, but support could be added| -|MarketingAppExtension|✅|| -|MatchingRules|✅|| -|MediaAdSalesSettings|✅|| -|MeetingsSettings|✅|| -|MessagingChannel|⚠️|Supports deploy/retrieve but not source tracking| -|MfgProgramTemplate|✅|| -|MfgServiceConsoleSettings|✅|| -|MilestoneType|✅|| -|MktCalcInsightObjectDef|✅|| -|MktDataConnection|❌|Not supported, but support could be added| -|MktDataConnectionCred|❌|Not supported, but support could be added| -|MktDataConnectionParam|❌|Not supported, but support could be added| -|MktDataConnectionSrcParam|❌|Not supported, but support could be added| -|MktDataTranObject|✅|| -|MlDomain|✅|| -|MobSecurityCertPinConfig|✅|| -|MobileApplicationDetail|✅|| -|MobileSecurityAssignment|✅|| -|MobileSecurityPolicy|✅|| -|MobileSettings|✅|| -|ModerationRule|✅|| -|MutingPermissionSet|✅|| -|MyDomainDiscoverableLogin|✅|| -|MyDomainSettings|✅|| -|NameSettings|✅|| -|NamedCredential|✅|| -|NavigationMenu|✅|| -|Network|✅|| -|NetworkBranding|✅|| -|NotificationTypeConfig|✅|| -|NotificationsSettings|✅|| -|OauthCustomScope|✅|| -|OauthOidcSettings|✅|| -|OauthTokenExchangeHandler|✅|| -|ObjectHierarchyRelationship|✅|| -|ObjectLinkingSettings|✅|| -|ObjectSourceTargetMap|✅|| -|OcrSampleDocument|✅|| -|OcrTemplate|✅|| -|OmniChannelPricingSettings|✅|| -|OmniChannelSettings|✅|| -|OmniDataTransform|⚠️|Supports deploy/retrieve but not source tracking| -|OmniExtTrackingDef|⚠️|Supports deploy/retrieve but not source tracking| -|OmniIntegrationProcedure|⚠️|Supports deploy/retrieve but not source tracking| -|OmniInteractionAccessConfig|⚠️|Supports deploy/retrieve but not source tracking| -|OmniInteractionConfig|⚠️|Supports deploy/retrieve but not source tracking| -|OmniScript|⚠️|Supports deploy/retrieve but not source tracking| -|OmniSupervisorConfig|✅|| -|OmniTrackingGroup|⚠️|Supports deploy/retrieve but not source tracking| -|OmniUiCard|⚠️|Supports deploy/retrieve but not source tracking| -|OnlineSalesSettings|✅|| -|OpportunityScoreSettings|✅|| -|OpportunitySettings|✅|| -|OrderManagementSettings|✅|| -|OrderSettings|✅|| -|OrgSettings|✅|| -|OutboundNetworkConnection|✅|| -|PardotEinsteinSettings|✅|| -|PardotSettings|✅|| -|ParticipantRole|✅|| -|PartyDataModelSettings|✅|| -|PathAssistant|✅|| -|PathAssistantSettings|✅|| -|PaymentGatewayProvider|✅|| -|PaymentsManagementEnabledSettings|✅|| -|PaymentsSettings|✅|| -|PermissionSet|✅|| -|PermissionSetGroup|✅|| -|PermissionSetLicenseDefinition|✅|| -|PersonAccountOwnerPowerUser|✅|| -|PicklistSettings|✅|| -|PicklistValue|❌|Not supported, but support could be added| -|PipelineInspMetricConfig|✅|| -|PlatformCachePartition|✅|| -|PlatformEventChannel|✅|| -|PlatformEventChannelMember|✅|| -|PlatformEventSettings|✅|| -|PlatformEventSubscriberConfig|✅|| -|PlatformSlackSettings|✅|| -|PortalDelegablePermissionSet|❌|Not supported, but support could be added| -|PortalsSettings|✅|| -|PostTemplate|✅|| -|PredictionBuilderSettings|✅|| -|PresenceDeclineReason|✅|| -|PresenceUserConfig|✅|| -|PricingActionParameters|⚠️|Supports deploy/retrieve but not source tracking| -|PricingRecipe|✅|| -|PrivacySettings|✅|| -|ProcessFlowMigration|✅|| -|ProductAttrDisplayConfig|❌|Not supported, but support could be added| -|ProductAttributeSet|✅|| -|ProductConfiguratorSettings|✅|| -|ProductSettings|✅|| -|ProductSpecificationRecType|❌|Not supported, but support could be added| -|ProductSpecificationType|❌|Not supported, but support could be added| -|Profile|✅|| -|ProfilePasswordPolicy|✅|| -|ProfileSessionSetting|✅|| -|Prompt|✅|| -|Queue|✅|| -|QueueRoutingConfig|✅|| -|QuickAction|✅|| -|QuickTextSettings|✅|| -|QuoteSettings|✅|| -|RealTimeEventSettings|✅|| -|RecAlrtDataSrcExpSetDef|❌|Not supported, but support could be added| -|RecommendationBuilderSettings|✅|| -|RecommendationStrategy|✅|| -|RecordActionDeployment|✅|| -|RecordAggregationDefinition|✅|| -|RecordAlertCategory|✅|| -|RecordAlertDataSource|✅|| -|RecordAlertTemplate|✅|| -|RecordPageSettings|✅|| -|RecordType|✅|| -|RedirectWhitelistUrl|✅|| -|ReferencedDashboard|❌|Not supported, but support could be added| -|ReferralMarketingSettings|✅|| -|RegisteredExternalService|✅|| -|RelatedRecordAssocCriteria|❌|Not supported, but support could be added| -|RelationshipGraphDefinition|✅|| -|RemoteSiteSetting|✅|| -|Report|✅|| -|ReportFolder|✅|| -|ReportType|✅|| -|RestrictionRule|✅|| -|RetailExecutionSettings|✅|| -|RetrievalSummaryDefinition|✅|| -|RevenueManagementSettings|✅|| -|Role|✅|| -|SalesAgreementSettings|✅|| -|SalesWorkQueueSettings|✅|| -|SamlSsoConfig|✅|| -|SandboxSettings|✅|| -|SceGlobalModelOptOutSettings|✅|| -|SchedulingObjective|✅|| -|SchedulingRule|✅|| -|SchemaSettings|✅|| -|ScoreCategory|✅|| -|SearchCustomization|⚠️|Supports deploy/retrieve but not source tracking| -|SearchOrgWideObjectConfig|⚠️|Supports deploy/retrieve but not source tracking| -|SearchSettings|✅|| -|SecuritySettings|✅|| -|ServiceAISetupDefinition|✅|| -|ServiceAISetupField|✅|| -|ServiceChannel|✅|| -|ServiceCloudVoiceSettings|✅|| -|ServicePresenceStatus|✅|| -|ServiceProcess|✅|| -|ServiceSetupAssistantSettings|✅|| -|SharingCriteriaRule|✅|| -|SharingGuestRule|✅|| -|SharingOwnerRule|✅|| -|SharingReason|✅|| -|SharingRules|⚠️|Supports deploy/retrieve but not source tracking| -|SharingSet|✅|| -|SharingSettings|✅|| -|SharingTerritoryRule|✅|| -|SiteDotCom|✅|| -|SiteSettings|✅|| -|Skill|✅|| -|SkillType|✅|| -|SlackApp|✅|| -|SocialCustomerServiceSettings|✅|| -|SourceTrackingSettings|✅|| -|StandardValue|❌|Not supported, but support could be added| -|StandardValueSet|✅|| -|StandardValueSetTranslation|✅|| -|StaticResource|✅|| -|StnryAssetEnvSrcCnfg|✅|| -|StreamingAppDataConnector|✅|| -|SubscriptionManagementSettings|✅|| -|SurveySettings|✅|| -|SustainabilityUom|✅|| -|SustnUomConversion|✅|| -|SvcCatalogCategory|✅|| -|SvcCatalogFilterCriteria|✅|| -|SvcCatalogFulfillmentFlow|✅|| -|SvcCatalogItemDef|✅|| -|SynonymDictionary|✅|| -|SystemNotificationSettings|✅|| -|Territory|✅|| -|Territory2|✅|| -|Territory2Model|✅|| -|Territory2Rule|✅|| -|Territory2Settings|✅|| -|Territory2Type|✅|| -|TimeSheetTemplate|✅|| -|TimelineObjectDefinition|✅|| -|TopicsForObjects|✅|| -|TrailheadSettings|✅|| -|TransactionSecurityPolicy|✅|| -|Translations|✅|| -|TrialOrgSettings|✅|| -|UIObjectRelationConfig|✅|| -|UiPlugin|✅|| -|UserAccessPolicy|✅|| -|UserAuthCertificate|✅|| -|UserCriteria|✅|| -|UserEngagementSettings|✅|| -|UserInterfaceSettings|✅|| -|UserManagementSettings|✅|| -|UserProfileSearchScope|✅|| -|UserProvisioningConfig|✅|| -|ValidationRule|✅|| -|VehicleAssetEmssnSrcCnfg|✅|| -|ViewDefinition|✅|| -|VirtualVisitConfig|❌|Not supported, but support could be added| -|VoiceSettings|✅|| -|WarrantyLifecycleMgmtSettings|✅|| -|WaveAnalyticAssetCollection|❌|Not supported, but support could be added| -|WaveApplication|✅|| -|WaveComponent|✅|| -|WaveDashboard|✅|| -|WaveDataflow|✅|| -|WaveDataset|✅|| -|WaveLens|✅|| -|WaveRecipe|✅|| -|WaveTemplateBundle|✅|| -|WaveXmd|✅|| -|Web3Settings|✅|| -|WebLink|✅|| -|WebStoreBundle|✅|| -|WebStoreTemplate|✅|| -|WebToXSettings|✅|| -|WorkDotComSettings|✅|| -|WorkSkillRouting|✅|| -|Workflow|✅|| -|WorkflowAlert|✅|| -|WorkflowFieldUpdate|✅|| -|WorkflowFlowAction|❌|Not supported, but support could be added| -|WorkflowKnowledgePublish|✅|| -|WorkflowOutboundMessage|✅|| -|WorkflowRule|✅|| -|WorkflowSend|✅|| -|WorkflowTask|✅|| -|WorkforceEngagementSettings|✅|| - - +| Metadata Type | Support | Notes | +| :------------------------------------- | :------ | :--------------------------------------------------------------- | +| AIApplication | ✅ | | +| AIApplicationConfig | ✅ | | +| AIReplyRecommendationsSettings | ✅ | | +| AIScoringModelDefVersion | ✅ | | +| AIScoringModelDefinition | ✅ | | +| AIUsecaseDefinition | ⚠️ | Supports deploy/retrieve but not source tracking | +| AccountForecastSettings | ✅ | | +| AccountIntelligenceSettings | ✅ | | +| AccountRelationshipShareRule | ✅ | | +| AccountSettings | ✅ | | +| AccountingFieldMapping | ✅ | | +| AccountingModelConfig | ✅ | | +| AccountingSettings | ✅ | | +| AcctMgrTargetSettings | ✅ | | +| ActionLauncherItemDef | ✅ | | +| ActionLinkGroupTemplate | ✅ | | +| ActionPlanTemplate | ✅ | | +| ActionableEventOrchDef | ✅ | | +| ActionableEventTypeDef | ✅ | | +| ActionableListDefinition | ✅ | | +| ActionsSettings | ✅ | | +| ActivationPlatform | ✅ | | +| ActivitiesSettings | ✅ | | +| ActnblListKeyPrfmIndDef | ✅ | | +| AddressSettings | ✅ | | +| AdvAccountForecastSet | ✅ | | +| AdvAcctForecastDimSource | ✅ | | +| AdvAcctForecastPeriodGroup | ✅ | | +| AffinityScoreDefinition | ✅ | | +| Ai4mSettings | ✅ | | +| AnalyticSnapshot | ✅ | | +| AnalyticsSettings | ✅ | | +| AnimationRule | ✅ | | +| ApexClass | ✅ | | +| ApexComponent | ✅ | | +| ApexEmailNotifications | ✅ | | +| ApexPage | ✅ | | +| ApexSettings | ✅ | | +| ApexTestSuite | ✅ | | +| ApexTrigger | ✅ | | +| AppAnalyticsSettings | ✅ | | +| AppExperienceSettings | ✅ | | +| AppMenu | ✅ | | +| ApplicationRecordTypeConfig | ✅ | | +| ApplicationSubtypeDefinition | ✅ | | +| AppointmentAssignmentPolicy | ✅ | | +| AppointmentSchedulingPolicy | ✅ | | +| ApprovalProcess | ✅ | | +| AssessmentConfiguration | ❌ | Not supported, but support could be added | +| AssessmentQuestion | ✅ | | +| AssessmentQuestionSet | ✅ | | +| AssignmentRules | ✅ | | +| AssistantContextItem | ✅ | | +| AssistantDefinition | ✅ | | +| AssistantSkillQuickAction | ✅ | | +| AssistantSkillSobjectAction | ✅ | | +| AssistantVersion | ✅ | | +| AssociationEngineSettings | ✅ | | +| Audience | ✅ | | +| AuraDefinitionBundle | ✅ | | +| AuthProvider | ✅ | | +| AutoResponseRules | ✅ | | +| AutomatedContactsSettings | ✅ | | +| BatchCalcJobDefinition | ✅ | | +| BatchProcessJobDefinition | ✅ | | +| BenefitAction | ✅ | | +| BlacklistedConsumer | ✅ | | +| BldgEnrgyIntensityCnfg | ✅ | | +| BlockchainSettings | ✅ | | +| Bot | ✅ | | +| BotBlock | ✅ | | +| BotBlockVersion | ❌ | Not supported, but support could be added | +| BotSettings | ✅ | | +| BotTemplate | ✅ | | +| BotVersion | ✅ | | +| BranchManagementSettings | ✅ | | +| BrandingSet | ✅ | | +| BriefcaseDefinition | ✅ | | +| BusinessHoursSettings | ✅ | | +| BusinessProcess | ✅ | | +| BusinessProcessGroup | ✅ | | +| BusinessProcessTypeDefinition | ✅ | | +| CMSConnectSource | ✅ | | +| CallCenter | ✅ | | +| CallCenterRoutingMap | ✅ | | +| CallCoachingMediaProvider | ⚠️ | Supports deploy/retrieve but not source tracking | +| CampaignInfluenceModel | ✅ | | +| CampaignSettings | ✅ | | +| CanvasMetadata | ✅ | | +| CareBenefitVerifySettings | ✅ | | +| CareLimitType | ✅ | | +| CareProviderAfflRoleConfig | ✅ | | +| CareProviderSearchConfig | ✅ | | +| CareRequestConfiguration | ✅ | | +| CareSystemFieldMapping | ✅ | | +| CaseSettings | ✅ | | +| CaseSubjectParticle | ✅ | | +| Certificate | ✅ | | +| ChannelLayout | ✅ | | +| ChannelObjectLinkingRule | ✅ | | +| ChatterAnswersSettings | ✅ | | +| ChatterEmailsMDSettings | ✅ | | +| ChatterExtension | ✅ | | +| ChatterSettings | ✅ | | +| ClaimFinancialSettings | ✅ | | +| ClaimMgmtFoundationEnabledSettings | ✅ | | +| ClauseCatgConfiguration | ✅ | | +| CleanDataService | ✅ | | +| CodeBuilderSettings | ✅ | | +| CollectionsDashboardSettings | ✅ | | +| CommandAction | ✅ | | +| CommerceSettings | ✅ | | +| CommsServiceConsoleSettings | ✅ | | +| CommunitiesSettings | ✅ | | +| Community | ✅ | | +| CommunityTemplateDefinition | ✅ | | +| CommunityThemeDefinition | ✅ | | +| CompactLayout | ✅ | | +| CompanySettings | ✅ | | +| ConnectedApp | ✅ | | +| ConnectedAppSettings | ✅ | | +| ContentAsset | ✅ | | +| ContentSettings | ✅ | | +| ContextDefinition | ⚠️ | Supports deploy/retrieve but not source tracking | +| ContextUseCaseMapping | ❌ | Not supported, but support could be added | +| ContractSettings | ✅ | | +| ContractType | ❌ | Not supported, but support could be added | +| ConversationChannelDefinition | ✅ | | +| ConversationServiceIntegrationSettings | ✅ | | +| ConversationVendorInfo | ✅ | | +| ConversationalIntelligenceSettings | ✅ | | +| CorsWhitelistOrigin | ✅ | | +| CspTrustedSite | ✅ | | +| CurrencySettings | ✅ | | +| CustomAddressFieldSettings | ✅ | | +| CustomApplication | ✅ | | +| CustomApplicationComponent | ✅ | | +| CustomFeedFilter | ✅ | | +| CustomField | ✅ | | +| CustomHelpMenuSection | ✅ | | +| CustomIndex | ✅ | | +| CustomLabels | ✅ | | +| CustomMetadata | ✅ | | +| CustomNotificationType | ✅ | | +| CustomObject | ✅ | | +| CustomObjectTranslation | ✅ | | +| CustomPageWebLink | ✅ | | +| CustomPermission | ✅ | | +| CustomSite | ✅ | | +| CustomTab | ✅ | | +| CustomValue | ❌ | Not supported, but support could be added | +| CustomerDataPlatformSettings | ✅ | | +| CustomizablePropensityScoringSettings | ✅ | | +| Dashboard | ✅ | | +| DashboardFolder | ✅ | | +| DataCalcInsightTemplate | ✅ | | +| DataCategoryGroup | ✅ | | +| DataConnectionParamTmpl | ❌ | Not supported, but support could be added | +| DataConnectorIngestApi | ✅ | | +| DataConnectorS3 | ✅ | | +| DataDotComSettings | ✅ | | +| DataImportManagementSettings | ✅ | | +| DataKitObjectTemplate | ✅ | | +| DataPackageKitDefinition | ✅ | | +| DataPackageKitObject | ✅ | | +| DataSource | ✅ | | +| DataSourceBundleDefinition | ✅ | | +| DataSourceObject | ✅ | | +| DataSourceTenant | ✅ | | +| DataSrcDataModelFieldMap | ✅ | | +| DataStreamDefinition | ✅ | | +| DataStreamTemplate | ✅ | | +| DataWeaveResource | ✅ | | +| DecisionMatrixDefinition | ✅ | | +| DecisionMatrixDefinitionVersion | ✅ | | +| DecisionTable | ✅ | | +| DecisionTableDatasetLink | ✅ | | +| DelegateGroup | ✅ | | +| DeploymentSettings | ✅ | | +| DevHubSettings | ✅ | | +| DigitalExperience | ✅ | | +| DigitalExperienceBundle | ✅ | | +| DigitalExperienceConfig | ✅ | | +| DisclosureDefinition | ✅ | | +| DisclosureDefinitionVersion | ✅ | | +| DisclosureType | ✅ | | +| DiscoveryAIModel | ✅ | | +| DiscoveryGoal | ✅ | | +| DiscoverySettings | ✅ | | +| DiscoveryStory | ✅ | | +| Document | ✅ | | +| DocumentCategory | ✅ | | +| DocumentCategoryDocumentType | ✅ | | +| DocumentChecklistSettings | ✅ | | +| DocumentFolder | ✅ | | +| DocumentGenerationSetting | ✅ | | +| DocumentTemplate | ❌ | Not supported, but support could be added (but not for tracking) | +| DocumentType | ✅ | | +| DuplicateRule | ✅ | | +| DynamicFormsSettings | ✅ | | +| DynamicFulfillmentOrchestratorSettings | ✅ | | +| EACSettings | ✅ | | +| ESignatureConfig | ✅ | | +| ESignatureEnvelopeConfig | ✅ | | +| EclairGeoData | ✅ | | +| EinsteinAISettings | ✅ | | +| EinsteinAgentSettings | ✅ | | +| EinsteinAssistantSettings | ✅ | | +| EinsteinCopilotSettings | ✅ | | +| EinsteinDealInsightsSettings | ✅ | | +| EinsteinDocumentCaptureSettings | ✅ | | +| EinsteinGptSettings | ✅ | | +| EmailAdministrationSettings | ✅ | | +| EmailFolder | ✅ | | +| EmailIntegrationSettings | ✅ | | +| EmailServicesFunction | ✅ | | +| EmailTemplate | ✅ | | +| EmailTemplateFolder | ✅ | | +| EmailTemplateSettings | ✅ | | +| EmbeddedServiceBranding | ✅ | | +| EmbeddedServiceConfig | ✅ | | +| EmbeddedServiceFlowConfig | ✅ | | +| EmbeddedServiceLiveAgent | ✅ | | +| EmbeddedServiceMenuSettings | ✅ | | +| EmployeeDataSyncProfile | ❌ | Not supported, but support could be added | +| EmployeeFieldAccessSettings | ✅ | | +| EmployeeUserSettings | ✅ | | +| EnablementMeasureDefinition | ⚠️ | Supports deploy/retrieve but not source tracking | +| EnablementProgramDefinition | ⚠️ | Supports deploy/retrieve but not source tracking | +| EnhancedNotesSettings | ✅ | | +| EntitlementProcess | ✅ | | +| EntitlementSettings | ✅ | | +| EntitlementTemplate | ✅ | | +| EscalationRules | ✅ | | +| EssentialsSettings | ✅ | | +| EventLogObjectSettings | ✅ | | +| EventSettings | ✅ | | +| ExperienceBundle | ✅ | | +| ExperienceBundleSettings | ✅ | | +| ExperiencePropertyTypeBundle | ✅ | | +| ExplainabilityActionDefinition | ✅ | | +| ExplainabilityActionVersion | ✅ | | +| ExplainabilityMsgTemplate | ✅ | | +| ExpressionSetDefinition | ✅ | | +| ExpressionSetDefinitionVersion | ✅ | | +| ExpressionSetObjectAlias | ✅ | | +| ExtDataTranFieldTemplate | ❌ | Not supported, but support could be added | +| ExtDataTranObjectTemplate | ✅ | | +| ExternalAIModel | ✅ | | +| ExternalAuthIdentityProvider | ❌ | Not supported, but support could be added | +| ExternalClientAppSettings | ✅ | | +| ExternalClientApplication | ✅ | | +| ExternalCredential | ✅ | | +| ExternalDataConnector | ✅ | | +| ExternalDataSource | ✅ | | +| ExternalDataSrcDescriptor | ❌ | Not supported, but support could be added | +| ExternalDataTranField | ❌ | Not supported, but support could be added | +| ExternalDataTranObject | ❌ | Not supported, but support could be added | +| ExternalDocStorageConfig | ❌ | Not supported, but support could be added | +| ExternalServiceRegistration | ✅ | | +| ExtlClntAppConfigurablePolicies | ✅ | | +| ExtlClntAppGlobalOauthSettings | ✅ | | +| ExtlClntAppMobileConfigurablePolicies | ✅ | | +| ExtlClntAppMobileSettings | ✅ | | +| ExtlClntAppNotificationSettings | ✅ | | +| ExtlClntAppOauthConfigurablePolicies | ✅ | | +| ExtlClntAppOauthSettings | ✅ | | +| FeatureParameterBoolean | ✅ | | +| FeatureParameterDate | ✅ | | +| FeatureParameterInteger | ✅ | | +| FieldRestrictionRule | ✅ | | +| FieldServiceMobileExtension | ✅ | | +| FieldServiceSettings | ✅ | | +| FieldSet | ✅ | | +| FieldSrcTrgtRelationship | ✅ | | +| FileUploadAndDownloadSecuritySettings | ✅ | | +| FilesConnectSettings | ✅ | | +| FlexiPage | ✅ | | +| Flow | ✅ | | +| FlowCategory | ✅ | | +| FlowDefinition | ⚠️ | Supports deploy/retrieve but not source tracking | +| FlowSettings | ✅ | | +| FlowTest | ✅ | | +| ForecastingFilter | ✅ | | +| ForecastingFilterCondition | ✅ | | +| ForecastingGroup | ✅ | | +| ForecastingObjectListSettings | ✅ | | +| ForecastingSettings | ✅ | | +| ForecastingSourceDefinition | ✅ | | +| ForecastingType | ✅ | | +| ForecastingTypeSource | ✅ | | +| FormulaSettings | ✅ | | +| FuelType | ✅ | | +| FuelTypeSustnUom | ✅ | | +| FunctionReference | ⚠️ | Supports deploy/retrieve but not source tracking | +| FundraisingConfig | ✅ | | +| GatewayProviderPaymentMethodType | ✅ | | +| GenAiFunction | ✅ | | +| GenAiPlanner | ✅ | | +| GenAiPlugin | ❌ | Not supported, but support could be added | +| GenAiPluginInstructionDef | ❌ | Not supported, but support could be added | +| GlobalValueSet | ✅ | | +| GlobalValueSetTranslation | ✅ | | +| GoogleAppsSettings | ✅ | | +| Group | ✅ | | +| HighVelocitySalesSettings | ✅ | | +| HomePageComponent | ✅ | | +| HomePageLayout | ✅ | | +| IPAddressRange | ✅ | | +| Icon | ✅ | | +| IdeasSettings | ✅ | | +| IdentityProviderSettings | ✅ | | +| IdentityVerificationProcDef | ✅ | | +| IframeWhiteListUrlSettings | ✅ | | +| InboundCertificate | ✅ | | +| InboundNetworkConnection | ✅ | | +| IncidentMgmtSettings | ✅ | | +| IncludeEstTaxInQuoteCPQSettings | ✅ | | +| IncludeEstTaxInQuoteSettings | ✅ | | +| Index | ⚠️ | Supports deploy/retrieve but not source tracking | +| IndustriesAutomotiveSettings | ✅ | | +| IndustriesContextSettings | ✅ | | +| IndustriesEinsteinFeatureSettings | ✅ | | +| IndustriesEventOrchSettings | ✅ | | +| IndustriesFieldServiceSettings | ✅ | | +| IndustriesGamificationSettings | ✅ | | +| IndustriesLoyaltySettings | ✅ | | +| IndustriesManufacturingSettings | ✅ | | +| IndustriesPricingSettings | ✅ | | +| IndustriesSettings | ✅ | | +| IndustriesUnifiedPromotionsSettings | ✅ | | +| InstalledPackage | ⚠️ | Supports deploy/retrieve but not source tracking | +| IntegrationProviderDef | ✅ | | +| InterestTaggingSettings | ✅ | | +| InternalDataConnector | ✅ | | +| InvLatePymntRiskCalcSettings | ✅ | | +| InventorySettings | ✅ | | +| InvocableActionSettings | ✅ | | +| IoTSettings | ✅ | | +| KeywordList | ✅ | | +| KnowledgeGenerationSettings | ✅ | | +| KnowledgeSettings | ✅ | | +| LanguageSettings | ✅ | | +| LargeQuotesandOrdersForRlmSettings | ✅ | | +| Layout | ✅ | | +| LeadConfigSettings | ✅ | | +| LeadConvertSettings | ✅ | | +| LearningAchievementConfig | ❌ | Not supported, but support could be added | +| Letterhead | ✅ | | +| LicensingSettings | ✅ | | +| LightningBolt | ✅ | | +| LightningComponentBundle | ✅ | | +| LightningExperienceSettings | ✅ | | +| LightningExperienceTheme | ✅ | | +| LightningMessageChannel | ✅ | | +| LightningOnboardingConfig | ✅ | | +| ListView | ✅ | | +| LiveAgentSettings | ✅ | | +| LiveChatAgentConfig | ✅ | | +| LiveChatButton | ✅ | | +| LiveChatDeployment | ✅ | | +| LiveChatSensitiveDataRule | ✅ | | +| LiveMessageSettings | ✅ | | +| LocationUse | ✅ | | +| LoyaltyProgramSetup | ⚠️ | Supports deploy/retrieve but not source tracking | +| MacroSettings | ✅ | | +| MailMergeSettings | ✅ | | +| ManagedContentType | ⚠️ | Supports deploy/retrieve but not source tracking | +| ManagedEventSubscription | ✅ | | +| ManagedTopics | ✅ | | +| MapsAndLocationSettings | ✅ | | +| MarketSegmentDefinition | ✅ | | +| MarketingAppExtActivity | ❌ | Not supported, but support could be added | +| MarketingAppExtension | ✅ | | +| MatchingRules | ✅ | | +| MediaAdSalesSettings | ✅ | | +| MeetingsSettings | ✅ | | +| MessagingChannel | ⚠️ | Supports deploy/retrieve but not source tracking | +| MfgProgramTemplate | ✅ | | +| MfgServiceConsoleSettings | ✅ | | +| MilestoneType | ✅ | | +| MktCalcInsightObjectDef | ✅ | | +| MktDataConnection | ❌ | Not supported, but support could be added | +| MktDataConnectionCred | ❌ | Not supported, but support could be added | +| MktDataConnectionParam | ❌ | Not supported, but support could be added | +| MktDataConnectionSrcParam | ❌ | Not supported, but support could be added | +| MktDataTranObject | ✅ | | +| MlDomain | ✅ | | +| MobSecurityCertPinConfig | ✅ | | +| MobileApplicationDetail | ✅ | | +| MobileSecurityAssignment | ✅ | | +| MobileSecurityPolicy | ✅ | | +| MobileSettings | ✅ | | +| ModerationRule | ✅ | | +| MutingPermissionSet | ✅ | | +| MyDomainDiscoverableLogin | ✅ | | +| MyDomainSettings | ✅ | | +| NameSettings | ✅ | | +| NamedCredential | ✅ | | +| NavigationMenu | ✅ | | +| Network | ✅ | | +| NetworkBranding | ✅ | | +| NotificationTypeConfig | ✅ | | +| NotificationsSettings | ✅ | | +| OauthCustomScope | ✅ | | +| OauthOidcSettings | ✅ | | +| OauthTokenExchangeHandler | ✅ | | +| ObjectHierarchyRelationship | ✅ | | +| ObjectLinkingSettings | ✅ | | +| ObjectSourceTargetMap | ✅ | | +| OcrSampleDocument | ✅ | | +| OcrTemplate | ✅ | | +| OmniChannelPricingSettings | ✅ | | +| OmniChannelSettings | ✅ | | +| OmniDataTransform | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniExtTrackingDef | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniIntegrationProcedure | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniInteractionAccessConfig | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniInteractionConfig | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniScript | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniSupervisorConfig | ✅ | | +| OmniTrackingGroup | ⚠️ | Supports deploy/retrieve but not source tracking | +| OmniUiCard | ⚠️ | Supports deploy/retrieve but not source tracking | +| OnlineSalesSettings | ✅ | | +| OpportunityScoreSettings | ✅ | | +| OpportunitySettings | ✅ | | +| OrderManagementSettings | ✅ | | +| OrderSettings | ✅ | | +| OrgSettings | ✅ | | +| OutboundNetworkConnection | ✅ | | +| PardotEinsteinSettings | ✅ | | +| PardotSettings | ✅ | | +| ParticipantRole | ✅ | | +| PartyDataModelSettings | ✅ | | +| PathAssistant | ✅ | | +| PathAssistantSettings | ✅ | | +| PaymentGatewayProvider | ✅ | | +| PaymentsManagementEnabledSettings | ✅ | | +| PaymentsSettings | ✅ | | +| PermissionSet | ✅ | | +| PermissionSetGroup | ✅ | | +| PermissionSetLicenseDefinition | ✅ | | +| PersonAccountOwnerPowerUser | ✅ | | +| PicklistSettings | ✅ | | +| PicklistValue | ❌ | Not supported, but support could be added | +| PipelineInspMetricConfig | ✅ | | +| PlatformCachePartition | ✅ | | +| PlatformEventChannel | ✅ | | +| PlatformEventChannelMember | ✅ | | +| PlatformEventSettings | ✅ | | +| PlatformEventSubscriberConfig | ✅ | | +| PlatformSlackSettings | ✅ | | +| PortalDelegablePermissionSet | ❌ | Not supported, but support could be added | +| PortalsSettings | ✅ | | +| PostTemplate | ✅ | | +| PredictionBuilderSettings | ✅ | | +| PresenceDeclineReason | ✅ | | +| PresenceUserConfig | ✅ | | +| PricingActionParameters | ⚠️ | Supports deploy/retrieve but not source tracking | +| PricingRecipe | ✅ | | +| PrivacySettings | ✅ | | +| ProcessFlowMigration | ✅ | | +| ProductAttrDisplayConfig | ❌ | Not supported, but support could be added | +| ProductAttributeSet | ✅ | | +| ProductConfiguratorSettings | ✅ | | +| ProductSettings | ✅ | | +| ProductSpecificationRecType | ❌ | Not supported, but support could be added | +| ProductSpecificationType | ❌ | Not supported, but support could be added | +| Profile | ✅ | | +| ProfilePasswordPolicy | ✅ | | +| ProfileSessionSetting | ✅ | | +| Prompt | ✅ | | +| Queue | ✅ | | +| QueueRoutingConfig | ✅ | | +| QuickAction | ✅ | | +| QuickTextSettings | ✅ | | +| QuoteSettings | ✅ | | +| RealTimeEventSettings | ✅ | | +| RecAlrtDataSrcExpSetDef | ❌ | Not supported, but support could be added | +| RecommendationBuilderSettings | ✅ | | +| RecommendationStrategy | ✅ | | +| RecordActionDeployment | ✅ | | +| RecordAggregationDefinition | ✅ | | +| RecordAlertCategory | ✅ | | +| RecordAlertDataSource | ✅ | | +| RecordAlertTemplate | ✅ | | +| RecordPageSettings | ✅ | | +| RecordType | ✅ | | +| RedirectWhitelistUrl | ✅ | | +| ReferencedDashboard | ❌ | Not supported, but support could be added | +| ReferralMarketingSettings | ✅ | | +| RegisteredExternalService | ✅ | | +| RelatedRecordAssocCriteria | ❌ | Not supported, but support could be added | +| RelationshipGraphDefinition | ✅ | | +| RemoteSiteSetting | ✅ | | +| Report | ✅ | | +| ReportFolder | ✅ | | +| ReportType | ✅ | | +| RestrictionRule | ✅ | | +| RetailExecutionSettings | ✅ | | +| RetrievalSummaryDefinition | ✅ | | +| RevenueManagementSettings | ✅ | | +| Role | ✅ | | +| SalesAgreementSettings | ✅ | | +| SalesWorkQueueSettings | ✅ | | +| SamlSsoConfig | ✅ | | +| SandboxSettings | ✅ | | +| SceGlobalModelOptOutSettings | ✅ | | +| SchedulingObjective | ✅ | | +| SchedulingRule | ✅ | | +| SchemaSettings | ✅ | | +| ScoreCategory | ✅ | | +| SearchCustomization | ⚠️ | Supports deploy/retrieve but not source tracking | +| SearchOrgWideObjectConfig | ⚠️ | Supports deploy/retrieve but not source tracking | +| SearchSettings | ✅ | | +| SecuritySettings | ✅ | | +| ServiceAISetupDefinition | ✅ | | +| ServiceAISetupField | ✅ | | +| ServiceChannel | ✅ | | +| ServiceCloudVoiceSettings | ✅ | | +| ServicePresenceStatus | ✅ | | +| ServiceProcess | ✅ | | +| ServiceSetupAssistantSettings | ✅ | | +| SharingCriteriaRule | ✅ | | +| SharingGuestRule | ✅ | | +| SharingOwnerRule | ✅ | | +| SharingReason | ✅ | | +| SharingRules | ⚠️ | Supports deploy/retrieve but not source tracking | +| SharingSet | ✅ | | +| SharingSettings | ✅ | | +| SharingTerritoryRule | ✅ | | +| SiteDotCom | ✅ | | +| SiteSettings | ✅ | | +| Skill | ✅ | | +| SkillType | ✅ | | +| SlackApp | ✅ | | +| SocialCustomerServiceSettings | ✅ | | +| SourceTrackingSettings | ✅ | | +| StandardValue | ❌ | Not supported, but support could be added | +| StandardValueSet | ✅ | | +| StandardValueSetTranslation | ✅ | | +| StaticResource | ✅ | | +| StnryAssetEnvSrcCnfg | ✅ | | +| StreamingAppDataConnector | ✅ | | +| SubscriptionManagementSettings | ✅ | | +| SurveySettings | ✅ | | +| SustainabilityUom | ✅ | | +| SustnUomConversion | ✅ | | +| SvcCatalogCategory | ✅ | | +| SvcCatalogFilterCriteria | ✅ | | +| SvcCatalogFulfillmentFlow | ✅ | | +| SvcCatalogItemDef | ✅ | | +| SynonymDictionary | ✅ | | +| SystemNotificationSettings | ✅ | | +| Territory | ✅ | | +| Territory2 | ✅ | | +| Territory2Model | ✅ | | +| Territory2Rule | ✅ | | +| Territory2Settings | ✅ | | +| Territory2Type | ✅ | | +| TimeSheetTemplate | ✅ | | +| TimelineObjectDefinition | ✅ | | +| TopicsForObjects | ✅ | | +| TrailheadSettings | ✅ | | +| TransactionSecurityPolicy | ✅ | | +| Translations | ✅ | | +| TrialOrgSettings | ✅ | | +| UIObjectRelationConfig | ✅ | | +| UiPlugin | ✅ | | +| UserAccessPolicy | ✅ | | +| UserAuthCertificate | ✅ | | +| UserCriteria | ✅ | | +| UserEngagementSettings | ✅ | | +| UserInterfaceSettings | ✅ | | +| UserManagementSettings | ✅ | | +| UserProfileSearchScope | ✅ | | +| UserProvisioningConfig | ✅ | | +| ValidationRule | ✅ | | +| VehicleAssetEmssnSrcCnfg | ✅ | | +| ViewDefinition | ✅ | | +| VirtualVisitConfig | ❌ | Not supported, but support could be added | +| VoiceSettings | ✅ | | +| WarrantyLifecycleMgmtSettings | ✅ | | +| WaveAnalyticAssetCollection | ❌ | Not supported, but support could be added | +| WaveApplication | ✅ | | +| WaveComponent | ✅ | | +| WaveDashboard | ✅ | | +| WaveDataflow | ✅ | | +| WaveDataset | ✅ | | +| WaveLens | ✅ | | +| WaveRecipe | ✅ | | +| WaveTemplateBundle | ✅ | | +| WaveXmd | ✅ | | +| Web3Settings | ✅ | | +| WebLink | ✅ | | +| WebStoreBundle | ✅ | | +| WebStoreTemplate | ✅ | | +| WebToXSettings | ✅ | | +| WorkDotComSettings | ✅ | | +| WorkSkillRouting | ✅ | | +| Workflow | ✅ | | +| WorkflowAlert | ✅ | | +| WorkflowFieldUpdate | ✅ | | +| WorkflowFlowAction | ❌ | Not supported, but support could be added | +| WorkflowKnowledgePublish | ✅ | | +| WorkflowOutboundMessage | ✅ | | +| WorkflowRule | ✅ | | +| WorkflowSend | ✅ | | +| WorkflowTask | ✅ | | +| WorkforceEngagementSettings | ✅ | | ## Next Release (v62) -v62 introduces the following new types. Here's their current level of support +v62 introduces the following new types. Here's their current level of support -|Metadata Type|Support|Notes| -|:---|:---|:---| -|AccountPlanSettings|✅|| -|AnalyticsDashboard|❌|Not supported, but support could be added| -|ChannelRevMgmtSettings|✅|| -|ChoiceList|❌|Not supported, but support could be added| -|DataKitObjectDependency|✅|| -|EnblProgramTaskSubCategory|✅|| -|ExtlClntAppPushSettings|✅|| -|GenOpPlanRequestThreshold|❌|Not supported, but support could be added| -|HerokuIntegrationSettings|✅|| -|IndustriesRatingSettings|✅|| -|IndustriesUsageSettings|✅|| -|LearningItemType|✅|| -|StageDefinition|❌|Not supported, but support could be added| +| Metadata Type | Support | Notes | +| :------------------------- | :------ | :---------------------------------------- | +| AccountPlanSettings | ✅ | | +| AnalyticsDashboard | ❌ | Not supported, but support could be added | +| ChannelRevMgmtSettings | ✅ | | +| ChoiceList | ❌ | Not supported, but support could be added | +| DataKitObjectDependency | ✅ | | +| EnblProgramTaskSubCategory | ✅ | | +| ExtlClntAppPushSettings | ✅ | | +| GenOpPlanRequestThreshold | ❌ | Not supported, but support could be added | +| HerokuIntegrationSettings | ✅ | | +| IndustriesRatingSettings | ✅ | | +| IndustriesUsageSettings | ✅ | | +| LearningItemType | ✅ | | +| StageDefinition | ❌ | Not supported, but support could be added | ## Additional Types -> The following types are supported by this library but not in the coverage reports for either version. These are typically +> The following types are supported by this library but not in the coverage reports for either version. These are typically > > 1. types that have been removed from the metadata API but were supported in previous versions > 1. types that are available for pilots but not officially part of the metadata API (use with caution) diff --git a/contributing/metadata.md b/contributing/metadata.md index 398b3d908b..e0d6ed5969 100644 --- a/contributing/metadata.md +++ b/contributing/metadata.md @@ -13,7 +13,7 @@ Got questions? - If you work for Salesforce, - For general questions, post in [#platform-cli](https://salesforce-internal.slack.com/archives/C01LKDT1P6J) - - For PR reviews, post in [#platform-cli-collaboration](https://salesforce.enterprise.slack.com/archives/C06V045BZD0) + - For PR reviews, post in [#platform-cli-collaboration](https://salesforce.enterprise.slack.com/archives/C06V045BZD0) - If not, [open an issue](https://github.com/forcedotcom/cli/issues) ## Adding new types to the registry via a script