Skip to content

Commit

Permalink
Merge pull request #111 from twisted/0.8.0-news
Browse files Browse the repository at this point in the history
NEWS
  • Loading branch information
mithrandi authored Jan 28, 2020
2 parents 19b4325 + aa18eb8 commit caead00
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions NEWS.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
0.8.0 (2020-01-28):
Major:

- (#87) Axiom now creates tables with an explicit `INTEGER PRIMARY KEY`
column, which means that `VACUUM` will no longer corrupt the database.
`axiomatic upgrade` will migrate the existing tables in a store; as every
table must be copied, this may take a while on large stores.
- (#91) `axiom.userbase.LoginAccount` now has `setPassword` and
`replacePassword` methods. In a future version plaintext passwords will no
longer be stored at all, so applications must be migrated away from direct
`LoginAccount.password` use.
- (#89) `axiom.store.Store` takes a new parameter `journalMode`, and
`axiomatic` a corresponding `--journal-mode` argument. The SQLite journal
mode will be set to this value when the store is opened, and substores will
inherit the setting. The current default is `None` which sets no mode at
all, but this will change to `u'WAL'` in a future version.


Minor:

- (#69) The exception raised when a store's persisted schema does not match the
in-memory schema now shows the differences.
- (#68) ORDER BY is now suppressed for deleteFromStore with no LIMIT.
- (#88) There is a new @empowerment decorator for bestowing
`powerupInterfaces` on an `Item`.

0.7.5 (2015-02-04):
Major:

Expand Down

0 comments on commit caead00

Please sign in to comment.