haskell-relational-record/relational-query/ChangeLog.md

115 lines
2.1 KiB
Markdown
Raw Normal View History

2015-11-30 03:18:49 +03:00
<!-- -*- Markdown -*- -->
2016-04-30 17:54:49 +03:00
## 0.8.2.0
- Add TIMESTAMPTZ literal of PostgreSQL.
2016-02-21 13:15:41 +03:00
## 0.8.1.0
- Add schemaNameMode configuration.
2016-02-13 04:12:17 +03:00
## 0.8.0.5
- Update tests along with deprecations.
2016-02-05 03:02:16 +03:00
## 0.8.0.4
- Drop unused pragma.
2016-02-03 18:50:59 +03:00
## 0.8.0.3
- Drop unreferenced overloading.
2016-01-23 11:13:07 +03:00
## 0.8.0.2
- Update documentation.
2016-01-22 14:02:36 +03:00
## 0.8.0.1
- Fix build-depends.
2016-01-22 13:44:20 +03:00
## 0.8.0.0
- Drop unsafe Expr type.
- Drop redundant type synonyms around DELETE and UPDATE.
- Add Register monad to add build-able INSERT statement
- Configurable relation template names.
2015-12-31 20:30:36 +03:00
## 0.7.1.0
- Deprecate redundant type synonyms.
2015-12-29 21:51:16 +03:00
## 0.7.0.2
- Prepare to drop Expr type and deprecate around it.
- Fix boolean projection operator types.
2015-12-01 14:39:44 +03:00
## 0.7.0.1
- Update this changelog.
## 0.7.0.0
2015-12-01 14:37:01 +03:00
- Use TH quotations for deriving class symbols.
2015-11-30 03:18:49 +03:00
## 0.6.4.0
- Fix around correlated sub-queries.
- Update unit-test cases.
2015-11-19 03:27:37 +03:00
## 0.6.3.0
- Add Int8 type as SQL constant int value. (e.g. MySQL)
2015-11-12 08:51:56 +03:00
## 0.6.2.0
- Make InsertQuery type as PreparedNoFetch instance.
2015-11-11 09:19:30 +03:00
## 0.6.1.0
- Add a configuration flag to pring verbose compile-time messages.
2015-09-19 19:25:21 +03:00
## 0.6.0.0
- Increase type safety of interfaces.
- Simplify interfaces arond unique query.
2015-09-17 09:55:19 +03:00
## 0.5.2.0
- Add MonadTrans instance of QueryJoin.
- Update links about Opaleye.
2015-07-09 11:22:09 +03:00
## 0.5.1.1
- Update documentation.
2015-06-25 17:08:47 +03:00
## 0.5.1.0
- Add the arrow combinator module and its unit-test cases.
2015-06-21 11:43:20 +03:00
## 0.5.0.3
- Update unit-test cases.
- Add the fixity of `over` operator.
- Avoid an `a future Prelude name' warning.
2015-06-16 02:44:09 +03:00
## 0.5.0.2
- Switch libraries to use from test-suites not to depend on Cabal library.
2015-06-05 15:06:08 +03:00
## 0.5.0.1
- Add this ChangeLog file.
2015-06-05 04:36:45 +03:00
## 0.5.0.0
2015-06-05 15:04:34 +03:00
- Prevent window function context expression from using normal SQL expressions.
- Generalize the result types of aggregate and window functions.
- Allow to embed a integer literal in SQL from Haskell Int type.
- Add SQL LIKE operators.
- Drop old deprecated functions. (fromMaybe', dense_rank, ...)
- Fix typo.
https://github.com/khibino/haskell-relational-record/pull/15
2015-06-05 04:36:45 +03:00
- Fix for "invalid single-column insert syntax".
https://github.com/khibino/haskell-relational-record/issues/16