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
11 changes: 11 additions & 0 deletions .changeset/clean-onions-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
'workers-observability': patch
'containers-mcp': patch
'workers-bindings': patch
'workers-builds': patch
'dns-analytics': patch
'auditlogs': patch
'logpush': patch
---

Use proper wrangler deploy in all servers so we get the name and version
5 changes: 5 additions & 0 deletions .changeset/ready-results-juggle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'dex-analysis': patch
---

Improve DEX remote captures tools, separate by type for clarity
2 changes: 1 addition & 1 deletion apps/auditlogs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"types": "wrangler types --include-env=false",
Expand Down
2 changes: 1 addition & 1 deletion apps/dns-analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"types": "wrangler types --include-env=false",
Expand Down
2 changes: 1 addition & 1 deletion apps/logpush/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"types": "wrangler types --include-env=false",
Expand Down
2 changes: 1 addition & 1 deletion apps/sandbox-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"check:types": "run-tsc",
"check:lint": "run-eslint-workers",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "concurrently \"tsx container/sandbox.container.app.ts\" \"wrangler dev --var \"ENVIRONMENT:dev\"\"",
"build:container": "docker build --platform linux/amd64 --tag sandbox-container:$(git rev-parse --short HEAD) -f Dockerfile ../../ && wrangler containers push sandbox-container:$(git rev-parse --short HEAD)",
"start": "wrangler dev",
Expand Down
2 changes: 1 addition & 1 deletion apps/workers-bindings/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"eval:dev": "start-server-and-test --expect 404 eval:server http://localhost:8977 'vitest --testTimeout=60000 --config vitest.config.evals.ts'",
Expand Down
2 changes: 1 addition & 1 deletion apps/workers-builds/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "vite dev",
"start": "vite dev",
"types": "wrangler types --include-env=false",
Expand Down
2 changes: 1 addition & 1 deletion apps/workers-observability/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"check:lint": "run-eslint-workers",
"check:types": "run-tsc",
"deploy": "wrangler deploy",
"deploy": "run-wrangler-deploy",
"dev": "wrangler dev",
"start": "wrangler dev",
"types": "wrangler types --include-env=false",
Expand Down