Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ updates:
# ahead of the runtime — bump it deliberately when the Node version moves.
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"]
# TypeScript 7 removes compiler APIs used by the build and OpenAPI tools;
# move compiler majors as an explicit repository-wide migration.
- dependency-name: "typescript"
update-types: ["version-update:semver-major"]
# Expo owns the compatible React Native and test-preset versions. Upgrade
# this pair with the Expo SDK instead of accepting standalone bumps.
- dependency-name: "react-native"
- dependency-name: "@react-native/jest-preset"
# Kept aligned with react-native; Expo upgrades both as one reviewed stack.

Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"opening_hours": "^3.14.0",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"tsx": "4.23.5",
"tsx": "4.23.12",
"undici": "^8.9.0",
"zod": "^4.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"jest": "^30.4.2",
"jest-expo": "^57.0.4",
"test-renderer": "^1.2.0",
"tsx": "4.23.11",
"tsx": "4.23.12",
"typescript": "^6.0.3"
},
"expo": {
Expand Down
2 changes: 1 addition & 1 deletion apps/ops-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@openmapx/core": "workspace:^",
"fastify": "^5.12.1",
"tsx": "4.23.5"
"tsx": "4.23.12"
},
"devDependencies": {
"@types/node": "^26.3.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/transitous-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@openmapx/core": "workspace:^",
"fastify": "^5.12.1",
"tsx": "4.23.5"
"tsx": "4.23.12"
},
"devDependencies": {
"@types/node": "^26.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"commander": "^15.0.0",
"execa": "^10.0.1",
"kleur": "^4.1.5",
"tsx": "4.23.5"
"tsx": "4.23.12"
},
"devDependencies": {
"@types/node": "^26.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "./index.ts",
"types": "./index.ts",
"devDependencies": {
"tsx": "4.23.5"
"tsx": "4.23.12"
},
"dependencies": {
"intl-messageformat": "^11.2.14"
Expand Down
188 changes: 61 additions & 127 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions scripts/dependabot-policy-contract.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { readFileSync } from "node:fs";
import { resolve } from "node:path";
import { describe, expect, it } from "vitest";

const root = resolve(import.meta.dirname, "..");

describe("Dependabot compatibility boundaries", () => {
it("does not update TypeScript majors or React Native independently of their stacks", () => {
const config = readFileSync(resolve(root, ".github/dependabot.yml"), "utf8");
const npmRoot = config.slice(
config.indexOf(" - package-ecosystem: npm"),
config.indexOf(" # The documentation site"),
);

expect(npmRoot).toMatch(
/- dependency-name: "typescript"\n\s+update-types: \["version-update:semver-major"\]/,
);
expect(npmRoot).toMatch(/- dependency-name: "react-native"(?:\n|$)/);
});
});
2 changes: 1 addition & 1 deletion services/data-manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"ioredis": "^6.0.0",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"tsx": "4.23.5",
"tsx": "4.23.12",
"undici": "^8.9.0"
},
"devDependencies": {
Expand Down