Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Revert "Merge/6.2.2" #702

Merged
merged 1 commit into from
Oct 13, 2023
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
16 changes: 0 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,6 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 6.2.2 - 2023-08-22

- Fix changelog versions

## 6.2.1 - 2023-08-21

- Update Docker base image to Node 16 (#578)
- Fix: multiple "static" itemset datalists in the same repeat (enketo/enketo-core#995)
- Fix: global initialization of widgets where repeat count is zero (enketo/enketo-core#994)
- Use map instead of object for cached conversion of XPath expression
(enketo/enketo-core#985)
- Fix: include widgets with 'form' selector (enketo/enketo-core#993)
- Fix: don't display "ghost option" for itemsets with Likert appearance (enketo/enketo-core#992)
- Temporarily roll back buggy optimizations of enabling/disabling widget instances (enketo/enketo-core#990)
- Fix import error for enketo-transformer/web (enketo/enketo-transformer#184)

## 6.2.0 - 2023-07-03

- Make pdf generation timeout configurable (#560)
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16
FROM node:14

ENV ENKETO_SRC_DIR=/srv/src/enketo_express
WORKDIR ${ENKETO_SRC_DIR}
Expand All @@ -7,7 +7,7 @@ RUN npm install -g pm2@$(npm info pm2 version)

COPY . ${ENKETO_SRC_DIR}

RUN npm install -g npm@^6 && npm clean-install && npx grunt && npm prune --production
RUN npm clean-install && npx grunt && npm prune --production

# Persist the `secrets` directory so the encryption key remains consistent.
RUN mkdir -p ${ENKETO_SRC_DIR}/setup/docker/secrets
Expand Down
Loading
Loading