Skip to content

Commit ec826ee

Browse files
lsy357biwang75678kidkidkidmocayo
authored
[feat][all] Release v1.1.0 (#104)
* [fix][workflow] action trigger with release branch (#103) fix(workflow): action trigger with release branch * [feat][all] feature v1.1.0 (#101) * [feat] [infra] docker image & helm chart (#3) * fix(evaluation): evaltarget converter panic - code sync with 89dbdac81e57ca417544b7de0d41673ff9cc33b1 * feat(evaluation): add target type CozeWrokflow - code sync with MR-260 * fix(evaluation): BatchGetEvaluatorByID with write db option - code sync with d12af290149f205b9d3045cdddf2d311920a202c * fix(evaluation): SubmitExperiment auth - code sync with 42016a6664026ffaafd3a0992f7ea9d76609f052 * feat(observability): commercial open core - code sync with 4ba2ec7dfa6d6fcefeab523f3fe71f389f938193 * fix(observability): metrics init once - code sync with a5ba037c610d78b1790afa50ea726e1634337ad5 * fix(observability): add logic delete time filter - code sync with 302f3cf4ee5569d3779104dff432f4e50e187d50 * fix(observability): span ttl - code sync with bf9d052caf9f0cc5e7475eae5311c70c4d45254a * fix(evaluation): expt zombie items status trans - code sync with da7fca75c9d96caff2cc310b4b98a13b00fda7f5 * fix(observability): GetTrace with span_ids - code sync with b336860ed3b285b278b3f42a54906d94d059b71d * feat(prompt): commercial open core - code sync with 61731c0337f9c079db0d9a7adb4a83517b31d7f2 * fix(infra): error mw parse kitex bizerr - code sync with 0e277ef5ecf0c764c18f2a79a019ba4137c832a4 * fix(prompt): prompt debug without cancel - code sync with 39875a9e438039e2298ce3df895a5e66eece7762 * fix(prompt): ListPrompt with committed only - code sync with 9468a33e35d6ea1672fc4804014809b5b66f031d * feat(prompt): openapi event collector - code sync with f26b33d8bac6449e47d6d5d1d731b06c8ac4bc4e * feat(prompt): openapi sdk panic - code sync with da3319bbd7665738874e9c09992d3b4319dcc9f1 * feat(evaluation): expt report item search enhancement - code sync with MR-292 * feat(infra): docker image & helm chart --------- Co-authored-by: liushengyang <liushengyang@bytedance.com> # Conflicts: # backend/script/gorm_gen/generate.go * feat(infra): docker compose makefile change (#4) * [feat] [infra] update helm release (#5) * feat(infra): docker compose makefile change * feat(infra): update helm release * [feat] [backend] sync code (#6) * fix(evaluation): expt statistic cnt err - code sync with 424de1cabe35b36a0cb0d169dea7854382c2e38f * fix(evaluation): mysql/rmq docker cfg * feat(backend): update go version (#7) * fix(backend): golint (#9) * [fix] [evaluation] mysql ddl with create nx (#10) * fix(evaluation): mysql ddl with create nx * chore(infra): gitignore add venv * fix(infra): tracer err lint (#11) * feat(backend): ttl up into 365d (#13) * [fix] [frontend] i18n texts in prompt-pages and evaluation pages (#14) * fix(prompt-pages): text * fix(evaluate): text * [feat] [wiki] update content (#12) * feat(wiki): update for docker image & k8s * update * change conf * make helm * update * expose 8888 * feat(docker): jianrong * update * [fix] [prompt] placeholder var name (#15) * fix(prompt): placeholder var name * doc(intl): readme * [fix][infra] dev/debug wait err (#16) * fix(infra): debug wait & model_example conf * fix(evaluation): expt statistic save err * feat(helm) add minikube conf (#17) * [fix][infra] license header author (#18) * fix(infra): license header author * fix(backend): minio ut * chore(infra): gitignore add chart (#19) * [fix] [prompt] prompt clone var error (#20) * fix(prompt): url after delete * fix(prompt): copy vars * [ci] [workflow] remove hard code git user (#21) * ci: remove hard code git user in fe ci * [fix][backend] revise readme (#22) * change deployment guide --------- Co-authored-by: gcx75678 <biwang75678@gmail.com> Co-authored-by: kidkidkid <20141845+kidkidkid@users.noreply.github.com> Co-authored-by: Mocayo <mocayo@qq.com> --------- Co-authored-by: gcx75678 <biwang75678@gmail.com> Co-authored-by: kidkidkid <20141845+kidkidkid@users.noreply.github.com> Co-authored-by: Mocayo <mocayo@qq.com>
1 parent 42a2efe commit ec826ee

757 files changed

Lines changed: 101120 additions & 7826 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.air.toml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/backend-ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ name: CI@backend
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ["main", "release/**"]
66
paths:
77
- 'backend/**'
88
- '.github/workflows/backend-ci.yaml'
99
pull_request:
10-
branches: ["main"]
10+
branches: ["main", "release/**"]
1111
paths:
1212
- 'backend/**'
1313
- '.github/workflows/backend-ci.yaml'
14+
workflow_dispatch:
1415

1516
permissions:
1617
contents: read

.github/workflows/frontend-ci.yaml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: CI@frontend - Main
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ["main", "release/**"]
66
paths:
77
- 'frontend/**'
88
- '.github/workflows/frontend-ci.yaml'
99
pull_request:
10-
branches: ["main"]
10+
branches: ["main", "release/**"]
1111
paths:
1212
- 'frontend/**'
1313
- '.github/workflows/frontend-ci.yaml'
@@ -23,21 +23,13 @@ jobs:
2323
runs-on: ubuntu-latest
2424
env:
2525
NODE_VERSION: '18'
26-
# should be ci trigger user
27-
GIT_USER_NAME: 'mocayo'
28-
GIT_USER_EMAIL: 'qihai@bytedance.com'
2926
BUILD_BRANCH: ${{ github.ref }}
3027
steps:
3128
- name: Checkout
3229
uses: actions/checkout@v4
3330
with:
3431
fetch-depth: 1
3532

36-
- name: Config Git User
37-
run: |
38-
git config --local user.name ${{ env.GIT_USER_NAME }}
39-
git config --local user.email ${{ env.GIT_USER_EMAIL }}
40-
4133
- name: Setup Node
4234
uses: actions/setup-node@v3
4335
with:

.github/workflows/frontend-tsc-ci.yaml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: CI@frontend - TS Check
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: ["main", "release/**"]
66
paths:
77
- 'frontend/**'
88
- '.github/workflows/frontend-tsc-ci.yaml'
99
pull_request:
10-
branches: ["main"]
10+
branches: ["main", "release/**"]
1111
paths:
1212
- 'frontend/**'
1313
- '.github/workflows/frontend-tsc-ci.yaml'
@@ -23,20 +23,12 @@ jobs:
2323
runs-on: ubuntu-latest
2424
env:
2525
NODE_VERSION: '18'
26-
# should be ci trigger user
27-
GIT_USER_NAME: 'mocayo'
28-
GIT_USER_EMAIL: 'qihai@bytedance.com'
2926
steps:
3027
- name: Checkout
3128
uses: actions/checkout@v4
3229
with:
3330
fetch-depth: 1
3431

35-
- name: Config Git User
36-
run: |
37-
git config --local user.name ${{ env.GIT_USER_NAME }}
38-
git config --local user.email ${{ env.GIT_USER_EMAIL }}
39-
4032
- name: Setup Node
4133
uses: actions/setup-node@v3
4234
with:

.github/workflows/license-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: License Check
22

33
on:
44
push:
5-
branches: ['main']
5+
branches: ['main', "release/**"]
66
pull_request:
7-
branches: ['main']
7+
branches: ['main', "release/**"]
88
workflow_dispatch:
99

1010
permissions:

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,10 @@ log/
4242
node_modules/
4343

4444
.eslintcache
45+
46+
venv/
47+
48+
# Helm chart dependencies
49+
release/deployment/helm-chart/umbrella/charts/
50+
release/deployment/helm-chart/umbrella/Chart.lock
51+

Dockerfile

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)