Skip to content

Commit

Permalink
Upgraded internal versions (#3138)
Browse files Browse the repository at this point in the history
* Upgraded internal versions

* Add release notes

---------

Co-authored-by: Aleksandr Sherman <[email protected]>
  • Loading branch information
AndriiSherman and AleksandrSherman authored Oct 16, 2024
1 parent 64b3c85 commit a359214
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelogs/drizzle-kit/0.26.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Updated internal versions for the drizzle-kit and drizzle-orm packages. Changes were introduced in the last minor release, and you are required to upgrade both packages to ensure they work as expected
1 change: 1 addition & 0 deletions changelogs/drizzle-orm/0.35.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Updated internal versions for the drizzle-kit and drizzle-orm packages. Changes were introduced in the last minor release, and you are required to upgrade both packages to ensure they work as expected
2 changes: 1 addition & 1 deletion drizzle-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drizzle-kit",
"version": "0.26.1",
"version": "0.26.2",
"homepage": "https://orm.drizzle.team",
"keywords": [
"drizzle",
Expand Down
2 changes: 1 addition & 1 deletion drizzle-kit/src/cli/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const assertEitherPackage = async (
process.exit(1);
};

const requiredApiVersion = 8;
const requiredApiVersion = 9;
export const assertOrmCoreVersion = async () => {
try {
const { compatibilityVersion } = await import('drizzle-orm/version');
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drizzle-orm",
"version": "0.35.0",
"version": "0.35.1",
"description": "Drizzle ORM package for SQL databases",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// @ts-ignore - imported using Rollup json plugin
export { version as npmVersion } from '../package.json';
// In version 7, we changed the PostgreSQL indexes API
export const compatibilityVersion = 8;
export const compatibilityVersion = 9;

0 comments on commit a359214

Please sign in to comment.