Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release apiv2 1.6.0 #351

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .infra/prod/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ stack:
services:
apiv2:
image:
tag: sha-1aba3f7
tag: sha-9745d77
initContainers:
# Install cerbos policies where the cerbos sidecar can grab them.
- name: install-cerbos-policies
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["cp", "-r", "./cerbos/", "/var/policies/"]
volumeMounts:
- mountPath: /var/policies
Expand All @@ -24,7 +24,7 @@ stack:
- name: run-migrations
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["alembic", "upgrade", "head"]
resources:
limits:
Expand All @@ -37,7 +37,7 @@ stack:
- name: gen-keypair
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["bash", "./etc/gen_keys.sh", "/var/keys/"]
volumeMounts:
- mountPath: /var/keys
Expand Down
8 changes: 4 additions & 4 deletions .infra/staging/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ stack:
services:
apiv2:
image:
tag: sha-1aba3f7
tag: sha-9745d77
initContainers:
# Install cerbos policies where the cerbos sidecar can grab them.
- name: install-cerbos-policies
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["cp", "-r", "./cerbos/", "/var/policies/"]
volumeMounts:
- mountPath: /var/policies
Expand All @@ -24,7 +24,7 @@ stack:
- name: run-migrations
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["alembic", "upgrade", "head"]
resources:
limits:
Expand All @@ -37,7 +37,7 @@ stack:
- name: gen-keypair
image:
repository: 533267185808.dkr.ecr.us-west-2.amazonaws.com/core-platform/cryoet-data-portal-backend/apiv2/apiv2
tag: sha-1aba3f7
tag: sha-9745d77
command: ["bash", "./etc/gen_keys.sh", "/var/keys/"]
volumeMounts:
- mountPath: /var/keys
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"apiv2": "1.5.0"
"apiv2": "1.6.0"
}
16 changes: 16 additions & 0 deletions apiv2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.6.0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/compare/apiv2-v1.5.0...apiv2-v1.6.0) (2024-12-17)


### Features

* Support for Per Section Alignment Parameters DB Import ([#369](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/369)) ([ce2643c](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/ce2643cadf643a18455405996d2856753a0ccbed))
* Support grouping aggregate results by 1:many relationships ([#376](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/376)) ([db82957](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/db82957625a4eab20e4fa02fa9790b90539336ae))


### Bug Fixes

* Adding is_visualization_default field to tomo ingestion ([#350](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/350)) ([a65209f](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/a65209fd2bf3ba80589be5cdc7f709930bb251fd))
* Make sure we support multiple grants for a given funding agency. ([#357](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/357)) ([b4441ea](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/b4441eafc1f0081378f3bc3fc2c214784abf8e99))
* remove tiltseries_id check from alignment importer ([#374](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/374)) ([1a3a50c](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/1a3a50c0bbcd31489a1426b132cf1c48edb23294))
* Support running v2 db import via batch job. ([#356](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/356)) ([a832d2f](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/a832d2f541c6413ad295b5386eaf9c76675490fb))

## [1.5.0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/compare/apiv2-v1.4.0...apiv2-v1.5.0) (2024-11-06)


Expand Down
Loading