Skip to content
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
16 changes: 0 additions & 16 deletions .github/workflows/add-asana-comment.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: generate
uses: freckle/stack-action/generate-matrix@v5
outputs:
Expand All @@ -29,7 +29,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: stack
uses: freckle/stack-action@v5
env:
Expand All @@ -38,7 +38,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: haskell-actions/hlint-setup@v2
- uses: haskell-actions/hlint-run@v2
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ on:

jobs:
release:
if: false # Remove when ready to release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- id: tag
uses: freckle/haskell-tag-action@v1
Expand All @@ -18,4 +17,4 @@ jobs:
run: stack upload --pvp-bounds lower .
env:
HACKAGE_KEY: ${{ secrets.HACKAGE_UPLOAD_API_KEY }}
STACK_YAML: stack-lts12.yaml
STACK_YAML: stack-lts20.yaml
2 changes: 1 addition & 1 deletion .github/workflows/restyled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
restyled:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: restyled-io/actions/setup@v4
- uses: restyled-io/actions/run@v4
with:
Expand Down
7 changes: 4 additions & 3 deletions .restyled.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
restylers:
- fourmolu
- "!stylish-haskell"
- "*"
- fourmolu:
image: restyled/restyler-fourmolu:v0.13.0.0
include:
- "/**/*.hs"
2 changes: 1 addition & 1 deletion .stack-all
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[versions]
oldest = lts-12
oldest = lts-20
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
## [_Unreleased_](https://github.com/freckle/haskell-library-template/compare/v__...main)
## [_Unreleased_](https://github.com/freckle/freckle-http/compare/v0.3.0.1...main)

## [v0.0.0.0](https://github.com/freckle/haskell-library-template/tree/v0.0.0.0)
## [v0.3.0.1](https://github.com/freckle/freckle-http/tree/v0.3.0.1)

First tagged release.
Metadata change only; moved to new source repository.

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

- Update `HttpCache.set` to accept TTL (and use it in memcached implementation)

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

`MonadHttp.httpLbs` has a `HasCallStack` constraint, and instances throw `AnnotatedException`

Breaking change: `httpStubbed` is now monadic rather than pure. Its errors are thrown into `IO` as
`AnnotatedException`-wrapped `NoStubsMatched`.

## [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)

First release, sprouted from `freckle-app-1.19.0.0`.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2025 Renaissance Learning Inc
Copyright (c) 2024 Renaissance Learning Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
84 changes: 0 additions & 84 deletions README.lhs

This file was deleted.

1 change: 0 additions & 1 deletion README.md

This file was deleted.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# freckle-http

`freckle-http` is a general-purpose toolkit for making HTTP requests.

---

[CHANGELOG](./CHANGELOG.md) | [LICENSE](./LICENSE)
Loading