Skip to content

Commit

Permalink
feat(kvstore/s3): support custom S3 endpoints
Browse files Browse the repository at this point in the history
Custom S3 endpoints are now supported via `s3+https?://` URLs.

Additionally, plain `https?://` URLs also support S3-style listing
automatically.

Fixes #553.
  • Loading branch information
jbms committed Feb 3, 2025
1 parent e7e8a15 commit 5438e4c
Show file tree
Hide file tree
Showing 27 changed files with 1,619 additions and 881 deletions.
1 change: 1 addition & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"**/build",
"**/.tox",
"**/.nox",
"**/.venv",
"lib",
"**/python",
"**/config",
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ dist
/.ruff_cache
package.json
package-lock.json
.venv
8 changes: 8 additions & 0 deletions build_tools/vitest/python_tools/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[project]
name = "python-tools"
description = "Python tools used by the test suite"
version = "0.0"
requires-python = ">=3.11"
dependencies = [
"moto[s3,server]>=5.0.28",
]
1,091 changes: 1,091 additions & 0 deletions build_tools/vitest/python_tools/uv.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export default tseslint.config(
"**/build",
"**/.tox",
"**/.nox",
"**/.venv",
"lib",
"**/python",
"**/config",
Expand Down
2 changes: 0 additions & 2 deletions examples/parcel/parcel-project-source/package-lock.json

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

2 changes: 0 additions & 2 deletions examples/rsbuild/rsbuild-project-source/package-lock.json

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

2 changes: 0 additions & 2 deletions examples/rspack/rspack-project-source/package-lock.json

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

2 changes: 0 additions & 2 deletions examples/vite/vite-project-source/package-lock.json

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

2 changes: 0 additions & 2 deletions examples/webpack/webpack-project-source/package-lock.json

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

Loading

0 comments on commit 5438e4c

Please sign in to comment.