Skip to content

Commit

Permalink
Release 3.1.4 (#717)
Browse files Browse the repository at this point in the history
_The PR name should be the version to be deployed (ex: v1.0.1)_

- [x] Bump the version in the package.json or equivalent.

---

- # Changelog
- ## 🎉 Features
	- 🦗
- ## 🚀 Improvements
	- #704

- ## 📊 Dataset Updates
	- 🦗

- ## 📝 Stories Updates
	- 🦗
- ## 🐛 Fixes
	- 🦗
  • Loading branch information
paridhi-parajuli authored Jan 28, 2025
2 parents 67aa2ec + 004bbc0 commit ad5ea77
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ CUSTOM_SCRIPT_ID=_fed_an_ua_tag

FEATURE_NEW_EXPLORATION = 'TRUE'
SHOW_CONFIGURABLE_COLOR_MAP = 'TRUE'
COOKIE_CONSENT_FORM = 'FALSE'
2 changes: 1 addition & 1 deletion .veda/ui
Submodule ui updated 64 files
+35 −8 .github/workflows/release.yml
+1 −2 .husky/pre-commit
+3 −0 .husky/pre-push
+1 −1 .release-it.json
+2 −5 app/scripts/components/common/banner/index.tsx
+5 −5 app/scripts/components/common/blocks/block-map.tsx
+1 −1 app/scripts/components/common/blocks/lazy-components.js
+17 −24 app/scripts/components/common/blocks/scrollytelling/index.tsx
+15 −17 app/scripts/components/common/browse-controls/index.tsx
+124 −91 app/scripts/components/common/card/index.tsx
+26 −19 app/scripts/components/common/catalog/catalog-card.tsx
+0 −3 app/scripts/components/common/catalog/catalog-content.tsx
+0 −3 app/scripts/components/common/catalog/index.tsx
+1 −1 app/scripts/components/common/catalog/prepare-datasets.ts
+4 −4 app/scripts/components/common/content-taxonomy.tsx
+3 −7 app/scripts/components/common/cookie-consent/index.tsx
+3 −9 app/scripts/components/common/map/map-component.tsx
+3 −3 app/scripts/components/common/map/style-generators/basemap.tsx
+2 −2 app/scripts/components/common/map/utils.ts
+1 −1 app/scripts/components/common/page-header-legacy/nav-menu-item.tsx
+1 −1 app/scripts/components/common/page-header/index.tsx
+1 −2 app/scripts/components/common/page-header/nav/nav-dropdown-button.tsx
+5 −3 app/scripts/components/common/site-alert/index.tsx
+4 −1 app/scripts/components/common/uswds/index.tsx
+0 −6 app/scripts/components/data-catalog/container.tsx
+1 −1 app/scripts/components/data-catalog/dataset-menu.tsx
+1 −1 app/scripts/components/exploration/analysis-data.ts
+21 −27 app/scripts/components/exploration/components/dataset-selector-modal/index.tsx
+1 −1 app/scripts/components/exploration/components/datasets/colorRangeSlider/index.tsx
+1 −1 app/scripts/components/exploration/components/datasets/data-layer-card.tsx
+5 −2 app/scripts/components/exploration/components/datasets/dataset-list-item-status.tsx
+5 −5 app/scripts/components/exploration/components/datasets/dataset-list-item.tsx
+2 −3 app/scripts/components/exploration/components/datasets/dataset-list.tsx
+45 −36 app/scripts/components/exploration/components/layer-info-modal.tsx
+4 −5 app/scripts/components/exploration/components/map/index.tsx
+3 −4 app/scripts/components/exploration/components/map/layer.tsx
+1 −3 app/scripts/components/exploration/components/timeline/timeline.tsx
+14 −17 app/scripts/components/exploration/container.tsx
+41 −15 app/scripts/components/exploration/data-utils-no-faux-module.ts
+0 −146 app/scripts/components/exploration/data-utils.ts
+3 −4 app/scripts/components/exploration/hooks/use-analysis-data-request.ts
+1 −3 app/scripts/components/exploration/index.tsx
+2 −2 app/scripts/components/exploration/types.d.ts.ts
+0 −27 app/scripts/context/env-config.tsx
+128 −0 app/scripts/context/veda-ui-provider.tsx
+6 −3 app/scripts/data-layer/datasets.tsx
+6 −3 app/scripts/index.ts
+19 −19 app/scripts/instance.ts
+17 −5 app/scripts/main.tsx
+4 −2 app/scripts/utils/routes.ts
+12 −0 app/scripts/utils/utils.ts
+1 −25 docs/development/COLLABORATION.md
+24 −0 docs/development/DEPLOYMENT.md
+115 −0 docs/development/DEVELOPMENT.md
+37 −0 docs/development/RELEASE.md
+0 −93 docs/development/SETUP.md
+ docs/media/preview-pr.png
+ docs/media/workflow-screenshot.png
+8 −1 gulpfile.js
+3 −6 mock/veda.config.js
+7 −7 package.json
+13 −6 parcel-resolver-veda/index.js
+2 −1 tsconfig.json
+4 −9 yarn.lock
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "veda-config",
"description": "Configuration for Veda",
"version": "3.1.3",
"version": "3.1.4",
"source": "./.veda/ui/app/index.html",
"license": "Apache-2.0",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions veda.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ let subNavItems = [
},
]


if (config.GOOGLE_FORM) {
subNavItems = [
...subNavItems,
Expand Down Expand Up @@ -122,5 +123,5 @@ module.exports = {
navItems: {
mainNavItems: defaultMenuLinks,
subNavItems: subNavItems
}
};
},
};

0 comments on commit ad5ea77

Please sign in to comment.