Skip to content
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

fix(deps): update all non-major dependencies (minor) #566

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@docusaurus/core (source) 3.6.3 -> 3.7.0 age adoption passing confidence
@docusaurus/preset-classic (source) 3.6.3 -> 3.7.0 age adoption passing confidence
meilisearch ~0.41.0 -> ~0.48.0 age adoption passing confidence
pino (source) ~9.5.0 -> ~9.6.0 age adoption passing confidence

Release Notes

facebook/docusaurus (@​docusaurus/core)

v3.7.0

Compare Source

🚀 New Feature
  • docusaurus-faster, docusaurus
  • docusaurus-plugin-content-blog, docusaurus-theme-classic
    • #​10768 feat(blog): Add author social icons for bluesky, mastodon, threads, twitch, youtube, instagram (@​GingerGeek)
  • create-docusaurus, docusaurus-mdx-loader, docusaurus-module-type-aliases, docusaurus-plugin-client-redirects, docusaurus-plugin-content-blog, docusaurus-plugin-content-docs, docusaurus-plugin-content-pages, docusaurus-plugin-debug, docusaurus-plugin-google-analytics, docusaurus-plugin-google-gtag, docusaurus-plugin-google-tag-manager, docusaurus-plugin-ideal-image, docusaurus-plugin-pwa, docusaurus-plugin-rsdoctor, docusaurus-plugin-sitemap, docusaurus-plugin-svgr, docusaurus-plugin-vercel-analytics, docusaurus-preset-classic, docusaurus-theme-classic, docusaurus-theme-common, docusaurus-theme-live-codeblock, docusaurus-theme-mermaid, docusaurus-theme-search-algolia, docusaurus-types, docusaurus
  • docusaurus-plugin-content-blog
  • docusaurus-module-type-aliases, docusaurus-plugin-svgr, docusaurus-preset-classic, docusaurus-types, docusaurus-utils, docusaurus
🐛 Bug Fix
  • docusaurus-remark-plugin-npm2yarn
  • docusaurus-theme-classic, docusaurus-theme-common
  • docusaurus-bundler, docusaurus-theme-common
  • docusaurus-theme-common
  • docusaurus-theme-translations
  • docusaurus-plugin-content-docs
  • docusaurus
  • docusaurus-mdx-loader
    • #​10723 fix(mdx-loader): fix md image paths with spaces bug related to transformImage encoding problem (@​slorber)
📝 Documentation
🤖 Dependencies
🔧 Maintenance
  • Other
  • docusaurus-theme-search-algolia
  • docusaurus
    • #​10798 refactor(core): Use Intl native API to get locale direction, remove rtl-detect depend… (@​slorber)
    • #​10747 refactor(core): swizzle wrap should use ReactNode instead of JSX.Element (@​slorber)
  • create-docusaurus, docusaurus-mdx-loader, docusaurus-module-type-aliases, docusaurus-plugin-content-blog, docusaurus-plugin-content-docs, docusaurus-plugin-content-pages, docusaurus-plugin-debug, docusaurus-plugin-ideal-image, docusaurus-plugin-pwa, docusaurus-theme-classic, docusaurus-theme-common, docusaurus-theme-live-codeblock, docusaurus-theme-mermaid, docusaurus-theme-search-algolia, docusaurus-types, docusaurus
  • docusaurus-theme-common
    • #​10728 refactor(theme-common): change storageUtils useSyncExternalCode getSnapshot workaround (@​slorber)
Committers: 14
meilisearch/meilisearch-js (meilisearch)

v0.48.0: 🌻

Compare Source

⚠️ Breaking changes

Migration

Replace:

await generateTenantToken("74c9c733-3368-4738-bbe5-1d18a5fecb37", [], {
	apiKey: "0a6e572506c52ab0bd6195921575d23092b7f0c284ab4ac86d12346c33057f99",
	expiresAt: new Date("December 17, 4000 03:24:00"),
});

By:

await generateTenantToken({
	apiKey: "0a6e572506c52ab0bd6195921575d23092b7f0c284ab4ac86d12346c33057f99",
	apiKeyUid: "74c9c733-3368-4738-bbe5-1d18a5fecb37",
	searches: [],
	expiresAt: new Date("December 17, 4000 03:24:00"),
});

