Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix mistakes in freckle-http tests #229

Merged
merged 2 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion freckle-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## [_Unreleased_](https://github.com/freckle/freckle-app/compare/freckle-app-v1.22.0.0...main)
## [_Unreleased_](https://github.com/freckle/freckle-app/compare/freckle-app-v1.23.0.0...main)

## [v1.23.0.0](https://github.com/freckle/freckle-app/compare/freckle-app-v1.22.0.0...freckle-app-v1.23.0.0)

Removes `Freckle.App.HttpSpec` which had been included by mistake.

## [v1.22.0.0](https://github.com/freckle/freckle-app/compare/freckle-app-v1.21.0.0...freckle-app-v1.22.0.0)

Expand Down
4 changes: 1 addition & 3 deletions freckle-app/freckle-app.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.22
-- see: https://github.com/sol/hpack

name: freckle-app
version: 1.22.0.0
version: 1.23.0.0
synopsis: Haskell application toolkit used at Freckle
description: Please see README.md
category: Utils
Expand Down Expand Up @@ -69,7 +69,6 @@ library
, Freckle.App.Http.Header
, Freckle.App.Http.Paginate
, Freckle.App.Http.Retry
, Freckle.App.HttpSpec
, Freckle.App.Prelude
, Freckle.App.Exception
, Freckle.App.Exception.MonadThrow
Expand Down Expand Up @@ -203,7 +202,6 @@ test-suite spec
Freckle.App.BugsnagSpec
Freckle.App.CsvSpec
Freckle.App.Test.Hspec.AnnotatedExceptionSpec
Freckle.App.Test.Http.MatchRequestSpec
Freckle.App.Test.Properties.JSONSpec
Freckle.App.Test.Properties.PathPieceSpec
Freckle.App.Test.Properties.PersistValueSpec
Expand Down
3 changes: 1 addition & 2 deletions freckle-app/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: freckle-app
version: 1.22.0.0
version: 1.23.0.0

maintainer: Freckle Education
category: Utils
Expand Down Expand Up @@ -66,7 +66,6 @@ library:
- Freckle.App.Http.Header
- Freckle.App.Http.Paginate
- Freckle.App.Http.Retry
- Freckle.App.HttpSpec
- Freckle.App.Prelude
- Freckle.App.Exception
- Freckle.App.Exception.MonadThrow
Expand Down
6 changes: 5 additions & 1 deletion freckle-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## [_Unreleased_](https://github.com/freckle/freckle-app/compare/freckle-http-v0.0.0.0...main)
## [_Unreleased_](https://github.com/freckle/freckle-app/compare/freckle-http-v0.1.0.0...main)

## [v0.1.0.0](https://github.com/freckle/freckle-app/compare/freckle-http-v0.0.0.0...freckle-http-v0.1.0.0)

Removes `Freckle.App.HttpSpec` which had been included by mistake.

## [v0.0.0.0](https://github.com/freckle/freckle-app/tree/freckle-http-v0.0.0.0/freckle-http)

Expand Down
13 changes: 7 additions & 6 deletions freckle-http/freckle-http.cabal
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cabal-version: 1.18

-- This file has been generated from package.yaml by hpack version 0.36.0.
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack

name: freckle-http
version: 0.0.0.0
version: 0.1.0.0
synopsis: Toolkit for making HTTP requests
description: Please see README.md
category: HTTP
Expand Down Expand Up @@ -35,7 +35,6 @@ library
Freckle.App.Http.Header
Freckle.App.Http.Paginate
Freckle.App.Http.Retry
Freckle.App.HttpSpec
Freckle.App.Test.Http
Freckle.App.Test.Http.MatchRequest
other-modules:
Expand Down Expand Up @@ -72,13 +71,11 @@ library
, filepath
, freckle-memcached
, hs-opentelemetry-api
, hspec >=2.8.1
, http-client
, http-conduit >=2.3.5
, http-link-header
, http-types
, lens
, lens-aeson
, memcache
, monad-logger
, monad-validate
Expand All @@ -102,6 +99,8 @@ test-suite spec
main-is: Main.hs
other-modules:
Freckle.App.Http.CacheSpec
Freckle.App.HttpSpec
Freckle.App.Test.Http.MatchRequestSpec
Paths_freckle_http
hs-source-dirs:
tests
Expand All @@ -125,11 +124,13 @@ test-suite spec
, base <5
, bytestring
, freckle-http
, hspec
, freckle-prelude
, hspec >=2.8.1
, hspec-expectations-json
, hspec-expectations-lifted
, http-types
, lens
, lens-aeson
, mtl
, time
, unordered-containers
Expand Down
8 changes: 4 additions & 4 deletions freckle-http/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: freckle-http
version: 0.0.0.0
version: 0.1.0.0
maintainer: Freckle Education
category: HTTP
github: freckle/freckle-app
Expand Down Expand Up @@ -70,13 +70,11 @@ library:
- filepath
- freckle-memcached
- hs-opentelemetry-api
- hspec >= 2.8.1
- http-client
- http-conduit >= 2.3.5 # addToRequestQueryString
- http-link-header
- http-types
- lens
- lens-aeson
- memcache
- monad-logger
- monad-validate
Expand All @@ -101,11 +99,13 @@ tests:
- aeson
- bytestring
- freckle-http
- hspec
- freckle-prelude
- hspec >= 2.8.1
- hspec-expectations-json
- hspec-expectations-lifted
- http-types
- lens
- lens-aeson
- mtl
- time
- unordered-containers
Expand Down
Loading