Skip to content

Commit c383724

Browse files
committed
Support for containers-0.8
This was tested locally using ` cabal test all --constraint="containers==0.8" --allow-newer="containers"`
1 parent b67a0e0 commit c383724

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

beam-core/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
* Added a `Generic` instance to `SqlNull`, `SqlBitString`, and `SqlSerial` (#736).
66
* Added a note to `default_` to specify that it has more restrictions than its type may indicate (#744).
77

8+
## Updated dependencies
9+
10+
* Updated the upper bound to include `containers-0.8`.
11+
812
# 0.10.3.1
913

1014
## Updated dependencies

beam-core/beam-core.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ library
7272
time >=1.6 && <1.13,
7373
hashable >=1.2.4.0 && <1.6,
7474
network-uri >=2.6 && <2.7,
75-
containers >=0.5 && <0.8,
75+
containers >=0.5 && <0.9,
7676
scientific >=0.3 && <0.4,
7777
vector >=0.11 && <0.14,
7878
vector-sized >=0.5 && <1.7,

beam-migrate/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Dependencies
44

55
* Removed explicit dependency on `ghc-prim`, which was not used directly.
6+
* Updated the upper bound to include `containers-0.8`.
67

78
# 0.5.3.1
89

beam-migrate/beam-migrate.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ library
6363
mtl >=2.2 && <2.4,
6464
scientific >=0.3 && <0.4,
6565
vector >=0.11 && <0.14,
66-
containers >=0.5 && <0.8,
66+
containers >=0.5 && <0.9,
6767
unordered-containers >=0.2 && <0.3,
6868
hashable >=1.2 && <1.6,
6969
microlens >=0.4 && <0.5,

beam-postgres/ChangeLog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
## Bug fixes
88

99
* Added the ability to migrate Postgres' array types (#354).
10+
* Remove dependency on `haskell-src-exts`, which was not in use anymore.
1011

1112
# 0.5.4.2
1213

@@ -28,7 +29,7 @@
2829
* Added support for creating and dropping database schemas and associated tables with `createDatabaseSchema`, `dropDatabaseSchema`, and `createTableWithSchema` (#716).
2930

3031
## Documentation
31-
32+
3233
* Make `runBeamPostgres` and `runBeamPostgresDebug` easier to find (#663).
3334

3435
# 0.5.3.1

0 commit comments

Comments
 (0)