⚙️ Maintenance

Thanks again to @​Strift, @​ellnix, and @​flevi29 🎉

v0.47.0: 🌻

Compare Source

This version introduces features released on Meilisearch v1.12.0 🎉

Check out the Meilisearch v1.12.0 changelog for more information.

🚀 Enhancements

Introducing new methods to get one or several batches, respectively getBatch() and getBatches().

// fetch one batch using batch UID
const batch = await client.getBatch(123)

// fetch all batches
const batches = await client.getBatches()

The getTasks() methods now accept a reverse parameter to retrieve tasks in reverse chronological order.

const tasks = await client.getTasks({ reverse: true });

Index settings now allow disabling prefix search and facet search. They're both enabled by default. The SDK now comes with dedicated methods to configure these settings.

// disable prefix search
await client.index('myIndex').updatePrefixSearch('disabled')
// reset prefix search settings
await client.index('myIndex').resetPrefixSearch()

// disable facet search
await client.index('myIndex').updateFacetSearch(false)
// reset facet search settings
await client.index('myIndex').resetFacetSearch()

The _matchesPosition array now contains an indices array the text was matched in an array.

When searching for fantasy in a document that has a searchable genre field with the value genre: ["fantasy", "adventure"], the matches position will be as follow:

{
  genre: [{ start: 0, length: 7, indices: [0] }]
}

Which means:

  • There was a single match in the genre array (array length == 1)
  • The match started as position 0 (the first character, "f")
  • The match has a length of 7 (the entire "fantasy" word)
  • The match was in the first item of the array (indices == [0])

⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​mdubus, @​irevoire, @​curquiza, and @​Strift. 🎉

v0.46.0: 🌻

Compare Source

⚠️ Breaking changes

Old:

import { MeiliSearch } from "meilisearch";

const client = new MeiliSearch({ host: "http://127.0.0.1:7700", apiKey: "masterKey" });
const token = await client.generateTenantToken("e489fe16-3381-431b-bee3-00430192915d");

// ...

New:

import { generateTenantToken } from "meilisearch/token";

const token = await generateTenantToken("e489fe16-3381-431b-bee3-00430192915d", [], { apiKey: "masterKey" });

// ...

🐛 Bug Fixes

🔒 Security

Thanks again to @​Barabasbalazs, @​flevi29, @​mdubus! 🎉

v0.45.0: 🌻

Compare Source

This version introduces features released on Meilisearch v1.11.0 🎉
Check out the changelog of Meilisearch v1.11.0 for more information on the changes.

⚠️ Breaking changes (experimental feature only)

🚀 Enhancements

⚙️ Maintenance/misc

Thanks again to @​Barabasbalazs, @​brunoocasali, @​curquiza, @​mdubus! 🎉

v0.44.1: 🌻

Compare Source

🐛 Bug Fixes

Thanks again to @​flevi29 and @​knd775 for the report! 🎉

v0.44.0: 🌻

Compare Source

