Skip to content

Commit

Permalink
1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
koyopro committed Aug 1, 2024
1 parent 782a407 commit b712830
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [1.10.1](https://github.com/koyopro/accella/compare/1.10.0...1.10.1) (2024-08-02)

### Improvements

- change sync-rpc/index.cjs to esm ([#29](https://github.com/koyopro/accella/pull/29))
- Make passwordDigest optional when calling create() ([#30](https://github.com/koyopro/accella/pull/30))
- Throw a RecordNotFound error when the id passed to find() is not finite. ([#31](https://github.com/koyopro/accella/pull/31))

# [1.10.0](https://github.com/koyopro/accella/compare/1.9.1...1.10.0) (2024-07-20)

### Features
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/accel-record-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accel-record-core",
"version": "1.10.0",
"version": "1.10.1",
"description": "",
"type": "module",
"main": "dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/accel-record-factory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accel-record-factory",
"version": "1.10.0",
"version": "1.10.1",
"description": "",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -29,6 +29,6 @@
"author": "koyopro",
"license": "Apache-2.0",
"dependencies": {
"accel-record-core": "^1.10.0"
"accel-record-core": "^1.10.1"
}
}
8 changes: 4 additions & 4 deletions packages/accel-record/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accel-record",
"version": "1.10.0",
"version": "1.10.1",
"description": "Accel Record is a type-safe and synchronous ORM for TypeScript. It adopts the Active Record pattern and is heavily influenced by Ruby on Rails' Active Record.",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -42,8 +42,8 @@
"author": "koyopro",
"license": "Apache-2.0",
"dependencies": {
"accel-record-core": "^1.10.0",
"accel-record-factory": "^1.10.0",
"prisma-generator-accel-record": "^1.10.0"
"accel-record-core": "^1.10.1",
"accel-record-factory": "^1.10.1",
"prisma-generator-accel-record": "^1.10.1"
}
}
2 changes: 1 addition & 1 deletion packages/prisma-generator-accel-record/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prisma-generator-accel-record",
"version": "1.10.0",
"version": "1.10.1",
"description": "",
"main": "dist/generator.js",
"license": "Apache-2.0",
Expand Down

0 comments on commit b712830

Please sign in to comment.