Skip to content

Commit f14a8af

Browse files
committed
make local changes
2 parents 02da423 + ab31b6e commit f14a8af

File tree

7 files changed

+374
-19
lines changed

7 files changed

+374
-19
lines changed

.changeset/economic-teal-albatross.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
name: Bug report
3+
about: Detailed descriptions help us resolve faster
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Before submitting an issue, please:**
11+
12+
- [ ] Check the [documentation](https://docs.stagehand.dev/) for relevant information
13+
- [ ] Search existing [issues](https://github.com/browserbase/stagehand/issues) to avoid duplicates
14+
15+
## Environment Information
16+
17+
Please provide the following information to help us reproduce and resolve your issue:
18+
19+
**Stagehand:**
20+
21+
- Language/SDK: [TypeScript, Python, MCP…]
22+
- Stagehand version: [e.g., 1.0.0]
23+
24+
**AI Provider:**
25+
26+
- Provider: [e.g., OpenAI, Anthropic, Azure OpenAI]
27+
- Model: [e.g., gpt-4o, claude-3-7-sonnet-latest]
28+
29+
## Issue Description
30+
31+
```
32+
[Describe the current behavior here]
33+
```
34+
35+
### Steps to Reproduce
36+
37+
1.
38+
2.
39+
3.
40+
41+
### Minimal Reproduction Code
42+
43+
```tsx
44+
// Your minimal reproduction code here
45+
import { Stagehand } from '@browserbase/stagehand';
46+
47+
const stagehand = new Stagehand({
48+
// IMPORTANT: include your stagehand config
49+
});
50+
51+
// Steps that reproduce the issue
52+
53+
```
54+
55+
### Error Messages / Log trace
56+
57+
```
58+
[Paste error messages/logs here]
59+
```
60+
61+
### Screenshots / Videos
62+
63+
```
64+
[Attach screenshots or videos here]
65+
```
66+
67+
### Related Issues
68+
69+
Are there any related issues or PRs?
70+
71+
- Related to: #[issue number]
72+
- Duplicate of: #[issue number]
73+
- Blocks: #[issue number]
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Are you willing to contribute to implementing this feature or fix?**
20+
21+
- [ ] Yes, I can submit a PR
22+
- [ ] Yes, but I need guidance
23+
- [ ] No, I cannot contribute at this time

.github/workflows/feature-parity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
repo: 'stagehand',
132132
title: issueTitle,
133133
body: issueBody,
134-
labels: ['feature-parity']
134+
labels: ['parity']
135135
});
136136
137137
console.log(`Created issue: ${issue.html_url}`);

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Stagehand Python Changelog
22

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
[#191](https://github.com/browserbase/stagehand-python/pull/191) [`7fb6a6f`](https://github.com/browserbase/stagehand-python/commit/7fb6a6f) Thanks @miguelg719! - Add support for custom base_url on api
8+
[#185](https://github.com/browserbase/stagehand-python/pull/185) [`ec22cb9`](https://github.com/browserbase/stagehand-python/commit/ec22cb9) Thanks @filip-michalsky! - fix camelCase and snake_case return api extract schema mismatch
9+
310
## 0.5.1
411

512
### Patch Changes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "stagehand"
7-
version = "0.5.1"
7+
version = "0.5.2"
88
description = "Python SDK for Stagehand"
99
readme = "README.md"
1010
classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]

0 commit comments

Comments
 (0)