Skip to content

Commit

Permalink
Merge pull request #350 from getlago/bump-version
Browse files Browse the repository at this point in the history
misc: Bump version to v1.3.0
  • Loading branch information
rsempe authored May 16, 2024
2 parents 5d205fb + 27f4644 commit 74670f2
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 958 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:v1.2.1
image: getlago/api:v1.3.0
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -88,7 +88,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.2.1
image: getlago/front:v1.3.0
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 @@ -128,7 +128,7 @@ services:

api-worker:
container_name: lago-worker
image: getlago/api:v1.2.1
image: getlago/api:v1.3.0
restart: unless-stopped
depends_on:
api:
Expand Down Expand Up @@ -173,7 +173,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:v1.2.1
# image: getlago/api:v1.3.0
# restart: unless-stopped
# depends_on:
# api:
Expand Down Expand Up @@ -212,7 +212,7 @@ services:

api-clock:
container_name: lago-clock
image: getlago/api:v1.2.1
image: getlago/api:v1.3.0
restart: unless-stopped
depends_on:
api:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 80 files
+21 −3 ditto/base.json
+10 −0 ditto/config.yml
+16 −0 ditto/index.js
+1 −0 jest.config.js
+3 −2 package.json
+1 −1 renovate.json
+32 −5 scripts/InspectTranslationKeys.js
+32 −8 src/components/PremiumWarningDialog.tsx
+10 −4 src/components/addOns/AddOnItem.tsx
+15 −5 src/components/addOns/DeleteAddOnDialog.tsx
+1 −17 src/components/customers/usage/CustomerUsageDetailDrawer.tsx
+7 −1 src/components/designSystem/Accordion.tsx
+6 −1 src/components/designSystem/Chip.tsx
+14 −3 src/components/designSystem/Drawer.tsx
+4 −0 src/components/designSystem/Icon/mapping.tsx
+65 −0 src/components/details/DetailsHeader.tsx
+80 −0 src/components/details/DetailsJSONDisplay.tsx
+9 −9 src/components/details/DetailsTableDisplay.tsx
+5 −0 src/components/form/ComboBox/ComboBox.tsx
+1 −0 src/components/form/ComboBox/types.ts
+1 −1 src/components/form/DatePicker/DatePicker.tsx
+408 −0 src/components/form/JsonEditor/JsonEditor.tsx
+47 −0 src/components/form/JsonEditor/JsonEditorField.tsx
+2 −0 src/components/form/JsonEditor/index.ts
+12 −13 src/components/form/TextInput/TextInput.tsx
+14 −0 src/components/form/TextInput/__tests__/FormatValue.test.ts
+1 −0 src/components/form/index.ts
+2 −0 src/components/invoices/InvoiceCreditNotesTable.tsx
+3 −3 src/components/invoices/InvoiceListItem.tsx
+1 −1 src/components/invoices/details/EditFeeDrawer.tsx
+2 −0 src/components/invoices/details/InvoiceDetailsTable.tsx
+3 −2 src/components/invoices/details/InvoiceDetailsTableBodyLinePercentage.tsx
+18 −2 src/components/plans/ChargeAccordion.tsx
+10 −0 src/components/plans/ChargeWrapperSwitch.tsx
+75 −0 src/components/plans/CustomCharge.tsx
+107 −0 src/components/plans/EditCustomChargeDrawer.tsx
+34 −23 src/components/plans/details/PlanDetailsChargeWrapperSwitch.tsx
+138 −135 src/components/plans/details/PlanDetailsChargesSection.tsx
+16 −17 src/components/plans/details/PlanDetailsCommitmentsSection.tsx
+21 −23 src/components/plans/details/PlanDetailsFixedFeeAccordion.tsx
+20 −18 src/components/plans/details/PlanDetailsOverview.tsx
+1 −1 src/components/settings/EditDefaultCurrencyDialog.tsx
+3 −3 src/components/settings/EditNetPaymentTermDialog.tsx
+1 −1 src/components/settings/EditOrganizationInformationsDialog.tsx
+1 −1 src/components/settings/EditOrganizationInvoiceNumberingDialog.tsx
+1 −1 src/components/settings/EditOrganizationInvoiceTemplateDialog.tsx
+2 −0 src/components/settings/members/CreateInviteDialog.tsx
+47 −51 src/components/subscriptions/SubscriptionInformations.tsx
+15 −1 src/components/wallets/CustomerWalletList.tsx
+154 −0 src/components/wallets/VoidWalletDialog.tsx
+1 −0 src/components/wallets/WalletAccordion.tsx
+6 −8 src/components/wallets/WalletCodeSnippet.tsx
+0 −166 src/components/wallets/WalletTransactionListItem.tsx
+120 −0 src/components/wallets/WalletTransactionListItem/ListItem.tsx
+174 −0 src/components/wallets/WalletTransactionListItem/__tests__/index.test.tsx
+140 −0 src/components/wallets/WalletTransactionListItem/index.tsx
+5 −5 src/components/wallets/utils.ts
+9 −0 src/core/router/ObjectsRoutes.tsx
+94 −7 src/core/serializers/__tests__/serializePlanInput.test.ts
+1 −0 src/core/serializers/getPropertyShape.ts
+5 −2 src/core/serializers/serializePlanInput.ts
+9 −0 src/formValidation/chargeSchema.ts
+655 −236 src/generated/graphql.tsx
+4 −4 src/hooks/useCreateEditAddOn.ts
+1 −1 src/hooks/useOrganizationInfos.ts
+1 −1 src/layouts/CustomerInvoiceDetails.tsx
+0 −31 src/layouts/SideNavLayout.tsx
+233 −0 src/pages/AddOnDetails.tsx
+9 −5 src/pages/CreateAddOn.tsx
+23 −4 src/pages/CreateBillableMetric.tsx
+2 −0 src/pages/CreditNoteDetails.tsx
+1 −1 src/pages/InvoiceCreditNoteList.tsx
+25 −26 src/pages/WalletForm.tsx
+44 −1 src/pages/__devOnly/DesignSystem.tsx
+4 −4 src/pages/settings/InvoiceSettings.tsx
+5 −5 src/pages/settings/OrganizationInformations.tsx
+7 −0 src/public/icons/link.svg
+7 −0 src/public/icons/schema.svg
+24 −2 src/styles/detailsPage.tsx
+128 −97 yarn.lock

0 comments on commit 74670f2

Please sign in to comment.