Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps and js-yaml. These dependencies needed to be updated together.
Updates js-yaml from 3.14.1 to 3.14.2

Changelog

Sourced from js-yaml's changelog.

[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).

[4.0.0] - 2021-01-03

Changed

  • Check migration guide to see details for all breaking changes.
  • Breaking: "unsafe" tags !!js/function, !!js/regexp, !!js/undefined are moved to js-yaml-js-types package.
  • Breaking: removed safe* functions. Use load, loadAll, dump instead which are all now safe by default.
  • yaml.DEFAULT_SAFE_SCHEMA and yaml.DEFAULT_FULL_SCHEMA are removed, use yaml.DEFAULT_SCHEMA instead.
  • yaml.Schema.create(schema, tags) is removed, use schema.extend(tags) instead.
  • !!binary now always mapped to Uint8Array on load.
  • Reduced nesting of /lib folder.
  • Parse numbers according to YAML 1.2 instead of YAML 1.1 (01234 is now decimal, 0o1234 is octal, 1:23 is parsed as string instead of base60).
  • dump() no longer quotes :, [, ], (, ) except when necessary, #470, #557.
  • Line and column in exceptions are now formatted as (X:Y) instead of at line X, column Y (also present in compact format), #332.
  • Code snippet created in exceptions now contains multiple lines with line numbers.
  • dump() now serializes undefined as null in collections and removes keys with undefined in mappings, #571.
  • dump() with skipInvalid=true now serializes invalid items in collections as null.
  • Custom tags starting with ! are now dumped as !tag instead of !<!tag>, #576.
  • Custom tags starting with tag:yaml.org,2002: are now shorthanded using !!, #258.

Added

  • Added .mjs (es modules) support.
  • Added quotingType and forceQuotes options for dumper to configure string literal style, #290, #529.
  • Added styles: { '!!null': 'empty' } option for dumper (serializes { foo: null } as "foo: "), #570.

... (truncated)

Commits

Updates js-yaml from 4.1.0 to 4.1.1

Changelog

Sourced from js-yaml's changelog.

[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).

[4.0.0] - 2021-01-03

Changed

  • Check migration guide to see details for all breaking changes.
  • Breaking: "unsafe" tags !!js/function, !!js/regexp, !!js/undefined are moved to js-yaml-js-types package.
  • Breaking: removed safe* functions. Use load, loadAll, dump instead which are all now safe by default.
  • yaml.DEFAULT_SAFE_SCHEMA and yaml.DEFAULT_FULL_SCHEMA are removed, use yaml.DEFAULT_SCHEMA instead.
  • yaml.Schema.create(schema, tags) is removed, use schema.extend(tags) instead.
  • !!binary now always mapped to Uint8Array on load.
  • Reduced nesting of /lib folder.
  • Parse numbers according to YAML 1.2 instead of YAML 1.1 (01234 is now decimal, 0o1234 is octal, 1:23 is parsed as string instead of base60).
  • dump() no longer quotes :, [, ], (, ) except when necessary, #470, #557.
  • Line and column in exceptions are now formatted as (X:Y) instead of at line X, column Y (also present in compact format), #332.
  • Code snippet created in exceptions now contains multiple lines with line numbers.
  • dump() now serializes undefined as null in collections and removes keys with undefined in mappings, #571.
  • dump() with skipInvalid=true now serializes invalid items in collections as null.
  • Custom tags starting with ! are now dumped as !tag instead of !<!tag>, #576.
  • Custom tags starting with tag:yaml.org,2002: are now shorthanded using !!, #258.

Added

  • Added .mjs (es modules) support.
  • Added quotingType and forceQuotes options for dumper to configure string literal style, #290, #529.
  • Added styles: { '!!null': 'empty' } option for dumper (serializes { foo: null } as "foo: "), #570.

... (truncated)

Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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.

agerard-godaddy and others added 30 commits December 18, 2024 10:33
* Return config from prepare hook

* Tune command plugin ready hook parse logic

* tune prepare hook
* Fix Gasket imports w/tsconfig alias

* Opt for gasket-data.js

* Tune local watcher for TS default server

* Add concurrently dep

* Tune Ts plugin tests

* tests and linter

* tune local script for custom server

* fix test

* Update packages/gasket-plugin-nextjs/lib/create.js

Co-authored-by: Andrew Gerard <[email protected]>

* fix test

---------

Co-authored-by: Andrew Gerard <[email protected]>
* fix: align the @types/react package

* fix: lock
* tune generated files

* remove ts-expect
* fix: Added isMergeableObject config to deepmerge

* chore: add isMergeableObject test

* fix: add ts-ignore for tests

* test: complex vs plain merge

---------

Co-authored-by: Andrew Gerard <[email protected]>
)

* adjust cookie parser invocation to earlier in the lifecycle chain

* CHANGELOG
* fix: ensure winston custom options are not overridden

* docs: changelog
* chore: replace hapi/accept with negotiator

* chore: add changelog

* chore: change to use language
github-actions bot and others added 23 commits September 25, 2025 15:03
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* fix(plugin-gasket-data): actually cache getPublicGasketData results

* docs(plugin-gasket-data): describe publicGasketData caching

* fix(plugin-gasket-data): linting

* changeset

---------

Co-authored-by: Michael Mason <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Add templates to docs site

* Lockfile & generated readme

* Add to templates to navbar

* changeset

* lint fix

* Properly add templates to generated docs

* Add template version
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Add git init to template flow

* changeset

* tune git message

* Update packages/create-gasket-app/lib/scaffold/actions/git-init.js

Co-authored-by: Andrew Gerard <[email protected]>

* Update packages/create-gasket-app/lib/scaffold/actions/git-init.js

Co-authored-by: Andrew Gerard <[email protected]>

* fix test

---------

Co-authored-by: Andrew Gerard <[email protected]>
* docs: gasketdata vs gasket config

* ci: changeset
* tune swagger docs

* changeset
* test: add script to validate expected dotfiles are packed

* fix: update templates with expected dot files to be packed

* ci: changeset

* fix: update npm script to prefer offline
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* chore: deprecate @gasket/fetch

* chore: deprecate @gasket/redux

* ci: changesets

---------

Co-authored-by: Michael Mason <[email protected]>
…ate (#1270)

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.1.5 to 7.1.12.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v7.1.12/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.12/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.1.12
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [next](https://github.com/vercel/next.js) from 15.3.1 to 15.4.7.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.3.1...v15.4.7)

---
updated-dependencies:
- dependency-name: next
  dependency-version: 15.4.7
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kawika Bader <[email protected]>
* ESM port plugin-express (#1256)

* ESM port plugin-express

* changeset

* syncpack

* node prefix for std lib

* ESM migration plugin-fastify (#1257)

* ESM migration plugin-fastify

* syncpack

* ESM port plugin-middleware (#1258)

* ESM port

* Type imports

* changeset

* syncpack

* node prefix to std libs

* ESM Port @gasket/assets (#1259)

* ESM Port

* changeset

* Convert gasket-plugin-https to ESM and migrate to Vitest (#1254)

* refactor(gasket-plugin-https): port to ESM and vitest

* ci: changeset

* fix: syncpack

* Convert gasket-plugin-nextjs to ESM (#1253)

* refactor(gasket-plugin-nextjs): initial port to ESM

* refactor(gasket-plugin-nextjs): use dynamic import and adjust tests

* ci: changeset

* fix(gasket-preset-nextjs): adjust for esm exports

* Convert gasket-plugin-data to ESM and migrate to Vitest (#1252)

* refactor(gasket-plugin-data): port to ESM and vitest

* fix(gasket-plugin-data): syncpack

* ci: changeset

* PFX-1022 ESM Port: @gasket/plugin-morgan (#1261)

* chore: migrate to esm use vitest

* chore(plugin-morgan): remove unnecessary .swcrc file

The gasket-cjs build tool uses its own hardcoded SWC configuration
and does not read .swcrc files from packages.

* Plugin ports (#1262)

* ESM port plugin-docs

* ESM port plugin-docs-graphs

* ESM port docusaurus plugin

* Metdata types

* Vitetest resolve docusaurus libraries

* Mocks for typescript tests

* Plugin ports (#1263)

* ESM port plugin-docs

* ESM port plugin-docs-graphs

* ESM port docusaurus plugin

* Metdata types

* Vitetest resolve docusaurus libraries

* Mocks for typescript tests

* ESM port plugin-logger

* ESM Port plugin-winston

* changeset

* syncpack

* esm port (#1266)

* Plugin ports (#1265)

* ESM port plugin-docs

* ESM port plugin-docs-graphs

* ESM port docusaurus plugin

* Metdata types

* Vitetest resolve docusaurus libraries

* Mocks for typescript tests

* ESM port plugin-logger

* ESM Port plugin-winston

* changeset

* syncpack

* ESM port plugin webpack

* ESM port plugin analyze

* ESM port typescript tests

* ESM Port plugin happyfeet

* syncpack

* ESM port plugin intl

* ESM Port plugin swagger

* syncpack

* fix TS test imports

* consolidate changesets

* https plugin import issue

* pesky __dirname

* fix webpack import

* fix swagger prompt export

* opt for require with docusaurus packages

* fix gasket/assets exports

* fix intl rootDir path

* graceful error handling with template git init

* lockfile

* syncpack

* lockfile

* fix webpack require

* changeset to minor

---------

Co-authored-by: Andrew Gerard <[email protected]>
Co-authored-by: Jordan Pina <[email protected]>
* Initial edge runtime webpack fix

* Add noop file

* adjust create

* Tune webpack hook

* tests

* changeset

* filename typo

* revert create drop noop in lib

* fix lint

* fix: mjs ref from cjs file

---------

Co-authored-by: Andrew Gerard <[email protected]>
* add gasket-cjs preprocess to handle with assertions

* remove createRequire & new URL

* changeset
* Version Packages

* fix: minor rev versions

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Andrew Gerard <[email protected]>
* feat(gasket-core): ability to set gasket env programmatically

* ci: changeset

* fix: typo

Co-authored-by: Jordan Pina <[email protected]>

---------

Co-authored-by: Jordan Pina <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
The `webpackConfig` hook is invoked with `execWaterfallSync`, so hooks must not be asynchronous.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Bumps  and [js-yaml](https://github.com/nodeca/js-yaml). These dependencies needed to be updated together.

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

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

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 24, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 24, 2025 17:44
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 24, 2025
@changeset-bot
Copy link

changeset-bot bot commented Nov 24, 2025

⚠️ No Changeset found

Latest commit: b7f987c

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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.

9 participants