Skip to content

Releases: interuss/dss

v0.17.0

03 Sep 16:16

Choose a tag to compare

What's Changed

DSS (includes deprecation changes)

  • [core-service] Rename enable_http to allow_http_base_urls by @brandoncorrea in #1061
    • ℹ️ enable_http is now deprecated and replaced by allow_http_base_urls. It will be removed in a future release.
  • [versioning] add new versioning endpoint by @Shastick in #1052
  • [cleanup] Move db_schemas to build folder by @barroco in #1067
  • [db-manager] Disable implicit transactions for schema migration on CRDB v.22+ by @barroco in #1079
  • [scd] factor out parameter validation for oir upsert method by @Shastick in #1089
  • [scd] oir deletion now checks for OVN correctness by @Shastick in #1082
  • [scd] cr deletion now checks for OVN correctness by @Shastick in #1083
  • [crdb] Upgrade CockroachDB to 24.1.3 by @barroco in #1075

Deployment (breaking changes)

This release introduces breaking change to the helm chart, tanka configurations and terraform manifests:

  • [crdb] Upgrade CockroachDB to 24.1.3 by @barroco in #1075
  • [helm] Remove default dss image value to force user to set it manually by @barroco in #1063
    • ⚠️ Until this version, the default dss image was set to 0.7.0. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the image key with value docker.io/interuss/dss:v0.7.0 should be added to the values.yaml files used for deployment if not already set. See the PR which updates the example file as reference.
  • [helm] Enforce manual selection of cockroachdb image by @barroco in #1076
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the cockroachdb.image.tag key with the image tag value v21.2.7 should be added to the values.yaml files used for deployment if not already set. See the PR which updates the example file as reference.
  • [tanka] Enforce manual selection of cockroachdb image by @barroco in #1077
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the image key with the full image name cockroachdb/cockroach:v21.2.7 should be added to the main.jsonnet files used for deployment if not already set. See the PR which updates the example file as reference.
  • [terraform] Explicitly set CRDB version in terraform examples and tooling by @barroco in #1080
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, three changes must be made to your terraform project.
      1. the crdb_image_tag key with value v21.2.7 should be added to the terraform.tfvars file used for deployment if not already set. See the PR which updates the example file as reference.
      2. the main.tf needs to reference the variable in the terraform-[provider]-dss module. ([provider] should correspond to either google or aws depending on the cloud provider you are targeting.) crdb_image_tag = var.crdb_image_tag must be added to the module definition. Example
      3. Replace the current variables.gen.tf or variables.tf by the new variables.gen.tf:
  • [terraform] crdb image tag definition by @barroco in #1085
  • [helm] Example of CRDB statefulset update partition by @barroco in #1087
    guidance instructions.
  • [terraform] Fix CRDB version for automated deployment by @barroco in #1093

Other

  • [ci] Add test step to dss-deploy workflow by @barroco in #1046
  • [tests] expose CRDB port locally for CLI connection by @Shastick in #1062
  • [cleanup] Remove irrelevant file by @barroco in #1065
  • [doc] mention the USS qualifier in the documentation by @Shastick in #1066
  • [doc] Add placeholders in new deployment documentation by @barroco in #1068
  • [ci] run the uss-qualifier as part of the CI by @Shastick in #1045

New Contributors

Full Changelog: interuss/dss/v0.16.0...interuss/dss/v0.17.0

v0.17.0-rc1

30 Aug 14:14
2191847

Choose a tag to compare

v0.17.0-rc1 Pre-release
Pre-release

What's Changed

DSS (includes deprecation changes)

  • [core-service] Rename enable_http to allow_http_base_urls by @brandoncorrea in #1061
    • ℹ️ enable_http is now deprecated and replaced by allow_http_base_urls. It will be removed in a future release.
  • [versioning] add new versioning endpoint by @Shastick in #1052
  • [cleanup] Move db_schemas to build folder by @barroco in #1067
  • [db-manager] Disable implicit transactions for schema migration on CRDB v.22+ by @barroco in #1079
  • [scd] factor out parameter validation for oir upsert method by @Shastick in #1089
  • [scd] oir deletion now checks for OVN correctness by @Shastick in #1082
  • [scd] cr deletion now checks for OVN correctness by @Shastick in #1083
  • [crdb] Upgrade CockroachDB to 24.1.3 by @barroco in #1075

Deployment (includes breaking changes)

