-
Notifications
You must be signed in to change notification settings - Fork 7
feat(ruby): support ruby 4.0 #380
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| "eppo_core": minor | ||
| "ruby-sdk": minor | ||
| --- | ||
|
|
||
| [ruby] support ruby-4.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,6 +41,7 @@ jobs: | |
| - "3.2" | ||
| - "3.3" | ||
| - "3.4" | ||
| - "4.0.0-preview3" | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v5 | ||
|
|
||
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.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,9 +14,9 @@ crate-type = ["cdylib"] | |
| env_logger = { version = "0.11.3", features = ["unstable-kv"] } | ||
| eppo_core = { version = "=9.3.0", features = ["magnus", "event_ingestion"] } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you want to take the path of releasing a new
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, the bumping is automated. Once we merge this PR, the CI will open a pull request with the necessary bumps in eppo_core and ruby sdk (edit: #381) |
||
| log = { version = "0.4.21", features = ["kv_serde"] } | ||
| magnus = { version = "0.7.1" } | ||
| magnus = { version = "0.8.2" } | ||
| serde = { version = "1.0.203", features = ["derive"] } | ||
| serde_magnus = "0.9.0" | ||
| rb-sys = "0.9.105" | ||
| serde_magnus = "0.10.0" | ||
| rb-sys = "0.9.120" | ||
| serde_json = "1.0.128" | ||
| tokio = { version = "1.44.1", default-features = false, features = ["time"] } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logger is no longer a built-in gem and needs to be installed separately