Skip to content

Commit

Permalink
Bump version to v0.19.0-alpha (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet authored Dec 19, 2022
1 parent 2303a42 commit 1419be2
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 110 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.18.0-alpha
image: getlago/api-arm64v8:v0.19.0-alpha
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -72,7 +72,7 @@ services:

front:
container_name: lago-front
image: getlago/front-arm64v8:v0.18.0-alpha
image: getlago/front-arm64v8:v0.19.0-alpha
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 @@ -109,7 +109,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api-arm64v8:v0.18.0-alpha
image: getlago/api-arm64v8:v0.19.0-alpha
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -145,7 +145,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api-arm64v8:v0.18.0-alpha
image: getlago/api-arm64v8:v0.19.0-alpha
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.18.0-alpha
image: getlago/api:v0.19.0-alpha
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -76,7 +76,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.18.0-alpha
image: getlago/front:v0.19.0-alpha
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 @@ -113,7 +113,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.18.0-alpha
image: getlago/api:v0.19.0-alpha
restart: unless-stopped
depends_on:
- api
Expand Down Expand Up @@ -150,7 +150,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.18.0-alpha
image: getlago/api:v0.19.0-alpha
restart: unless-stopped
depends_on:
- api
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 74 files
+76 −3 cypress/e2e/t4-create-plan.cy.ts
+10 −10 cypress/e2e/t5-add-subscription.cy.ts
+5 −5 cypress/e2e/t6-edit-plan.cy.ts
+166 −4 ditto/base.json
+33 −22 ditto/config.yml
+12 −0 ditto/index.js
+12 −12 package.json
+2 −0 scripts/InspectTranslationKeys.js
+107 −0 src/components/TimezoneDate.tsx
+10 −0 src/components/UserIdentifier.tsx
+3 −2 src/components/addOns/AddOnItem.tsx
+3 −4 src/components/billableMetrics/BillableMetricItem.tsx
+5 −3 src/components/coupons/CouponCodeSnippet.tsx
+6 −5 src/components/coupons/CouponItem.tsx
+8 −4 src/components/customers/AddCouponToCustomerDialog.tsx
+32 −1 src/components/customers/AddCustomerDrawer.tsx
+5 −6 src/components/customers/CustomerAddOns.tsx
+94 −84 src/components/customers/CustomerCoupons.tsx
+4 −0 src/components/customers/CustomerCreditNotesList.tsx
+23 −4 src/components/customers/CustomerInvoicesList.tsx
+3 −4 src/components/customers/CustomerItem.tsx
+15 −1 src/components/customers/CustomerMainInfos.tsx
+31 −5 src/components/customers/creditNotes/CreditNotesList.tsx
+53 −14 src/components/customers/subscriptions/AddSubscriptionDrawer.tsx
+73 −66 src/components/customers/subscriptions/CustomerSubscriptionsList.tsx
+4 −4 src/components/customers/subscriptions/EditCustomerSubscriptionDrawer.tsx
+12 −7 src/components/customers/subscriptions/SubscriptionItem.tsx
+5 −3 src/components/customers/subscriptions/SubscriptionLine.tsx
+18 −3 src/components/customers/usage/CustomerUsage.tsx
+89 −81 src/components/customers/usage/CustomerUsageDetailDrawer.tsx
+46 −16 src/components/customers/usage/UsageItem.tsx
+3 −2 src/components/debugger/EventItem.tsx
+1 −1 src/components/designSystem/Table/Table.tsx
+13 −3 src/components/designSystem/Tooltip.tsx
+2 −0 src/components/designSystem/Typography.tsx
+6 −4 src/components/form/DatePicker/DatePicker.tsx
+16 −7 src/components/invoices/InvoiceCustomerInfos.tsx
+1 −1 src/components/invoices/InvoiceDetailsTable.tsx
+6 −0 src/components/plans/ChargePercentage.tsx
+8 −1 src/components/plans/GraduatedChargeTable.tsx
+3 −2 src/components/plans/PlanItem.tsx
+8 −1 src/components/plans/VolumeChargeTable.tsx
+121 −0 src/components/settings/EditOrganizationTimezoneDialog.tsx
+3 −3 src/components/wallets/AddWalletToCustomerDialog.tsx
+4 −1 src/components/wallets/CustomerWalletList.tsx
+4 −4 src/components/wallets/UpdateCustomerWalletDialog.tsx
+34 −19 src/components/wallets/WalletAccordion.tsx
+20 −7 src/components/wallets/WalletTransactionList.tsx
+17 −1 src/core/apolloClient/cache.ts
+2 −2 src/core/apolloClient/graphqlResolvers.tsx
+16 −1 src/core/apolloClient/reactiveVars/currentUserInfosVar.ts
+6 −1 src/core/serializers/serializePlanInput.ts
+562 −0 src/core/timezone/config.ts
+2 −0 src/core/timezone/index.ts
+19 −0 src/core/timezone/utils.ts
+143 −70 src/generated/graphql.tsx
+7 −7 src/hooks/customer/useAddSubscription.tsx
+6 −5 src/hooks/useCreateEditCoupon.ts
+3 −0 src/hooks/useCreateEditCustomer.ts
+32 −0 src/hooks/useOrganizationTimezone.ts
+14 −0 src/layouts/SideNavLayout.tsx
+47 −27 src/pages/CreateCoupon.tsx
+18 −7 src/pages/CreditNoteDetails.tsx
+29 −4 src/pages/CustomerDetails.tsx
+14 −4 src/pages/InvoiceCreditNoteList.tsx
+2 −2 src/pages/InvoiceOverview.tsx
+12 −10 src/pages/developers/ApiKeys.tsx
+13 −6 src/pages/developers/Debugger.tsx
+4 −4 src/pages/developers/Webhook.tsx
+10 −0 src/pages/settings/Integrations.tsx
+176 −211 src/pages/settings/OrganizationInformations.tsx
+1 −0 src/public/images/airbyte.svg
+0 −1 src/styles/muiTheme.ts
+143 −119 yarn.lock

0 comments on commit 1419be2

Please sign in to comment.