Skip to content

Bump the pip group across 1 directory with 3 updates#16

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-713dd84ade
Closed

Bump the pip group across 1 directory with 3 updates#16
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/pip-713dd84ade

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 22, 2025

Copy link
Copy Markdown

Bumps the pip group with 3 updates in the / directory: pydantic, prometheus-client and pynmeagps.

Updates pydantic from 2.11.7 to 2.11.9

Release notes

Sourced from pydantic's releases.

v2.11.9 2025-09-13

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.8...v2.11.9

v2.11.8 2025-09-13

v2.11.8 (2025-09-13)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.7...v2.11.8

Changelog

Sourced from pydantic's changelog.

v2.11.9 (2025-09-13)

GitHub release

What's Changed

Fixes

v2.11.8 (2025-09-13)

GitHub release

What's Changed

Fixes

Commits

Updates prometheus-client from 0.22.1 to 0.23.1

Release notes

Sourced from prometheus-client's releases.

v0.23.1

What's Changed

New Contributors

Full Changelog: prometheus/client_python@v0.23.0...v0.23.1

v0.23.0

What's Changed

New Contributors

Full Changelog: prometheus/client_python@v0.22.1...v0.23.0

Commits
  • 8746c49 Release 0.23.1
  • 266beb2 fix: use tuples instead of packaging Version (#1136)
  • f947140 fix: Use asyncio.new_event_loop() to create event loop for tests (#1138)
  • b9e78a3 Release 0.23.0
  • b3fbbca Fix issue parsing double spaces after # HELP/# TYPE (#1134)
  • 47d2b41 Do not use global when only reading variable (#1133)
  • 4de31ee fix: remove space after comma in openmetrics exposition (#1132)
  • 3586355 Emit native histograms only when OM 2.0.0 is requested (#1128)
  • 9e3eb6c Fix bug which caused metric publishing to not accept query string parameters ...
  • d358f46 Bump flake8 libraries (#1127)
  • Additional commits viewable in compare view

Updates pynmeagps from 1.0.51 to 1.0.53

Release notes

Sourced from pynmeagps's releases.

v1.0.53

What's Changed

  1. Fix typo in Quectel PAIR650 GET message definition.
  2. Allow string type (as well as datetime.date/time type) for NMEA DT, DTL, DM and TM attribute constructors. TM strings must be in format "hhmmss" (or "hh:mm:ss"). DT/DTL/DM strings must be "yyyymmdd" (or "yyyy-mm-dd"). See examples in /examples/pynmeagps_usage.py.

Full Changelog: semuconsulting/pynmeagps@v1.0.52...v1.0.53

v1.0.52

What's Changed

  1. Add support for proprietary Quectel $PAIR message types (as used by Quectel LC29H and LC79H receivers).
  2. Add support for additional proprietary Quectel $PQTM message types (as used by Quectel LC29H and LC79H receivers).
  3. BSD 3-Clause license attribution clarified in all modules.

Full Changelog: semuconsulting/pynmeagps@v1.0.51...v1.0.52

Changelog

Sourced from pynmeagps's changelog.

RELEASE 1.0.53

FIXES:

  1. Fix typo in Quectel PAIR650 GET message definition.
  2. Allow string type (as well as datetime.date/time type) for NMEA DT, DTL, DM and TM attribute constructors. TM strings must be in format "hhmmss" (or "hh:mm:ss"). DT/DTL/DM strings must be "yyyymmdd" (or "yyyy-mm-dd"). See examples below:
from datetime import datetime
from pynmeagps import SET, NMEAMessage
NOTE THAT LAD/NS ("N"/"S") and LND/EW ("E"/"W") attributes do not need to be explicitly
provided - these values will be derived from the sign of the decimal lat/lon values.
NMEA Date (DM, DT, DTL) and Time (TM) attributes can be populated in any of the following ways:
A) use formatted string types for TM and DT attributes
msg1 = NMEAMessage(
"P",
"GRMI",
SET,
lat=-115.81513,
lon=37.23345,
date="2025-09-12",  # "-" delimiters are optional
time="12:15:34",  # ":" delimiters are optional
rcvr_cmd="D",
)
<NMEA(PGRMI, lat=-115.81513, NS=S, lon=37.23345, EW=E, date=2025-09-12, time=12:15:34, rcvr_cmd=D)>
b'$PGRMI,11548.90780,S,03714.00700,E,120925,121534,D*3B\r\n'
print(msg1)
print(msg1.serialize())
B) use datetime.date() and datetime.time() types for DT and TM attributes
msg2 = NMEAMessage(
"P",
"GRMI",
SET,
lat=-115.81513,
lon=37.23345,
date=datetime(2025, 9, 12).date(),
time=datetime(2025, 9, 12, 12, 15, 34).time(),
rcvr_cmd="D",
)
<NMEA(PGRMI, lat=-115.81513, NS=S, lon=37.23345, EW=E, date=2025-09-12, time=12:15:34, rcvr_cmd=D)>
b'$PGRMI,11548.90780,S,03714.00700,E,120925,121534.00,D*15\r\n'
print(msg2)
print(msg2.serialize())
C) use default values
</tr></table>

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pip group with 3 updates in the / directory: [pydantic](https://github.com/pydantic/pydantic), [prometheus-client](https://github.com/prometheus/client_python) and [pynmeagps](https://github.com/semuconsulting/pynmeagps).


Updates `pydantic` from 2.11.7 to 2.11.9
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.11.9/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.7...v2.11.9)

Updates `prometheus-client` from 0.22.1 to 0.23.1
- [Release notes](https://github.com/prometheus/client_python/releases)
- [Commits](prometheus/client_python@v0.22.1...v0.23.1)

Updates `pynmeagps` from 1.0.51 to 1.0.53
- [Release notes](https://github.com/semuconsulting/pynmeagps/releases)
- [Changelog](https://github.com/semuconsulting/pynmeagps/blob/master/RELEASE_NOTES.md)
- [Commits](semuconsulting/pynmeagps@v1.0.51...v1.0.53)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-version: 2.11.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: prometheus-client
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pynmeagps
  dependency-version: 1.0.53
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Sep 22, 2025
@dependabot @github

dependabot Bot commented on behalf of github Sep 29, 2025

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 29, 2025
@dependabot
dependabot Bot deleted the dependabot/pip/pip-713dd84ade branch September 29, 2025 19:55
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