diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d8f5f..ec23cd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ _Internal changes, like typos or internal fixes to the json-schema are not liste * New **GDDType**: `color-rrggbbaa` [PR #16](https://github.com/SuperFlyTV/GraphicsDataDefinition/pull/16) * Optional properties `authorName` and `authorEmail` added, [PR #17](https://github.com/SuperFlyTV/GraphicsDataDefinition/pull/17) * Add `render.resolutions` property to the Schema. [PR #18](https://github.com/SuperFlyTV/GraphicsDataDefinition/pull/18) -* Version 1.1.0 of the [javascript npm library](https://www.npmjs.com/package/graphics-data-definition) is released. +* Version 1.1.1 of the [javascript npm library](https://www.npmjs.com/package/graphics-data-definition) is released. ## 2022-10-28 diff --git a/lib/javascript-library/CHANGELOG.md b/lib/javascript-library/CHANGELOG.md index 853cecc..111a1b3 100644 --- a/lib/javascript-library/CHANGELOG.md +++ b/lib/javascript-library/CHANGELOG.md @@ -2,6 +2,34 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 1.1.1 (2023-10-20) + + +### Features + +* add authorName and authorEmail ([ea3e04b](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/ea3e04b4fcf44e00b93bd80fef0180d8ee96f3e8)) +* add color-rrggbbaa GDDType ([be9386e](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/be9386efd00efdf28d44ee18d019345aa1810f94)) +* add gddPlayoutOptions.resolutions properties ([823e4a0](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/823e4a0f084822231d4e3d7fad13b58eeaf4069d)) +* some suggested changes to the GDD meta tag ([898beb0](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/898beb0fbf717932b1cfabe8f7e7c04c8f2d62df)) +* string and number select ([9d6f4f6](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/9d6f4f637d92ede18c4f1439c296e96341435b3b)) + + +### Bug Fixes + +* add GDDTypes to ts-types ([35cbc75](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/35cbc75071f5ef328b9b2eb963c27272af14d96c)) +* add optional $schema property to definition ([c1bf00b](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/c1bf00b191a37472558ca4f72c3afd8f7b683dc3)) +* bug in reference-gui ([123273e](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/123273ecd0a0019f06f6c026521abc5fe1d2a23e)) +* change gddPlayoutOptions.client.duration to be number or null ([e3dac03](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/e3dac03426d716154c5e863948243e45e03e1b00)), closes [/github.com/SuperFlyTV/GraphicsDataDefinition/pull/10#discussion_r991128300](https://github.com/SuperFlyTV//github.com/SuperFlyTV/GraphicsDataDefinition/pull/10/issues/discussion_r991128300) +* fix typo: use "title", not "label" in reference-gui ([98f284f](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/98f284f38e33b2fe1790e69dce363aaa2a2584d8)) +* improve type docs ([2bf2f14](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/2bf2f143dc5b8892cf390d46a1fa35fa48c9ba8b)) +* js-lib types ([df909f6](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/df909f66280175aaf1a043a9558a8717bd5b1f6f)) +* slight modifications of properties in gddPlayoutOptions.client ([3248746](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/32487469b7be1ddfa82bc38cd7b3d238345f3186)) +* temporary (?) remove the function for retrieving gdd-schema, since it depends on Node.js deps, and the library is supposed to run both in Node.js and browser ([bdead0d](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/bdead0d04a3104d69926234a996a72701f94513b)) +* update meta-schemas ([6c66662](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/6c666620fee2d4f7d0107fd0f6a4c1e8e2bdbccc)) +* update Select GDDType to work with string, number and integer ([4f3d9c1](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/4f3d9c1d3bee7152033f29ec04aaa5526cbea244)) +* use meta-schemas in schemaValidate function ([301b17e](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/301b17e2523a2fbbfa82bc654c08a60bc9e7feaf)) +* wrong type for duration-ms. ([0e7683d](https://github.com/SuperFlyTV/GraphicsDataDefinition/commit/0e7683deac6bfce8e31812e96bb8c764ce3ec091)) + ## 1.1.0 (2023-10-20) diff --git a/lib/javascript-library/package.json b/lib/javascript-library/package.json index 0b5d239..2effcd5 100644 --- a/lib/javascript-library/package.json +++ b/lib/javascript-library/package.json @@ -1,6 +1,6 @@ { "name": "graphics-data-definition", - "version": "1.1.0", + "version": "1.1.1", "main": "dist/index.js", "license": "MIT", "homepage": "https://github.com/SuperFlyTV/GraphicsDataDefinition",