Skip to content

Commit

Permalink
misc(version): bump to v1.6.2 (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdenquin authored Jul 11, 2024
1 parent 50c0bee commit 6e6a3fc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 33 files
+4 −0 app/controllers/api/v1/events_controller.rb
+1 −1 app/graphql/types/credit_notes/object.rb
+2 −0 app/graphql/types/data_exports/format_type_enum.rb
+2 −0 app/graphql/types/data_exports/status_enum.rb
+1 −1 app/graphql/types/invoices/object.rb
+2 −1 app/mailers/data_export_mailer.rb
+1 −1 app/models/credit_note.rb
+4 −0 app/models/integration_customers/base_customer.rb
+2 −2 app/models/invoice.rb
+1 −1 app/models/payment.rb
+2 −1 app/services/commitments/dates_service.rb
+81 −0 app/services/data_exports/csv/invoice_fees.rb
+7 −0 app/services/data_exports/export_resources_service.rb
+1 −1 app/services/integration_customers/create_or_update_service.rb
+1 −1 app/services/integrations/aggregator/invoices/base_service.rb
+5 −2 app/services/subscriptions/terminated_dates_service.rb
+1 −1 app/views/data_export_mailer/completed.slim
+8 −6 clock.rb
+1 −1 config/locales/en/email.yml
+2 −3 db/migrate/20240611074215_add_payment_overdue_to_invoices.rb
+1 −0 db/migrate/20240619082054_add_in_advance_charge_periodic_invoicing_reason.rb
+0 −1 db/migrate/20240701184757_add_deleted_at_to_fees.rb
+9 −0 db/migrate/20240711091155_add_fee_deleted_at_index.rb
+9 −0 db/migrate/20240711094255_add_invoice_payment_overdue_index.rb
+1 −1 db/schema.rb
+13 −13 schema.graphql
+54 −54 schema.json
+1 −1 spec/graphql/types/data_exports/object_spec.rb
+18 −0 spec/mailers/data_export_mailer_spec.rb
+27 −1 spec/requests/api/v1/events_controller_spec.rb
+240 −0 spec/services/data_exports/csv/invoice_fees_spec.rb
+30 −0 spec/services/data_exports/export_resources_service_spec.rb
+16 −0 spec/services/integration_customers/create_or_update_service_spec.rb
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v1.6.1
image: getlago/api:v1.6.2
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -91,7 +91,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.6.1
image: getlago/front:v1.6.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 @@ -131,7 +131,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.6.1
image: getlago/api:v1.6.2
restart: unless-stopped
depends_on:
api:
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.6.1
# image: getlago/api:v1.6.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -220,7 +220,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.6.1
# image: getlago/api:v1.6.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -260,7 +260,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.6.1
image: getlago/api:v1.6.2
restart: unless-stopped
depends_on:
api:
Expand Down

0 comments on commit 6e6a3fc

Please sign in to comment.