Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
a9e4012
Update pom.xml to use dynamic versioning and add analysis module
Codespilot Jun 2, 2026
d7ffeb4
Refactor application.yaml for cloud configuration and application nam…
Codespilot Jun 2, 2026
445a3e3
Add initial setup for analysis application with Maven configuration a…
Codespilot Jun 2, 2026
4adc40e
Add FrequencyController for managing frequently used bundle items
Codespilot Jun 2, 2026
dde73fc
Refactor BundleMapProfile to improve mapping logic for BundleExtend f…
Codespilot Jun 3, 2026
4303e60
Enhance JWT token generation with signing key validation and update a…
Codespilot Jun 3, 2026
1115b12
Enhance JWT authentication filter with signing key validation and imp…
Codespilot Jun 3, 2026
432821b
Update application.yaml with JWT configuration and enhance logging le…
Codespilot Jun 3, 2026
2fbc0a8
Add CORS configuration to security settings and refine authorization …
Codespilot Jun 3, 2026
4405f07
Rename itemCount to itemsCount in BundleExtend and update related met…
Codespilot Jun 3, 2026
9ac5f6a
Refactor BundleMapProfile to improve mapping logic and enhance collec…
Codespilot Jun 3, 2026
573d56c
Refactor BundleRepositoryImpl to improve entity mapping and update ti…
Codespilot Jun 3, 2026
5755717
Throw IllegalArgumentException when attempting to append an item with…
Codespilot Jun 3, 2026
76e1492
Add command handlers for appending, removing, and updating bundle items
Codespilot Jun 3, 2026
8ba71a5
Implement asynchronous command handling for appending, updating, and …
Codespilot Jun 3, 2026
4f5f80a
Refactor MediatorConfiguration to remove unused imports and clean up …
Codespilot Jun 3, 2026
035e01c
Enhance security configuration by enabling inheritable security conte…
Codespilot Jun 3, 2026
f14f54a
Add BundleLabel entity and update Bundle and BundleItem for label man…
Codespilot Jun 4, 2026
711d295
Add labels management to Bundle entity with getter, adder, and remove…
Codespilot Jun 4, 2026
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: 2 additions & 0 deletions analysis/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/mvnw text eol=lf
*.cmd text eol=crlf
33 changes: 33 additions & 0 deletions analysis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
HELP.md
target/
.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
3 changes: 3 additions & 0 deletions analysis/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
wrapperVersion=3.3.4
distributionType=only-script
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.16/apache-maven-3.9.16-bin.zip
295 changes: 295 additions & 0 deletions analysis/mvnw

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

Loading