Skip to content

build(deps)(deps): bump asyncua from 1.1.8 to 2.0#134

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/asyncua-2.0
Open

build(deps)(deps): bump asyncua from 1.1.8 to 2.0#134
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/asyncua-2.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor

Bumps asyncua from 1.1.8 to 2.0.

Release notes

Sourced from asyncua's releases.

v2.0

v1.0

  • mvp pubsub support
  • automatic reconnection
  • python 3.14 support
  • remove support for python < 3.10
  • avoid use of exec in structure104.py
  • reduce number of network calls in load_data_type_definitions()
  • update nodeset to 1.0.5.05
  • split defualt address space loading into small chunks
  • improved error handling in some situations
  • typing for the main interface files and enable typing
  • many bugfixes

New Contributors

@Harshith-N-Srivatsa made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1859
@hrycko-mb made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1871
@40csmith40 made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1868
@RoboCrafty made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1875
@alexchandel made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1879
@jprogin made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1891
@nlsg made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1904
@Alexander-Zender made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1907
@kwint made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1916
@RinZ27 made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1920
@basyskom-swid made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1932
@jarrie-engel made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1935
@akselerando made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1939
@zarch made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1929
@Lidang-Jiang made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1954
@zeuhour made their first contribution in https://github.com/FreeOpcUa/opcua-asyncio/pull/1984

Full Changelog: FreeOpcUa/opcua-asyncio@v1.1.8...v1.0

Full Changelog: FreeOpcUa/opcua-asyncio@v1.0...v2.0

v1.05a1

No release notes provided.

v1.2b2

second beta mvp pubsub support python 3.14 support remove support for python < 3.10 avoid use of exec in structure104.py reduce number of network calls in load_data_type_definitions()

... (truncated)

Changelog

Sourced from asyncua's changelog.

"""Release helper run from a developer machine.

Bumps the version, commits, tags, pushes and publishes the package to PyPI. Pushing the v<version> tag triggers .github/workflows/release.yml, which creates the matching GitHub release automatically. """

import re import shutil import subprocess import sys from pathlib import Path

PYPROJECT = Path("pyproject.toml") ALLOWED_BRANCHES = ("main", "master", "v2") BUMP_KINDS = ("major", "minor", "patch")

PEP 440 version-like (major.minor[.patch][prerelease tag]) — used to decide

whether a CLI argument is a bump kind or an explicit version string.

_VERSION_RE = re.compile(r"^\d+(.\d+)([abc]|rc|alpha|beta|dev|post|.dev|.post)?\d$")

def _run(*cmd: str) -> str: return subprocess.run(cmd, capture_output=True, text=True, check=True).stdout.strip()

def _confirm(prompt: str) -> bool: return input(prompt).strip().lower() in ("", "y", "yes")

def _current_branch() -> str: return _run("git", "branch", "--show-current")

def _working_tree_clean() -> bool: unstaged = subprocess.run(["git", "diff", "--quiet"], check=False).returncode staged = subprocess.run(["git", "diff", "--quiet", "--cached"], check=False).returncode return unstaged == 0 and staged == 0

def _local_up_to_date() -> bool | None: """Return True if local matches its upstream, False if behind/ahead, None if no upstream configured.""" subprocess.run(["git", "fetch"], check=True) has_upstream = subprocess.run( ["git", "rev-parse", "--abbrev-ref", "--symbolic-full-name", "@{u}"], capture_output=True, text=True, check=False, ) if has_upstream.returncode != 0: return None

... (truncated)

Commits
  • e8de423 new release: 2.0
  • d6ac386 new release: 1.0
  • 4c2995a update release script
  • bae9444 expose method to create self signed certificate
  • d64f739 refactor(client): flatten connect/reconnect/supervisor into focused helpers
  • c7e9042 refactor(client): derive session-closing from session state and use plain enu...
  • 128f35e remove more useless comments by AI and humans
  • 5556d93 refactor(client): encapsulate UaClient/UaSession internals behind high-level ...
  • 9231109 refactor(client): drop comments that restate the code
  • 6c642c5 fix: skip invalid bits when parsing enum bitfield
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 8, 2026
@dependabot dependabot Bot requested a review from AdeGneus as a code owner June 8, 2026 05:10
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 8, 2026
@dependabot dependabot Bot force-pushed the dependabot/pip/asyncua-2.0 branch 6 times, most recently from 4acea5e to ba7c488 Compare June 14, 2026 05:29
Bumps [asyncua](https://github.com/FreeOpcUa/opcua-asyncio) from 1.1.8 to 2.0.
- [Release notes](https://github.com/FreeOpcUa/opcua-asyncio/releases)
- [Changelog](https://github.com/FreeOpcUa/opcua-asyncio/blob/master/release.py)
- [Commits](FreeOpcUa/opcua-asyncio@v1.1.8...v2.0)

---
updated-dependencies:
- dependency-name: asyncua
  dependency-version: '2.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/pip/asyncua-2.0 branch from ba7c488 to f6e364a Compare June 16, 2026 00:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants