Skip to content

Commit

Permalink
Merge branch 'main' into feat/shuttle-ecs-common
Browse files Browse the repository at this point in the history
jonaro00 committed Apr 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 45e5d4e + 1922b0e commit f732be0
Showing 76 changed files with 1,947 additions and 714 deletions.
6 changes: 6 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -356,6 +356,9 @@ jobs:
gateway-admin-key:
description: "Admin API key that authorizes gateway requests to auth service, for key to jwt conversion."
type: string
permit-api-key:
description: "Permit.io API key for the Permit environment that matches the current ${SHUTTLE_ENV}."
type: string
steps:
- checkout
- set-git-tag
@@ -383,6 +386,7 @@ jobs:
AUTH_JWTSIGNING_PRIVATE_KEY=${<< parameters.jwt-signing-private-key >>} \
CONTROL_DB_POSTGRES_URI=${<< parameters.control-db-postgres-uri >>} \
GATEWAY_ADMIN_KEY=${<< parameters.gateway-admin-key >>} \
PERMIT_API_KEY=${<< parameters.permit-api-key >>} \
make deploy
- when:
condition:
@@ -748,6 +752,7 @@ workflows:
jwt-signing-private-key: DEV_AUTH_JWTSIGNING_PRIVATE_KEY
control-db-postgres-uri: DEV_CONTROL_DB_POSTGRES_URI
gateway-admin-key: DEV_GATEWAY_ADMIN_KEY
permit-api-key: STAGING_PERMIT_API_KEY
requires:
- build-and-push-unstable
- approve-deploy-images-unstable
@@ -832,6 +837,7 @@ workflows:
jwt-signing-private-key: PROD_AUTH_JWTSIGNING_PRIVATE_KEY
control-db-postgres-uri: PROD_CONTROL_DB_POSTGRES_URI
gateway-admin-key: PROD_GATEWAY_ADMIN_KEY
permit-api-key: PROD_PERMIT_API_KEY
ssh-fingerprint: 6a:c5:33:fe:5b:c9:06:df:99:64:ca:17:0d:32:18:2e
ssh-config-script: production-ssh-config.sh
ssh-host: shuttle.prod.internal
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ body:
attributes:
label: Version
description: What version of `cargo-shuttle` are you running (`cargo shuttle --version`)?
placeholder: "v0.42.0"
placeholder: "v0.43.0"
validations:
required: true
- type: dropdown
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -43,3 +43,5 @@ yarn.lock
*.wasm
*.sqlite*
.envrc

/private
38 changes: 35 additions & 3 deletions CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 28 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 9 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -2,7 +2,8 @@
resolver = "2"
members = [
"admin",
"auth", "backends",
"auth",
"backends",
"cargo-shuttle",
"codegen",
"common",
@@ -23,19 +24,19 @@ exclude = [
]

[workspace.package]
version = "0.42.0"
version = "0.43.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/shuttle-hq/shuttle"

# https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table
[workspace.dependencies]
shuttle-backends = { path = "backends", version = "0.42.0" }
shuttle-codegen = { path = "codegen", version = "0.42.0" }
shuttle-common = { path = "common", version = "0.42.0" }
shuttle-common-tests = { path = "common-tests", version = "0.42.0" }
shuttle-proto = { path = "proto", version = "0.42.0" }
shuttle-service = { path = "service", version = "0.42.0" }
shuttle-backends = { path = "backends", version = "0.43.0" }
shuttle-codegen = { path = "codegen", version = "0.43.0" }
shuttle-common = { path = "common", version = "0.43.0" }
shuttle-common-tests = { path = "common-tests", version = "0.43.0" }
shuttle-proto = { path = "proto", version = "0.43.0" }
shuttle-service = { path = "service", version = "0.43.0" }

anyhow = "1.0.66"
async-trait = "0.1.58"
Loading

0 comments on commit f732be0

Please sign in to comment.