diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ff4c2c5a..6180eb92 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.4" + ".": "1.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 95ecdd33..a38cc069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.5.0](https://github.com/launchdarkly/ldcli/compare/v1.4.4...v1.5.0) (2024-09-06) + + +### Features + +* Pick from list of real variations ([#420](https://github.com/launchdarkly/ldcli/issues/420)) ([91e8cbf](https://github.com/launchdarkly/ldcli/commit/91e8cbf8ba82cdff1625914a0e8b7fad5605da39)) + + +### Bug Fixes + +* Add dev server to usage template ([#411](https://github.com/launchdarkly/ldcli/issues/411)) ([66a6a25](https://github.com/launchdarkly/ldcli/commit/66a6a25fb20b8c4bafd8730b4d45b97882adb8c3)) +* dev server commands emit events ([#410](https://github.com/launchdarkly/ldcli/issues/410)) ([2019b77](https://github.com/launchdarkly/ldcli/commit/2019b772cab8fd585bed6b58e3625fc873e1fa84)) +* Handle unhandled errors in dev server UI ([#416](https://github.com/launchdarkly/ldcli/issues/416)) ([afe5281](https://github.com/launchdarkly/ldcli/commit/afe5281868e26839f36eb91b4b3c7254aa98f7dc)) +* Propagate dev server errors in CLI compatible format ([#412](https://github.com/launchdarkly/ldcli/issues/412)) ([67cc93a](https://github.com/launchdarkly/ldcli/commit/67cc93a6b3129956b228fe1d1506d277abc3b0b1)) + ## [1.4.4](https://github.com/launchdarkly/ldcli/compare/v1.4.3...v1.4.4) (2024-08-19) diff --git a/PROVENANCE.md b/PROVENANCE.md index 9c1deb93..0d4d620f 100644 --- a/PROVENANCE.md +++ b/PROVENANCE.md @@ -5,7 +5,7 @@ LaunchDarkly uses the [SLSA framework](https://slsa.dev/spec/v1.0/about) (Supply As part of [SLSA requirements for level 3 compliance](https://slsa.dev/spec/v1.0/requirements), LaunchDarkly publishes provenance about our package builds using [GitHub's generic SLSA3 provenance generator](https://github.com/slsa-framework/slsa-github-generator/blob/main/internal/builders/generic/README.md#generation-of-slsa3-provenance-for-arbitrary-projects) for distribution alongside our packages. -These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_1.4.4_multiple_provenance.intoto.jsonl`. +These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_1.5.0_multiple_provenance.intoto.jsonl`. To verify SLSA provenance attestations, we recommend using [slsa-verifier](https://github.com/slsa-framework/slsa-verifier). Example usage for verifying packages for Linux is included below: @@ -13,7 +13,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https ``` # Set the version of the PACKAGE to verify -PACKAGE_VERSION=1.4.4 +PACKAGE_VERSION=1.5.0 ``` diff --git a/package.json b/package.json index 193f7e93..e0201b75 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@launchdarkly/ldcli", "description": "The official command line interface for managing LaunchDarkly feature flags.", - "version": "1.4.4", + "version": "1.5.0", "main": "index.js", "scripts": { "postinstall": "go-npm install",