Skip to content

Commit

Permalink
misc(docker): bump to v0.22.0-beta (getlago#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdenquin authored Feb 9, 2023
1 parent 370e0ea commit da29b4a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 200 files
8 changes: 4 additions & 4 deletions docker-compose.arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:

api:
container_name: lago-api
image: getlago/api-arm64v8:v0.21.0-beta
image: getlago/api-arm64v8:v0.22.0-beta
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -73,7 +73,7 @@ services:

front:
container_name: lago-front
image: getlago/front-arm64v8:v0.21.0-beta
image: getlago/front-arm64v8:v0.22.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 @@ -110,7 +110,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api-arm64v8:v0.21.0-beta
image: getlago/api-arm64v8:v0.22.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -146,7 +146,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api-arm64v8:v0.21.0-beta
image: getlago/api-arm64v8:v0.22.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:

api:
container_name: lago-api
image: getlago/api:v0.21.0-beta
image: getlago/api:v0.22.0-beta
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -77,7 +77,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.21.0-beta
image: getlago/front:v0.22.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 @@ -114,7 +114,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.21.0-beta
image: getlago/api:v0.22.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -151,7 +151,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.21.0-beta
image: getlago/api:v0.22.0-beta
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 54 files
+0 −4 PULL_REQUEST_TEMPLATE.md
+48 −0 cypress/e2e/t4-create-plan.cy.ts
+87 −0 cypress/e2e/t7-coupons-create-edit-apply.cy.ts
+18 −5 ditto/base.json
+6 −0 ditto/config.yml
+6 −0 ditto/index.js
+27 −26 package.json
+5 −4 src/components/addOns/AddOnItem.tsx
+136 −0 src/components/coupons/AddPlanToCouponDialog.tsx
+29 −4 src/components/coupons/CouponCodeSnippet.tsx
+5 −5 src/components/coupons/CouponItem.tsx
+4 −0 src/components/customers/AddAddOnToCustomerDialog.tsx
+61 −13 src/components/customers/AddCouponToCustomerDialog.tsx
+2 −2 src/components/customers/AddCustomerDrawer.tsx
+1 −1 src/components/customers/CustomerCoupons.tsx
+1 −1 src/components/customers/CustomerCreditNotesList.tsx
+32 −27 src/components/customers/CustomerInvoicesTab.tsx
+11 −19 src/components/customers/CustomerItem.tsx
+1 −2 src/components/customers/CustomerMainInfos.tsx
+5 −1 src/components/designSystem/Alert.tsx
+1 −1 src/components/designSystem/Chip.tsx
+1 −0 src/components/form/Checkbox/Checkbox.tsx
+10 −3 src/components/invoices/InvoiceCreditNotesTable.tsx
+17 −6 src/components/invoices/InvoiceCustomerInfos.tsx
+31 −16 src/components/plans/AddChargeDialog.tsx
+6 −4 src/components/plans/ChargePercentage.tsx
+39 −4 src/components/plans/DeletePlanDialog.tsx
+12 −19 src/components/plans/PlanItem.tsx
+1 −1 src/components/settings/EditOrganizationInformationsDialog.tsx
+2 −9 src/components/wallets/CustomerWalletList.tsx
+4 −2 src/components/wallets/TerminateCustomerWalletDialog.tsx
+1 −0 src/core/apolloClient/graphqlResolvers.tsx
+3 −0 src/externalUrls.ts
+199 −83 src/generated/graphql.tsx
+2 −2 src/hooks/useCreateCreditNote.ts
+1 −0 src/hooks/useCreateEditAddOn.ts
+40 −6 src/hooks/useCreateEditCoupon.ts
+0 −2 src/hooks/useCreateEditCustomer.ts
+1 −1 src/hooks/useDebouncedSearch.ts
+1 −1 src/layouts/CustomerInvoiceDetails.tsx
+1 −1 src/pages/CouponsList.tsx
+4 −1 src/pages/CreateAddOn.tsx
+2 −4 src/pages/CreateBillableMetric.tsx
+159 −19 src/pages/CreateCoupon.tsx
+18 −11 src/pages/CreatePlan.tsx
+34 −16 src/pages/CreditNoteDetails.tsx
+14 −22 src/pages/CustomerDetails.tsx
+9 −10 src/pages/InvoiceCreditNoteList.tsx
+12 −1 src/pages/settings/Integrations.tsx
+3 −2 src/pages/settings/OrganizationInformations.tsx
+0 −0 src/public/countryCodes.json
+1 −0 src/public/images/oso.svg
+6 −6 src/styles/muiTheme.ts
+1,032 −989 yarn.lock

0 comments on commit da29b4a

Please sign in to comment.