Skip to content

Commit

Permalink
release: v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 21, 2025
1 parent 3f438f6 commit 9f1e491
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "midscene",
"private": true,
"version": "0.11.3",
"version": "0.12.0",
"scripts": {
"build": "nx run-many --target=build --projects=@midscene/core,@midscene/shared,@midscene/visualizer,@midscene/web,@midscene/cli --verbose",
"test": "nx run-many --target=test --projects=@midscene/core,--projects=@midscene/shared,@midscene/visualizer,@midscene/web,@midscene/cli --verbose",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midscene/cli",
"description": "An AI-powered automation SDK can control the page, perform assertions, and extract data in JSON format using natural language. See https://midscenejs.com/ for details.",
"version": "0.11.3",
"version": "0.12.0",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"jsnext:source": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/evaluation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"version": "0.11.3"
"version": "0.12.0"
}
2 changes: 1 addition & 1 deletion packages/midscene/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midscene/core",
"description": "Automate browser actions, extract data, and perform assertions using AI. It offers JavaScript SDK, Chrome extension, and support for scripting in YAML. See https://midscenejs.com/ for details.",
"version": "0.11.3",
"version": "0.12.0",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"jsnext:source": "./src/index.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ exports[`system prompt to task planning > planning - 4o - response format 1`] =
],
"type": "object",
},
{
"additionalProperties": false,
"properties": {
"reason": {
"type": "string",
},
},
"required": [
"reason",
],
"type": "object",
},
],
"description": "Parameter of the action, can be null ONLY when the type field is Tap or Hover",
},
Expand All @@ -99,7 +111,7 @@ exports[`system prompt to task planning > planning - 4o - response format 1`] =
"type": "string",
},
"type": {
"description": "Type of action, like "Tap", "Hover", etc.",
"description": "Type of action, one of "Tap", "Hover" , "Input", "KeyboardPress", "Scroll", "ExpectedFalsyCondition", "Sleep"",
"type": "string",
},
},
Expand Down Expand Up @@ -172,7 +184,7 @@ You are a versatile professional in software UI automation. Your outstanding con
- All the actions you composed MUST be based on the page context information you get.
- Trust the "What have been done" field about the task (if any), don't repeat actions in it.
- Respond only with valid JSON. Do not write an introduction or summary or markdown prefix like \`\`\`json\`\`\`.
- If you cannot plan any action at all (i.e. empty actions array), set reason in the \`error\` field.
- If the screenshot and the instruction are totally irrelevant, set reason in the \`error\` field.
## About the \`actions\` field
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midscene/shared",
"version": "0.11.3",
"version": "0.12.0",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"types": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/visualizer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@midscene/visualizer",
"version": "0.11.3",
"version": "0.12.0",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"types": "./dist/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/visualizer/unpacked-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Midscene.js",
"description": "Open-source SDK for automating web pages using natural language through AI.",
"version": "0.33",
"version": "0.34",
"manifest_version": 3,
"permissions": [
"activeTab",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@midscene/web",
"description": "Automate browser actions, extract data, and perform assertions using AI. It offers JavaScript SDK, Chrome extension, and support for scripting in YAML. See https://midscenejs.com/ for details.",
"version": "0.11.3",
"version": "0.12.0",
"repository": "https://github.com/web-infra-dev/midscene",
"homepage": "https://midscenejs.com/",
"jsnext:source": "./src/index.ts",
Expand Down

0 comments on commit 9f1e491

Please sign in to comment.