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

[fix: sde-v2.0.3] merging code to master for fixes #26

Merged
merged 4 commits into from
Jul 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]
- Support EDC version 4.1.
- Renamed SerialPartTypization aspect submodel to SerialPart.
- Renamed AssemblyPartRelationship aspect submodel to SingleLevelBoMAsBuilt.
- Renamed AssemblyPartRelationship aspect submodel to SingleLevelBoMAsBuilt

## [2.0.3] - 2023-07-12
### Added
- added umbrella charts for sde frontend and backend.
- removed the older charts.

### Fixed
- BPN discovery update.
- remove unwanted maven module.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
## [2.0.2] - 2023-06-21
### Added
- BPN Discovery service integration for DDTR.
Expand Down Expand Up @@ -146,7 +155,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Compliance with Catena-X Guidelines
- Integration with Digital Twin registry service.

[unreleased]: https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend/compare/dftbackend-2.0.2...main
[unreleased]: https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend/compare/dftbackend-2.0.3...main
[2.0.3]: https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend/compare/dftbackend-2.0.2...dftbackend-2.0.3
[2.0.2]: https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend/compare/dftbackend-2.0.1...dftbackend-2.0.2
[2.0.1]: https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend/compare/dftbackend-2.0.0...dftbackend-2.0.1
[2.0.0]: https://github.com/eclipse-tractusx/dft-backend/compare/1.9.1...2.0.0
Expand Down
7 changes: 3 additions & 4 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ RUN mvn clean install

FROM eclipse-temurin:19-jdk-jammy

ARG USERNAME=dftuser
ARG USERNAME=sdeuser
ARG USER_UID=1001
ARG USER_GID=$USER_UID

# Create the user

RUN useradd -rm -d /home/dftuser -s /bin/bash -u $USER_UID -U $USERNAME
RUN useradd -rm -d /home/sdeuser -s /bin/bash -u $USER_UID -U $USERNAME


USER $USERNAME

# set deployment directory
WORKDIR /home/user/dftuser/dftapp
WORKDIR /home/user/sdeuser/sdeapp

# copy over the built artifact from the maven image

Expand All @@ -36,4 +36,3 @@ EXPOSE 8080
# set the startup command to run your binary

CMD ["java", "-jar", "./app.jar","--spring.config.location=file:/app/configuration.properties"]

202 changes: 0 additions & 202 deletions charts/LICENSE

This file was deleted.

Loading