Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps the client-prod-deps group with 12 updates in the /client directory:

Package From To
@revolist/vue3-datagrid 4.17.3 4.20.2
@sentry/vue 9.46.0 10.32.1
@zip.js/zip.js 2.8.8 2.8.11
axios 1.12.2 1.13.2
file-type 20.5.0 21.1.1
fs-extra 11.3.2 11.3.3
monaco-editor 0.52.2 0.55.1
pdfjs-dist 5.4.296 5.4.449
uuid 11.1.0 13.0.0
vue 3.5.22 3.5.26
vue-i18n 11.1.12 11.2.7
vue-router 4.6.3 4.6.4

Updates @revolist/vue3-datagrid from 4.17.3 to 4.20.2

Release notes

Sourced from @​revolist/vue3-datagrid's releases.

Release 4.20.2

bug fix: performance on templates in react

Release 4.20.1

What's Changed

Full Changelog: revolist/revogrid@v4.19.4...v4.20.1

Release 4.19.4

What's Changed

Full Changelog: revolist/revogrid@v4.19.3...v4.19.4

Release 4.19.3

What's Changed

Full Changelog: revolist/revogrid@v4.19.2...v4.19.3

Release 4.18.0

What's Changed

Full Changelog: revolist/revogrid@v4.17.4...v4.18.0

Commits
  • 8081396 chore(release): update versions to 4.20.2
  • 2614509 chore(release): update versions to 4.20.1
  • c43664f chore(release): update versions to 4.19.4
  • 7b3d847 chore(release): update versions to 4.19.3
  • 6c52744 chore(release): update versions to 4.19.2
  • 1eec469 chore(release): update versions to 4.19.1
  • 5d27aac chore(release): update versions to 4.19.0
  • be8e863 chore(release): update versions to 4.18.0
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​revolist/vue3-datagrid since your current version.


Updates @sentry/vue from 9.46.0 to 10.32.1

Release notes

Sourced from @​sentry/vue's releases.