⚠️ Breaking changes

  • Add package.json "exports" field (#​1611) @​flevi29
    Could be a breaking change for anyone who was importing anything other than what we have in the "exports" package.json field.

⚙️ Maintenance/misc

Thanks again to @​flevi29, @​meili-bors[bot] ! 🎉

v0.43.0: 🌻

Compare Source

⚠️ Breaking changes

🔒 Security

  • build(deps): bump elliptic from 6.5.4 to 6.5.7 in /playgrounds/javascript (#​1699)
  • build(deps): bump serve-static from 1.14.1 to 1.16.2 in /playgrounds/javascript (#​1700)

⚙️ Maintenance/misc

Thanks again to @​brunoocasali, @​curquiza, @​flevi29, @​meili-bors[bot] ! 🎉

v0.42.0: 🌻

Compare Source

This version introduces features released on Meilisearch v1.10.0 🎉
Check out the changelog of Meilisearch v1.10.0 for more information on the changes.

⚠️ Breaking changes

  • Improve errors (#​1656) @​/flevi29
    More details here
  • Changes related to Hybrid search (experimental) for the REST embedder (#​1692) @​mdubus
    • Removed parameters: query, inputField, inputType, pathToEmbeddings and embeddingObject.
    • Replaced by request and response
    • New parameter: headers

🚀 Enhancements

  • Hybrid search improvements (#​1692) @​mdubus

    • Add url parameter to the OpenAI embedder
    • dimensions is now available as an optional parameter for ollama embedders.
  • Add federated search parameters (#​1689) @​flevi29

client.multiSearch({
    federation: {},
    queries: [
      {
        indexUid: 'movies',
        q: 'batman',
        limit: 5,
      },
      {
        indexUid: 'comics',
        q: 'batman',
        limit: 5,
      },
    ]
  })
index.updateDocumentsByFunction({
    context: { ctx: 'Harry' },
    filter: 'id = 4',
    function: 'doc.comment = `Yer a wizard, ${context.ctx}!`',
  })
)
  • Add language settings (#​1693) @​/flevi29
client.index('INDEX_NAME').updateLocalizedAttributes([
    { attributePatterns: ['jpn'], locales: ['*_ja'] },
];)
client.index('INDEX_NAME').search('進撃の巨人', { locales: ['jpn'] })

⚙️ Maintenance/misc

Thanks again to @​amit-ksh, @​brunoocasali, @​curquiza, @​flevi29, @​mdubus, @​meili-bors[bot] ! 🎉

pinojs/pino (pino)

v9.6.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Upgrade of project dependencies label Nov 20, 2024
@sokl-octo
Copy link
Contributor

@sokl-octo sokl-octo self-assigned this Nov 20, 2024
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 4 times, most recently from e53ffb2 to d71b467 Compare December 2, 2024 08:44
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ~0.45.0 fix(deps): update dependency meilisearch to ~0.46.0 Dec 2, 2024
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 3 times, most recently from 3d81019 to 4042605 Compare December 5, 2024 08:57
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ~0.46.0 fix(deps): update dependency meilisearch to ~0.46.0 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/dependencies-minor-patch branch December 8, 2024 18:38
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ~0.46.0 - autoclosed fix(deps): update dependency meilisearch to ~0.46.0 Dec 8, 2024
@renovate renovate bot reopened this Dec 8, 2024
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 3 times, most recently from 87839fd to c96d17c Compare December 11, 2024 10:24
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 3 times, most recently from 1bae7db to a2e6ee2 Compare December 17, 2024 13:28
@sokl-octo sokl-octo removed their assignment Dec 19, 2024
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 2 times, most recently from e8614fb to dc291f2 Compare December 23, 2024 12:51
@renovate renovate bot changed the title fix(deps): update dependency meilisearch to ~0.46.0 fix(deps): update all non-major dependencies (minor) Dec 23, 2024
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch from dc291f2 to 21c429e Compare January 3, 2025 18:12
Copy link

socket-security bot commented Jan 3, 2025

New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@docusaurus/[email protected] Transitive: environment, eval, filesystem, network, shell, unsafe +488 44.1 MB slorber
npm/@docusaurus/[email protected] None +7 1.75 MB slorber
npm/@docusaurus/[email protected] environment Transitive: eval, filesystem, network, unsafe +339 48.3 MB slorber
npm/@docusaurus/[email protected] Transitive: environment, filesystem, shell +77 4.45 MB slorber
npm/@mdx-js/[email protected] None +4 1.72 MB wooorm
npm/@tsconfig/[email protected] None 0 2.97 kB typescript-deploys
npm/[email protected] None 0 8.55 kB lukeed

🚮 Removed packages: npm/@nestjs/[email protected], npm/@nestjs/[email protected], npm/@nestjs/[email protected], npm/@nestjs/[email protected], npm/@nestjs/[email protected], npm/@nestjs/[email protected], npm/@salesforce/[email protected], npm/@sefr/[email protected], npm/@stryker-mutator/[email protected], npm/@stryker-mutator/[email protected], npm/@stryker-mutator/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@types/[email protected], npm/@typescript-eslint/[email protected], npm/@typescript-eslint/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 2 times, most recently from b6f91ed to 31dc6ab Compare January 7, 2025 09:24
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch 3 times, most recently from c296d34 to a165b0d Compare January 14, 2025 10:45
@renovate renovate bot force-pushed the renovate/dependencies-minor-patch branch from a165b0d to 1b0d523 Compare January 23, 2025 22:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Upgrade of project dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant