Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Prepare 7.1.0 release (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
lognaturel committed Mar 17, 2023
1 parent 2e1a783 commit f92ac93
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 43 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [7.1.0] - 2023-03-16

- Remove: analog-scale widget (#952)
*Note: now maintained by OpenClinica (https://github.com/OpenClinica/enketo-express-oc/tree/master/widget/analog-scale). Not considered a breaking change because usage outside of OpenClinica is not known *
- Fix: further simplify geopicker (#954)
- Fix: undesired newlines in print view in select/select1 labels (#957)
- Add Transformer web compatibility (enketo/enketo-transformer#171)


## [7.0.0] - 2023-02-08

- **BREAKING CHANGE**: Removed IE11 support (#946)
Expand Down
172 changes: 135 additions & 37 deletions package-lock.json

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

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "enketo-core",
"description": "Extensible Enketo form engine",
"homepage": "https://enketo.org",
"version": "7.0.0",
"version": "7.1.0",
"license": "Apache-2.0",
"os": [
"darwin",
Expand Down Expand Up @@ -52,11 +52,11 @@
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"enketo-transformer": "2.2.1",
"enketo-transformer": "2.3.0",
"esbuild": "^0.12.29",
"esbuild-plugin-alias": "^0.1.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.3",
Expand Down Expand Up @@ -86,7 +86,7 @@
"markdown-eslint-parser": "^1.2.1",
"mocha": "^9.2.2",
"node-sass": "^7.0.3",
"prettier": "^2.8.3",
"prettier": "^2.8.4",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"time-grunt": "^2.0.0"
Expand All @@ -103,7 +103,7 @@
"bootstrap-datepicker": "1.9.x",
"drag-drop-touch": "^1.3.1",
"html5sortable": "^0.13.3",
"jquery": "^3.6.3",
"jquery": "^3.6.4",
"jquery-touchswipe": "^1.6.19",
"leaflet": "^1.9.3",
"leaflet-draw": "github:enketo/Leaflet.draw#ff73078",
Expand Down
2 changes: 1 addition & 1 deletion src/js/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -1486,6 +1486,6 @@ Form.prototype.goToTarget = function (target) {
* @type {string}
* @default
*/
Form.requiredTransformerVersion = '2.2.1';
Form.requiredTransformerVersion = '2.3.0';

export { Form, FormModel };

0 comments on commit f92ac93

Please sign in to comment.