Skip to content

Bump js-yaml and @jspsych/config in /CustomPlugins7+/plugin-self-paced-reading#24

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/CustomPlugins7/plugin-self-paced-reading/multi-4c6e89e5df
Open

Bump js-yaml and @jspsych/config in /CustomPlugins7+/plugin-self-paced-reading#24
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/CustomPlugins7/plugin-self-paced-reading/multi-4c6e89e5df

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 15, 2026

Copy link
Copy Markdown
Contributor

Bumps js-yaml to 4.2.0 and updates ancestor dependency @jspsych/config. These dependencies need to be updated together.

Updates js-yaml from 3.14.1 to 4.2.0

Changelog

Sourced from js-yaml's changelog.

[4.2.0] - 2026-06-01

Added

  • Added docs/safety.md with notes about processing untrusted YAML.
  • Added maxDepth (100) loader option. Not a problem, but gives a better exception instead of RangeError on stack overflow.
  • Added maxMergeSeqLength (20) loader option. Not a problem after merge fix, but an additional restriction for safety.
  • Added sourcemaps to dist/ builds.

Changed

  • Stop resolving numbers with underscores as numeric scalars, #627.
  • Switched dev toolchains to Vite / neostandard.
  • Updated demo.
  • Reorganized tests.
  • dist/ files are no longer kept in the repository.

Fixed

  • Fix parsing of properties on the first implicit block mapping key, #62.
  • Fix trailing whitespace handling when folding flow scalar lines, #307.
  • Reject top-level block scalars without content indentation, #280.
  • Ensure numbers survive round-trip, #737.
  • Fix test coverage for issue #221.
  • Fix flow scalar trailing whitespace folding, #307.
  • Fix digits in YAML named tag handles.

Security

  • Fix potential DoS via quadratic complexity in merge - deduplicate repeated elements (makes sense for malformed files > 10K).

[3.14.2] - 2025-11-15

Security

  • Backported v4.1.1 fix to v3

[4.1.1] - 2025-11-12

Security

  • Fix prototype pollution issue in yaml merge (<<) operator.

[4.1.0] - 2021-04-15

Added

  • Types are now exported as yaml.types.XXX.
  • Every type now has options property with original arguments kept as they were (see yaml.types.int.options as an example).

Changed

  • Schema.extend() now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as abcd instead of cbad).

... (truncated)

Commits

Updates @jspsych/config from 1.1.0 to 3.3.3

Release notes

Sourced from @​jspsych/config's releases.

@​jspsych/config@​3.3.3

Patch Changes

  • #3660 181d0068b7ec8fcd76de94f78cec9526b0415ce2 Thanks @​jodeleeuw! - Fix createCoreDistArchive dropping plugins from dist.zip. Recent release archives were missing the alphabetical tail of dist/*.js (e.g. plugin-survey-multi-*, plugin-video-*, plugin-virtual-chinrest, plugin-visual-search-circle, the plugin-webgazer-* plugins) along with some examples/*.html files. Under gulp 5's streamx-based Vinyl, merge-stream would race with gulp-zip and finalize the archive before slow upstreams (notably the 3 MB plugin-survey/dist/index.browser.js) had finished flushing. The task now drains every substream first and feeds the collected files into gulp-zip from a single ordered stream.

@​jspsych/config@​3.3.2

Patch Changes

@​jspsych/config@​3.3.1

Patch Changes

@​jspsych/config@​3.3.0

Minor Changes

@​jspsych/config@​3.2.2

Patch Changes

@​jspsych/config@​3.2.1

Patch Changes

@​jspsych/config@​3.2.0

Minor Changes

  • #3385 3948fdc0ac176584fe4b8fe0b9cca5ed6e8b3afc Thanks @​cherriechang! - Added citations property to info field of all plugins/extensions in two citation formats (apa, bibtex); added getCitations() as function in jsPsych package allowing user to generate citations by passing an array of plugins/extensions by name as first input and citation format as string as second input; changed template of plugins/extensions to contain citations field by default; citations for each plugin/extension are automatically generated from .cff file (if any) at its folder's root during build process; getCitations() prints out citations in the form of a string separating each citation with newline character, and always prints the jsPsych library citation first.

Patch Changes

@​jspsych/config@​3.1.1

Patch Changes

  • #3396 d683396e Thanks @​bjoluc! - Update dependencies for config.

    • @rollup/plugin-common-js updated to 26.0.1
    • esbuild updated to 0.23.1

... (truncated)

Changelog

Sourced from @​jspsych/config's changelog.

3.3.3

Patch Changes

  • #3660 181d0068b7ec8fcd76de94f78cec9526b0415ce2 Thanks @​jodeleeuw! - Fix createCoreDistArchive dropping plugins from dist.zip. Recent release archives were missing the alphabetical tail of dist/*.js (e.g. plugin-survey-multi-*, plugin-video-*, plugin-virtual-chinrest, plugin-visual-search-circle, the plugin-webgazer-* plugins) along with some examples/*.html files. Under gulp 5's streamx-based Vinyl, merge-stream would race with gulp-zip and finalize the archive before slow upstreams (notably the 3 MB plugin-survey/dist/index.browser.js) had finished flushing. The task now drains every substream first and feeds the collected files into gulp-zip from a single ordered stream.

3.3.2

Patch Changes

3.3.1

Patch Changes

3.3.0

Minor Changes

3.2.2

Patch Changes

3.2.1

Patch Changes

3.2.0

Minor Changes

  • #3385 3948fdc0ac176584fe4b8fe0b9cca5ed6e8b3afc Thanks @​cherriechang! - Added citations property to info field of all plugins/extensions in two citation formats (apa, bibtex); added getCitations() as function in jsPsych package allowing user to generate citations by passing an array of plugins/extensions by name as first input and citation format as string as second input; changed template of plugins/extensions to contain citations field by default; citations for each plugin/extension are automatically generated from .cff file (if any) at its folder's root during build process; getCitations() prints out citations in the form of a string separating each citation with newline character, and always prints the jsPsych library citation first.

Patch Changes

... (truncated)

Commits
  • 0321843 chore(release): version packages
  • 62c0208 fix(config): await dist.zip finish so gulp task waits for write
  • 181d006 fix(config): drain dist-archive substreams before zipping
  • f4eab06 chore(release): version packages
  • b279188 Merge pull request #3624 from jspsych/fix-gulp-update-plugin-versions
  • e5fdebb Merge pull request #3615 from Jolg42/fix-encoding
  • 776d259 fix file path to docs/plugins
  • 8660803 chore(release): version packages
  • 28de6ec fix images encoding in dist zip
  • 7322dd8 pin rollup version to ensure it stays v4
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [js-yaml](https://github.com/nodeca/js-yaml) to 4.2.0 and updates ancestor dependency [@jspsych/config](https://github.com/jspsych/jsPsych/tree/HEAD/packages/config). These dependencies need to be updated together.


Updates `js-yaml` from 3.14.1 to 4.2.0
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/commits)

Updates `@jspsych/config` from 1.1.0 to 3.3.3
- [Release notes](https://github.com/jspsych/jsPsych/releases)
- [Changelog](https://github.com/jspsych/jsPsych/blob/main/packages/config/CHANGELOG.md)
- [Commits](https://github.com/jspsych/jsPsych/commits/@jspsych/config@3.3.3/packages/config)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 4.2.0
  dependency-type: indirect
- dependency-name: "@jspsych/config"
  dependency-version: 3.3.3
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants