diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a4f6ddce..7588679c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.6.0" + ".": "1.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ed80f0a0..8a3d8349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.7.0](https://github.com/launchdarkly/ldcli/compare/v1.6.0...v1.7.0) (2024-09-16) + + +### Features + +* Add command to launchDevly to update the project environment and context ([#433](https://github.com/launchdarkly/ldcli/issues/433)) ([1415e4a](https://github.com/launchdarkly/ldcli/commit/1415e4a7c8061a8745981cc3a7781bf56d420a8a)) +* Remove the sync endpoint in favor of patch project endpoint ([#431](https://github.com/launchdarkly/ldcli/issues/431)) ([d3622a0](https://github.com/launchdarkly/ldcli/commit/d3622a07f7b502be6eca35686bdbd1a9f863695a)) + ## [1.6.0](https://github.com/launchdarkly/ldcli/compare/v1.5.0...v1.6.0) (2024-09-13) diff --git a/PROVENANCE.md b/PROVENANCE.md index 25cea992..7fc0ba61 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.6.0_multiple_provenance.intoto.jsonl`. +These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_1.7.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.6.0 +PACKAGE_VERSION=1.7.0 ``` diff --git a/package.json b/package.json index 46db6e2f..e7591260 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.6.0", + "version": "1.7.0", "main": "index.js", "scripts": { "postinstall": "go-npm install",