Skip to content

Commit

Permalink
chore(release): bump version to 1.20.2 (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded authored Jan 31, 2025
1 parent 6a1c26d commit 487330a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 43 files
+8 −0 .rubocop.yml
+2 −0 Guardfile
+2 −2 app/controllers/api/v1/events_controller.rb
+16 −0 app/controllers/api/v1/invoices_controller.rb
+15 −0 app/controllers/api/v1/wallet_transactions_controller.rb
+2 −7 app/graphql/mutations/adjusted_fees/create.rb
+10 −1 app/graphql/types/adjusted_fees/create_input.rb
+2 −0 app/graphql/types/invoices/object.rb
+15 −0 app/models/invoice.rb
+1 −1 app/models/payment_provider_customers/stripe_customer.rb
+94 −8 app/services/adjusted_fees/create_service.rb
+1 −0 app/services/billable_metrics/aggregations/base_service.rb
+33 −0 app/services/charges/estimate_instant/standard_service.rb
+0 −144 app/services/fees/batch_estimate_instant_pay_in_advance_service.rb
+101 −0 app/services/fees/estimate_instant/base_service.rb
+68 −0 app/services/fees/estimate_instant/batch_pay_in_advance_service.rb
+47 −0 app/services/fees/estimate_instant/pay_in_advance_service.rb
+0 −128 app/services/fees/estimate_instant_pay_in_advance_service.rb
+4 −0 app/services/fees/init_from_adjusted_charge_fee_service.rb
+29 −20 app/services/invoices/preview_context_service.rb
+1 −0 app/services/invoices/preview_service.rb
+1 −1 config/routes.rb
+8 −1 schema.graphql
+71 −1 schema.json
+1 −1 spec/factories/invoices.rb
+75 −3 spec/graphql/mutations/adjusted_fees/create_spec.rb
+16 −0 spec/graphql/types/adjusted_fees/create_input_spec.rb
+1 −1 spec/graphql/types/customers/customer_type_enum_spec.rb
+2 −0 spec/graphql/types/invoices/object_spec.rb
+9 −0 spec/graphql/types/payment_provider_customers/provider_payment_methods_enum_spec.rb
+39 −0 spec/models/invoice_spec.rb
+18 −0 spec/requests/api/v1/invoices_controller_spec.rb
+40 −0 spec/requests/api/v1/wallet_transactions_controller_spec.rb
+2 −2 spec/scenarios/invoices/adjusted_charge_fees_spec.rb
+2 −2 spec/scenarios/invoices/adjusted_subscription_fees_spec.rb
+3 −3 spec/scenarios/invoices/invoices_spec.rb
+243 −42 spec/services/adjusted_fees/create_service_spec.rb
+45 −0 spec/services/charges/estimate_instant/standard_service_spec.rb
+53 −4 spec/services/fees/estimate_instant/batch_pay_in_advance_service_spec.rb
+51 −2 spec/services/fees/estimate_instant/pay_in_advance_service_spec.rb
+36 −7 spec/services/invoices/preview_context_service_spec.rb
+212 −195 spec/services/invoices/preview_service_spec.rb
+62 −10 spec/services/payment_providers/stripe/payments/create_service_spec.rb
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ x-postgres-image: &postgres-image
x-redis-image: &redis-image
image: redis:6-alpine
x-backend-image: &backend-image
image: getlago/api:v1.20.1
image: getlago/api:v1.20.2
x-frontend-image: &frontend-image
image: getlago/front:v1.20.1
image: getlago/front:v1.20.2

x-lago-api-url: &lago-api-url
"LAGO_API_URL": ${LAGO_API_URL:-http://localhost:3000}
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 161 files

0 comments on commit 487330a

Please sign in to comment.