This release introduces breaking change to the helm chart, tanka configurations and terraform manifests:

  • [helm] Remove default dss image value to force user to set it manually by @barroco in #1063
    • ⚠️ Until this version, the default dss image was set to 0.7.0. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the image key with value docker.io/interuss/dss:v0.7.0 should be added to the values.yaml files used for deployment if not already set. See the PR which updates the example file as reference.
  • [helm] Enforce manual selection of cockroachdb image by @barroco in #1076
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the cockroachdb.image.tag key with the image tag value v21.2.7 should be added to the values.yaml files used for deployment if not already set. See the PR which updates the example file as reference.
  • [tanka] Enforce manual selection of cockroachdb image by @barroco in #1077
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, the image key with the full image name cockroachdb/cockroach:v21.2.7 should be added to the main.jsonnet files used for deployment if not already set. See the PR which updates the example file as reference.
  • [terraform] Explicitly set CRDB version in terraform examples and tooling by @barroco in #1080
    • ⚠️ Until this version, the default cockroachdb docker image was set to 21.2.7. Users who didn't override this value will be forced to set it manually. To ensure backward compatibility, three changes must be made to your terraform project.
      1. the crdb_image_tag key with value v21.2.7 should be added to the terraform.tfvars file used for deployment if not already set. See the PR which updates the example file as reference.
      2. the main.tf needs to reference the variable in the terraform-[provider]-dss module. ([provider] should correspond to either google or aws depending on the cloud provider you are targeting.) crdb_image_tag = var.crdb_image_tag must be added to the module definition. Example
      3. Replace the current variables.gen.tf or variables.tf by the new variables.gen.tf:
  • [terraform] crdb image tag definition by @barroco in #1085
  • [helm] Example of CRDB statefulset update partition by @barroco in #1087
  • [crdb] Upgrade CockroachDB to 24.1.3 by @barroco in #1075
    • ℹ️ See MIGRATION.md for upgrade guidance instructions.

Other

  • [ci] Add test step to dss-deploy workflow by @barroco in #1046
  • [tests] expose CRDB port locally for CLI connection by @Shastick in #1062
  • [cleanup] Remove irrelevant file by @barroco in #1065
  • [doc] mention the USS qualifier in the documentation by @Shastick in #1066
  • [doc] Add placeholders in new deployment documentation by @barroco in #1068
  • [ci] run the uss-qualifier as part of the CI by @Shastick in #1045

New Contributors

Full Changelog: interuss/dss/v0.16.0-rc3...interuss/dss/v0.17.0-rc1

v0.16.0

03 Sep 16:09
1d0568f

Choose a tag to compare

What's Changed

DSS

  • [fix] add nil checks to avoid panic when creating an OIR without a subscription by @Shastick in #1039
  • [deps] update database dependencies, adapt crdb query code by @Shastick in #1035
  • [dependencies] update go version to 1.22 and update vulnerable dependencies by @Shastick in #1034
  • [dependencies] bump dependencies to most recent versions by @Shastick in #1041
  • Bump golang.org/x/net from 0.17.0 to 0.23.0 by @dependabot in #1021
  • [dependencies] bumps dependencies to most recent versions by @Shastick in #1038
  • Remove redundant S2 cells queries for operational intents by @BenjaminPelletier in #1042
  • [dss][scd] Removing OVN from missing entities when upserting OIR by @Ramboio in #1050

Deployment

  • [tanka] Align replicas number with nodeips length by @barroco in #1026
  • [helm] Align replicas number with number of nodes by @barroco in #1029
  • [terraform] Simplify latest version of DSS by @barroco in #1028
  • [terraform] Allow single node deployment by @barroco in #1027
  • [terraform] Remove usage of latest image by @barroco in #1030
  • [terraform] set aws_iam_permissions_boundary default to "" by @barroco in #1031
  • Fix documentation link typo in error log for CheckCurrentMajorSchemaVersion error by @fmo00 in #1036
  • [helm] Fix jwks configuration by @barroco in #1037
  • [doc] Editorial improvement by @barroco in #1025

Others

New Contributors

Full Changelog: interuss/dss/v0.15.0...interuss/dss/v0.16.0

v0.16.0-rc3

09 Jul 06:41
1d0568f

Choose a tag to compare

v0.16.0-rc3 Pre-release
Pre-release

What's Changed

  • [ci] update cluster name format by @barroco in #1044
  • [dss][scd] Removing OVN from missing entities when upserting OIR by @Ramboio in #1050
  • [doc] Remove obsolete changelog files by @barroco in #1049
  • [dss] Ensure clean workspace for releases by @barroco in #1053

Full Changelog: interuss/dss/v0.16.0-rc2...interuss/dss/v0.16.0-rc3

v0.16.0-rc2

18 Jun 12:05
ce9e97d

Choose a tag to compare

v0.16.0-rc2 Pre-release
Pre-release

What's Changed

