Skip to content

Commit bbd6842

Browse files
authored
Update core, update release version to 0.3.0 (#199)
1 parent ef62a52 commit bbd6842

File tree

44 files changed

+908
-99
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+908
-99
lines changed

.github/workflows/build-gems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- os: ubuntu-latest
9191
rubyPlatform: x86_64-linux
9292
- os: macos-intel
93-
runsOn: macos-12
93+
runsOn: macos-13
9494
rubyPlatform: x86_64-darwin
9595
- os: macos-latest
9696
rubyPlatform: arm64-darwin

temporalio/.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ AllCops:
1717
# Keep cop rule settings in alphabetical order. For each rule setting, provide
1818
# justification for the change from default.
1919

20+
# Temporarily disabled per https://github.com/rake-compiler/rake-compiler-dock/issues/145#issuecomment-2596848639
21+
# until that is fixed
22+
Gemspec/RequiredRubyVersion:
23+
Enabled: false
24+
2025
# We want our classes in a certain order
2126
Layout/ClassStructure:
2227
Enabled: true

temporalio/Cargo.lock

Lines changed: 58 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ license-file = "LICENSE"
1414
[workspace.dependencies]
1515
derive_builder = "0.20"
1616
derive_more = { version = "1.0", features = ["constructor", "display", "from", "into", "debug"] }
17-
once_cell = "1.16"
17+
thiserror = "2"
1818
tonic = "0.12"
1919
tonic-build = "0.12"
20-
opentelemetry = { version = "0.24", features = ["metrics"] }
20+
opentelemetry = { version = "0.26", features = ["metrics"] }
2121
prost = "0.13"
2222
prost-types = "0.13"
2323

temporalio/Rakefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ Rake::Task[:build].enhance([:copy_parent_files]) do
9494
end
9595

9696
task :rust_lint do
97-
# TODO(cretz): Add "-- -Dwarnings" to clippy when SDK core passes with it
98-
sh 'cargo', 'clippy'
97+
sh 'cargo', 'clippy', '--', '-Dwarnings'
9998
sh 'cargo', 'fmt', '--check'
10099
end
101100

temporalio/ext/sdk-core

Submodule sdk-core updated 147 files

0 commit comments

Comments
 (0)