-
Couldn't load subscription status.
- Fork 1
build(deps): bump vite from 7.1.2 to 7.1.5 #75
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
Open
dependabot
wants to merge
70
commits into
main
Choose a base branch
from
dependabot/npm_and_yarn/vite-7.1.5
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* fix(test): coverage and missing deps * fix(lint): run prettier format
* move groupings to `gen_ai.agent.name` and `gen_ai.operation.name` * make `completion` an array * remove some attributes * update tests to reflect new attributes * adopt capability/step * rename nextjs example * add express example * delete next.js example lockfile * remove unused attributes * update tests * remove commented and unused bits * fix tests
* docs(ai): created docs & guide for AI SDK * added license file * docs: fix typo * docs: update README & point to axiom.co/docs
* move groupings to `gen_ai.agent.name` and `gen_ai.operation.name` * make `completion` an array * remove some attributes * update tests to reflect new attributes * adopt capability/step * rename nextjs example * add express example * delete next.js example lockfile * remove unused attributes * update tests * remove commented and unused bits * fix tests * install new versions of packages * improved test/build setup * update some imports * move mock-provider to mock-provider-v1 * create mock-provider-v2 * dont throw here * wrap language model v2 * refactor: move v1/v2 into separate files * prettier * fix eslint ignore * some attributes * some cleanup
* build: remove CJS from build * docs(examples): fix nextjs example * fix(build): include nextjs example in build * build(example-nextjs): dynamically render page and fix require-in-the-middle * build: defer format job to each package
* chore(main): release 1.0.0 * chore: ignore md files for prettier --------- Co-authored-by: Islam Shehata <[email protected]>
… add examples, a lot of refactoring (#10) * update semconv and attributes list * better output type handling * add available tools * handle tools more thoroughly * instrument tool choice eveywhere * tool calls instrumented * wrap tools v1 * add sdk name / sdk version / schema url * tools v1 have the right shape * cleanup v1 code * v2 tool calls instrumented correctly but the code is ugly * split next.js example into v4 and v5 * improve v2 * start abstracting out helpers * add test for appendToolCalls * extract aggregators * implement wrapTools * only export the things we want * fix some package management stuff * fix v5 example types * fix types and tests * put axiom attributes on tool spans * fix tests * remove plan * fix build * prettier * fix example instrumentation files * update sdk key format for express example * update next.js / v4 example * update v5 example * update express readme * bump version * use correct version * fix imports * better simulate stream in mock-provider-v2 * Update packages/ai/tsconfig.build.json Co-authored-by: Copilot <[email protected]> * fix comment * fix this test * remove gen_ai.provider.name * set gen_ai.system * update tests * simplify completion type * simplify prompt/completion and types * remove providerMetadata to unify prompt/completion messages * remove some more unused attributes * add error codes * more error handling * lint --------- Co-authored-by: Copilot <[email protected]>
* move generate-text in next.js examples to new route * implement createStream * add axiom sdk to stream examples * add layouts * better handle NaN tokens * fix streaming in v4 example * bump version * better release-please, hopefully * release-please handles versions * Update examples/example-instrumentation-nextjs-v4/src/app/generate-text/page.tsx Co-authored-by: Copilot <[email protected]> * Update examples/example-instrumentation-nextjs-v5/src/app/generate-text/page.tsx Co-authored-by: Copilot <[email protected]> * Update examples/example-instrumentation-nextjs-v5/src/app/generate-text/loading.tsx Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
* feat: address publint feedback * chore: add publint command
* feat: move to middleware * prettier * rename * add tests, examples, and docs * remove readme here * shared typecheck/lint/format * pass build * fix wrapTool types * fix import
* chore(main): release axiom 0.11.0 * Update CHANGELOG.md --------- Co-authored-by: Islam Shehata <[email protected]>
* feat(evals): attach user info to eval span * build: disable creating a github release as release-please does it beforehand Release-As: 0.11.1
Release-As: 0.11.2
* feat: better stream handling * type fix
* feat(evals): pass model name & params to eval task This change allows users to configure model name and params on eval task. The test runner now runs once with the ability to pass --watch when needed * feat(evals): build the baseline experience automatically grab the latest evaluation to compare againt or use the baseline ID passed by users. The report now shows baseline values and calculates diffs. * feat(evals): print baseline name as part of report * evals: remove score thresholds * publish to pkg.pr.new * elevate prompt messages; fix scorer name
* move gen_ai.system to gen_ai.provider.name * move prompt/completion to input.messages and output.messages * implement redaction and rename attributes * add tests for redaction * better default * better RedactionPolicy types * add RedactionPolicy to examples * add docs here * revise todo
There were two issues with provider detection in the SDK until now: - The common providers had some name permutations that we didn't know about - We didn't add custom names for the providers that do not have default values in semconv, even though semconv allows for custom values. I believe we SHOULD cover every possible provider to the best of our ability. Therefore, this PR adds: - openai variants such as openai.embedding - anthropic.messages - a bunch of new providers: assemblyai, cerebras, deepgram, deepinfra, elevenlabs, fal, fireworks, gladia, hume, lmnt, luma, replicate, revai, togetherai, vercel One intentional omission that we are not covering for now is openai-compatible. Need to confirm with the semconv people whether that should be the name, or if it's better to omit it (because it could be any number of providers!) Mock providers have been updated to get their names detected by the <provider>.<action> case, and tests have been updated accordingly.
* fix(evals): handle dir or file and update eval example * feat(cli): add a version command to cli
* feat: put capability and step name on tool calls * remove pointless comments
commit: |
* feat: use semantic-conventions 1.37 package * reduce diff
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.1.2 to 7.1.5. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v7.1.5/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 7.1.5 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
5619dab to
85607d4
Compare
|
A newer version of vite exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
javascript
Pull requests that update javascript code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
Bumps vite from 7.1.2 to 7.1.5.
Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
... (truncated)
Commits
5647540release: v7.1.509f2b52fix: upgrade sirv to 3.0.2 (#20735)14015d7fix: applyfs.strictcheck to HTML files (#20736)122bfbafix(deps): update all non-major dependencies (#20732)bcc3144release: v7.1.40401febfix(deps): update all non-major dependencies (#20709)537fcf9chore: remove unused constants entry from rolldown.config.ts (#20710)79d10edfix: add missing awaits (#20697)8099582refactor: remove unnecessaryminifyparameter fromfinalizeCss(#20701)f367453fix: pass rollup watch options when building in watch mode (#20674)Maintainer changes
This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.
Dependabot 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)You can disable automated security fix PRs for this repo from the Security Alerts page.