Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rsempe committed May 12, 2023
1 parent aa67ca9 commit 912581f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 42 files
+1 −0 Gemfile
+14 −13 Gemfile.lock
+36 −0 app/controllers/admin/base_controller.rb
+31 −0 app/controllers/admin/organizations_controller.rb
+1 −59 app/controllers/api/base_controller.rb
+1 −1 app/controllers/api/v1/tax_rates_controller.rb
+64 −0 app/controllers/concerns/api_errors.rb
+3 −1 app/graphql/resolvers/tax_rates_resolver.rb
+1 −0 app/graphql/types/organization_type.rb
+2 −0 app/graphql/types/tax_rates/object.rb
+2 −0 app/graphql/types/tax_rates/update_input.rb
+8 −0 app/models/applied_tax_rate.rb
+3 −0 app/models/customer.rb
+1 −1 app/models/organization.rb
+3 −0 app/models/tax_rate.rb
+5 −0 app/queries/tax_rates_query.rb
+1 −0 app/serializers/v1/tax_rate_serializer.rb
+31 −0 app/services/admin/organizations/update_service.rb
+4 −1 app/services/tax_rates/create_service.rb
+1 −0 app/services/tax_rates/update_service.rb
+1 −1 app/views/templates/invoices/v3.slim
+1 −0 config/environments/development.rb
+1 −1 config/initializers/cors.rb
+4 −0 config/routes.rb
+14 −0 db/migrate/20230510113501_create_customers_tax_rates.rb
+7 −0 db/migrate/20230511124419_rename_customers_tax_rates_to_applied_tax_rates.rb
+13 −1 db/schema.rb
+1 −1 lib/current_context.rb
+26 −0 lib/tasks/tax_rates.rake
+20 −0 schema.graphql
+131 −0 schema.json
+8 −0 spec/factories/applied_tax_rates.rb
+1 −0 spec/factories/tax_rates.rb
+3 −1 spec/graphql/mutations/tax_rates/update_spec.rb
+9 −0 spec/models/applied_tax_rate_spec.rb
+16 −1 spec/queries/tax_rates_query_spec.rb
+1 −0 spec/rails_helper.rb
+29 −0 spec/requests/admin/base_spec.rb
+29 −0 spec/requests/admin/organizations_spec.rb
+5 −1 spec/requests/api/v1/tax_rates_spec.rb
+39 −0 spec/services/admin/organizations/update_service_spec.rb
+30 −0 spec/support/admin_helper.rb
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v0.32.0-beta
image: getlago/api:v0.33.0-beta
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -78,7 +78,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.32.0-beta
image: getlago/front:v0.33.0-beta
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 @@ -116,7 +116,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.32.0-beta
image: getlago/api:v0.33.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -154,7 +154,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.32.0-beta
image: getlago/api:v0.33.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down

0 comments on commit 912581f

Please sign in to comment.