Skip to content

Releases: pagopa/dx

[email protected]

03 Oct 09:35
b5e4c48

Choose a tag to compare

Minor Changes

  • dc2120f: Enable enableEtags property on the KEDA scale rule to mitigate rate limit issue with GitHub

[email protected]

03 Oct 07:11
e7e17b1

Choose a tag to compare

Patch Changes

  • 1619aef: Update navbar items and enhance blog title styling
  • 88596b6: Refactor docs for Azure Static Web Apps

[email protected]

03 Oct 07:18
e311430

Choose a tag to compare

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.

    1. Remove from your configuration:
      data "azurerm_subscription" "current" {}
      or
      data "azurerm_client_config" "current" {}
    2. 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

[email protected]

03 Oct 07:18
e311430

Choose a tag to compare

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:

    1. Remove from your configuration:
      data "azurerm_subscription" "current" {}
      or
      data "azurerm_client_config" "current" {}
    2. 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

@pagopa/[email protected]

03 Oct 07:11
e7e17b1

Choose a tag to compare

Minor Changes

  • 13374c8: Ask environment information when running the generator

Patch Changes

  • 13374c8: Validate value for repoName prompt; it cannot be empty.

@pagopa/[email protected]

03 Oct 08:46
c62beee

Choose a tag to compare

Patch Changes

  • 90ac56c: Fix regex in use-pnpm codemod

@pagopa/[email protected]

03 Oct 08:17
3fcdedf

Choose a tag to compare

Patch Changes

  • d86e8d6: Add .pnpm-store to .gitignore
  • 6e1ec37: Update update-code-review codemod to support the latest version of the workflow

@pagopa/[email protected]

03 Oct 07:11
e7e17b1

Choose a tag to compare

Patch Changes

  • 2caf863: Remove ENABLE_CODEMODS feature flag
  • 99516d2: use-azure-appsvc codemod now adds permissions to the updated GitHub Action workflow
  • f989fa7: Add support for npm, migrate packageExtensions, use workspace: protocol
  • Updated dependencies [13374c8]
  • Updated dependencies [13374c8]

[email protected]

30 Sep 09:14
a8088de

Choose a tag to compare

Patch Changes

  • 421e8a4: Add @pagopa/eslint-config package documentation

@pagopa/[email protected]

30 Sep 09:14
a8088de

Choose a tag to compare

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 the package.json file, and, for old systems (like node), 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, like bundler.
    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