🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@changesets/get-dependents-graph

Package Overview
Dependencies
Maintainers
4
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/get-dependents-graph - npm Package Compare versions

Comparing version
3.0.0-next.0
to
3.0.0-next.1
+11
-0
CHANGELOG.md
# @changesets/get-dependents-graph
## 3.0.0-next.1
### Major Changes
- [#1656](https://github.com/changesets/changesets/pull/1656) [`268a29f`](https://github.com/changesets/changesets/commit/268a29fedc948f22c672a3b1e3e51df4427f478d) Thanks [@bluwy](https://github.com/bluwy)! - Bumps minimum node version to `>=20.0.0`
### Patch Changes
- Updated dependencies [[`268a29f`](https://github.com/changesets/changesets/commit/268a29fedc948f22c672a3b1e3e51df4427f478d)]:
- @changesets/types@7.0.0-next.1
## 3.0.0-next.0

@@ -4,0 +15,0 @@

+5
-6
{
"name": "@changesets/get-dependents-graph",
"version": "3.0.0-next.0",
"version": "3.0.0-next.1",
"description": "Get the graph of dependents in a monorepo",

@@ -13,3 +13,3 @@ "type": "module",

"dependencies": {
"@changesets/types": "^7.0.0-next.0",
"@changesets/types": "^7.0.0-next.1",
"@manypkg/get-packages": "^1.1.3",

@@ -20,9 +20,8 @@ "picocolors": "^1.1.0",

"devDependencies": {
"@changesets/test-utils": "0.0.9-next.0",
"strip-ansi": "^7.1.0",
"vitest": "^3.0.6"
"@changesets/test-utils": "0.0.9-next.1",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
}
}

@@ -1,3 +0,3 @@

import { vi } from "vitest";
import stripAnsi from "strip-ansi";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { stripVTControlCharacters } from "node:util";
import { temporarilySilenceLogs } from "@changesets/test-utils";

@@ -112,3 +112,5 @@ import getDependencyGraph from "./get-dependency-graph.ts";

expect((console.error as any).mock.calls).toHaveLength(1);
expect(stripAnsi((console.error as any).mock.calls[0][0])).toBe(
expect(
stripVTControlCharacters((console.error as any).mock.calls[0][0])
).toBe(
`Package "foo" must depend on the current version of "bar": "1.0.0" vs "link:../bar"`

@@ -115,0 +117,0 @@ );