Skip to content

v1.1.2

Compare
Choose a tag to compare
@ThomasJejkal ThomasJejkal released this 17 Mar 10:05
· 236 commits to main since this release

⭐ New Features

  • ContentInformation metadata now returns own ETags different from the ETag of the parent resource.
  • The allowed size of description content has been changed from 255 to 10240 characters (see 'Migration Remarks').

🪲 Bugfixes

  • Health information no longer collected from RabbitMQMessagingService if messaging is disabled by @ThomasJejkal in #134
  • Removed remaining autowired loggers which caused NPE at runtime by @ThomasJejkal in #132
  • Fixed automatic mediaType detection for content upload, i.e., solve issue that text-based files are always detected as text/plain.

🔨 Dependency Upgrades

  • Bump gson from 2.10 to 2.10.1 by @dependabot in #128
  • Bump httpclient from 4.5.13 to 4.5.14 by @dependabot in #127
  • Bump jackson-jaxrs-json-provider from 2.14.1 to 2.14.2 by @dependabot in #139
  • Bump io.freefair.lombok from 6.5.1 to 6.6.1 by @dependabot in #140
  • Bump edu.kit.datamanager.service-base from 1.1.0 to 1.1.1

🔧 Migration Remarks

For existing databases, a manual update is required to adjust the column size of the 'description' column of the Description table.
The query may depend on the used database system, for PostgreSQL this would be:

alter table description alter column description type character varying(10240);