chore(deps-dev): update rubocop requirement from ~> 1.60.2 to ~> 1.63.3#1039
chore(deps-dev): update rubocop requirement from ~> 1.60.2 to ~> 1.63.3#1039dependabot[bot] wants to merge 1 commit into
Conversation
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v1.60.2...v1.63.3) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
|
We have created an issue in Pivotal Tracker to manage this. Unfortunately, the Pivotal Tracker project is private so you may be unable to view the contents of the story. The labels on this github issue will be updated when the story is started. |
|
LICENSEimport ModelClient, { isUnexpected } from "@azure-rest/ai-inference"; import { AzureKeyCredential } from "@azure/core-auth"; const token = process.env["GITHUB_TOKEN"]; const endpoint = "https://models.github.ai/inference"; const model = "openai/gpt-5"; export async function main() { const client = ModelClient( endpoint, new AzureKeyCredential(token), ); const response = await client.path("/chat/completions").post({ body: { messages: [ { role:"system", content: "You are a helpful assistant." }, { role:"user", content: "What is the capital of France?" } ], model: model } }); if (isUnexpected(response)) { throw response.body.error; } console.log(response.body.choices[0].message.content); } main().catch((err) => { console.error("The sample encountered an error:", err); }); |
Updates the requirements on rubocop to permit the latest version.
Changelog
Sourced from rubocop's changelog.
... (truncated)
Commits
a10fbefCut 1.63.321893acUpdate Changeloga35ef47MakeInternalAffairs/ExampleDescriptionaware of an improper description5706ac0Remove redundant braces in a few uses ofdef_node_matcherf1a748bFix false negatives forLint/UnreachableCodec30838d[Fix #12848] Fix an error forRuboCop::Lockfile74037d9Set custom program name for the built-in LSP serverdd47fa8Merge pull request #12856 from koic/workaround_for_prism_0_26245b8ccWorkaround for incompatibilities between Prism 0.25.0 and 0.26.0d86b8d1Merge pull request #12853 from Earlopain/global-offense-cacheDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)