Skip to content

Commit

Permalink
misc: Bump version to v0.15.1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
rsempe committed Nov 21, 2022
1 parent 66ee179 commit 2ec4eb9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 87 files
+6 −0 .github/workflows/manual-release.yml
+6 −0 .github/workflows/release.yml
+4 −0 Dockerfile
+4 −0 Dockerfile.arm64
+1 −0 Gemfile
+32 −10 Gemfile.lock
+5 −0 app/controllers/api/base_controller.rb
+3 −1 app/controllers/api/v1/customers_controller.rb
+5 −2 app/controllers/api/v1/organizations_controller.rb
+6 −0 app/controllers/graphql_controller.rb
+18 −0 app/controllers/webhooks_controller.rb
+1 −1 app/graphql/mutations/customers/create.rb
+1 −1 app/graphql/mutations/customers/update.rb
+12 −1 app/graphql/types/customers/object.rb
+1 −0 app/graphql/types/organization_type.rb
+3 −2 app/graphql/types/payment_provider_customers/provider.rb
+3 −2 app/graphql/types/payment_provider_customers/provider_input.rb
+1 −0 app/graphql/types/payment_providers/gocardless.rb
+14 −0 app/jobs/invoices/payments/gocardless_create_job.rb
+16 −0 app/jobs/payment_provider_customers/gocardless_checkout_url_job.rb
+16 −0 app/jobs/payment_provider_customers/gocardless_create_job.rb
+14 −0 app/jobs/payment_providers/gocardless/handle_event_job.rb
+2 −0 app/jobs/send_webhook_job.rb
+28 −0 app/models/concerns/customer_timezone.rb
+28 −0 app/models/concerns/organization_timezone.rb
+15 −4 app/models/customer.rb
+18 −4 app/models/organization.rb
+16 −0 app/models/payment_provider_customers/base_customer.rb
+6 −0 app/models/payment_provider_customers/gocardless_customer.rb
+8 −0 app/models/payment_providers/base_provider.rb
+18 −0 app/models/payment_providers/gocardless_provider.rb
+0 −8 app/models/payment_providers/stripe_provider.rb
+5 −1 app/serializers/v1/customer_serializer.rb
+7 −3 app/serializers/v1/organization_serializer.rb
+16 −0 app/serializers/v1/payment_providers/customer_checkout_serializer.rb
+10 −1 app/services/base_service.rb
+30 −23 app/services/customers/create_service.rb
+45 −8 app/services/customers/update_service.rb
+2 −0 app/services/invoices/create_service.rb
+182 −0 app/services/invoices/payments/gocardless_service.rb
+5 −22 app/services/invoices/payments/stripe_service.rb
+8 −2 app/services/organizations/update_service.rb
+14 −6 app/services/payment_provider_customers/create_service.rb
+131 −0 app/services/payment_provider_customers/gocardless_service.rb
+49 −5 app/services/payment_providers/gocardless_service.rb
+29 −0 app/services/webhooks/payment_providers/customer_checkout_service.rb
+13 −0 app/validators/timezone_validator.rb
+44 −43 app/views/templates/invoice.slim
+1 −0 config/routes.rb
+8 −0 db/migrate/20221114102649_fill_sync_with_provider_field.rb
+28 −0 db/migrate/20221115100834_add_invoice_grace_period.rb
+8 −0 db/migrate/20221115110223_add_unique_index_on_customers_external_id.rb
+7 −0 db/migrate/20221115155550_add_timezone_to_organizations.rb
+7 −0 db/migrate/20221115160325_add_timezone_to_customers.rb
+8 −2 db/schema.rb
+1 −1 lib/current_context.rb
+16 −0 lib/tasks/customers.rake
+18 −13 schema.graphql
+160 −100 schema.json
+0 −42 scripts/wait.for.sh
+6 −0 spec/factories/payment_provider_customers.rb
+22 −0 spec/fixtures/gocardless/events.json
+4 −4 spec/graphql/mutations/customers/create_spec.rb
+4 −4 spec/graphql/mutations/customers/update_spec.rb
+22 −0 spec/jobs/invoices/payments/gocardless_create_job_spec.rb
+24 −0 spec/jobs/payment_provider_customers/gocardless_checkout_url_job_spec.rb
+22 −0 spec/jobs/payment_provider_customers/gocardless_create_job_spec.rb
+29 −0 spec/jobs/payment_providers/gocardless/handle_event_job_spec.rb
+34 −9 spec/jobs/send_webhook_job_spec.rb
+65 −0 spec/models/customer_spec.rb
+6 −0 spec/models/organization_spec.rb
+6 −0 spec/requests/api/base_spec.rb
+18 −8 spec/requests/api/v1/customers_spec.rb
+15 −6 spec/requests/api/v1/organizations_spec.rb
+1 −0 spec/requests/graphql_spec.rb
+75 −0 spec/requests/webhooks_spec.rb
+17 −16 spec/serializers/v1/organization_serializer_spec.rb
+23 −0 spec/serializers/v1/payment_providers/customer_checkout_serializer_spec.rb
+119 −32 spec/services/customers/create_service_spec.rb
+14 −3 spec/services/customers/update_service_spec.rb
+286 −0 spec/services/invoices/payments/gocardless_service_spec.rb
+8 −22 spec/services/invoices/payments/stripe_service_spec.rb
+10 −4 spec/services/organizations/update_service_spec.rb
+23 −16 spec/services/payment_provider_customers/create_service_spec.rb
+121 −0 spec/services/payment_provider_customers/gocardless_service_spec.rb
+93 −0 spec/services/payment_providers/gocardless_service_spec.rb
+41 −0 spec/services/webhooks/payment_providers/customer_checkout_service_spec.rb
6 changes: 3 additions & 3 deletions docker-compose.arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:

api:
container_name: lago-api
image: getlago/api-arm64v8:v0.14.1-alpha
image: getlago/api-arm64v8:v0.15.1-alpha
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -107,7 +107,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api-arm64v8:v0.14.1-alpha
image: getlago/api-arm64v8:v0.15.1-alpha
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -141,7 +141,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api-arm64v8:v0.14.1-alpha
image: getlago/api-arm64v8:v0.15.1-alpha
restart: unless-stopped
depends_on:
- api
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v0.15.0-alpha
image: getlago/api:v0.15.1-alpha
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -76,7 +76,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.15.0-alpha
image: getlago/front:v0.15.1-alpha
restart: unless-stopped
# Use this command if you want to use SSL with Let's Encrypt
# command: "/bin/sh -c 'while :; do sleep 6h & wait $${!}; nginx -s reload; done & nginx -g \"daemon off;\"'"
Expand Down Expand Up @@ -150,7 +150,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.15.0-alpha
image: getlago/api:v0.15.1-alpha
restart: unless-stopped
depends_on:
- api
Expand Down

0 comments on commit 2ec4eb9

Please sign in to comment.