Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release] Synchronize for release #65

Merged
merged 1 commit into from
Oct 9, 2024
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# The recommended virtualenv directory.
/.venv/

# Temporary directories produced by `pytest`.
# Temporary directories produced by `python`.
__pycache__/
.pytest_cache/

Expand Down
4 changes: 2 additions & 2 deletions .rbtrc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dev run --name=hello
serve --name=hello

# Run the application!
dev run backend/src/main.py
dev run --application=backend/src/main.py

# Tell `rbt serve` that this is a Python application.
serve --python
Expand All @@ -70,4 +70,4 @@ serve --partitions=4
serve --tls=external

# Run the application!
serve backend/src/main.py
serve --application=backend/src/main.py
1 change: 0 additions & 1 deletion .tests/serve_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ stop_container() {
perform_curl() {
local url="localhost:8787/hello.v1.HelloInterface/Messages"
local headers=(
"-H" "x-reboot-service-name:hello.v1.HelloInterface"
"-H" "x-reboot-state-ref:hello.v1.Hello:reboot-hello"
)
local actual_output_file="$1"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/reboot-dev/reboot-base:0.15.0
FROM ghcr.io/reboot-dev/reboot-base:0.16.0

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion api/hello/v1/hello.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "rbt/v1alpha1/options.proto";
////////////////////////////////////////////////////////////////////////

message Hello {
option (.rbt.v1alpha1.state) = {
option (rbt.v1alpha1.state) = {
};
repeated string messages = 1;
}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[project]
requires-python = ">= 3.10"
dependencies = [
"reboot==0.15.0",
"reboot==0.16.0",
]

[tool.rye]
dev-dependencies = [
"mypy==1.2.0",
"pytest>=7.4.2",
"types-protobuf>=4.24.0.20240129",
"reboot==0.15.0",
"reboot==0.16.0",
]

# This project only uses `rye` to provide `python` and its dependencies, so
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ python-dateutil==2.9.0.post0
pyyaml==6.0.2
# via kubernetes-asyncio
# via reboot
reboot==0.15.0
reboot==0.16.0
setuptools==75.1.0
# via grpcio-tools
six==1.16.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ python-dateutil==2.9.0.post0
pyyaml==6.0.2
# via kubernetes-asyncio
# via reboot
reboot==0.15.0
reboot==0.16.0
setuptools==75.1.0
# via grpcio-tools
six==1.16.0
Expand Down
30 changes: 15 additions & 15 deletions web/package-lock.json

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

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@reboot-dev/reboot-react": "^0.15.0",
"@reboot-dev/reboot-react": "^0.16.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
Expand Down
Loading