real-browser-mcp-server 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,15 +37,15 @@ jobs:
37
37
 
38
38
  steps:
39
39
  - name: 📥 Checkout Repository
40
- uses: actions/checkout@v4
40
+ uses: actions/checkout@v5
41
41
  with:
42
42
  fetch-depth: 0
43
43
  token: ${{ secrets.GH_TOKEN || github.token }}
44
44
 
45
45
  - name: 🟢 Setup Node.js
46
- uses: actions/setup-node@v4
46
+ uses: actions/setup-node@v5
47
47
  with:
48
- node-version: '20'
48
+ node-version: '22'
49
49
  registry-url: 'https://registry.npmjs.org'
50
50
 
51
51
  - name: ⚙️ Configure Git
@@ -114,6 +114,7 @@ jobs:
114
114
  NEW_VERSION=$(node -p "require('./package.json').version")
115
115
  echo "✅ New version: $NEW_VERSION"
116
116
  echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
117
+ echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
117
118
  echo "version=v$NEW_VERSION" >> $GITHUB_OUTPUT
118
119
 
119
120
  - name: 🚀 Push Version Bump & Tag
@@ -131,10 +132,10 @@ jobs:
131
132
  - name: 📋 Create GitHub Release
132
133
  if: github.event.inputs.dry_run != 'true'
133
134
  run: |
134
- TAG="v${{ env.NEW_VERSION }}"
135
+ TAG="v${{ steps.versioning.outputs.NEW_VERSION }}"
135
136
 
136
137
  cat > release_body.md << EOF
137
- ## 🚀 Real Browser MCP Server v${{ env.NEW_VERSION }}
138
+ ## 🚀 Real Browser MCP Server v${{ steps.versioning.outputs.NEW_VERSION }}
138
139
 
139
140
  ### 📦 Published Packages
140
141
  - **NPM Package**: [real-browser-mcp-server](https://www.npmjs.com/package/real-browser-mcp-server)
@@ -147,7 +148,7 @@ jobs:
147
148
 
148
149
  ### 📥 Installation
149
150
  \`\`\`bash
150
- npm install real-browser-mcp-server@${{ env.NEW_VERSION }}
151
+ npm install real-browser-mcp-server@${{ steps.versioning.outputs.NEW_VERSION }}
151
152
  \`\`\`
152
153
 
153
154
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "real-browser-mcp-server",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "MCP Server for Real Browser - Patchright (undetected Playwright fork) with Stealth Mode, Ad Blocker, and Turnstile Auto-Solver for undetectable web automation.",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/esm/index.mjs",