Skip to content

Commit 9262c78

Browse files
committed
Merge branch 'use-client-config' of github.com:appium/python-client into use-client-config
2 parents 2b19e2e + 671aa78 commit 9262c78

File tree

3 files changed

+105
-3
lines changed

3 files changed

+105
-3
lines changed

CHANGELOG.rst

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,108 @@ Changelog
22
=========
33

44

5+
v4.5.1 (2025-02-23)
6+
-------------------
7+
8+
Fix
9+
~~~
10+
- Prevent warning log when initialize a webdriver using version 4.5.0
11+
(selenium v4.26+) (#1098) [testerxiaodong]
12+
13+
Remove the parameter 'remote_ server _ addr' for initializing AppiumConnection at appium/webdriver/webdriver.py file line 220
14+
15+
Test
16+
~~~~
17+
- Test: Pytest does not require test classes unless you need grouping or
18+
fixtures with class scope. (#1094) [Dor Blayzer]
19+
- Test: use pytest without class-based structures, using
20+
parameterization for better reusability. (#1095) [Dor Blayzer]
21+
22+
Other
23+
~~~~~
24+
- Bump 4.5.1. [Kazuaki Matsuo]
25+
- Chore(deps): bump selenium from 4.28.1 to 4.29.0 (#1096)
26+
[dependabot[bot], dependabot[bot]]
27+
28+
Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.28.1 to 4.29.0.
29+
- [Release notes](https://github.com/SeleniumHQ/Selenium/releases)
30+
- [Commits](https://github.com/SeleniumHQ/Selenium/commits)
31+
32+
---
33+
updated-dependencies:
34+
- dependency-name: selenium
35+
dependency-type: direct:production
36+
update-type: version-update:semver-minor
37+
...
38+
- Chore(deps-dev): update ruff requirement from ~=0.9.3 to ~=0.9.5
39+
(#1092) [dependabot[bot], dependabot[bot]]
40+
41+
Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version.
42+
- [Release notes](https://github.com/astral-sh/ruff/releases)
43+
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
44+
- [Commits](https://github.com/astral-sh/ruff/compare/0.9.3...0.9.5)
45+
46+
---
47+
updated-dependencies:
48+
- dependency-name: ruff
49+
dependency-type: direct:development
50+
...
51+
- Chore(deps-dev): update pre-commit requirement from ~=3.5 to ~=4.1
52+
(#1085) [dependabot[bot], dependabot[bot]]
53+
54+
Updates the requirements on [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version.
55+
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
56+
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
57+
- [Commits](https://github.com/pre-commit/pre-commit/compare/v3.5.0...v4.1.0)
58+
59+
---
60+
updated-dependencies:
61+
- dependency-name: pre-commit
62+
dependency-type: direct:development
63+
...
64+
- Chore(deps-dev): update ruff requirement from ~=0.9.2 to ~=0.9.3
65+
(#1089) [dependabot[bot], dependabot[bot]]
66+
67+
Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version.
68+
- [Release notes](https://github.com/astral-sh/ruff/releases)
69+
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
70+
- [Commits](https://github.com/astral-sh/ruff/compare/0.9.2...0.9.3)
71+
72+
---
73+
updated-dependencies:
74+
- dependency-name: ruff
75+
dependency-type: direct:development
76+
...
77+
- Chore(deps): bump selenium from 4.28.0 to 4.28.1 (#1088)
78+
[dependabot[bot], dependabot[bot]]
79+
80+
Bumps [selenium](https://github.com/SeleniumHQ/Selenium) from 4.28.0 to 4.28.1.
81+
- [Release notes](https://github.com/SeleniumHQ/Selenium/releases)
82+
- [Commits](https://github.com/SeleniumHQ/Selenium/commits)
83+
84+
---
85+
updated-dependencies:
86+
- dependency-name: selenium
87+
dependency-type: direct:production
88+
update-type: version-update:semver-patch
89+
...
90+
- Chore(deps-dev): update tox requirement from ~=4.23 to ~=4.24 (#1086)
91+
[dependabot[bot], dependabot[bot]]
92+
93+
Updates the requirements on [tox](https://github.com/tox-dev/tox) to permit the latest version.
94+
- [Release notes](https://github.com/tox-dev/tox/releases)
95+
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
96+
- [Commits](https://github.com/tox-dev/tox/compare/4.23.0...4.24.1)
97+
98+
---
99+
updated-dependencies:
100+
- dependency-name: tox
101+
dependency-type: direct:development
102+
...
103+
- Docs: update README.md. [Kazuaki Matsuo]
104+
- Update changelog for 4.5.0. [Kazuaki Matsuo]
105+
106+
5107
v4.5.0 (2025-01-22)
6108
-------------------
7109
- Bump 4.5.0. [Kazuaki Matsuo]

Pipfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ verify_ssl = true
55

66
[dev-packages]
77
httpretty = "~=1.1"
8-
mock = "~=5.1"
8+
mock = "~=5.2"
99
pre-commit = "~=4.1"
1010
pytest = "~=8.3"
1111
pytest-cov = "~=5.0"
1212
python-dateutil = "~=2.9"
13-
ruff = "~=0.9.5"
13+
ruff = "~=0.9.9"
1414
tox = "~=4.24"
1515
types-python-dateutil = "~=2.9"
1616

appium/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '4.5.0'
1+
version = '4.5.1'

0 commit comments

Comments
 (0)