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

api-server: update dependencies #913

Merged
merged 42 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
151f1ef
update uvicorn
koonpeng Mar 13, 2024
e03e9d8
fix docs url to follow new root path behavior
koonpeng Mar 13, 2024
3015efa
revert change to how we determine root path
koonpeng Mar 13, 2024
1e232a9
fix Pipfile
koonpeng Mar 13, 2024
2bc403a
use verbose flag in ci
koonpeng Mar 15, 2024
e935d36
again
koonpeng Mar 15, 2024
980800b
fix test error
koonpeng Mar 15, 2024
49f3851
remove unused imports
koonpeng Mar 15, 2024
2f26f70
temp disable broken test
koonpeng Mar 15, 2024
e236d41
skip another broken test
koonpeng Mar 15, 2024
ebfae90
WIP updating pydantic
koonpeng Mar 15, 2024
ce806e2
fix broken socketio tests
koonpeng Mar 18, 2024
f732edd
fix using old field
koonpeng Mar 18, 2024
37e5ec6
switch to new lifespan api
koonpeng Mar 18, 2024
5b192b5
fix typings
koonpeng Mar 18, 2024
7d0f997
remove use of deprecated code
koonpeng Mar 18, 2024
5692c48
update pylint
koonpeng Mar 18, 2024
e061901
update client api
koonpeng Mar 21, 2024
63e1b11
do not separate input and output schemas
koonpeng Mar 21, 2024
b87974b
revert incompatible change where all ros fields are optional
koonpeng Mar 21, 2024
267b3d1
update api-client
koonpeng Mar 21, 2024
90bc2b9
fixes for frontend
koonpeng Mar 21, 2024
0e4608a
WIP updating tests
koonpeng Mar 21, 2024
6d234e1
fix tests
koonpeng Apr 2, 2024
a39a09b
before eject
koonpeng Apr 2, 2024
5f282bd
eject react-scripts and update dependencies, needed to fix axios
koonpeng Apr 2, 2024
dcf7762
update node
koonpeng Apr 2, 2024
ced3d2d
update eslint
koonpeng Apr 3, 2024
04e3a07
move to jest, fix broken tests, remove svg and canvas tests
koonpeng Apr 3, 2024
0a6d9ff
migrating storybook
koonpeng Apr 3, 2024
371fc52
finish migrating storybook
koonpeng Apr 3, 2024
503d64c
migrate storybook on rmf-auth
koonpeng Apr 3, 2024
154586f
cleanup
koonpeng Apr 3, 2024
c108cf0
remove unused imports
koonpeng Apr 4, 2024
a721b07
update lint command
koonpeng Apr 4, 2024
ea061ca
fix imports
koonpeng Apr 4, 2024
85ce1b5
fix cjs not being processed
koonpeng Apr 4, 2024
bdbd356
disable treating warnings as errors
koonpeng Apr 4, 2024
39229ff
Merge remote-tracking branch 'origin/main' into kp/update-uvicorn
koonpeng Apr 12, 2024
f5240d6
update readme to use pnpm and node20
koonpeng Apr 17, 2024
08c80bc
workaround pydantic serialization problem
koonpeng Apr 22, 2024
8820c85
fix conversion in tests
koonpeng Apr 23, 2024
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
  •  
  •  
  •  
51 changes: 0 additions & 51 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/actions/bootstrap/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
version: 'latest'
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '20'
cache: 'pnpm'
- name: Install pipenv
run: pip3 install pipenv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/api-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
. /rmf_demos_ws/install/setup.bash
pnpm run lint
pnpm run test:cov
pnpm run test:cov -v
pipenv run python -m coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
Expand Down
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

pnpm exec lint-staged
Loading
Loading