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
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"flashcore-overhaul",
"green-ties-change",
"healthy-fishes-dress",
"hmr-status-ready",
"interactive-terminal",
"kind-apples-juggle",
"lifecycle-prepare-error",
Expand All @@ -71,6 +72,7 @@
"old-wasps-buy",
"perf-infrastructure",
"plugin-lifecycle-migration",
"quiet-loggers-listen",
"rotten-pandas-marry",
"sage-v011-compat",
"server-api-routing",
Expand All @@ -89,6 +91,7 @@
"stale-cheetahs-argue",
"status-system",
"sync-flashcore-subscriptions",
"trpc-hmr-awareness",
"trpc-status-api",
"type-system-modular",
"v011-compat-updates",
Expand Down
2 changes: 2 additions & 0 deletions packages/@robojs/mock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @robojs/mock

## 0.1.1-next.1

## 0.1.1-next.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/@robojs/mock/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@robojs/mock",
"description": "Discord Gateway mock server for automated testing of Discord.js bots",
"version": "0.1.1-next.0",
"version": "0.1.1-next.1",
"private": false,
"type": "module",
"main": ".robo/build/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/@robojs/trpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @robojs/trpc

## 0.4.0-next.1

### Patch Changes

- fix(trpc): make plugin HMR-aware so editing src/trpc/ files hot-reloads the tRPC router

- Add route definition (`src/robo/routes/trpc.ts`) declaring `src/trpc/` as a handler directory
- Add HMR hook (`src/robo/hmr.ts`) for post-reload logging and portal route loading
- Call `portal.ensureRoute('trpc', 'trpc')` in start hook so the portal has handler records for HMR reloads

## 0.4.0-next.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/@robojs/trpc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@robojs/trpc",
"description": "Fully managed tRPC optimized for Robo.js",
"version": "0.4.0-next.0",
"version": "0.4.0-next.1",
"type": "module",
"private": false,
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/create-discord-activity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-discord-activity

## 0.1.11-next.1

## 0.1.11-next.0

## 0.1.10
Expand Down
2 changes: 1 addition & 1 deletion packages/create-discord-activity/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-discord-activity",
"description": "Create a Discord Activity in seconds using Robo.js.",
"version": "0.1.11-next.0",
"version": "0.1.11-next.1",
"type": "module",
"engines": {
"node": ">=18.0.0"
Expand Down
2 changes: 2 additions & 0 deletions packages/create-robo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# create-robo

## 0.15.0-next.1

## 0.15.0-next.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-robo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-robo",
"version": "0.15.0-next.0",
"version": "0.15.0-next.1",
"private": false,
"description": "Launch epic projects with Robo.js — effortless, powerful, complete!",
"engines": {
Expand Down
10 changes: 10 additions & 0 deletions packages/robo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# robo.js

## 0.11.0-next.1

### Patch Changes

- fix(dev): reset terminal status to ready after successful HMR reload

Previously the interactive CLI status stayed stuck at "[building]" after HMR because no `status-progress` events fire from the spirit (start hooks don't re-run during HMR). Now the dev command sets status to "ready" directly after any successful HMR cycle.

- fix(logger): preserve configured logger levels across repeated setup calls

## 0.11.0-next.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/robo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "robo.js",
"version": "0.11.0-next.0",
"version": "0.11.0-next.1",
"private": false,
"description": "The Universal App Framework - bots, web servers, and more!",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/sage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @roboplay/sage

## 0.7.4-next.1

## 0.7.4-next.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@roboplay/sage",
"version": "0.7.4-next.0",
"version": "0.7.4-next.1",
"private": false,
"description": "Codemod for Robo.js",
"engines": {
Expand Down
Loading