Skip to content

Commit

Permalink
misc: Bump version from 0.54.2 to 0.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rsempe committed Feb 5, 2024
1 parent d961560 commit 0eed017
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion api
Submodule api updated 158 files
10 changes: 5 additions & 5 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.54.2-beta
image: getlago/api:v0.55.0-beta
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -87,7 +87,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v0.54.2-beta
image: getlago/front:v0.55.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 @@ -126,7 +126,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v0.54.2-beta
image: getlago/api:v0.55.0-beta
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -170,7 +170,7 @@ services:
# It is recommendend if you have a high usage of events to not impact the other Sidekiq Jobs.
#api-events-worker:
# container_name: lago-events-worker
# image: getlago/api:v0.54.1-beta
# image: getlago/api:v0.55.0-beta
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -208,7 +208,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v0.54.2-beta
image: getlago/api:v0.55.0-beta
restart: unless-stopped
depends_on:
api:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 86 files
+37 −8 ditto/base.json
+9 −0 ditto/config.yml
+9 −0 ditto/index.js
+6 −6 package.json
+2 −2 src/components/addOns/AddOnItem.tsx
+2 −2 src/components/billableMetrics/BillableMetricItem.tsx
+2 −2 src/components/coupons/CouponItem.tsx
+9 −3 src/components/creditNote/CreditNoteFormItem.tsx
+1 −1 src/components/customers/CustomerCreditNotesList.tsx
+2 −1 src/components/customers/CustomerItem.tsx
+1 −5 src/components/customers/CustomerMainInfos.tsx
+1 −1 src/components/customers/subscriptions/SubscriptionItem.tsx
+1 −1 src/components/customers/subscriptions/SubscriptionLine.tsx
+130 −33 src/components/customers/usage/CustomerUsageDetailDrawer.tsx
+24 −3 src/components/customers/usage/UsageItem.tsx
+294 −0 src/components/customers/usage/__tests__/formatCustomerUsage.test.ts
+77 −0 src/components/customers/usage/formatCustomerUsage.ts
+1 −1 src/components/designSystem/Avatar.tsx
+3 −4 src/components/designSystem/Button.tsx
+2 −2 src/components/designSystem/Selector.tsx
+12 −0 src/components/designSystem/Typography.tsx
+6 −2 src/components/developers/WebhookLogItem.tsx
+11 −3 src/components/invoices/InvoiceCreditNotesTable.tsx
+1 −1 src/components/invoices/InvoiceCustomerInfos.tsx
+72 −0 src/components/invoices/details/DeleteAdjustedFeeDialog.tsx
+364 −0 src/components/invoices/details/EditFeeDrawer.tsx
+268 −200 src/components/invoices/details/InvoiceDetailsTable.tsx
+148 −32 src/components/invoices/details/InvoiceDetailsTableBodyLine.tsx
+45 −37 src/components/invoices/details/InvoiceDetailsTableBodyLineGraduated.tsx
+37 −27 src/components/invoices/details/InvoiceDetailsTableBodyLineGraduatedPercentage.tsx
+49 −41 src/components/invoices/details/InvoiceDetailsTableBodyLinePackage.tsx
+92 −83 src/components/invoices/details/InvoiceDetailsTableBodyLinePercentage.tsx
+46 −38 src/components/invoices/details/InvoiceDetailsTableBodyLineVolume.tsx
+193 −183 src/components/invoices/details/InvoiceDetailsTableFooter.tsx
+11 −6 src/components/invoices/details/InvoiceDetailsTableHeader.tsx
+3 −1 src/components/invoices/details/InvoiceDetailsTablePeriodLine.tsx
+159 −0 src/components/invoices/details/InvoiceFeeAdvanceDetailsTable.tsx
+163 −0 src/components/invoices/details/InvoiceFeeArrearsDetailsTable.tsx
+11 −6 src/components/plans/ChargeAccordion.tsx
+17 −35 src/components/plans/ChargeWrapperSwitch.tsx
+6 −5 src/components/plans/ChargesSection.tsx
+2 −2 src/components/plans/PlanItem.tsx
+151 −0 src/components/plans/StandardCharge.tsx
+26 −21 src/components/plans/__tests__/ChargeAccordion.test.tsx
+23 −0 src/components/plans/details/PlanDetailsChargeWrapperSwitch.tsx
+129 −10 src/components/plans/details/PlanDetailsChargesSection.tsx
+1 −66 src/components/plans/details/PlanDetailsChargesSectionAccordion.tsx
+1 −1 src/components/plans/details/PlanSubscriptionList.tsx
+12 −0 src/components/plans/types.ts
+2 −2 src/components/settings/emails/EmailSettingItem.tsx
+2 −2 src/components/settings/members/InviteItem.tsx
+1 −1 src/components/settings/members/MembershipItem.tsx
+115 −107 src/components/wallets/CustomerWalletList.tsx
+179 −62 src/components/wallets/WalletAccordion.tsx
+23 −125 src/components/wallets/WalletTransactionList.tsx
+166 −0 src/components/wallets/WalletTransactionListItem.tsx
+430 −72 src/core/formats/__tests__/fixture.ts
+12 −2 src/core/formats/__tests__/formatInvoiceItemsMap.test.ts
+71 −28 src/core/formats/formatInvoiceItemsMap.ts
+1 −0 src/core/serializers/__tests__/serializePlanInput.test.ts
+4 −2 src/core/serializers/getPropertyShape.ts
+4 −0 src/core/serializers/serializePlanInput.ts
+317 −51 src/generated/graphql.tsx
+17 −1 src/hooks/__tests__/fixtures.ts
+16 −21 src/hooks/plans/__tests__/useGraduatedChargeForm.test.tsx
+1 −0 src/hooks/plans/__tests__/useGraduatedPercentageChargeForm.test.tsx
+1 −0 src/hooks/plans/__tests__/useVolumeChargeForm.test.tsx
+3 −2 src/hooks/plans/usePlanForm.tsx
+34 −7 src/hooks/useCreateCreditNote.ts
+1 −1 src/layouts/CustomerInvoiceDetails.tsx
+3 −4 src/pages/Analytics.tsx
+2 −2 src/pages/CreateCoupon.tsx
+1 −24 src/pages/CreateCreditNote.tsx
+2 −2 src/pages/CreateInvoice.tsx
+2 −1 src/pages/CreatePlan.tsx
+2 −1 src/pages/CreateSubscription.tsx
+11 −4 src/pages/CreditNoteDetails.tsx
+16 −2 src/pages/InvoiceOverview.tsx
+23 −15 src/pages/WalletForm.tsx
+33 −0 src/pages/__devOnly/DesignSystem.tsx
+3 −3 src/pages/customerPortal/CustomerPortal.tsx
+5 −2 src/pages/developers/Webhooks.tsx
+28 −8 src/pages/settings/Integrations.tsx
+3 −3 src/pages/settings/OrganizationInformations.tsx
+17 −10 src/styles/muiTheme.ts
+138 −126 yarn.lock

0 comments on commit 0eed017

Please sign in to comment.