Skip to content

build(deps): bump @bufbuild/protobuf from 1.10.0 to 2.2.2 in /dashboard #972

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

Merged
merged 23 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0fe167c
build(deps): bump @bufbuild/protobuf from 1.10.0 to 2.2.2 in /dashboard
dependabot[bot] Nov 6, 2024
3e4d9eb
protobuf 更新に対応した
Pugma Dec 3, 2024
1629657
updated: `@connectrpc/connect` and `@connectrpc/connect-web`
Pugma Dec 3, 2024
30243bf
生成されなくなったファイルを削除
Pugma Dec 3, 2024
6535889
Timestamp 型の変更に対応
Pugma Dec 3, 2024
9c2e4fb
まだまだ Timestamp のエラーを解消 / Json からの変換も糸口を見つけた
Pugma Dec 3, 2024
2979bf4
Timestamp 解消完了
Pugma Dec 3, 2024
37276a8
PlainMessage 消すだけのところ対応完了
Pugma Dec 3, 2024
ee365ac
まだ timestampDate 関連あった
Pugma Dec 3, 2024
545fd6b
timestampDate まだ検索をすり抜けてた
Pugma Dec 3, 2024
039bc0e
PartialMessage を消してエラーが消えた部分
Pugma Dec 3, 2024
4fbbb22
不要なパッケージの削除
Pugma Dec 3, 2024
b343ef6
solid 関連で落ちているかも
Pugma Dec 3, 2024
f3ae9a7
apple silicon mac でもインストールコマンドが使えるように
Pugma Dec 3, 2024
c778a71
fix: 不足していた`$typeName`プロパティを追加
eyemono-moe Dec 3, 2024
1aa2efb
fix: 公開鍵設定フォームのスキーマを追加
eyemono-moe Dec 3, 2024
200dce4
fix: update handleSubmit to use UserKeyRequestInput type
eyemono-moe Dec 3, 2024
fd5295e
Merge branch 'main' into dependabot/npm_and_yarn/dashboard/bufbuild/p…
Pugma Dec 5, 2024
51bc3ab
マージコミットの残り
Pugma Dec 5, 2024
500af72
run: `yarn fix`
Pugma Dec 5, 2024
4386b93
`$typecheck` をアプリケーションの自動再起動スキーマにも適用させた
Pugma Dec 5, 2024
a934141
間違えて書いていた途中のテストコードを push してしまったので削除
Pugma Dec 5, 2024
b697d2f
そもそも `as` 以降が要らなかったので削除
Pugma Dec 9, 2024
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
5 changes: 5 additions & 0 deletions .local-dev/install-protoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@ case $(uname -s) in
"Darwin") OS="osx";;
*) echo "unknown os" && exit 1;;
esac

ARCH=$(uname -m)

if [ $ARCH = "arm64" ]; then
ARCH="aarch_64"
fi

curl -sSLOf https://github.com/protocolbuffers/protobuf/releases/download/v"$PROTOC_VERSION"/protoc-"$PROTOC_VERSION"-"$OS"-"$ARCH".zip
unzip protoc-"$PROTOC_VERSION"-"$OS"-"$ARCH".zip

Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PROTOC_VERSION := 27.1
PROTOC_VERSION := 29.0
TBLS_VERSION := 1.75.0

GO_REPO_ROOT_PACKAGE := "github.com/traPtitech/neoshowcase"
PROTOC_OPTS := -I ./api/proto --go_out=. --go_opt=module=$(GO_REPO_ROOT_PACKAGE) --connect-go_out=. --connect-go_opt=module=$(GO_REPO_ROOT_PACKAGE)
PROTOC_OPTS_CLIENT := -I ./api/proto --es_out=./dashboard/src/api --es_opt=target=ts --connect-es_out=./dashboard/src/api --connect-es_opt=target=ts
PROTOC_OPTS_CLIENT := -I ./api/proto --es_out=./dashboard/src/api --es_opt=target=ts
PROTOC_SOURCES ?= $(shell find ./api/proto/neoshowcase -type f -name "*.proto" -print)
PROTOC_SOURCES_CLIENT := ./api/proto/neoshowcase/protobuf/gateway.proto ./api/proto/neoshowcase/protobuf/null.proto

Expand Down Expand Up @@ -40,7 +40,7 @@ init-protoc:
init-protoc-tools:
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest
npm i -g @connectrpc/protoc-gen-connect-es @bufbuild/protoc-gen-es@1
npm i -g @bufbuild/protoc-gen-es@2

.PHONY: init
init: init-k3d init-kustomize init-protoc init-protoc-tools ## Install / update required tools
Expand Down
6 changes: 3 additions & 3 deletions dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
"vitest": "2.1.1"
},
"dependencies": {
"@bufbuild/protobuf": "1.10.0",
"@connectrpc/connect": "1.5.0",
"@connectrpc/connect-web": "1.5.0",
"@bufbuild/protobuf": "2.2.2",
"@connectrpc/connect": "2.0.0",
"@connectrpc/connect-web": "2.0.0",
"@kobalte/core": "0.13.6",
"@modular-forms/solid": "0.23.0",
"@solid-primitives/refs": "1.0.8",
Expand Down
Loading
Loading