Skip to content

Commit f4e5930

Browse files
committed
chore: release v1.1.0 and update changelog with release date
1 parent 6887610 commit f4e5930

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.1.0] - 2025-09-XX
8+
## [1.1.0] - 2025-09-22
99

1010
### Added
1111
- **Network Logs (opt-in)**: Capture fetch, XMLHttpRequest, and WebSocket as `[network]` entries alongside console logs. Disabled by default; enable via `networkLogs.enabled: true` (Vite/Next/Nuxt/Core).
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Removed protocol from network log text. Format now: `[NETWORK] [METHOD] [URL] [STATUS] [DURATION ms]` and WS events `[WS OPEN/CLOSE/ERROR]`.
1818
- Next/Nuxt handlers now suppress terminal only when `BROWSER_ECHO_MCP_URL` is set.
1919

20-
## [1.0.2] - 2025-09-XX
20+
## [1.0.2] - 2025-09-13
2121

2222
### Fixed
2323
- **File Logging Stack Mode**: Fixed file logging to properly respect `stackMode` configuration, ensuring that both `full` and `condensed` stack modes work correctly when writing logs to files

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/core",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/mcp",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"private": false,
55
"type": "module",
66
"main": "dist/index.mjs",

packages/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/next",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

packages/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/nuxt",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/react",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

packages/vite/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/vite",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@browser-echo/vue",
3-
"version": "1.1.0-alpha.1",
3+
"version": "1.1.0",
44
"type": "module",
55
"sideEffects": false,
66
"repository": {

scripts/release.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ function createGitCommitAndTag(version: string, isAlpha: boolean = false) {
328328
console.log('📝 Creating git commit and tag...')
329329

330330
try {
331-
// Stage all package.json files
332-
run('git add packages/*/package.json', rootPath)
331+
// Stage all package.json files and lockfile
332+
run('git add packages/*/package.json pnpm-lock.yaml', rootPath)
333333

334334
// Create commit with version message
335335
const commitMsg = isAlpha
@@ -402,6 +402,10 @@ async function publishPackages() {
402402
// Update workspace dependencies to use published versions
403403
updateWorkspaceDependencies(updatedPackages)
404404

405+
// Ensure lockfile matches updated manifests before committing/tagging
406+
console.log('🔒 Updating pnpm-lock.yaml to match manifests...')
407+
run('pnpm install --no-frozen-lockfile', rootPath)
408+
405409
// Create git commit and tag if not skipped
406410
if (!skipGit && newVersion) {
407411
createGitCommitAndTag(newVersion, isAlpha)

0 commit comments

Comments
 (0)