Skip to content

Commit

Permalink
Merge pull request #304 from getlago/bump-to-0-53-1
Browse files Browse the repository at this point in the history
misc: bump version to 0.53.1
  • Loading branch information
lovrocolic authored Dec 21, 2023
2 parents b60c82b + 06b0f9d commit d124dcf
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 165 files
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.53.0-beta
image: getlago/api:v0.53.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.53.0-beta
image: getlago/front:v0.53.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.53.0-beta
image: getlago/api:v0.53.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.53.0-beta
# image: getlago/api:v0.53.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.53.0-beta
image: getlago/api:v0.53.1-beta
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 45 files
+1 −1 .eslintignore
+0 −1 .gitignore
+2 −1 .prettierignore
+26 −22 cypress/e2e/10-resources/t10-create-taxes.cy.ts
+16 −13 cypress/e2e/10-resources/t20-create-customer.cy.ts
+47 −46 cypress/e2e/10-resources/t50-edit-plan.cy.ts
+41 −40 cypress/e2e/10-resources/t60-coupons-create-edit-apply.cy.ts
+6 −6 cypress/e2e/10-resources/t70-addon-create-edit.cy.ts
+29 −25 cypress/e2e/t10-add-subscription.cy.ts
+127 −124 cypress/e2e/t30-create-one-off-invoice.cy.ts
+18 −1 ditto/base.json
+4 −0 ditto/config.yml
+3 −0 ditto/index.js
+1 −1 src/components/addOns/AddOnCodeSnippet.tsx
+1 −1 src/components/designSystem/Dialog.tsx
+2 −0 src/components/designSystem/Icon/mapping.tsx
+3 −3 src/components/graphs/Invoices.tsx
+17 −41 src/components/graphs/__tests__/Gross.test.ts
+13 −25 src/components/graphs/__tests__/Invoices.test.ts
+17 −41 src/components/graphs/__tests__/Mrr.test.ts
+9 −21 src/components/graphs/__tests__/Usage.test.ts
+67 −104 src/components/graphs/__tests__/utils.test.ts
+5 −10 src/components/graphs/utils.ts
+156 −57 src/components/invoices/InvoiceDetailsTable.tsx
+14 −12 src/components/invoices/InvoiceDetailsTableFooter.tsx
+32 −7 src/components/invoices/InvoiceDetailsTableHeader.tsx
+0 −7 src/components/plans/ChargeAccordion.tsx
+130 −0 src/components/settings/integrations/AddLagoTaxManagementDialog.tsx
+27 −15 src/components/taxes/TaxItem.tsx
+17 −15 src/components/wallets/WalletCodeSnippet.tsx
+2 −0 src/core/constants/externalUrls.ts
+2 −1 src/core/formats/formatInvoiceItemsMap.ts
+12 −0 src/core/router/SettingRoutes.tsx
+253 −67 src/generated/graphql.tsx
+1 −0 src/hooks/customer/useAddSubscription.tsx
+9 −3 src/hooks/useCreateEditTax.ts
+0 −1 src/layouts/SideNavLayout.tsx
+6 −6 src/pages/Analytics.tsx
+11 −3 src/pages/CreateInvoice.tsx
+2 −0 src/pages/CreateTax.tsx
+40 −3 src/pages/settings/Integrations.tsx
+329 −0 src/pages/settings/LagoTaxManagementIntegration.tsx
+2 −7 src/pages/settings/TaxesSettings.tsx
+8 −0 src/public/icons/id.svg
+12 −0 src/public/images/lago-tax-management.svg

0 comments on commit d124dcf

Please sign in to comment.