Releases: pagopa/dx
[email protected]
Minor Changes
- dc2120f: Enable enableEtags property on the KEDA scale rule to mitigate rate limit issue with GitHub
[email protected]
[email protected]
Patch Changes
-
a441444: Added subscription_id and tenant_id outputs to the module
How to use these values
These values can be used to configure other Azure resources that require subscription or tenant IDs.
- Remove from your configuration:
or
data "azurerm_subscription" "current" {}
data "azurerm_client_config" "current" {}
- Replace:
subscription_id = data.azurerm_subscription.current.id tenant_id = data.azurerm_client_config.current.tenant_id
with:
subscription_id = module.<exporter>.subscription_id tenant_id = module.<exporter>.tenant_id
- Remove from your configuration:
[email protected]
Patch Changes
-
a441444: # How to use these values
These values can be used to configure other Azure resources that require subscription or tenant IDs.
If you already use the
azure_core_values_exporter
:- Remove from your configuration:
or
data "azurerm_subscription" "current" {}
data "azurerm_client_config" "current" {}
- Replace:
subscription_id = data.azurerm_subscription.current.id tenant_id = data.azurerm_client_config.current.tenant_id
with:
subscription_id = module.<exporter>.subscription_id tenant_id = module.<exporter>.tenant_id
- Remove from your configuration:
@pagopa/[email protected]
@pagopa/[email protected]
Patch Changes
- 90ac56c: Fix regex in
use-pnpm
codemod
@pagopa/[email protected]
@pagopa/[email protected]
Patch Changes
- 2caf863: Remove
ENABLE_CODEMODS
feature flag - 99516d2:
use-azure-appsvc
codemod now addspermissions
to the updated GitHub Action workflow - f989fa7: Add support for
npm
, migratepackageExtensions
, useworkspace:
protocol - Updated dependencies [13374c8]
- Updated dependencies [13374c8]
- @pagopa/[email protected]
[email protected]
Patch Changes
- 421e8a4: Add @pagopa/eslint-config package documentation
@pagopa/[email protected]
Patch Changes
-
bdc22a5: Add compatibility with old
moduleResolution
systems[!NOTE]: When a consumer with
moduleResolution: node
tries to import@pagopa/azure-tracing
, TypeScript fails to find the exported subpath.
Now, the subpaths are properly exported in thepackage.json
file, and, for old systems (likenode
), this packages works as well thanks to the
typesVersions
entry.Even though this change guarantees compatibility with old systems, it is recommended to use a more recent
moduleResolution
system, likebundler
.
Reference: https://www.typescriptlang.org/docs/handbook/modules/theory.html#module-resolution-is-host-defined. -
bdc22a5: Fix exports in the package.json to make sure the types are properly exported