Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ All notable changes to this project will be documented in this file. See [standa
- Remove the external dotenvx executable dependency.
- Remove the legacy setuptools build configuration.

### Security

- Upgrade PyO3 to 0.29.0, resolving its known iterator out-of-bounds read,
missing closure synchronization bound, and string conversion buffer-overflow
advisories.

## [0.3.0](https://github.com/dotenvx/dotenvx/compare/v0.2.6...v0.3.0)

### Added
Expand Down
20 changes: 20 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,26 @@ cargo check
The `dotenvx-primitives` dependency version is independent. Change it only
when this package should embed a newer primitives release.

## Security audits

Audit Rust dependencies in `Cargo.lock` with RustSec:

```sh
cargo install cargo-audit --locked
cargo audit
```

Python's equivalent of `npm audit` is `pip-audit`:

```sh
python -m pip install pip-audit
pip-audit .
```

This project currently has no runtime Python dependencies, but `pip-audit`
should still be run whenever Python dependencies are added. Native dependencies
embedded in the wheel are covered by `cargo audit`, not `pip-audit`.

## Publishing

Git tags matching `v*` trigger wheel builds for Linux, macOS, and Windows and
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dynamic = ["version"]
description = "a secure dotenv–from the creator of `dotenv`"
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
license = { text = "BSD-3-Clause" }
authors = [
{ name = "dotenv", email = "mot@dotenvx.com" }
Expand Down
Loading