diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7867a621..09a25228 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 134bb4a1..af23bf1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [1.2.0](https://github.com/launchdarkly/ldcli/compare/v1.1.1...v1.2.0) (2024-07-15) + + +### Features + +* Can fetch a token based on the device code ([#323](https://github.com/launchdarkly/ldcli/issues/323)) ([769b925](https://github.com/launchdarkly/ldcli/commit/769b925dc25ba52eedaa426b46de4a1a3843d281)) +* Create login command ([#319](https://github.com/launchdarkly/ldcli/issues/319)) ([f151a71](https://github.com/launchdarkly/ldcli/commit/f151a71d4981bfefd9913179b156c7f1f0139a20)) +* Open browser automatically during login command ([#351](https://github.com/launchdarkly/ldcli/issues/351)) ([846c5c3](https://github.com/launchdarkly/ldcli/commit/846c5c339c57be48ffb179ef7da1c77e7c880e1c)) +* sc-240964/fetch token ([#326](https://github.com/launchdarkly/ldcli/issues/326)) ([58dc226](https://github.com/launchdarkly/ldcli/commit/58dc2268fa153247b0dcc2649de560ea67938423)) +* sc-240965/check current access token ([#324](https://github.com/launchdarkly/ldcli/issues/324)) ([edb3d2d](https://github.com/launchdarkly/ldcli/commit/edb3d2d54397d46bdff5607bccc75a3b84b09599)) + + +### Bug Fixes + +* Create config file if it does not exist ([#379](https://github.com/launchdarkly/ldcli/issues/379)) ([3e672ab](https://github.com/launchdarkly/ldcli/commit/3e672ab7bbeb2f19f04869bba3cf2ee2b65f0b6f)) +* **deps:** use consistent Go version in builds and CI ([#377](https://github.com/launchdarkly/ldcli/issues/377)) ([83cf380](https://github.com/launchdarkly/ldcli/commit/83cf380596881f77ab0fe35f3d8305973475f3e2)) +* Update readme about where config file is stored ([#325](https://github.com/launchdarkly/ldcli/issues/325)) ([82c94e9](https://github.com/launchdarkly/ldcli/commit/82c94e9ba1ac67cb04611d34f724c417e6995bbd)) + ## [1.1.1](https://github.com/launchdarkly/ldcli/compare/v1.1.0...v1.1.1) (2024-06-04) diff --git a/PROVENANCE.md b/PROVENANCE.md index c0011c4a..58ba8fdc 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.1.1_multiple_provenance.intoto.jsonl`. +These attestations are available for download from the GitHub release page for the release version under Assets > `ldcli_1.2.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.1.1 +PACKAGE_VERSION=1.2.0 ``` diff --git a/package.json b/package.json index 8dc57605..86e78758 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.1.1", + "version": "1.2.0", "main": "index.js", "scripts": { "postinstall": "go-npm install",