Skip to content

chore(deps): bump glob, @meshsdk/core and @meshsdk/react#28

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-78e2da1f58
Open

chore(deps): bump glob, @meshsdk/core and @meshsdk/react#28
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/multi-78e2da1f58

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps glob to 11.1.0 and updates ancestor dependencies glob, @meshsdk/core and @meshsdk/react. These dependencies need to be updated together.

Updates glob from 10.3.10 to 11.1.0

Changelog

Sourced from glob's changelog.

changeglob

13

  • Move the CLI program out to a separate package, glob-bin. Install that if you'd like to continue using glob from the command line.

12

  • Remove the unsafe --shell option. The --shell option is now ONLY supported on known shells where the behavior can be implemented safely.

11.1

GHSA-5j98-mcp5-4vw2

  • Add the --shell option for the command line, with a warning that this is unsafe. (It will be removed in v12.)
  • Add the --cmd-arg/-g as a way to safely add positional arguments to the command provided to the CLI tool.
  • Detect commands with space or quote characters on known shells, and pass positional arguments to them safely, avoiding shell:true execution.

11.0

  • Drop support for node before v20

10.4

  • Add includeChildMatches: false option
  • Export the Ignore class

10.3

  • Add --default -p flag to provide a default pattern
  • exclude symbolic links to directories when follow and nodir are both set

10.2

  • Add glob cli

10.1

  • Return '.' instead of the empty string '' when the current working directory is returned as a match.
  • Add posix: true option to return / delimited paths, even on

... (truncated)

Commits
  • 2551fb5 11.1.0
  • 47473c0 bin: Do not expose filenames to shell expansion
  • bc33fe1 skip tilde test on systems that lack tilde expansion
  • 59bf9ca fix notes
  • dde4fa6 docs(README): add #anchor and improve notes
  • 0559b0e docs: add better links to path-scurry docs
  • c9773c2 fix: correct typos in README.md
  • 13e68ea Fix punctuation in traversal function documentation
  • 1527e2b fix repo url
  • 7e190e8 fix typo mathspaths
  • Additional commits viewable in compare view

Updates @meshsdk/core from 1.9.0-beta-39 to 1.9.0

Release notes

Sourced from @​meshsdk/core's releases.

v1.9.0 - Van Rossem

Updates

Cost model updates

Now by default, the tx builder uses fetcher to fetch cost models when building transactions, this allows versions to persist through hard forks without having to hard code cost model changes.

Evaluator

Added OfflineEvaluatorScalus to core-cst, allowing an evaluation option without the use of wasm.

Bumped UPLC for OfflineEvaluator to uplc 1.1.22

Fetching cost models

It is now recommended to use a fetcher to fetch cost models before building every transaction. Since cost models can change through hard forks, it is not recommended to simply hard code them. There are APIs to set the cost models for evaluators, and transaction builders.

const costModels = await provider.fetchCostModels();
const txBuilder = new MeshTxBuilder({
  fetcher: provider,
  verbose: true,
  evaluator: new OfflineEvaluator(
    provider,
    "preprod",
    undefined,
    costModels,
  ),
});

const txHex = await txBuilder .mintPlutusScriptV3() .mint("1", alwaysSucceedHash, "") .mintRedeemerValue("") .mintingScript(alwaysSucceedCbor) .txOut( "addr_test1qpsjnpqljma4vdg67vtf8k4xv7umncum5lvrnlupfyyvmtawhmy5tqhkqm4lrwwm6wkykzsa2aafy25vevxhrc3fws0qszw7wl", [ { unit: alwaysSucceedHash, quantity: "1", }, ], ) .txIn(utxos[0].input.txHash, utxos[0].input.outputIndex) .txInCollateral(utxos[0].input.txHash, utxos[0].input.outputIndex) .changeAddress(await wallet.getChangeAddress()) .setCostModels(costModels) .complete();

Commits

Updates @meshsdk/react from 1.9.0-beta-40 to 2.0.0-beta.2

Release notes

Sourced from @​meshsdk/react's releases.

v1.9.0 - Van Rossem

Updates

Cost model updates

Now by default, the tx builder uses fetcher to fetch cost models when building transactions, this allows versions to persist through hard forks without having to hard code cost model changes.

Evaluator

Added OfflineEvaluatorScalus to core-cst, allowing an evaluation option without the use of wasm.

Bumped UPLC for OfflineEvaluator to uplc 1.1.22

Fetching cost models

It is now recommended to use a fetcher to fetch cost models before building every transaction. Since cost models can change through hard forks, it is not recommended to simply hard code them. There are APIs to set the cost models for evaluators, and transaction builders.

const costModels = await provider.fetchCostModels();
const txBuilder = new MeshTxBuilder({
  fetcher: provider,
  verbose: true,
  evaluator: new OfflineEvaluator(
    provider,
    "preprod",
    undefined,
    costModels,
  ),
});

const txHex = await txBuilder .mintPlutusScriptV3() .mint("1", alwaysSucceedHash, "") .mintRedeemerValue("") .mintingScript(alwaysSucceedCbor) .txOut( "addr_test1qpsjnpqljma4vdg67vtf8k4xv7umncum5lvrnlupfyyvmtawhmy5tqhkqm4lrwwm6wkykzsa2aafy25vevxhrc3fws0qszw7wl", [ { unit: alwaysSucceedHash, quantity: "1", }, ], ) .txIn(utxos[0].input.txHash, utxos[0].input.outputIndex) .txInCollateral(utxos[0].input.txHash, utxos[0].input.outputIndex) .changeAddress(await wallet.getChangeAddress()) .setCostModels(costModels) .complete();

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 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 [glob](https://github.com/isaacs/node-glob) to 11.1.0 and updates ancestor dependencies [glob](https://github.com/isaacs/node-glob), [@meshsdk/core](https://github.com/MeshJS/mesh) and [@meshsdk/react](https://github.com/MeshJS/mesh). These dependencies need to be updated together.


Updates `glob` from 10.3.10 to 11.1.0
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v10.3.10...v11.1.0)

Updates `@meshsdk/core` from 1.9.0-beta-39 to 1.9.0
- [Release notes](https://github.com/MeshJS/mesh/releases)
- [Commits](https://github.com/MeshJS/mesh/commits/1.9.0)

Updates `@meshsdk/react` from 1.9.0-beta-40 to 2.0.0-beta.2
- [Release notes](https://github.com/MeshJS/mesh/releases)
- [Commits](https://github.com/MeshJS/mesh/commits)

---
updated-dependencies:
- dependency-name: glob
  dependency-version: 11.1.0
  dependency-type: indirect
- dependency-name: "@meshsdk/core"
  dependency-version: 1.9.0
  dependency-type: direct:production
- dependency-name: "@meshsdk/react"
  dependency-version: 2.0.0-beta.2
  dependency-type: direct:production
...

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 14, 2026
@vercel

vercel Bot commented Jun 14, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
ada-drop Error Error Jun 14, 2026 1:27pm

Request Review

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