Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## Unreleased
## 1.7.0
- Add support for CEL filtering when listing resources.
- Add support for service users
- Add support for `vault_name` on Secrets
-Make `pooling_enabled` on Endpoints optional

## 1.6.0

- Add support for internal endpoints

Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "ngrok-python"
version = "1.6.0"
version = "1.7.0"
description = "The ngrok Agent SDK for Python"

[lib]
Expand All @@ -15,7 +15,7 @@ futures = "0.3.26"
lazy_static = "1.4.0"
log = "0.4"
mio = { version = "1.0.3" }
ngrok = { version = "0.17.0", features = ["hyper"] }
ngrok = { version = "0.18.0", features = ["hyper"] }
once_cell = {version = "1.21"}
pyo3 = { version = "0.22", features = ["abi3", "abi3-py310", "extension-module", "multiple-pymethods", "experimental-async", "gil-refs", "generate-import-lib"]}
pyo3-async-runtimes = { version = "0.22", features = ["attributes", "tokio-runtime"] }
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ngrok"
version = "1.6.0"
version = "1.7.0"
readme = "README.md"
requires-python = ">=3.12"
# https://pypi.org/classifiers/
Expand Down
Loading