Skip to content

Commit

Permalink
chore(main): release apiv2 1.3.0 (#279)
Browse files Browse the repository at this point in the history
* chore(main): release apiv2 1.3.0

---------

Co-authored-by: czi-github-helper[bot] <95879977+czi-github-helper[bot]@users.noreply.github.com>
Co-authored-by: czi-github-helper[bot] <czi-github-helper[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 778b270 commit 6318252
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 9 deletions.
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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-497df01
tag: sha-76a45c0
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.2.0"
"apiv2": "1.3.0"
}
23 changes: 23 additions & 0 deletions apiv2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [1.3.0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/compare/apiv2-v1.2.0...apiv2-v1.3.0) (2024-10-08)


### Features

* Align v1 and v2 schemas better ([#277](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/277)) ([2286dac](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/2286dacd613c7ef29a157e6151cf8fb886c8a5da))
* support importing s3 files into the v2 database ([#275](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/275)) ([f04e5f3](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/f04e5f3df2482f8d8a630628cd8154f3e487a998))
* track gain and mdoc files alongside runs ([#280](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/280)) ([483eee8](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/483eee815a94903898e70c0d776af82e91440782))


### Bug Fixes

* add is_standardized back temporarily ([#304](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/304)) ([dfe9a8b](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/dfe9a8bc409b7f011349992f0bd1923f4a9f4289))
* Date fields on tomograms are net-new so they need to be nullable. ([#301](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/301)) ([cf8d2e0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/cf8d2e0b97da7f0fb7a4ef28319e75f83ea1a9d1))
* keep both `tomogram.is_canonical` and `tomogram.is_portal_standard` ([#303](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/303)) ([c65e2f6](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/c65e2f66244453f32c5f76f0e672171b199c0f3a))
* make sure bool comparators don't require int input. ([#278](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/278)) ([991d9fa](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/991d9fadfe622268083d39628be3a0ea8eb456e3))
* Make sure we're using DB connection pools properly. ([#285](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/285)) ([169f8d8](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/169f8d8429c452954f9e3f69acfb9542c9ac1335))
* schema changes to support synthetic datasets. ([#282](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/282)) ([dfa24c0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/dfa24c0e4d65287edb98b5fb0fd677f42b89dad7))
* support filtering entities by related object id's ([#296](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/296)) ([6879a79](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/6879a7930e9b44d5be1b94c64545e710c883e1e5))
* Update sync script to sync missing fields. ([#281](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/281)) ([c4b7f81](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/c4b7f8169765e668cfd05962443e66730fdc92c7))
* use is_standardized rather than is_canonical ([dfe9a8b](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/dfe9a8bc409b7f011349992f0bd1923f4a9f4289))
* workaround for docker compose bugs. ([#295](https://github.com/chanzuckerberg/cryoet-data-portal-backend/issues/295)) ([78daec3](https://github.com/chanzuckerberg/cryoet-data-portal-backend/commit/78daec360edaf6aad763dbd3f63f99098683dd2a))

## [1.2.0](https://github.com/chanzuckerberg/cryoet-data-portal-backend/compare/apiv2-v1.1.0...apiv2-v1.2.0) (2024-09-11)


Expand Down

0 comments on commit 6318252

Please sign in to comment.