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
5 changes: 4 additions & 1 deletion .github/workflows/celest_ast.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ jobs:
run: dart analyze --fatal-infos --fatal-warnings .
- name: Format
working-directory: packages/celest_ast
run: dart format --language-version=latest --set-exit-if-changed .
run: dart format --set-exit-if-changed .
- name: Test
working-directory: packages/celest_ast
run: dart test
2 changes: 1 addition & 1 deletion .github/workflows/celest_auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: dart analyze --fatal-infos --fatal-warnings
- name: Format
working-directory: packages/celest_auth
run: dart format --language-version=latest --set-exit-if-changed .
run: dart format --set-exit-if-changed .
# - name: Test
# working-directory: packages/celest_auth
# run: dart test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/celest_cloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
run: dart analyze --fatal-infos --fatal-warnings .
- name: Format
working-directory: packages/celest_cloud
run: dart format --language-version=latest --set-exit-if-changed .
run: dart format --set-exit-if-changed .
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ final class CreateOrganizationCommand extends CloudCreateCommand<Organization> {
return cloud.organizations.create(
organizationId: options.resourceId,
organization: Organization(
annotations: options.annotations,
annotations: options.annotations.entries,
displayName: options.displayName,
primaryRegion: primaryRegion,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class UpdateOrganizationCommand extends CloudUpdateCommand<Organization> {
return cloud.organizations.update(
organization: Organization(
name: options.resourceId,
annotations: options.annotations,
annotations: options.annotations?.entries,
displayName: options.displayName,
),
updateMask: FieldMask(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class UpdateProjectEnvironmentCommand
projectEnvironment: ProjectEnvironment(
name: options.resourceId,
displayName: options.displayName,
annotations: options.annotations,
annotations: options.annotations?.entries,
),
allowMissing: options.allowMissing,
updateMask: FieldMask(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ final class UpdateProjectCommand extends CloudUpdateCommand<Project> {
return cloud.projects.update(
project: Project(
name: options.resourceId,
annotations: options.annotations,
annotations: options.annotations?.entries,
displayName: options.displayName,
),
updateMask: FieldMask(
Expand Down
6 changes: 3 additions & 3 deletions apps/cli/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
async: ^2.11.0
built_collection: ^5.1.1
built_value: ^8.9.5
cedar: ^0.2.1
cedar: ^0.2.6
celest: ^1.0.0
celest_ast: ^0.1.4
celest_auth: ^1.0.0
Expand All @@ -30,7 +30,7 @@ dependencies:
code_builder: ^4.8.0
collection: ^1.18.0
convert: ^3.1.1
corks_cedar: ^0.2.1
corks_cedar: ^0.2.4
crypto: ^3.0.3
dart_console: ^4.1.1
dart_style: ^3.0.0
Expand Down Expand Up @@ -62,7 +62,7 @@ dependencies:
platform: ^3.1.3
pool: ^1.5.1
process: ^5.0.1
protobuf: ^3.1.0
protobuf: ^4.0.0
pub_semver: ^2.1.4
pubspec_parse: ^1.2.3
sentry: ^8.5.0
Expand Down
3 changes: 1 addition & 2 deletions buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ managed:
inputs:
- directory: proto
plugins:
# TODO: Bump when issues are fixed in generator
- remote: buf.build/protocolbuffers/dart:v21.1.2
- remote: buf.build/protocolbuffers/dart:v22.1.0
out: packages/celest_cloud/lib/src/proto
include_imports: true
include_wkt: true
Expand Down
4 changes: 3 additions & 1 deletion packages/celest_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## NEXT

- chore: Re-format with Dart 3.8
- chore: Bump Dart SDK constraint to `^3.7.0`
- chore: Re-format with Dart 3.7
- chore: Update linter/style preferences
- chore: Update protobufs

## 0.1.6

Expand Down
2 changes: 1 addition & 1 deletion packages/celest_ast/buf.gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ inputs:
- directory: proto
- module: buf.build/celest-dev/cedar
plugins:
- remote: buf.build/protocolbuffers/dart:v21.1.2
- remote: buf.build/protocolbuffers/dart:v22.1.0
include_imports: true
include_wkt: true
out: lib/src/proto
Expand Down
18 changes: 10 additions & 8 deletions packages/celest_ast/lib/src/proto/cedar/v3/context.pb.dart

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

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

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

24 changes: 13 additions & 11 deletions packages/celest_ast/lib/src/proto/cedar/v3/entity.pb.dart

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

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

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

8 changes: 5 additions & 3 deletions packages/celest_ast/lib/src/proto/cedar/v3/entity_uid.pb.dart

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

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

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

Loading
Loading