8000 Tags · vvo/iron-store · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Tags: vvo/iron-store

Tags

v1.3.5

Toggle v1.3.5's commit message
fix(types): sealed is a string

v1.3.4

Toggle v1.3.4's commit message
fix(types): Add types

v1.3.3

Toggle v1.3.3's commit message
fix(types): Add types

v1.3.2

Toggle v1.3.2's commit message
fix(types): Add types

v1.3.1

Toggle v1.3.1's commit message
chore(CI): release on main

v1.3.0

Toggle v1.3.0's commit message
feat(password): accept array of password objects for rotation

This adds a way to provide array of passwords like this:

```js
import ironStore from "iron-store";

const store = await ironStore({
  password: [
    {
      id: 2,
      password: "generated_complex_password_at_least_32_characters_long",
    },
    {
      id: 1,
      password: "generated_complex_password_at_least_32_characters_long",
    },
  ],
});
store.set("user", { id: 80, admin: true });
const seal = await store.seal();
```

Required for vvo/iron-session#69

v1.2.0

Toggle v1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(API): add store.clear (#5)

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(unset): allow store.unset (#3)

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(lib): first version (#1)

* feat(lib): first version

* fix pkg.json
0