diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 15df9e06..b3960c05 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.11.0" + ".": "1.12.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dc050fb..e9b339d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.12.0](https://github.com/launchdarkly/ldcli/compare/v1.11.0...v1.12.0) (2025-02-06) + + +### Features + +* Implement backup and restore of dev-server database ([#488](https://github.com/launchdarkly/ldcli/issues/488)) ([f0dd661](https://github.com/launchdarkly/ldcli/commit/f0dd66184e20242bbffff57e9978eab5f01e3203)) +* Implement backup and restore of dev-server database ([#488](https://github.com/launchdarkly/ldcli/issues/488)) ([f0dd661](https://github.com/launchdarkly/ldcli/commit/f0dd66184e20242bbffff57e9978eab5f01e3203)) +* Skip syncing on start if flag set ([#485](https://github.com/launchdarkly/ldcli/issues/485)) ([d85b862](https://github.com/launchdarkly/ldcli/commit/d85b86243a128ef0d7dd954e73424eb04a7619b9)) + + +### Bug Fixes + +* Correct sync once description ([#487](https://github.com/launchdarkly/ldcli/issues/487)) ([fa2abf3](https://github.com/launchdarkly/ldcli/commit/fa2abf38ee73c34f8a6cfc5af289eb2ce3348d1b)) + ## [1.11.0](https://github.com/launchdarkly/ldcli/compare/v1.10.1...v1.11.0) (2025-01-31) diff --git a/PROVENANCE.md b/PROVENANCE.md index 21619537..25b4dfba 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.11.0_multiple_provenance.intoto.jsonl`. +These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_1.12.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.11.0 +PACKAGE_VERSION=1.12.0 ``` diff --git a/package.json b/package.json index e21e71f0..641f2a04 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.11.0", + "version": "1.12.0", "main": "index.js", "scripts": { "postinstall": "go-npm install",