Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/clever-owls-attack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-hounds-flow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-boats-float.md

This file was deleted.

11 changes: 11 additions & 0 deletions fdm-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog fdm-app

## 0.22.3

### Patch Changes

- 8cb3c92: Ensure the selected field’s cultivation is preselected when adding a new field on the New Fields page
- bedd5a4: Increase streamTimeout from 10 seconds to 30 seconds to enable longer running calculations
- Updated dependencies [e964a18]
- Updated dependencies [0c29661]
- @svenvw/fdm-core@0.24.1
- @svenvw/fdm-calculator@0.6.0

## 0.22.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion fdm-app/app/components/blocks/field/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function FieldDetailsDialog({
cultivationOptions,
fieldNameDefault,
}: FieldDetailsDialogProps) {
const b_lu_catalogue = `nl_${field.properties?.b_lu_catalogue ?? ""}`
const b_lu_catalogue = field.properties?.b_lu_catalogue ?? ""

const form = useRemixForm<z.infer<typeof FormSchema>>({
mode: "onTouched",
Expand Down
2 changes: 1 addition & 1 deletion fdm-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svenvw/fdm-app",
"version": "0.22.2",
"version": "0.22.3",
"private": true,
"sideEffects": false,
"type": "module",
Expand Down
7 changes: 7 additions & 0 deletions fdm-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog fdm-core

## 0.24.1

### Patch Changes

- e964a18: Fix to return cultivations at `getCultivationPlan` and `getCultivation` when cultivation starts before `timeFrame.start` and has no `ending date
- 0c29661: Fixes validation check that harvest or end date of cultivation cannot happen on start date of cultivation

## 0.24.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion fdm-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@svenvw/fdm-core",
"private": false,
"version": "0.24.0",
"version": "0.24.1",
"description": "Interface for the Farm Data Model",
"license": "MIT",
"homepage": "https://svenvw.github.io/fdm/",
Expand Down