vault/ui/config/deprecation-workflow.js
Chelsea Shaw 8d6d26e531
UI: Refactor path-help service (#28444)
* Add helper combineOpenApiAttrs + test

* hydrateModel working with upgradeModelSchema

* new registerNewModelWithAttrs method for generated models

* Add newFields to generated models

* copyright

* Glimmerize path-help service

* update generated-item-list adapter and path-help usage of it

* remove unused methods combineAttributes and combineFields

* move expandOpenApiProps to ts helper file

* fix auth test

* fix bug where adding user to second userpass mount saves to first mount

* Add mutableId

* fix ent test

* remove addressed deprecation

* Address PR comments

* [VAULT-31208] remove deprecation early-static from decorator tests
2024-09-25 18:17:48 +00:00

23 lines
823 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
/* global self */
self.deprecationWorkflow = self.deprecationWorkflow || {};
self.deprecationWorkflow.config = {
throwOnUnhandled: false,
};
self.deprecationWorkflow.config = {
// current output from deprecationWorkflow.flushDeprecations();
workflow: [
{ handler: 'silence', matchId: 'ember-engines.deprecation-router-service-from-host' },
// ember-data
{ handler: 'silence', matchId: 'ember-data:deprecate-early-static' }, // decorator tests
{ handler: 'silence', matchId: 'ember-data:deprecate-promise-proxies' }, // Transform secrets
{ handler: 'silence', matchId: 'ember-data:no-a-with-array-like' }, // MFA
{ handler: 'silence', matchId: 'ember-data:deprecate-promise-many-array-behaviors' }, // MFA
],
};