Skip to content

Commit

Permalink
Bump version to 1.12.2 (#413)
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded authored Sep 25, 2024
1 parent c67ef44 commit 708aca6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 44 files
+0 −13 Rakefile
+0 −36 app/controllers/graphql/api_controller.rb
+0 −67 app/controllers/graphql/base_controller.rb
+0 −30 app/controllers/graphql/customer_portal_controller.rb
+0 −1 app/controllers/graphql_controller.rb
+0 −1 app/graphql/lago_api_schema.rb
+0 −53 app/graphql/schemas/api_schema.rb
+0 −53 app/graphql/schemas/customer_portal_schema.rb
+0 −149 app/graphql/types/api/mutation_type.rb
+0 −66 app/graphql/types/api/query_type.rb
+0 −9 app/graphql/types/customer_portal/mutation_type.rb
+0 −17 app/graphql/types/customer_portal/query_type.rb
+0 −1 app/graphql/types/mutation_type.rb
+0 −1 app/graphql/types/query_type.rb
+1 −1 app/services/billable_metrics/aggregations/custom_service.rb
+3 −3 app/services/events/stores/clickhouse/unique_count_query.rb
+7 −7 app/services/events/stores/clickhouse/weighted_sum_query.rb
+45 −46 app/services/events/stores/clickhouse_store.rb
+3 −3 app/services/events/stores/postgres/unique_count_query.rb
+11 −11 app/services/events/stores/postgres/weighted_sum_query.rb
+32 −34 app/services/events/stores/postgres_store.rb
+1 −16 config/routes.rb
+0 −8,077 graphql_schemas/api.graphql
+0 −41,483 graphql_schemas/api.json
+0 −3,723 graphql_schemas/customer_portal.graphql
+0 −15,432 graphql_schemas/customer_portal.json
+1 −1 spec/graphql/concerns/authenticable_api_user_spec.rb
+1 −1 spec/graphql/concerns/authenticable_customer_portal_user_spec.rb
+1 −1 spec/graphql/concerns/can_require_permissions_spec.rb
+1 −1 spec/graphql/concerns/required_organization_spec.rb
+2 −2 spec/graphql/mutations/customer_portal/download_invoice_spec.rb
+1 −1 spec/graphql/resolvers/customer_portal/analytics/invoice_collections_resolver_spec.rb
+1 −1 spec/graphql/resolvers/customer_portal/analytics/overdue_balances_resolver_spec.rb
+2 −2 spec/graphql/resolvers/customer_portal/customer_resolver_spec.rb
+3 −3 spec/graphql/resolvers/customer_portal/invoices_resolver_spec.rb
+1 −1 spec/graphql/resolvers/customer_portal/organization_resolver_spec.rb
+0 −12 spec/graphql/schemas/api_schema_spec.rb
+0 −12 spec/graphql/schemas/customer_portal_schema_spec.rb
+1 −2 spec/rails_helper.rb
+0 −128 spec/requests/graphql/api_controller_spec.rb
+0 −34 spec/requests/graphql/customer_portal_controller_spec.rb
+0 −67 spec/support/graphql/api_helper.rb
+0 −51 spec/support/graphql/customer_portal_helper.rb
+78 −0 spec/support/graphql_helper.rb
14 changes: 7 additions & 7 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:v1.12.1
image: getlago/api:v1.12.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.12.1
image: getlago/front:v1.12.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,7 +130,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.12.1
image: getlago/api:v1.12.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.12.1
# image: getlago/api:v1.12.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.12.1
# image: getlago/api:v1.12.2
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -262,7 +262,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.12.1
image: getlago/api:v1.12.2
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -292,7 +292,7 @@ services:

migrate:
container_name: lago-migrate
image: getlago/api:v1.12.1
image: getlago/api:v1.12.2
depends_on:
- db
- redis
Expand Down
2 changes: 1 addition & 1 deletion front

0 comments on commit 708aca6

Please sign in to comment.