Skip to content
Open
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
96 changes: 96 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.5.0] - 2024-??-??

### Added
- Initial release with agentmail functionality

## [0.4.15] - 2024-??-??

### Fixed
- Fix ruff I001 import sorting issues

## [0.4.14] - 2024-??-??

### Added
- Release 0.4.14

## [0.4.13] - 2024-??-??

### Added
- Release 0.4.13

## [0.4.12] - 2024-??-??

### Added
- Release 0.4.12

## [0.4.11] - 2024-??-??

### Added
- Release 0.4.11

## [0.4.10] - 2024-??-??

### Added
- Release 0.4.10

## [0.4.9] - 2024-??-??

### Added
- Release 0.4.9

## [0.4.7] - 2024-??-??

### Added
- Release 0.4.7

## [0.4.5] - 2024-??-??

### Added
- Release 0.4.5

## [0.4.4] - 2024-??-??

### Added
- Release 0.4.4

## [0.2.24] - 2024-??-??

### Added
- Release 0.2.24

## [0.2.23] - 2024-??-??

### Added
- Release 0.2.23

## [0.2.22] - 2024-??-??

### Added
- Release 0.2.22

## [0.2.21] - 2024-??-??

### Added
- Release 0.2.21

## [0.2.20] - 2024-??-??

### Added
- Release 0.2.20

## [0.0.284] - 2024-??-??

### Added
- Release 0.0.284

## [0.0.281] - 2024-??-??

### Added
- Release 0.0.281
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 AgentMail

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion src/agentmail/core/query_encoder.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was auto-generated by Fern from our API Definition.

from typing import Any, Dict, List, Optional, Tuple
import json
from typing import Any, Dict, List, Optional, Tuple

import pydantic

Expand Down
1 change: 1 addition & 0 deletions tests/utils/test_query_encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from agentmail.core.query_encoder import encode_query


def test_query_encoding_simple_list() -> None:
assert encode_query({"hello": ["world", "today"]}) == [("hello", '["world", "today"]')]

Expand Down