hi! is there some way to check `can-i-deploy` agai...
# general
d
hi! is there some way to check
can-i-deploy
against all version , having tag
live
and deployed within n months? like am i
compatible with all versions deployed to live within 3 months?
having deployments once a month one can imagine
live1
,
live2
and
live3
for 3 last months version, what to do if deployment arent regular - could happen once a year or each 25 minutes ?
m
Yes! That’s exactly what the
deployed
,
released
and
deployedOrReleased
selectors are for.
If you’re not using deployment/releases yet, you can still use tags. e.g. you might tag things that are in production as
prod
you would then apply the selector
{"tag": "prod", "latest": "false"}
to fetch all contracts with the
prod
tag. This does mean you need to remove the
prod
tag from the undeployed version
d
latest false
will check all of them ? what if one needs that only last 3months of service is supported ?