Skip to content

Commit

Permalink
Merge pull request #290 from getlago/bump-version
Browse files Browse the repository at this point in the history
misc: Bump version to 0.50.0-beta
  • Loading branch information
rsempe authored Oct 17, 2023
2 parents b83d29a + 1dc1210 commit 54d2b93
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 147 files
8 changes: 4 additions & 4 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.49.1-beta
image: getlago/api:v0.50.0-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.49.1-beta
image: getlago/front:v0.50.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 @@ -120,7 +120,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.49.1-beta
image: getlago/api:v0.50.0-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.49.1-beta
image: getlago/api:v0.50.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 89 files
+1 −1 .github/workflows/cypress.yml
+2 −0 cypress.config.ts
+3 −3 cypress/e2e/10-resources/t40-create-plan.cy.ts
+13 −4 cypress/e2e/10-resources/t50-edit-plan.cy.ts
+39 −65 cypress/e2e/t10-add-subscription.cy.ts
+2 −2 cypress/support/reusableConstants.ts
+69 −38 ditto/base.json
+8 −0 ditto/config.yml
+57 −0 ditto/es.json
+12 −2 ditto/index.js
+57 −0 ditto/sv.json
+1 −0 package.json
+1 −1 scripts/MergeTranslationFiles.js
+68 −0 src/components/SkeletonDetailsPage.tsx
+9 −2 src/components/customerPortal/PortalInvoicesList.tsx
+4 −0 src/components/customers/CustomerInvoicesList.tsx
+3 −3 src/components/customers/CustomerInvoicesTab.tsx
+0 −425 src/components/customers/subscriptions/AddSubscriptionDrawer.tsx
+13 −24 src/components/customers/subscriptions/CustomerSubscriptionsList.tsx
+0 −233 src/components/customers/subscriptions/EditCustomerSubscriptionDrawer.tsx
+75 −82 src/components/customers/subscriptions/SubscriptionItem.tsx
+155 −142 src/components/customers/subscriptions/SubscriptionLine.tsx
+17 −10 src/components/customers/subscriptions/TerminateCustomerSubscriptionDialog.tsx
+2 −2 src/components/designSystem/Avatar.tsx
+9 −5 src/components/designSystem/Selector.tsx
+24 −2 src/components/designSystem/Status.tsx
+2 −2 src/components/form/ComboBox/ComboBoxInput.tsx
+1 −1 src/components/form/DatePicker/DatePicker.tsx
+4 −0 src/components/invoices/EditInvoicePaymentStatusDialog.tsx
+71 −2 src/components/invoices/InvoiceCustomerInfos.tsx
+10 −3 src/components/invoices/InvoiceDetailsTable.tsx
+57 −4 src/components/invoices/InvoiceListItem.tsx
+110 −0 src/components/invoices/VoidInvoiceDialog.tsx
+66 −52 src/components/plans/ChargeAccordion.tsx
+477 −469 src/components/plans/ChargePercentage.tsx
+112 −91 src/components/plans/ChargesSection.tsx
+16 −4 src/components/plans/DeletePlanDialog.tsx
+28 −14 src/components/plans/FixedFeeSection.tsx
+234 −230 src/components/plans/GraduatedChargeTable.tsx
+212 −208 src/components/plans/GraduatedPercentageChargeTable.tsx
+124 −120 src/components/plans/PackageCharge.tsx
+16 −11 src/components/plans/PlanItem.tsx
+30 −17 src/components/plans/PlanSettingsSection.tsx
+195 −192 src/components/plans/VolumeChargeTable.tsx
+1 −1 src/components/plans/__tests__/ChargeAccordion.test.tsx
+79 −0 src/components/plans/details/PlanDetailsChargeTableDisplay.tsx
+202 −0 src/components/plans/details/PlanDetailsChargeWrapperSwitch.tsx
+155 −0 src/components/plans/details/PlanDetailsChargesSection.tsx
+169 −0 src/components/plans/details/PlanDetailsChargesSectionAccordion.tsx
+75 −0 src/components/plans/details/PlanDetailsFixedFeeAccordion.tsx
+112 −0 src/components/plans/details/PlanDetailsOverview.tsx
+189 −0 src/components/plans/details/PlanSubscriptionList.tsx
+173 −0 src/components/plans/details/PlanSubscriptionListItem.tsx
+62 −0 src/components/subscriptions/SubscriptionDetailsOverview.tsx
+145 −0 src/components/subscriptions/SubscriptionInformations.tsx
+4 −0 src/core/apolloClient/cache.ts
+53 −0 src/core/apolloClient/reactiveVars/duplicatePlanVar.ts
+1 −1 src/core/apolloClient/reactiveVars/index.ts
+0 −64 src/core/apolloClient/reactiveVars/overwritePlanVar.ts
+18 −1 src/core/constants/form.ts
+43 −1 src/core/router/ObjectsRoutes.tsx
+2 −1 src/core/router/index.tsx
+2 −2 src/core/router/utils.tsx
+23 −0 src/core/serializers/getPropertyShape.ts
+2 −0 src/core/translations/documentLocales.ts
+2 −0 src/core/translations/types.ts
+632 −141 src/generated/graphql.tsx
+54 −8 src/hooks/__tests__/fixtures.ts
+156 −155 src/hooks/customer/useAddSubscription.tsx
+37 −50 src/hooks/plans/usePlanForm.tsx
+1 −1 src/hooks/useDebouncedSearch.ts
+116 −77 src/layouts/CustomerInvoiceDetails.tsx
+8 −0 src/layouts/SideNavLayout.tsx
+33 −48 src/pages/CreatePlan.tsx
+931 −0 src/pages/CreateSubscription.tsx
+15 −32 src/pages/CustomerDetails.tsx
+4 −4 src/pages/CustomerDraftInvoicesList.tsx
+27 −20 src/pages/InvoiceCreditNoteList.tsx
+16 −0 src/pages/InvoicesList.tsx
+254 −0 src/pages/PlanDetails.tsx
+12 −4 src/pages/PlansList.tsx
+283 −0 src/pages/SubscriptionDetails.tsx
+6 −0 src/pages/__devOnly/DesignSystem.tsx
+24 −0 src/pages/settings/EmailScenarioConfig.tsx
+168 −0 src/public/images/maneki/thinking.svg
+1 −0 src/styles/designSystem/Card.tsx
+34 −0 src/styles/detailsPage.tsx
+3 −3 src/styles/muiTheme.ts
+93 −0 yarn.lock

0 comments on commit 54d2b93

Please sign in to comment.