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

Update version for the next release (v0.48.0) #1826

Merged
merged 2 commits into from
Jan 14, 2025
Merged

Conversation

meili-bot
Copy link
Contributor

@meili-bot meili-bot commented Jan 14, 2025

This PR is auto-generated.

The automated script updates the version of meilisearch-js to a new version: "v0.48.0"

CHANGELOGS 👇

⚠️ 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 🎉

@meili-bot meili-bot added the skip-changelog The PR will not appear in the release changelogs label Jan 14, 2025
Copy link

codecov bot commented Jan 14, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.21%. Comparing base (73aac7d) to head (4d96c59).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1826   +/-   ##
=======================================
  Coverage   98.21%   98.21%           
=======================================
  Files          17       17           
  Lines        1565     1565           
  Branches      333      333           
=======================================
  Hits         1537     1537           
  Misses         28       28           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@Strift Strift self-assigned this Jan 14, 2025
Copy link
Member

@curquiza curquiza left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bors merge

meili-bors bot added a commit that referenced this pull request Jan 14, 2025
1826: Update version for the next release (v0.48.0) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-js to a new version: "v0.48.0"

CHANGELOGS 👇

## ⚠️ Breaking changes

* Improve `token.ts` and make it tree-shakeable (#1661) `@flevi29`

**Migration**

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

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

## ⚙️ Maintenance

* Switch from rollup to vite, from commonjs to ecmascript modules (#1740) `@\flevi29`
* Remove mention of support of Node 14 and 16 (#1805) `@\Strift`
* Fix and improve `eslint` config, other minor changes (#1795) `@\flevi29`
* Fix swapped args in localized-attributes sample (#1818) `@\ellnix`
* [Playground] Replace Parcel by Vite (#1821) `@\Strift`
* Switch from rollup to vite, from commonjs to ecmascript modules (#1740) `@\flevi29`
* Remove `nodemon` dependency (#1822) `@\flevi29`

Thanks again to `@\Strift,` `@\ellnix,` and `@\flevi29` 🎉


Co-authored-by: meili-bot <[email protected]>
@curquiza curquiza merged commit c2af858 into main Jan 14, 2025
6 of 7 checks passed
@curquiza curquiza deleted the meili-bot/bump-version branch January 14, 2025 09:21
Copy link
Contributor

meili-bors bot commented Jan 14, 2025

This PR was included in a batch that successfully built, but then failed to merge into main (it was a non-fast-forward update). It will be automatically retried.

meili-bors bot added a commit that referenced this pull request Jan 14, 2025
1826: Update version for the next release (v0.48.0) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-js to a new version: "v0.48.0"

CHANGELOGS 👇

## ⚠️ Breaking changes

* Improve `token.ts` and make it tree-shakeable (#1661) `@flevi29`

**Migration**

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

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

## ⚙️ Maintenance

* Switch from rollup to vite, from commonjs to ecmascript modules (#1740) `@\flevi29`
* Remove mention of support of Node 14 and 16 (#1805) `@\Strift`
* Fix and improve `eslint` config, other minor changes (#1795) `@\flevi29`
* Fix swapped args in localized-attributes sample (#1818) `@\ellnix`
* [Playground] Replace Parcel by Vite (#1821) `@\Strift`
* Switch from rollup to vite, from commonjs to ecmascript modules (#1740) `@\flevi29`
* Remove `nodemon` dependency (#1822) `@\flevi29`

Thanks again to `@\Strift,` `@\ellnix,` and `@\flevi29` 🎉


Co-authored-by: meili-bot <[email protected]>
Copy link
Contributor

meili-bors bot commented Jan 14, 2025

This PR was included in a batch that successfully built, but then failed to merge into main. It will not be retried.

Additional information:

{"message":"Changes must be made through a pull request.","documentation_url":"https://docs.github.com/articles/about-protected-branches","status":"422"}

@flevi29
Copy link
Collaborator

flevi29 commented Jan 14, 2025

@curquiza I think @Strift wanted to merge another PR.
#1741 (review)

@curquiza
Copy link
Member

Hello @flevi29
I was on a video-call with him when I merged the PR 😉 We decided to make the release now
In the worst case he will create a new release.

@Strift Strift mentioned this pull request Jan 15, 2025
3 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip-changelog The PR will not appear in the release changelogs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants