Skip to content

Commit

Permalink
Version 1.3.8 (#1518)
Browse files Browse the repository at this point in the history
### Bugfixes
- Handlebars security fix
  • Loading branch information
nmanu1 authored Aug 24, 2021
2 parents 79fc26b + c18505d commit 65d0c70
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 55 deletions.
10 changes: 4 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ commands:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v2-dependencies-{{ checksum "package-lock.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- v2-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
key: v2-dependencies-{{ checksum "package-lock.json" }}
deploy-to-aws:
description: "Deploys the dist directory to a given subdirectory of the answers bucket"
parameters:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
# generate bundles
build:
docker:
- image: circleci/node:7.10
- image: circleci/node:10.13.0
working_directory: ~/answers
steps:
- setup-workspace
Expand Down Expand Up @@ -115,8 +115,6 @@ jobs:
echo "export MAJOR_VERSION="$(echo "${CIRCLE_TAG}" | cut -d '.' -f 1)"" >> $BASH_ENV
- deploy-to-aws:
subdirectory: '/${MINOR_VERSION}'
- deploy-to-aws:
subdirectory: '/${MAJOR_VERSION}'
workflows:
version: 2
build_and_deploy:
Expand Down
66 changes: 19 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "answers",
"version": "1.3.7",
"version": "1.3.8",
"description": "Javascript Answers Programming Interface",
"main": "gulpfile.js",
"dependencies": {
"@yext/rtf-converter": "^1.4.0",
"core-js": "^3.6.5",
"css-vars-ponyfill": "^2.3.1",
"handlebars": "^4.7.2",
"handlebars": "^4.7.7",
"kind-of": "^6.0.3",
"regenerator-runtime": "^0.13.3",
"template-helpers": "^1.0.1"
Expand Down

0 comments on commit 65d0c70

Please sign in to comment.