Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ the [CAP Java Documentation](https://cap.cloud.sap/docs/java/security).
### Multitenancy

- When using SAP HANA as the storage target, multitenancy support depends on the consuming application. In most cases, multitenancy is achieved by using a dedicated schema for each tenant, providing strong data isolation at the database level.
- When using an [object store](storage-targets/cds-feature-attachments-oss) as the storage target, true multitenancy is not yet implemented (as of version 1.3.1). In this case, all blobs are stored in a single bucket, and tenant data is not separated.
- When using an [object store](storage-targets/cds-feature-attachments-oss) as the storage target, true multitenancy is not yet implemented (as of version 1.3.2). In this case, all blobs are stored in a single bucket, and tenant data is not separated.

### Object Stores

Expand Down
29 changes: 5 additions & 24 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).

The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Version 1.3.1 - 2026-02-06
## Version 1.3.2 - 2026-03-10

### Added
### Fixed
- Fixed Validation.Maximum annotation not triggering on first upload of an attachment

## Version 1.3.1 - 2026-02-06

### Changed
- Changed default max file size value to only be enforced when using the malware scanner

### Fixed

## Version 1.3.0 - 2026-01-26

### Added
Expand All @@ -28,18 +29,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

## Version 1.2.4 - 2025-12-17

### Added

### Changed

### Fixed
- DraftCancel not registering attachments as compositions
- fix overflowing filename

## Version 1.2.3 - 2025-12-01

### Added

### Changed
- Sample: Replaced cap-notebook with a bookshop sample

Expand Down Expand Up @@ -167,10 +162,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

- First public release on https://repo1.maven.org/maven2/com/sap/cds/

### Changed

### Fixed

## Version 1.0.2 - 2024-05-08

### Added
Expand All @@ -182,14 +173,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

- CAP Java version was updated to 2.9.1

### Fixed

## Version 1.0.1 - 2024-04-29

### Added

### Changed

### Fixed

- Fixed a bug in the annotation for the status field in the MediaData entity which causes that no text was shown in the
Expand All @@ -206,7 +191,3 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
- Handlers for application and draft services which calls the attachment service
- Call of malware scanner if bound to consuming services
- Spring boot test for attachment service and handlers

### Changed

-
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</distributionManagement>

<properties>
<revision>1.3.2</revision>
<revision>1.4.0-SNAPSHOT</revision>
<java.version>17</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion samples/bookshop/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>com.sap.cds</groupId>
<artifactId>cds-feature-attachments</artifactId>
<version>1.3.1</version>
<version>1.3.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
Loading