Skip to content

Commit

Permalink
misc(version): bump to 0.34.0-beta (#240)
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 May 26, 2023
1 parent 70b1ef3 commit b77e668
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 234 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.33.0-beta
image: getlago/api:v0.34.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.33.0-beta
image: getlago/front:v0.34.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.33.0-beta
image: getlago/api:v0.34.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.33.0-beta
image: getlago/api:v0.34.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 58 files
+23 −24 package.json
+1 −3 src/components/ErrorBoundary.tsx
+1 −1 src/components/RouteWrapper.tsx
+76 −74 src/components/creditNote/CreditNoteFormCalculation.tsx
+1 −1 src/components/creditNote/types.ts
+16 −13 src/components/customers/AddCouponToCustomerDialog.tsx
+1 −1 src/components/customers/CustomerSettings.tsx
+4 −7 src/components/customers/creditNotes/CreditNotesList.tsx
+3 −3 src/components/customers/creditNotes/VoidCreditNoteDialog.tsx
+2 −2 src/components/customers/usage/UsageItem.tsx
+2 −2 src/components/designSystem/Button.tsx
+1 −1 src/components/form/ComboBox/ComboBoxPopperFactory.tsx
+11 −16 src/components/invoices/InvoiceCreditNotesTable.tsx
+2 −3 src/components/invoices/InvoiceDetailsTable.tsx
+18 −9 src/components/invoices/InvoiceDetailsTableFooter.tsx
+9 −9 src/components/plans/ChargeAccordion.tsx
+4 −4 src/components/plans/ChargesSection.tsx
+1 −1 src/components/plans/FixedFeeSection.tsx
+2 −1 src/components/plans/PlanSettingsSection.tsx
+0 −43 src/components/taxRates/TaxRateCodeSnippet.tsx
+0 −3 src/components/taxRates/types.ts
+20 −20 src/components/taxes/DeleteTaxDialog.tsx
+43 −0 src/components/taxes/TaxCodeSnippet.tsx
+15 −15 src/components/taxes/TaxItem.tsx
+3 −0 src/components/taxes/types.ts
+1 −1 src/core/apolloClient/cache.ts
+4 −0 src/core/formErrors.ts
+6 −7 src/core/router/AuthRoutes.tsx
+2 −3 src/core/router/CustomerPortalRoutes.tsx
+13 −10 src/core/router/CustomerRoutes.tsx
+11 −8 src/core/router/DevelopperRoutes.tsx
+21 −18 src/core/router/ObjectsRoutes.tsx
+12 −13 src/core/router/SettingRoutes.tsx
+7 −6 src/core/router/index.tsx
+24 −0 src/core/router/utils.tsx
+7 −7 src/core/serializers/__tests__/serializeCreditNoteInput.test.ts
+2 −2 src/core/timezone/config.ts
+45 −40 src/formValidation/chargeSchema.ts
+3 −3 src/formValidation/feesSchema.ts
+241 −207 src/generated/graphql.tsx
+1 −1 src/hooks/core/useLocationHistory.ts
+3 −3 src/hooks/customer/useAddSubscription.tsx
+1 −4 src/hooks/plans/usePlanForm.tsx
+6 −6 src/hooks/useCreateCreditNote.ts
+1 −4 src/hooks/useCreateEditAddOn.ts
+1 −5 src/hooks/useCreateEditBillableMetric.ts
+1 −4 src/hooks/useCreateEditCoupon.ts
+34 −37 src/hooks/useCreateEditTax.ts
+2 −1 src/pages/CreateAddOn.tsx
+3 −2 src/pages/CreateBillableMetric.tsx
+26 −21 src/pages/CreateCoupon.tsx
+6 −3 src/pages/CreateCreditNote.tsx
+7 −2 src/pages/CreateInvoice.tsx
+4 −3 src/pages/CreatePlan.tsx
+16 −19 src/pages/CreateTax.tsx
+19 −26 src/pages/CreditNoteDetails.tsx
+16 −20 src/pages/settings/TaxesSettings.tsx
+556 −528 yarn.lock

0 comments on commit b77e668

Please sign in to comment.