Skip to content

Commit

Permalink
misc: Bump version to 1.2.0 (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-pochet committed Apr 19, 2024
1 parent 6732660 commit 2825b30
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 182 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.1.2
image: getlago/api:v1.2.0
restart: unless-stopped
depends_on:
- db
Expand Down Expand Up @@ -87,7 +87,7 @@ services:

front:
container_name: lago-front
image: getlago/front:v1.1.2
image: getlago/front:v1.2.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 @@ -126,7 +126,7 @@ services:

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

api-clock:
container_name: lago-clock
image: getlago/api:v1.1.2
image: getlago/api:v1.2.0
restart: unless-stopped
depends_on:
api:
Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 73 files
+20 −17 ditto/base.json
+0 −1 jest.config.js
+0 −1 package.json
+28 −150 src/components/billableMetrics/BillableMetricCodeSnippet.tsx
+0 −64 src/components/billableMetrics/EditBillableMetricGroupDialog.tsx
+98 −81 src/components/customers/usage/CustomerUsageDetailDrawer.tsx
+17 −12 src/components/customers/usage/UsageItem.tsx
+0 −294 src/components/customers/usage/__tests__/formatCustomerUsage.test.ts
+0 −77 src/components/customers/usage/formatCustomerUsage.ts
+3 −0 src/components/designSystem/Accordion.tsx
+4 −1 src/components/designSystem/Button.tsx
+0 −320 src/components/form/JsonEditor/JsonEditor.tsx
+0 −48 src/components/form/JsonEditor/JsonEditorField.tsx
+0 −2 src/components/form/JsonEditor/index.ts
+54 −18 src/components/form/MultipleComboBox/MultipleComboBox.tsx
+3 −4 src/components/form/MultipleComboBox/MultipleComboBoxItem.tsx
+7 −2 src/components/form/MultipleComboBox/MultipleComboBoxPopperFactory.tsx
+3 −1 src/components/form/MultipleComboBox/types.ts
+1 −1 src/components/form/index.ts
+29 −76 src/components/invoices/InvoiceCreditNotesTable.tsx
+1 −1 src/components/invoices/details/EditFeeDrawer.tsx
+7 −9 src/components/invoices/details/InvoiceDetailsTable.tsx
+329 −339 src/components/plans/ChargeAccordion.tsx
+204 −0 src/components/plans/ChargeFilter.tsx
+28 −35 src/components/plans/ChargePercentage.tsx
+16 −13 src/components/plans/ChargeWrapperSwitch.tsx
+8 −12 src/components/plans/ChargesSection.tsx
+3 −0 src/components/plans/CommitmentsSection.tsx
+3 −0 src/components/plans/FixedFeeSection.tsx
+9 −23 src/components/plans/GraduatedChargeTable.tsx
+9 −23 src/components/plans/GraduatedPercentageChargeTable.tsx
+7 −18 src/components/plans/PackageCharge.tsx
+7 −16 src/components/plans/StandardCharge.tsx
+9 −22 src/components/plans/VolumeChargeTable.tsx
+62 −62 src/components/plans/__tests__/ChargeAccordion.test.tsx
+26 −0 src/components/plans/__tests__/utils.test.ts
+2 −8 src/components/plans/details/PlanDetailsChargeWrapperSwitch.tsx
+1 −1 src/components/plans/details/PlanDetailsChargesSection.tsx
+8 −17 src/components/plans/details/PlanDetailsChargesSectionAccordion.tsx
+9 −7 src/components/plans/types.ts
+5 −0 src/components/plans/utils.ts
+5 −1 src/core/constants/form.ts
+59 −260 src/core/formats/__tests__/fixture.ts
+94 −0 src/core/formats/__tests__/formatInvoiceItemsMap.test.ts
+76 −25 src/core/formats/formatInvoiceItemsMap.ts
+135 −7 src/core/serializers/__tests__/serializePlanInput.test.ts
+34 −14 src/core/serializers/serializePlanInput.ts
+0 −158 src/core/utils/BMGroupUtils.ts
+0 −534 src/core/utils/__tests__/BMGroupUtils.test.ts
+74 −28 src/formValidation/__tests__/chargeSchemaGraduated.test.ts
+66 −25 src/formValidation/__tests__/chargeSchemaGraduatedPercentage.test.ts
+58 −22 src/formValidation/__tests__/chargeSchemaPackage.test.ts
+122 −46 src/formValidation/__tests__/chargeSchemaPercentage.test.ts
+34 −13 src/formValidation/__tests__/chargeSchemaStandard.test.ts
+74 −28 src/formValidation/__tests__/chargeSchemaVolume.test.ts
+29 −16 src/formValidation/chargeSchema.ts
+220 −243 src/generated/graphql.tsx
+148 −125 src/hooks/__tests__/fixtures.ts
+30 −22 src/hooks/plans/__tests__/useGraduatedChargeForm.test.tsx
+44 −36 src/hooks/plans/__tests__/useGraduatedPercentageChargeForm.test.tsx
+33 −31 src/hooks/plans/__tests__/useVolumeChargeForm.test.tsx
+7 −3 src/hooks/plans/useGraduatedChargeForm.ts
+8 −4 src/hooks/plans/useGraduatedPercentageChargeForm.ts
+20 −10 src/hooks/plans/usePlanForm.tsx
+7 −3 src/hooks/plans/useVolumeChargeForm.ts
+28 −38 src/hooks/useCreateCreditNote.ts
+0 −4 src/hooks/useCreateEditBillableMetric.ts
+438 −220 src/pages/CreateBillableMetric.tsx
+5 −1 src/pages/CreateCreditNote.tsx
+4 −4 src/pages/CreatePlan.tsx
+24 −72 src/pages/CreditNoteDetails.tsx
+35 −43 src/pages/__devOnly/DesignSystem.tsx
+0 −31 yarn.lock

0 comments on commit 2825b30

Please sign in to comment.