From 688ec3177b7fb4eb1b5485b34df7ba28dbb26d81 Mon Sep 17 00:00:00 2001 From: Tom Watson Date: Fri, 24 Feb 2023 11:15:17 -0800 Subject: [PATCH 1/2] Minor farm list updates --- api/graphql/schema.graphql | 2 +- lib/constants.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/api/graphql/schema.graphql b/api/graphql/schema.graphql index bdc7b0ec5..b16a20779 100644 --- a/api/graphql/schema.graphql +++ b/api/graphql/schema.graphql @@ -55,7 +55,7 @@ type Query { Example object { farmType: 'wholesale_farm, directsale_farm', - productCategories: 'grains_other', 'vegetables', + productCategories: 'grains', 'vegetables', certOrManagementPlan: 'american_grassfed' } """ diff --git a/lib/constants.js b/lib/constants.js index ac17e8594..286a6d6a7 100644 --- a/lib/constants.js +++ b/lib/constants.js @@ -446,6 +446,14 @@ exports.PREFERRED_CONTACT_METHODS = [ ] exports.PRODUCT_CATAGORIES = [ + { + value: 'grains', + label: 'Grains' + }, + { + value: 'other_row_crops', + label: 'Other row crops' + }, { value: 'grains_other', label: 'Grains and other row crops' From a257e68280a3c2aae019d190615e82effc7b46b5 Mon Sep 17 00:00:00 2001 From: Tibet Sprague Date: Sat, 4 Mar 2023 11:42:24 -0700 Subject: [PATCH 2/2] Update to version 5.3.6 --- CHANGELOG.md | 5 +++++ package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 092c72e10..ee121acaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [5.3.6] - 2023-03-04 + +### Added +- New product categories for farms: grains, other_row_crops + ## [5.3.5] - 2023-02-26 ### Added diff --git a/package.json b/package.json index 0a3ece854..9b1dee6df 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "author": "Tibet Sprague ", "license": "GNU AFFERO GENERAL PUBLIC LICENSE v3", "private": true, - "version": "5.3.5", + "version": "5.3.6", "repository": { "type": "git", "url": "git://github.com/Hylozoic/hylo-node.git"