Skip to content

Commit 3980804

Browse files
chore(main): release 4.4.0 (#92)
🤖 I have created a release *beep* *boop* --- ## [4.4.0](4.3.0...4.4.0) (2024-12-05) This release introduces the ability to enable compression of event payloads. When enabled, the SDK will compress events before sending them to the LaunchDarkly servers. This can reduce the bandwidth required to send events, which can be useful in high-traffic environments to reduce egress traffic costs. > [!IMPORTANT] > Relay Proxy users **MUST** upgrade to version 8.9 or higher prior to enabling this option to prevent loss of event data. > > However, enabling this feature is **NOT** required when using the Relay Proxy as it will manage compression automatically. ### Features * Add option to enable compression of event payloads ([#91](#91)) ([cb21081](cb21081)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew Keeler <[email protected]>
1 parent ba70c2a commit 3980804

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "4.3.0"
2+
".": "4.4.0"
33
}

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
All notable changes to the LaunchDarkly Haskell Server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [4.4.0](https://github.com/launchdarkly/haskell-server-sdk/compare/4.3.0...4.4.0) (2024-12-05)
6+
7+
This release introduces the ability to enable compression of event payloads. When enabled, the SDK will compress events before sending them to the LaunchDarkly servers. This can reduce the bandwidth required to send events, which can be useful in high-traffic environments to reduce egress traffic costs.
8+
9+
> [!IMPORTANT]
10+
> Relay Proxy users **MUST** upgrade to version 8.9 or higher prior to enabling this option to prevent loss of event data.
11+
>
12+
> However, enabling this feature is **NOT** required when using the Relay Proxy as it will manage compression automatically.
13+
14+
15+
### Features
16+
17+
* Add option to enable compression of event payloads ([#91](https://github.com/launchdarkly/haskell-server-sdk/issues/91)) ([cb21081](https://github.com/launchdarkly/haskell-server-sdk/commit/cb2108103c5210d08b7976e9ad4d3357c332b783))
18+
519
## [4.3.0](https://github.com/launchdarkly/haskell-server-sdk/compare/4.2.0...4.3.0) (2024-10-24)
620

721

PROVENANCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To verify SLSA provenance attestations, we recommend using [slsa-verifier](https
99
<!-- x-release-please-start-version -->
1010
```
1111
# Set the version of the SDK to verify
12-
SDK_VERSION=4.3.0
12+
SDK_VERSION=4.4.0
1313
```
1414
<!-- x-release-please-end -->
1515

launchdarkly-server-sdk.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
55
-- see: https://github.com/sol/hpack
66

77
name: launchdarkly-server-sdk
8-
version: 4.3.0
8+
version: 4.4.0
99
synopsis: Server-side SDK for integrating with LaunchDarkly
1010
description: Please see the README on GitHub at <https://github.com/launchdarkly/haskell-server-sdk#readme>
1111
category: Web

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: launchdarkly-server-sdk
2-
version: 4.3.0
2+
version: 4.4.0
33
github: launchdarkly/haskell-server-sdk
44
license: Apache-2.0
55
license-file: LICENSE

src/LaunchDarkly/Server/Client/Internal.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import LaunchDarkly.Server.Store.Internal (StoreHandle, getInitializedC)
2121

2222
-- | The version string for this library.
2323
clientVersion :: Text
24-
clientVersion = "4.3.0" -- x-release-please-version
24+
clientVersion = "4.4.0" -- x-release-please-version
2525

2626
-- |
2727
-- Client is the LaunchDarkly client. Client instances are thread-safe.

0 commit comments

Comments
 (0)