Skip to content

Releases: LibertyDSNP/dsnp-schemas

v1.3.2

07 Oct 16:29
53f95c8
Compare
Choose a tag to compare

Breaking Change

(DSNP Schemas follows DSNP versions for major and minor versions)

  • parquet.fromDSNPSchema now returns the input for ParquetSchema instead of an instance of it.

Before

const [parquetSchema, writerOptions] = parquet.fromDSNPSchema(descriptorForAnnouncementType(AnnouncementType.Broadcast).parquetSchema);
const writer = await ParquetWriter.openFile(parquetSchema, "./file.parquet", writerOptions);

After

const [parquetSchema, writerOptions] = parquet.fromDSNPSchema(descriptorForAnnouncementType(AnnouncementType.Broadcast).parquetSchema);
const writer = await ParquetWriter.openFile(new ParquetSchema(parquetSchema), "./file.parquet", writerOptions);

What's Changed

  • Move dependencies to devDependencies by @wesbiggs in #3

Full Changelog: v1.3.1...v1.3.2

v1.3.1

18 Sep 23:33
5e8676c
Compare
Choose a tag to compare

What's Changed

  • Fixes a copy-paste error for inline ProfileResource documentation by @wesbiggs in #2

Full Changelog: v1.3.0...v1.3.1

v1.3.0

18 Sep 17:30
7e327e3
Compare
Choose a tag to compare

What's Changed

  • Add new announcement types for Attribute Sets by @wesbiggs in #1

Full Changelog: v0.0.4...v1.3.0

v0.0.4

13 Aug 16:32
Compare
Choose a tag to compare

Matching DSNP version v1.3.0.