Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
094397e
feat(v5): replacing existing SDK with new v5 SDK
lukeocodes Sep 25, 2025
54c5318
build: update examples dependencies
lukeocodes Sep 27, 2025
d8ee411
fix: add type ignore comments for Pydantic v2 compatibility
lukeocodes Sep 27, 2025
143d56a
feat: update agent v1 socket type definitions
lukeocodes Sep 27, 2025
3ed9ef8
refactor: restructure test directory organization
lukeocodes Sep 27, 2025
8dd53d3
docs: update websockets reference documentation
lukeocodes Sep 27, 2025
7650c99
fix(types): resolve all mypy type checking errors
lukeocodes Sep 27, 2025
73c82d8
ci: add mypy dependency to test job
lukeocodes Sep 27, 2025
435a157
ci: scope mypy to src directory only
lukeocodes Sep 27, 2025
999ca7c
fix(types): ensure Python 3.8 compatibility for type annotations
lukeocodes Sep 27, 2025
1d4e8bd
fix(types): complete Python 3.8 compatibility for type annotations
lukeocodes Sep 27, 2025
d140e27
fix(types): add valid-type ignore comments for type alias usage
lukeocodes Sep 27, 2025
b8474df
fix(tests): replace union syntax in test files for Python 3.8 compati…
lukeocodes Sep 27, 2025
7609981
fix(tests): replace isinstance checks with Union types for Python 3.8
lukeocodes Sep 27, 2025
b95cbfb
feat: update package configuration for v5.0.0
lukeocodes Sep 27, 2025
76e3dd9
feat: add release-please configuration for automated releases
lukeocodes Sep 27, 2025
156b2c5
chore: fern generator should skip repleacing scripts and tests
lukeocodes Sep 27, 2025
1964b70
SDK regeneration
fern-api[bot] Sep 27, 2025
b1815d4
docs: add comprehensive v3+ to v5.0.0 migration guide
lukeocodes Sep 27, 2025
2b77e59
docs: rewrite v2 to v3+ migration guide with consistent format
lukeocodes Sep 27, 2025
f8e20a8
docs: update README.md with v5.0.0 content and migration guide links
lukeocodes Sep 27, 2025
98a03f8
chore: adding contributing instructions
lukeocodes Sep 28, 2025
1426594
chore: bootstrap releases for path: . (#574)
lukeocodes Sep 28, 2025
2ada769
feat: configure release-please for python package
lukeocodes Sep 28, 2025
4d96767
chore: configuring release-please
lukeocodes Sep 28, 2025
af9bec6
chore: correct project name
lukeocodes Sep 28, 2025
aab53ef
chore: hotfix pyproject.toml
lukeocodes Sep 28, 2025
f95d0e0
chore: configure release-please
lukeocodes Sep 29, 2025
6975411
chore: move release-please config
lukeocodes Sep 29, 2025
7c6dd83
chore: fixing generic version replacement for release-please
lukeocodes Sep 29, 2025
ab7bb64
chore: correct jsonpath on release-please config
lukeocodes Sep 29, 2025
244ace2
chore: update release-please config
lukeocodes Sep 30, 2025
7a947e0
chore: reconfigure meta for generated code
lukeocodes Sep 30, 2025
af79ec5
SDK regeneration
fern-api[bot] Sep 30, 2025
83bc92e
fix: remove imports for deprecated language enum types
lukeocodes Sep 30, 2025
2091b38
SDK regeneration
fern-api[bot] Oct 1, 2025
f78068b
chore: modifying our workflows
lukeocodes Oct 1, 2025
e2014d9
chore: correct readme
lukeocodes Oct 1, 2025
0ca9624
chore: correct contributing guidelines
lukeocodes Oct 1, 2025
5f0e23b
chore: correct setup-python action version in workflows
lukeocodes Oct 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
21 changes: 0 additions & 21 deletions .devcontainer/Dockerfile

This file was deleted.

54 changes: 0 additions & 54 deletions .devcontainer/devcontainer.json

This file was deleted.

2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

31 changes: 31 additions & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Development, Configuration Files & Documentation
README.md
CONTRIBUTING.md
.vscode/
.gitignore
mypy.ini
websockets-reference.md
.github/
scripts/run_examples.sh
docs/

# Examples
examples/

# Test Files
tests/unit/
tests/integrations/

# Custom Extensions & Clients
src/deepgram/client.py
src/deepgram/extensions/

# Socket Client Implementations
src/deepgram/agent/v1/socket_client.py
src/deepgram/listen/v1/socket_client.py
src/deepgram/listen/v2/socket_client.py
src/deepgram/speak/v1/socket_client.py

# Bug Fixes
src/deepgram/listen/client.py
src/deepgram/core/client_wrapper.py
3 changes: 3 additions & 0 deletions .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "4.8.1"
}
141 changes: 0 additions & 141 deletions .github/BRANCH_AND_RELEASE_PROCESS.md

This file was deleted.

Loading