Skip to content

Commit

Permalink
misc(version): bump to v0.36.0-beta (getlago#246)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeremy Denquin <[email protected]>
  • Loading branch information
jdenquin and jdenquin authored Jun 8, 2023
1 parent 81b2c11 commit 754b2f3
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 114 files
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.35.0-beta
image: getlago/api:v0.36.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.35.0-beta
image: getlago/front:v0.36.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.35.0-beta
image: getlago/api:v0.36.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.35.0-beta
image: getlago/api:v0.36.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 50 files
+1 −1 Dockerfile
+12 −18 cypress/e2e/t4-create-plan.cy.ts
+12 −3 cypress/e2e/t6-edit-plan.cy.ts
+1 −0 cypress/tsconfig.json
+59 −9 ditto/base.json
+9 −0 ditto/config.yml
+4 −0 ditto/de.json
+4 −0 ditto/fr.json
+9 −0 ditto/index.js
+4 −0 ditto/nb.json
+25 −24 package.json
+1 −1 src/components/creditNote/CreditNoteFormCalculation.tsx
+28 −1 src/components/customerPortal/PortalCustomerInfos.tsx
+1 −1 src/components/customers/AddCouponToCustomerDialog.tsx
+38 −19 src/components/customers/AddCustomerDrawer.tsx
+1 −10 src/components/customers/CustomerCoupons.tsx
+19 −11 src/components/customers/CustomerMainInfos.tsx
+8 −6 src/components/customers/subscriptions/AddSubscriptionDrawer.tsx
+3 −1 src/components/designSystem/Dialog.tsx
+1 −1 src/components/designSystem/Drawer.tsx
+10 −0 src/components/designSystem/Typography.tsx
+8 −0 src/components/developers/EditWebhookDialog.tsx
+5 −3 src/components/form/ButtonSelector/ButtonSelector.tsx
+1 −1 src/components/form/ButtonSelector/TabButton.tsx
+1 −4 src/components/form/TextInput/TextInput.tsx
+25 −3 src/components/invoices/InvoiceCustomerInfos.tsx
+179 −100 src/components/plans/ChargeAccordion.tsx
+199 −0 src/components/plans/ChargeOptionsAccordion.tsx
+55 −353 src/components/plans/ChargesSection.tsx
+21 −19 src/components/plans/FixedFeeSection.tsx
+10 −0 src/components/settings/EditOrganizationInformationsDialog.tsx
+158 −0 src/components/settings/integrations/AddAdyenDialog.tsx
+55 −0 src/components/settings/integrations/DeleteAdyenIntegrationDialog.tsx
+9 −0 src/core/router/SettingRoutes.tsx
+4 −4 src/core/router/utils.tsx
+11 −1 src/formValidation/feesSchema.ts
+1,127 −916 src/generated/graphql.tsx
+1 −0 src/hooks/useCreateEditCustomer.ts
+7 −10 src/pages/CreateCreditNote.tsx
+34 −4 src/pages/CreateInvoice.tsx
+28 −28 src/pages/CreatePlan.tsx
+1 −1 src/pages/CreditNoteDetails.tsx
+23 −12 src/pages/CustomerDetails.tsx
+23 −14 src/pages/auth/Login.tsx
+5 −4 src/pages/developers/WebhookLogs.tsx
+292 −0 src/pages/settings/AdyenIntegration.tsx
+46 −4 src/pages/settings/Integrations.tsx
+11 −2 src/pages/settings/OrganizationInformations.tsx
+1 −0 src/public/images/adyen.svg
+1,038 −1,127 yarn.lock

0 comments on commit 754b2f3

Please sign in to comment.