Skip to content

Commit 6e17aa3

Browse files
authored
Merge branch 'master' into hubble2.0
2 parents 9a29f52 + 0473a29 commit 6e17aa3

File tree

12 files changed

+13
-9
lines changed

12 files changed

+13
-9
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ apache-release.sh export-ignore
1010
# ignored directory
1111
.github/ export-ignore
1212
hugegraph-dist/scripts/ export-ignore
13+
.serena/ export-ignore
1314
# only exclude the root
1415
/assembly/ export-ignore

.licenserc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ header: # `header` section is configurations for source codes license header.
5656
- 'LICENSE'
5757
- 'NOTICE'
5858
- 'DISCLAIMER'
59+
- '.serena/**'
5960
- '**/*.md'
6061
- '**/*.versionsBackup'
6162
- '**/*.log'

.serena/memories/README_INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,4 +241,4 @@ Onboarding completed: 2025-11-05
241241

242242
---
243243

244-
**Note**: All memories are stored in `.serena/memories/` directory and can be read using Serena MCP tools.
244+
**Note**: All memories are stored in `.serena/memories/` directory and can be read using Serena MCP tools.

.serena/memories/architecture_and_design_patterns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,4 +569,4 @@ server.port=8088
569569
spring.application.name=hugegraph-hubble
570570
graph.server.host=localhost
571571
graph.server.port=8080
572-
```
572+
```

.serena/memories/code_style_and_conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,4 +309,4 @@ src/test/java/
309309
### Go Error Handling
310310
- Return errors explicitly: `func() (result, error)`
311311
- Handle errors at call site
312-
- Wrap errors with context: `fmt.Errorf("context: %w", err)`
312+
- Wrap errors with context: `fmt.Errorf("context: %w", err)`

.serena/memories/common_development_workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -655,4 +655,4 @@ chmod +x .git/hooks/pre-commit
655655
- Project Docs: https://hugegraph.apache.org/docs/
656656
- API Docs: https://hugegraph.apache.org/docs/clients/restful-api/
657657
- GitHub Issues: https://github.com/apache/hugegraph-toolchain/issues
658-
- Mailing List: dev@hugegraph.apache.org
658+
- Mailing List: dev@hugegraph.apache.org

.serena/memories/project_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ toolchain/
123123
├── tools/ # Checkstyle, suppressions
124124
├── .github/workflows/ # CI/CD pipelines
125125
└── pom.xml # Root Maven config
126-
```
126+
```

.serena/memories/task_completion_checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,4 +370,4 @@ make test
370370

371371
---
372372

373-
**CRITICAL**: Do NOT commit code that fails any of the required checks. CI will fail and PR will be blocked.
373+
**CRITICAL**: Do NOT commit code that fails any of the required checks. CI will fail and PR will be blocked.

.serena/memories/testing_infrastructure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,4 +632,4 @@ go test -v
632632

633633
# Frontend verbose
634634
yarn test --verbose
635-
```
635+
```

hugegraph-hubble/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN set -x \
3535
&& cd /pkg/hugegraph-hubble/ \
3636
&& mvn package $MAVEN_ARGS -e -B -ntp -DskipTests -Dmaven.javadoc.skip=true
3737

38-
FROM openjdk:11-slim
38+
FROM eclipse-temurin:11-jre-jammy
3939

4040
COPY --from=build /pkg/hugegraph-hubble/apache-hugegraph-hubble-incubating-*/ /hubble
4141
WORKDIR /hubble/

0 commit comments

Comments
 (0)