10.32.1

  • fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • fix(ember): Make implementation field optional (hash routes) (#18564)
  • fix(vercelai): Fix input token count (#18574)
  • chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • chore(test): Remove cloudflare-astro e2e test (#18567)

Bundle size 📦

Path Size
@​sentry/browser 24.24 KB
@​sentry/browser - with treeshaking flags 22.77 KB
@​sentry/browser (incl. Tracing) 40.62 KB
@​sentry/browser (incl. Tracing, Profiling) 45.12 KB
@​sentry/browser (incl. Tracing, Replay) 78.3 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.28 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 82.88 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 94.83 KB
@​sentry/browser (incl. Feedback) 40.57 KB
@​sentry/browser (incl. sendFeedback) 28.82 KB
@​sentry/browser (incl. FeedbackAsync) 33.7 KB
@​sentry/react 25.92 KB
@​sentry/react (incl. Tracing) 42.77 KB
@​sentry/vue 28.6 KB
@​sentry/vue (incl. Tracing) 42.39 KB
@​sentry/svelte 24.25 KB
CDN Bundle 26.62 KB
CDN Bundle (incl. Tracing) 41.25 KB
CDN Bundle (incl. Tracing, Replay) 77.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 82.44 KB
CDN Bundle - uncompressed 78.18 KB
CDN Bundle (incl. Tracing) - uncompressed 122.47 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 236.27 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 248.74 KB
@​sentry/nextjs (client) 44.94 KB
@​sentry/sveltekit (client) 40.98 KB
@​sentry/node-core 50.4 KB
@​sentry/node 157.73 KB
@​sentry/node - without tracing 90.87 KB
@​sentry/aws-serverless 106.02 KB

10.32.0

Important Changes

... (truncated)

Changelog

Sourced from @​sentry/vue's changelog.

10.32.1

  • fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • fix(ember): Make implementation field optional (hash routes) (#18564)
  • fix(vercelai): Fix input token count (#18574)
  • chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • chore(test): Remove cloudflare-astro e2e test (#18567)

10.32.0

Important Changes

  • feat(core): Apply scope attributes to logs (#18184)

    You can now set attributes on the SDK's scopes which will be applied to all logs as long as the respective scopes are active. For the time being, only string, number and boolean attribute values are supported.

    Sentry.geGlobalScope().setAttributes({ is_admin: true, auth_provider: 'google' });
    Sentry.withScope(scope => {
    scope.setAttribute('step', 'authentication');
    // scope attributes is_admin, auth_provider and step are added
    Sentry.logger.info(user ${user.id} logged in, { activeSince: 100 });
    Sentry.logger.info(updated ${user.id} last activity);
    });
    // scope attributes is_admin and auth_provider are added
    Sentry.logger.warn('stale website version, reloading page');

  • feat(replay): Add Request body with attachRawBodyFromRequest option (#18501)

    To attach the raw request body (from Request objects passed as the first fetch argument) to replay events, you can now use the attachRawBodyFromRequest option in the Replay integration:

    Sentry.init({
      integrations: [
        Sentry.replayIntegration({
          attachRawBodyFromRequest: true,
        }),
      ],
    });

... (truncated)

Commits
  • 528ade2 release: 10.32.1
  • 25f695d Merge pull request #18578 from getsentry/prepare-release/10.32.1
  • a981a3d meta(changelog): Update changelog for 10.32.1
  • 0d8547c fix(vercelai): Fix input token count (#18574)
  • 71384a2 chore(lint): prefer 'unknown' to 'any', fix lint warnings
  • d1dd308 chore(test): Remove cloudflare-astro e2e test (#18567)
  • 12f3007 fix(ember): Make implementation field optional (hash routes) (#18564)
  • 3fda84d fix(cloudflare): Add hono transaction name when error is thrown (#18529)
  • a538901 Merge pull request #18563 from getsentry/master
  • 063c4dc Merge pull request #18562 from getsentry/ab/skip-ci-when-no-code-changes
  • Additional commits viewable in compare view

Updates @zip.js/zip.js from 2.8.8 to 2.8.11

Release notes

Sourced from @​zip.js/zip.js's releases.

v2.8.11

What's Changed

New Contributors

Full Changelog: gildas-lormeau/zip.js@v2.8.10...v2.8.11

v2.8.10

Fixed built files (built files of v2.8.9 are not updated)

v2.8.9

Fixed potential "Error: process error:-50331648" when decompressing deflate64 data

Commits

Updates axios from 1.12.2 to 1.13.2

Release notes

Sourced from axios's releases.

Release v1.13.2

Release notes:

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

Release v1.13.1

Release notes:

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

Release v1.13.0

Release notes:

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.13.2 (2025-11-04)

Bug Fixes

  • http: fix 'socket hang up' bug for keep-alive requests when using timeouts; (#7206) (8d37233)
  • http: use default export for http2 module to support stubs; (#7196) (0588880)

Performance Improvements

Contributors to this release

1.13.1 (2025-10-28)

Bug Fixes

  • http: fixed a regression that caused the data stream to be interrupted for responses with non-OK HTTP statuses; (#7193) (bcd5581)

Contributors to this release

1.13.0 (2025-10-27)

Bug Fixes

  • fetch: prevent TypeError when config.env is undefined (#7155) (015faec)
  • resolve issue #7131 (added spacing in mergeConfig.js) (#7133) (9b9ec98)

Features

Contributors to this release

... (truncated)

Commits
  • 08b84b5 chore(release): v1.13.2 (#7207)
  • 8d37233 fix(http): fix 'socket hang up' bug for keep-alive requests when using timeou...
  • 12c314b perf(http): fix early loop exit; (#7202)
  • f6d79e7 chore(sponsor): update sponsor block (#7203)
  • 0588880 fix(http): use default export for http2 module to support stubs; (#7196)
  • 1ef8e72 chore(release): v1.13.1 (#7194)
  • bcd5581 fix(http): fixed a regression that caused the data stream to be interrupted f...
  • c9b3371 chore: enhance styling and responsiveness in client.html (#7173)
  • 9ead04d [Release] v1.13.0 (#7189)
  • d000fbf fix(http2): fix possible race condition when handling http2 stream on almost ...
  • Additional commits viewable in compare view

Updates file-type from 20.5.0 to 21.1.1

Release notes

Sourced from file-type's releases.

v21.1.1

  • Fix handling of partial Gunzip file (#783) 710e053

sindresorhus/file-type@v21.1.0...v21.1.1

v21.1.0

  • Add support for .tar.gz (gunzipped tarball file) (#763) eda03a7
  • Add support for Windows registry (.reg) files 0db61ec 7d2ddcf
  • Add support for Windows registry hive file (.dat) (#767) f8d62be
  • Fix: Handle partial unzip (#773) 7ad3a90

sindresorhus/file-type@v21.0.0...v21.1.0

v21.0.0

Breaking

  • Require Node.js 20 24aec1f
  • Drop Adobe Illustrator (.ai) detection support (#743) af169f3
  • Correct Matroska (video) MIME-type to formal IANA registration (#753) f53f5ff
  • Correct FLAC MIME-type to formal IANA registration (#755) b9fda36
  • Correct Apache Parquet MIME-type to formal IANA registration (#748) 98e3f8e
  • Correct Apache Arrow MIME-type to formal IANA registration (#754) 7184775

Improvements

  • Allow options to be directly passed to exported functions (#752) d264029
  • Add mpegOffsetTolerance option (#646) c40840a

Fixes

  • Fix detection of some PAX TAR formats (#762) 574d0d6

sindresorhus/file-type@v20.5.0...v21.0.0

Commits

Updates fs-extra from 11.3.2 to 11.3.3

Changelog

Sourced from fs-extra's changelog.

11.3.3 / 2025-12-18

  • Fix copying symlink when destination is a symlink to the same target (#1019, #1060)
Commits

Updates monaco-editor from 0.52.2 to 0.55.1

Release notes

Sourced from monaco-editor's releases.

v0.55.1

Changes:

  • #5121: Fixes missing language exports
  • #5122: v0.55.1

This list of changes was auto generated.

v0.55.0

Changes:

  • #5120: Fixes npx playwright install --with-deps
  • #5118: Fixes microsoft/monaco-editor#5113
  • #5117: v0.55.0
  • #5116: Install playwright dependencies in monaco-editor-core job
  • #5105: Fixes website
  • #5104: fixes website & adds editor.api.d.ts
  • #5102: Fixes typedoc & updates pipelines to test website
  • #5100: Updates website dependencies
  • #5071: Bump vite from 5.4.20 to 5.4.21 in /samples/browser-esm-vite-react
  • #4961: Bump on-headers and compression in /samples
  • #5040: Bump @​babel/runtime from 7.18.9 to 7.28.4 in /website
  • #5095: Bump vite from 7.1.9 to 7.1.11 in /samples/browser-esm-vite
  • #5097: Cleans up build scripts
  • #5098: Dont build the editor when building the website
  • #5099: Run tests
  • #5094: Adds vite esm example
  • #5093: Adds playground support for esmUrl
  • #5092: Updates changelog
  • #5090: Adds localization section to readme
  • #5089: Adds missing NLS files
  • #5088: Dont use .js for typescript imports, as rollup adds them to the output
  • #5070: Bump vite from 7.1.5 to 7.1.11
  • #5069: Bump playwright and @​playwright/test
  • #5058: Add monaco-editor-core dependencies to monaco-editor after updating monaco-editor-core.
  • #5053: Bump loader-utils from 2.0.2 to 2.0.4 in /website
  • #5055: Bump postcss and css-loader in /website
  • #5054: Bump json5 from 2.2.1 to 2.2.3 in /website
  • #4973: Fix Kotlin number literals
  • #4991: Bump vite from 2.9.17 to 5.4.20 in /samples/browser-esm-vite-react
  • #5039: Bump webpack from 5.90.1 to 5.102.1 in /website
  • #5037: Bump ws in /website
  • #5010: [Bug] Multiple issues with how monaco-editor is published
  • #5051: Fixes #5010

... (truncated)

Changelog

Sourced from monaco-editor's changelog.

[0.55.1]

  • Fixes missing language exports (monaco.json/typescript/...) due to wrong "types" path - #5123

[0.55.0]

Breaking Changes

  • Moves nested namespaces (languages.css, languages.html, languages.json, languages.typescript) to top level namespaces (css, html, json, typescript) to simplify the build process and align with typescript recommendations.

New Features

  • Adds native LSP support (see new lsp namespace).

Bug Fixes

  • Updates dompurify to 3.2.7

[0.54.0]

  • Adds option editor.mouseMiddleClickAction
  • Various bug fixes

[0.53.0]

  • ⚠️ This release deprecates the AMD build and ships with significant changes of the AMD build. The AMD build will still be shipped for a while, but we don't offer support for it anymore. Please migrate to the ESM build.

New Features

  • Next Edit Suggestion support.
  • Scroll On Middle Click
  • Edit Context Support

Breaking Changes

  • Internal AMD modules are no longer accessible. Accessing internal AMD modules was never supported. While this is still possible in the ESM build, we don't encourage this usage pattern.
  • The browser-script-editor scenario for unbundled synchronous script import and editor creation no longer works. Instead, a the ESM build should be used with a bundler, such as vite or webpack.
  • Custom AMD workers don't work anymore out of the box.

[0.52.0]

  • Comment added inside of IModelContentChangedEvent

[0.51.0]

  • New fields IEditorOptions.placeholder and IEditorOptions.compactMode
  • New fields IGotoLocationOptions.multipleTests and IGotoLocationOptions.alternativeTestsCommand
  • New field IInlineEditOptions.backgroundColoring
  • New experimental field IEditorOptions.experimental.useTrueInlineView
  • New options CommentThreadRevealOptions for comments

Contributions to monaco-editor:

... (truncated)

Commits

Updates pdfjs-dist from 5.4.296 to 5.4.449

Release notes

Sourced from pdfjs-dist's releases.

v5.4.449

This release contains improvements for the annotation editor, performance, text selection and the viewer.

Changes since v5.4.394

v5.4.394

This release contains improvements for the annotation editor, accessibility, font conversion and performance.

Changes since v5.4.296

... (truncated)

Commits
  • f44e5f0 Merge pull request #20462 from calixteman/improve_thumbnails
  • 423379e Slightly reduce the memory used by thumbnails
  • a965536 Merge pull request #20468 from timvandermeij/trusted-publishing
  • 8eb7476 Use OIDC trusted publishing in the GitHub Actions release workflow
  • ec5330f Merge pull request #20465 from calixteman/update_char_to_nfkc
  • 925fc3d Merge pull request #20467 from calixteman/make_sidebar
  • 45578aa Create a sidebar object
  • eee20cf Fix the regex string used to find the chars to normalize with NFKC when searc...
  • 907cceb Merge pull request #20460 from calixteman/issue20452
  • 40b52fa Merge pull request #20458 from calixteman/fix_firstchild
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for pdfjs-dist since your current version.


Updates uuid from 11.1.0 to 13.0.0

Release notes

Sourced from uuid's releases.

v13.0.0

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

v12.0.0

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

Features

Bug Fixes

Changelog

Sourced from uuid's changelog.

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

Features

  • add node@24 to ci matrix (#879) (42b6178)
  • drop node@16 support (#883) (0f38cf1)
  • remove CommonJS support (#886) (Description has been truncated

@dependabot dependabot bot added I-Dependency Impact: related to an dependency I-Javascript Impact: Javascript-related stuff labels Dec 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 22, 2025 03:06
@dependabot dependabot bot added I-Dependency Impact: related to an dependency I-Javascript Impact: Javascript-related stuff labels Dec 22, 2025
…12 updates

Bumps the client-prod-deps group with 12 updates in the /client directory:

| Package | From | To |
| --- | --- | --- |
| [@revolist/vue3-datagrid](https://github.com/revolist/vue3-datagrid) | `4.17.3` | `4.20.2` |
| [@sentry/vue](https://github.com/getsentry/sentry-javascript) | `9.46.0` | `10.32.1` |
| [@zip.js/zip.js](https://github.com/gildas-lormeau/zip.js) | `2.8.8` | `2.8.11` |
| [axios](https://github.com/axios/axios) | `1.12.2` | `1.13.2` |
| [file-type](https://github.com/sindresorhus/file-type) | `20.5.0` | `21.1.1` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.2` | `11.3.3` |
| [monaco-editor](https://github.com/microsoft/monaco-editor) | `0.52.2` | `0.55.1` |
| [pdfjs-dist](https://github.com/mozilla/pdf.js) | `5.4.296` | `5.4.449` |
| [uuid](https://github.com/uuidjs/uuid) | `11.1.0` | `13.0.0` |
| [vue](https://github.com/vuejs/core) | `3.5.22` | `3.5.26` |
| [vue-i18n](https://github.com/intlify/vue-i18n/tree/HEAD/packages/vue-i18n) | `11.1.12` | `11.2.7` |
| [vue-router](https://github.com/vuejs/router) | `4.6.3` | `4.6.4` |



Updates `@revolist/vue3-datagrid` from 4.17.3 to 4.20.2
- [Release notes](https://github.com/revolist/vue3-datagrid/releases)
- [Changelog](https://github.com/revolist/vue3-datagrid/blob/main/release.mjs)
- [Commits](revolist/vue3-datagrid@v4.17.3...v4.20.2)

Updates `@sentry/vue` from 9.46.0 to 10.32.1
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@9.46.0...10.32.1)

Updates `@zip.js/zip.js` from 2.8.8 to 2.8.11
- [Release notes](https://github.com/gildas-lormeau/zip.js/releases)
- [Commits](gildas-lormeau/zip.js@v2.8.8...v2.8.11)

Updates `axios` from 1.12.2 to 1.13.2
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.12.2...v1.13.2)

Updates `file-type` from 20.5.0 to 21.1.1
- [Release notes](https://github.com/sindresorhus/file-type/releases)
- [Commits](sindresorhus/file-type@v20.5.0...v21.1.1)

Updates `fs-extra` from 11.3.2 to 11.3.3
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.3.2...11.3.3)

Updates `monaco-editor` from 0.52.2 to 0.55.1
- [Release notes](https://github.com/microsoft/monaco-editor/releases)
- [Changelog](https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md)
- [Commits](microsoft/monaco-editor@v0.52.2...v0.55.1)

Updates `pdfjs-dist` from 5.4.296 to 5.4.449
- [Release notes](https://github.com/mozilla/pdf.js/releases)
- [Commits](mozilla/pdf.js@v5.4.296...v5.4.449)

Updates `uuid` from 11.1.0 to 13.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v11.1.0...v13.0.0)

Updates `vue` from 3.5.22 to 3.5.26
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.22...v3.5.26)

Updates `vue-i18n` from 11.1.12 to 11.2.7
- [Release notes](https://github.com/intlify/vue-i18n/releases)
- [Changelog](https://github.com/intlify/vue-i18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/intlify/vue-i18n/commits/v11.2.7/packages/vue-i18n)

Updates `vue-router` from 4.6.3 to 4.6.4
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v4.6.3...v4.6.4)

---
updated-dependencies:
- dependency-name: "@revolist/vue3-datagrid"
  dependency-version: 4.20.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-prod-deps
- dependency-name: "@sentry/vue"
  dependency-version: 10.32.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-prod-deps
- dependency-name: "@zip.js/zip.js"
  dependency-version: 2.8.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-prod-deps
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-prod-deps
- dependency-name: file-type
  dependency-version: 21.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-prod-deps
- dependency-name: fs-extra
  dependency-version: 11.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-prod-deps
- dependency-name: monaco-editor
  dependency-version: 0.55.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-prod-deps
- dependency-name: pdfjs-dist
  dependency-version: 5.4.449
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-prod-deps
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: client-prod-deps
- dependency-name: vue
  dependency-version: 3.5.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-prod-deps
- dependency-name: vue-i18n
  dependency-version: 11.2.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: client-prod-deps
- dependency-name: vue-router
  dependency-version: 4.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: client-prod-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-client-client-prod-deps-16a5a1f53b branch from 6d29ec4 to bf85048 Compare January 5, 2026 03:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

I-Dependency Impact: related to an dependency I-Javascript Impact: Javascript-related stuff

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant