Skip to content

Commit

Permalink
Merge pull request #295 from getlago/bump_version
Browse files Browse the repository at this point in the history
misc: Bump version to v0.51.1-beta
  • Loading branch information
rsempe authored Nov 6, 2023
2 parents a2a2ff9 + d25d4cf commit 1114717
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 28 files
+1 −0 app/controllers/api/v1/organizations_controller.rb
+1 −0 app/graphql/types/organization_type.rb
+1 −0 app/graphql/types/organizations/update_organization_input.rb
+0 −1 app/models/group_property.rb
+2 −0 app/models/organization.rb
+1 −2 app/serializers/v1/organization_serializer.rb
+5 −1 app/services/billable_metrics/aggregations/recurring_count_service.rb
+5 −1 app/services/billable_metrics/prorated_aggregations/base_service.rb
+2 −1 app/services/organizations/update_service.rb
+1 −1 app/services/plans/override_service.rb
+1 −0 app/services/subscriptions/create_service.rb
+1 −0 app/services/subscriptions/update_service.rb
+7 −0 db/migrate/20231101080314_add_default_currency_to_organizations.rb
+14 −0 db/migrate/20231106145424_delete_versions_for_group_properties.rb
+2 −1 db/schema.rb
+2 −0 schema.graphql
+30 −0 schema.json
+1 −0 spec/factories/organizations.rb
+3 −0 spec/graphql/mutations/organizations/update_spec.rb
+41 −0 spec/graphql/types/organization_type_spec.rb
+29 −0 spec/graphql/types/organizations/update_organization_input_spec.rb
+2 −0 spec/models/organization_spec.rb
+2 −0 spec/requests/api/v1/organizations_spec.rb
+1 −0 spec/serializers/v1/organization_serializer_spec.rb
+9 −9 spec/services/billable_metrics/aggregations/recurring_count_service_spec.rb
+2 −0 spec/services/organizations/update_service_spec.rb
+24 −0 spec/services/subscriptions/create_service_spec.rb
+18 −0 spec/services/subscriptions/update_service_spec.rb
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:

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

front:
container_name: lago-front
image: getlago/front:v0.51.0-beta
image: getlago/front:v0.51.1-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 @@ -120,7 +120,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.51.0-beta
image: getlago/api:v0.51.1-beta
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -163,7 +163,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:v0.49.1-beta
# image: getlago/api:v0.51.1-beta
# restart: unless-stopped
# depends_on:
# - api
Expand Down Expand Up @@ -200,7 +200,7 @@ services:

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

0 comments on commit 1114717

Please sign in to comment.