Skip to content

Commit f231450

Browse files
LaunchDarklyReleaseBothroederldbwoskow-ldgwhelanLDLaunchDarklyCI
authored
prepare 4.0.1 release (#63)
## [4.0.1] - 2023-10-26 ### Removed: - Eliminated unnecessary and noisy log message --------- Co-authored-by: hroederld <[email protected]> Co-authored-by: Ben Woskow <[email protected]> Co-authored-by: Gavin Whelan <[email protected]> Co-authored-by: LaunchDarklyCI <[email protected]> Co-authored-by: ember-stevens <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]> Co-authored-by: Alex Biehl <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]> Co-authored-by: Ember Stevens <[email protected]> Co-authored-by: Louis Chan <[email protected]> Co-authored-by: LaunchDarklyReleaseBot <[email protected]> Co-authored-by: Phil de Joux <[email protected]> Co-authored-by: Veronika Romashkina <[email protected]> Co-authored-by: ld-repository-standards[bot] <113625520+ld-repository-standards[bot]@users.noreply.github.com> Co-authored-by: Kane Parkinson <[email protected]>
1 parent d212c27 commit f231450

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.ldrelease/publish.sh

100644100755
-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ HUP_HACKAGE_PASSWORD="$(cat "${LD_RELEASE_SECRETS_DIR}/hup_hackage_password")"
77
export HUP_HACKAGE_PASSWORD
88

99
hup packboth -u launchdarkly
10-
hup docboth -u launchdarkly

CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Repository Maintainers
2+
* @launchdarkly/team-sdk-haskell

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The LaunchDarkly Server-side SDK for Haskell is designed primarily for use in mu
66

77
## LaunchDarkly overview
88

9-
[LaunchDarkly](https://www.launchdarkly.com) is a feature management platform that serves over 100 billion feature flags daily to help teams build better software, faster. [Get started](https://docs.launchdarkly.com/home/getting-started) using LaunchDarkly today!
9+
[LaunchDarkly](https://www.launchdarkly.com) is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. [Get started](https://docs.launchdarkly.com/home/getting-started) using LaunchDarkly today!
1010

1111
[![Twitter Follow](https://img.shields.io/twitter/follow/launchdarkly.svg?style=social&label=Follow&maxAge=2592000)](https://twitter.com/intent/follow?screen_name=launchdarkly)
1212

@@ -16,7 +16,7 @@ Download a release archive from the [GitHub Releases](https://github.com/launchd
1616

1717
## Learn more
1818

19-
Check out our [documentation](https://docs.launchdarkly.com) for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the [complete reference guide for this SDK](https://docs.launchdarkly.com/sdk/server-side/haskell).
19+
Read our [documentation](https://docs.launchdarkly.com) for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the [complete reference guide for this SDK](https://docs.launchdarkly.com/sdk/server-side/haskell).
2020

2121
## Testing
2222

src/LaunchDarkly/Server/Network/Streaming.hs

+1-3
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,7 @@ readWithException body =
189189
Just bytes -> if bytes == B.empty then throwIO ReadEClosed else pure (decodeUtf8 bytes)
190190

191191
readStream :: (MonadIO m, MonadLogger m, MonadMask m) => IO ByteString -> DataSourceUpdates -> m Bool
192-
readStream body dataSourceUpdates = do
193-
$(logError) "starting readStream"
194-
loop "" False
192+
readStream body dataSourceUpdates = loop "" False
195193
where
196194
loop initial processedEvent =
197195
tryReadE (parseWith (liftIO $ readWithException body) parseEvent initial) >>= \case

0 commit comments

Comments
 (0)