Skip to content

Releases: pagopa/dx

@pagopa/[email protected]

25 Sep 13:28
7c484a1

Choose a tag to compare

Minor Changes

@pagopa/[email protected]

25 Sep 13:28
7c484a1

Choose a tag to compare

Minor Changes

  • fa4e825: Create the init command

    This command is going to be used to initialize a new project (a monorepo) using the DX CLI.

Patch Changes

[email protected]

24 Sep 08:42
f00400c

Choose a tag to compare

Major Changes

  • 6877f3c: Remove dx catalog functionality due to PNPM catalog implementation bug

    BREAKING CHANGE: The plugin no longer provides a dx catalog. Catalog entries have been moved to the default catalog in the repository's pnpm-workspace.yaml file.

    This change was made to address a bug in PNPM's catalog implementation that affects the dx catalog provided by this plugin. Until the upstream bug is fixed, users should reference packages using catalog: instead of catalog:dx.

    Affected packages moved to default catalog:

    • @pagopa/eslint-config: ^5.0.0
    • @vitest/coverage-v8: ^3.2.4
    • eslint: ^9.30.0
    • vitest: ^3.2.4

[email protected]

24 Sep 08:42
f00400c

Choose a tag to compare

Minor Changes

  • 142892e: # Minor Changes

    Replace the tier variable with a new use_case variable for tiering configuration.

    Upgrade Notes

    Old Value New Value
    s none
    m default
    l none

    This change simplifies and clarifies the selection of EventHub.

    For Example:

    • Before

      module "eventhub" {
        source  = "pagopa-dx/azure-event-hub/azurerm"
        version = "~> 0.0"
      
        tier    = "m"
        # ...other variables...
      }
    • After

      module "eventhub" {
        source  = "pagopa-dx/azure-event-hub/azurerm"
        version = "~> 0.0"
      
        use_case = "default"
        # ...other variables remain unchanged...
      }

[email protected]

24 Sep 08:42
f00400c

Choose a tag to compare

Patch Changes

  • f87fa4b: Moved OIDC provider from bootstrapper to core module

[email protected]

24 Sep 08:42
f00400c

Choose a tag to compare

Patch Changes

  • f87fa4b: Moved OIDC provider from bootstrapper to core module

[email protected]

24 Sep 08:42
f00400c

Choose a tag to compare

Patch Changes

  • f87fa4b: Moved OIDC provider from bootstrapper to core module

[email protected]

23 Sep 12:45
5518bb9

Choose a tag to compare

Patch Changes

  • 1ac674f: Fix an issue where which prevented the creation of the Container App Job with long repository names and prefix with more than 2 characters

[email protected]

23 Sep 14:45
36a03c9

Choose a tag to compare

Patch Changes

  • f2b0b68: First release of the csp-login action that automatizes AWS and Azure logins according to environment variables

[email protected]

23 Sep 12:40
8b70e0e

Choose a tag to compare

Major Changes

  • ea1cc48: # Major Changes

    1. Replaced the tier variable with a new use_case variable for tiering configuration.

    2. Add new variables for replica:

      • create_replica: Set to true by default, this determines whether or not to create a replica.
      • replica_location: optional value used to specify a different location for the replica
    3. Removed metrics block from azurerm_monitor_diagnostic_setting for deprecation .

    Upgrade Notes

    Old Value New Value Description
    s none Now don't exist purposess
    m default Ideal for production environments purposes
    l none Now don't exist workloads

    This change simplifies and clarifies the selection of Postgres Server tiers.

    For Example:

    • Before

      module "postgres" {
        source  = "pagopa-dx/azure-postgres-server/azurerm
        version = "~> 1.0"
      
        tier    = "m"
      
        # ...other variables...
      }
    • After

      module "postgres" {
        source  = "pagopa-dx/azure-postgres-server/azurerm
        version = "~> 2.0"
      
        use_case = "default"
      
        # ...other variables remain unchanged...
      }