Full Changelog: interuss/dss/v0.16.0-rc1...interuss/dss/v0.16.0-rc2

v0.16.0-rc1

30 May 16:05
1e01739

Choose a tag to compare

v0.16.0-rc1 Pre-release
Pre-release

What's Changed

DSS

  • [fix] add nil checks to avoid panic when creating an OIR without a subscription by @Shastick in #1039
  • [deps] update database dependencies, adapt crdb query code by @Shastick in #1035
  • [dependencies] update go version to 1.22 and update vulnerable dependencies by @Shastick in #1034
  • [dependencies] bump dependencies to most recent versions by @Shastick in #1041
  • Bump golang.org/x/net from 0.17.0 to 0.23.0 by @dependabot in #1021
  • [dependencies] bumps dependencies to most recent versions by @Shastick in #1038

Deployment

  • [tanka] Align replicas number with nodeips length by @barroco in #1026
  • [helm] Align replicas number with number of nodes by @barroco in #1029
  • [terraform] Simplify latest version of DSS by @barroco in #1028
  • [terraform] Allow single node deployment by @barroco in #1027
  • [terraform] Remove usage of latest image by @barroco in #1030
  • [terraform] set aws_iam_permissions_boundary default to "" by @barroco in #1031
  • Fix documentation link typo in error log for CheckCurrentMajorSchemaVersion error by @fmo00 in #1036
  • [helm] Fix jwks configuration by @barroco in #1037
  • [doc] Editorial improvement by @barroco in #1025

New Contributors

Full Changelog: interuss/dss/v0.15.0...interuss/dss/v0.16.0-rc1

v0.15.0

30 May 15:35
72367c9

Choose a tag to compare

What's changed

DSS

  • [dss][openapi-to-go-server] Move scopes to go constants in generated files by @barroco in #1023
  • [dss][authorizations] Limit transition to off-nominal states to CMSA role by @barroco in #1024

Breaking changes in deployment manifests

This release introduces breaking change to the terraform manifests:

  • [terraform-aws-kubernetes] Reduce the size of the default node disks by @barroco in #1014

    • ⚠️ Applying this new version will recreate the node pool. Rehearsal on a non-productive environment is recommended before production rollout.
  • [terraform] Make cockroach DB cluster name configurable by @barroco in #1018

    • crdb_cluster_name must now be provided to terraform modules. Deployments based on previous versions of the module will be required to use dss-aws-1.

Other changes

  • [terraform] propagate crdb_external_nodes by @barroco in #1015
  • [terraform] Reorganize terraform-commons-dss by @barroco in #1016
  • [terraform-helm] Remove local node reference which is not required by @barroco in #1017
  • [terraform] Rename generated files to ease reviews by @barroco in #1019

Full Changelog: interuss/dss/v0.14.0...interuss/dss/v0.15.0

v0.15.0-rc1

03 May 12:38
72367c9

Choose a tag to compare

v0.15.0-rc1 Pre-release
Pre-release

What's changed

DSS

  • [dss][openapi-to-go-server] Move scopes to go constants in generated files by @barroco in #1023
  • [dss][authorizations] Limit transition to off-nominal states to CMSA role by @barroco in #1024

Breaking changes in deployment manifests

This release introduces breaking change to the terraform manifests:

  • [terraform-aws-kubernetes] Reduce the size of the default node disks by @barroco in #1014

    • ⚠️ Applying this new version will recreate the node pool. Rehearsal on a non-productive environment is recommended before production rollout.
  • [terraform] Make cockroach DB cluster name configurable by @barroco in #1018

    • crdb_cluster_name must now be provided to terraform modules. Deployments based on previous versions of the module will be required to use dss-aws-1.

Other changes

  • [terraform] propagate crdb_external_nodes by @barroco in #1015
  • [terraform] Reorganize terraform-commons-dss by @barroco in #1016
  • [terraform-helm] Remove local node reference which is not required by @barroco in #1017
  • [terraform] Rename generated files to ease reviews by @barroco in #1019

Full Changelog: interuss/dss/v0.14.0...interuss/dss/v0.15.0-rc1

v0.14.0

28 Mar 08:56
8e3f849

Choose a tag to compare

What's Changed

  • [dss][scd] DSS0210,A2-7-2,4d: Consider expired subscriptions as deleted by @barroco in #1013

Full Changelog: interuss/dss/v0.13.0...interuss/dss/v0.14.0

v0.13.0

23 Mar 16:50
a8b24c4

Choose a tag to compare

What's Changed

  • [scd] minimal implementation for the dss report handler by @Shastick in #1012
  • Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 by @dependabot in #1010

Full Changelog: interuss/dss/v0.12.0...interuss/dss/v0.13.0