Merge pull request #2377 from jspsych/changeset-release/main

Version Packages
This commit is contained in:
Josh de Leeuw 2021-12-06 14:57:51 -05:00 committed by GitHub
commit d894131ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 17 deletions

View File

@ -1,5 +0,0 @@
---
"@jspsych/test-utils": patch
---
Fix the default mode for `simulateTimeline()` to defer to jsPsych's default.

View File

@ -1,5 +0,0 @@
---
"jspsych": patch
---
Fixed the default case for `jsPsych.simulate()` when no simulation_mode is specified. Now properly runs in data-only mode.

8
package-lock.json generated
View File

@ -15939,7 +15939,7 @@
} }
}, },
"packages/jspsych": { "packages/jspsych": {
"version": "7.1.0", "version": "7.1.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"auto-bind": "^4.0.0", "auto-bind": "^4.0.0",
@ -15947,7 +15947,7 @@
}, },
"devDependencies": { "devDependencies": {
"@jspsych/config": "^1.1.0", "@jspsych/config": "^1.1.0",
"@jspsych/test-utils": "^1.1.0", "@jspsych/test-utils": "^1.1.1",
"@types/dom-mediacapture-record": "^1.0.11" "@types/dom-mediacapture-record": "^1.0.11"
} }
}, },
@ -16565,7 +16565,7 @@
}, },
"packages/test-utils": { "packages/test-utils": {
"name": "@jspsych/test-utils", "name": "@jspsych/test-utils",
"version": "1.1.0", "version": "1.1.1",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@jspsych/config": "^1.1.0" "@jspsych/config": "^1.1.0"
@ -24542,7 +24542,7 @@
"version": "file:packages/jspsych", "version": "file:packages/jspsych",
"requires": { "requires": {
"@jspsych/config": "^1.1.0", "@jspsych/config": "^1.1.0",
"@jspsych/test-utils": "^1.1.0", "@jspsych/test-utils": "^1.1.1",
"@types/dom-mediacapture-record": "^1.0.11", "@types/dom-mediacapture-record": "^1.0.11",
"auto-bind": "^4.0.0", "auto-bind": "^4.0.0",
"random-words": "^1.1.1" "random-words": "^1.1.1"

View File

@ -1,5 +1,11 @@
# jspsych # jspsych
## 7.1.1
### Patch Changes
- [#2376](https://github.com/jspsych/jsPsych/pull/2376) [`01f8a373`](https://github.com/jspsych/jsPsych/commit/01f8a373799baf871b0f91b64e81cb108323bacd) Thanks [@jodeleeuw](https://github.com/jodeleeuw)! - Fixed the default case for `jsPsych.simulate()` when no simulation_mode is specified. Now properly runs in data-only mode.
## 7.1.0 ## 7.1.0
### Minor Changes ### Minor Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "jspsych", "name": "jspsych",
"version": "7.1.0", "version": "7.1.1",
"description": "Behavioral experiments in a browser", "description": "Behavioral experiments in a browser",
"type": "module", "type": "module",
"main": "dist/index.cjs", "main": "dist/index.cjs",
@ -44,7 +44,7 @@
}, },
"devDependencies": { "devDependencies": {
"@jspsych/config": "^1.1.0", "@jspsych/config": "^1.1.0",
"@jspsych/test-utils": "^1.1.0", "@jspsych/test-utils": "^1.1.1",
"@types/dom-mediacapture-record": "^1.0.11" "@types/dom-mediacapture-record": "^1.0.11"
} }
} }

View File

@ -1,5 +1,11 @@
# @jspsych/test-utils # @jspsych/test-utils
## 1.1.1
### Patch Changes
- [#2376](https://github.com/jspsych/jsPsych/pull/2376) [`01f8a373`](https://github.com/jspsych/jsPsych/commit/01f8a373799baf871b0f91b64e81cb108323bacd) Thanks [@jodeleeuw](https://github.com/jodeleeuw)! - Fix the default mode for `simulateTimeline()` to defer to jsPsych's default.
## 1.1.0 ## 1.1.0
### Minor Changes ### Minor Changes

View File

@ -1,6 +1,6 @@
{ {
"name": "@jspsych/test-utils", "name": "@jspsych/test-utils",
"version": "1.1.0", "version": "1.1.1",
"description": "Test utility functions for jsPsych-related test cases", "description": "Test utility functions for jsPsych-related test cases",
"type": "module", "type": "module",
"main": "dist/index.cjs", "main": "dist/index.cjs",