Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/celest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.1+2

- fix: Fallback to in-memory database

## 1.0.1+1

- fix: Fix expectation of trace context when running in cloud
Expand Down
7 changes: 6 additions & 1 deletion packages/celest/lib/src/runtime/data/connect.io.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ Future<QueryExecutor> localExecutor({
String? path,
}) async {
if (path == null) {
final packageConfig = await Isolate.packageConfig;
Uri? packageConfig;
try {
packageConfig = await Isolate.packageConfig;
} on Object {
// Not available in all environments.
}
if (packageConfig == null) {
_logger.warning(
'Failed to determine package config path. '
Expand Down
2 changes: 1 addition & 1 deletion packages/celest/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: celest
description: The Flutter cloud platform. Celest enables you to build your entire backend in Dart.
version: 1.0.1+1
version: 1.0.1+2
homepage: https://celest.dev
repository: https://github.com/celest-dev/celest/tree/main/packages/celest

Expand Down
Loading