Skip to content

Commit b9b0993

Browse files
committed
v0.44.0
1 parent d3e89bd commit b9b0993

File tree

24 files changed

+138
-12
lines changed

24 files changed

+138
-12
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.44.0](https://github.com/expo/entity/compare/v0.43.0...v0.44.0) (2025-05-29)
7+
8+
9+
### Bug Fixes
10+
11+
* introduce transactional dataloader mode and fix global transaction ID generation ([#289](https://github.com/expo/entity/issues/289)) ([d3e89bd](https://github.com/expo/entity/commit/d3e89bdd82e6df5c5b35522bc3574fd9e1cfddff))
12+
13+
14+
### Features
15+
16+
* add transaction-scoped dataloaders ([#284](https://github.com/expo/entity/issues/284)) ([e054a0d](https://github.com/expo/entity/commit/e054a0d74b3a39158ca7d73d05f59d3633113400)), closes [#98](https://github.com/expo/entity/issues/98) [#194](https://github.com/expo/entity/issues/194)
17+
18+
19+
20+
21+
622
# [0.43.0](https://github.com/expo/entity/compare/v0.42.0...v0.43.0) (2025-04-10)
723

824

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages/*"
44
],
55
"npmClient": "yarn",
6-
"version": "0.43.0"
6+
"version": "0.44.0"
77
}

packages/entity-cache-adapter-local-memory/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.44.0](https://github.com/expo/entity/compare/v0.43.0...v0.44.0) (2025-05-29)
7+
8+
**Note:** Version bump only for package @expo/entity-cache-adapter-local-memory
9+
10+
11+
12+
13+
614
# [0.43.0](https://github.com/expo/entity/compare/v0.42.0...v0.43.0) (2025-04-10)
715

816
**Note:** Version bump only for package @expo/entity-cache-adapter-local-memory

packages/entity-cache-adapter-local-memory/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-cache-adapter-local-memory",
3-
"version": "0.43.0",
3+
"version": "0.44.0",
44
"description": "Cross-request local memory cache adapter for @expo/entity",
55
"files": [
66
"build",

packages/entity-cache-adapter-redis/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.44.0](https://github.com/expo/entity/compare/v0.43.0...v0.44.0) (2025-05-29)
7+
8+
**Note:** Version bump only for package @expo/entity-cache-adapter-redis
9+
10+
11+
12+
13+
614
# [0.43.0](https://github.com/expo/entity/compare/v0.42.0...v0.43.0) (2025-04-10)
715

816
**Note:** Version bump only for package @expo/entity-cache-adapter-redis

packages/entity-cache-adapter-redis/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-cache-adapter-redis",
3-
"version": "0.43.0",
3+
"version": "0.44.0",
44
"description": "Redis cache adapter for @expo/entity",
55
"files": [
66
"build",

packages/entity-codemod/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.44.0](https://github.com/expo/entity/compare/v0.43.0...v0.44.0) (2025-05-29)
7+
8+
**Note:** Version bump only for package @expo/entity-codemod
9+
10+
11+
12+
13+
614
# [0.43.0](https://github.com/expo/entity/compare/v0.42.0...v0.43.0) (2025-04-10)
715

816
**Note:** Version bump only for package @expo/entity-codemod

packages/entity-codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-codemod",
3-
"version": "0.43.0",
3+
"version": "0.44.0",
44
"description": "jscodeshift codemods for @expo/entity upgrades",
55
"files": [
66
"build",

packages/entity-database-adapter-knex/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.44.0](https://github.com/expo/entity/compare/v0.43.0...v0.44.0) (2025-05-29)
7+
8+
9+
### Bug Fixes
10+
11+
* introduce transactional dataloader mode and fix global transaction ID generation ([#289](https://github.com/expo/entity/issues/289)) ([d3e89bd](https://github.com/expo/entity/commit/d3e89bdd82e6df5c5b35522bc3574fd9e1cfddff))
12+
13+
14+
### Features
15+
16+
* add transaction-scoped dataloaders ([#284](https://github.com/expo/entity/issues/284)) ([e054a0d](https://github.com/expo/entity/commit/e054a0d74b3a39158ca7d73d05f59d3633113400)), closes [#98](https://github.com/expo/entity/issues/98) [#194](https://github.com/expo/entity/issues/194)
17+
18+
19+
20+
21+
622
# [0.43.0](https://github.com/expo/entity/compare/v0.42.0...v0.43.0) (2025-04-10)
723

824
**Note:** Version bump only for package @expo/entity-database-adapter-knex

packages/entity-database-adapter-knex/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-database-adapter-knex",
3-
"version": "0.43.0",
3+
"version": "0.44.0",
44
"description": "Knex database adapter for @expo/entity",
55
"files": [
66
"build",

0 commit comments

Comments
 (0)