Skip to content

Commit

Permalink
misc: Bump version to v1.15.2 (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet authored Nov 4, 2024
1 parent 5127c0b commit 46d218b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 40 files
+1 −0 app/controllers/api/v1/plans_controller.rb
+1 −0 app/graphql/mutations/plans/update.rb
+6 −0 app/graphql/types/plans/object.rb
+4 −4 app/jobs/bill_subscription_job.rb
+26 −0 app/jobs/clock/retry_generating_subscription_invoices_job.rb
+5 −6 app/models/clickhouse/events_raw.rb
+1 −0 app/models/concerns/currencies.rb
+29 −0 app/models/invoice_error.rb
+5 −1 app/services/integration_customers/hubspot_service.rb
+2 −0 app/services/integrations/aggregator/invoices/crm/create_customer_association_service.rb
+2 −0 app/services/integrations/aggregator/subscriptions/crm/create_customer_association_service.rb
+3 −1 app/services/integrations/hubspot/invoices/deploy_object_service.rb
+4 −1 app/services/integrations/hubspot/subscriptions/deploy_object_service.rb
+4 −0 app/services/subscriptions/activate_service.rb
+4 −0 app/services/subscriptions/billing_service.rb
+8 −0 app/services/subscriptions/create_service.rb
+4 −0 app/services/subscriptions/free_trial_billing_service.rb
+18 −1 app/services/subscriptions/terminate_service.rb
+4 −0 app/services/subscriptions/update_service.rb
+5 −0 clock.rb
+14 −0 db/migrate/20241031102231_create_invoice_errors.rb
+10 −1 db/schema.rb
+7 −0 schema.graphql
+32 −0 schema.json
+21 −0 spec/clockwork_spec.rb
+6 −0 spec/factories/customers.rb
+1 −0 spec/graphql/types/plans/object_spec.rb
+21 −1 spec/jobs/bill_subscription_job_spec.rb
+63 −0 spec/jobs/clock/retry_generating_subscription_invoices_job_spec.rb
+50 −0 spec/models/invoice_error_spec.rb
+15 −13 spec/services/daily_usages/compute_service_spec.rb
+50 −2 spec/services/integration_customers/hubspot_service_spec.rb
+6 −0 spec/services/integrations/aggregator/invoices/crm/create_customer_association_service_spec.rb
+6 −0 spec/services/integrations/aggregator/subscriptions/crm/create_customer_association_service_spec.rb
+11 −2 spec/services/subscriptions/activate_service_spec.rb
+14 −0 spec/services/subscriptions/billing_service_spec.rb
+23 −4 spec/services/subscriptions/create_service_spec.rb
+12 −0 spec/services/subscriptions/free_trial_billing_service_spec.rb
+13 −0 spec/services/subscriptions/terminate_service_spec.rb
+16 −0 spec/services/subscriptions/update_service_spec.rb
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.15.1
image: getlago/api:v1.15.2
restart: unless-stopped
depends_on:
- db
- redis
command: ['./scripts/start.sh']
command: ["./scripts/start.sh"]
healthcheck:
test: curl -f http://localhost:3000/health || exit 1
interval: 10s
Expand Down Expand Up @@ -91,7 +91,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.15.1
image: getlago/front:v1.15.2
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 @@ -130,14 +130,14 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.15.1
image: getlago/api:v1.15.2
restart: unless-stopped
depends_on:
api:
condition: service_healthy
command: ['./scripts/start.worker.sh']
command: ["./scripts/start.worker.sh"]
healthcheck:
test: ['CMD-SHELL', 'bundle exec sidekiqmon | grep $(hostname) || exit 1']
test: ["CMD-SHELL", "bundle exec sidekiqmon | grep $(hostname) || exit 1"]
environment:
- LAGO_API_URL=${LAGO_API_URL:-http://localhost:3000}
- DATABASE_URL=postgresql://${POSTGRES_USER:-lago}:${POSTGRES_PASSWORD:-changeme}@${POSTGRES_HOST:-db}:${POSTGRES_PORT:-5432}/${POSTGRES_DB:-lago}?search_path=${POSTGRES_SCHEMA:-public}
Expand Down Expand Up @@ -178,7 +178,7 @@ services:
# It is recommendend if you have a high usage of events to not impact the other Sidekiq Jobs.
#api-events-worker:
# container_name: lago-events-worker
# image: getlago/api:v1.15.1
# image: getlago/api:v1.15.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -221,7 +221,7 @@ services:
# It is recommended if you have a high usage of invoices being created to not impact the other Sidekiq Jobs.
#api-pdfs-worker:
# container_name: lago-pdfs-worker
# image: getlago/api:v1.15.1
# image: getlago/api:v1.15.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -262,12 +262,12 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.15.1
image: getlago/api:v1.15.2
restart: unless-stopped
depends_on:
api:
condition: service_healthy
command: ['./scripts/start.clock.sh']
command: ["./scripts/start.clock.sh"]
environment:
- LAGO_API_URL=${LAGO_API_URL:-http://localhost:3000}
- DATABASE_URL=postgresql://${POSTGRES_USER:-lago}:${POSTGRES_PASSWORD:-changeme}@${POSTGRES_HOST:-db}:${POSTGRES_PORT:-5432}/${POSTGRES_DB:-lago}?search_path=${POSTGRES_SCHEMA:-public}
Expand Down Expand Up @@ -296,7 +296,7 @@ services:
depends_on:
- db
- redis
command: ['./scripts/start.migrate.sh']
command: ["./scripts/start.migrate.sh"]
volumes:
- lago_storage_data:/app/storage
environment:
Expand Down

0 comments on commit 46d218b

Please sign in to comment.