Releases: pagopa/dx
@pagopa/[email protected]
Minor Changes
- 932fa05: Removed no-console rule
@pagopa/[email protected]
Minor Changes
-
fa4e825: Create the
init
commandThis command is going to be used to initialize a new project (a monorepo) using the DX CLI.
Patch Changes
[email protected]
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 ofcatalog: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]
Minor Changes
-
142892e: # Minor Changes
Replace the
tier
variable with a newuse_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]
Patch Changes
- f87fa4b: Moved OIDC provider from bootstrapper to core module
[email protected]
Patch Changes
- f87fa4b: Moved OIDC provider from bootstrapper to core module
[email protected]
Patch Changes
- f87fa4b: Moved OIDC provider from bootstrapper to core module
[email protected]
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]
Patch Changes
- f2b0b68: First release of the csp-login action that automatizes AWS and Azure logins according to environment variables
[email protected]
Major Changes
-
ea1cc48: # Major Changes
-
Replaced the
tier
variable with a newuse_case
variable for tiering configuration. -
Add new variables for replica:
create_replica
: Set totrue
by default, this determines whether or not to create a replica.replica_location
: optional value used to specify a different location for the replica
-
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 purposesl 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... }
-