nestjs-drizzle-crud 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  Scope note: the 3.0.x line is PostgreSQL-first. MySQL-specific paths (non-`RETURNING`
9
9
  restore, `ER_DUP_ENTRY` mapping, dialect locking) are tracked separately and unchanged here.
10
10
 
11
+ ## [3.1.1] - 2026-07-03
12
+
13
+ ### Changed
14
+ - Package metadata only, no code changes: repository and issues URLs now point to
15
+ [myviliha/viliha-drizzle-crud](https://github.com/myviliha/viliha-drizzle-crud), and the
16
+ homepage points to the docs site at [crud.viliha.com](https://crud.viliha.com/).
17
+
11
18
  ## [3.1.0] - 2026-06-29
12
19
 
13
20
  ### Added
package/README.md CHANGED
@@ -749,4 +749,24 @@ interface SqlCrudConfig {
749
749
 
750
750
  ## License
751
751
 
752
- MIT
752
+ MIT License
753
+
754
+ Copyright (c) 2024 Suman Bonakurthi
755
+
756
+ Permission is hereby granted, free of charge, to any person obtaining a copy
757
+ of this software and associated documentation files (the "Software"), to deal
758
+ in the Software without restriction, including without limitation the rights
759
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
760
+ copies of the Software, and to permit persons to whom the Software is
761
+ furnished to do so, subject to the following conditions:
762
+
763
+ The above copyright notice and this permission notice shall be included in all
764
+ copies or substantial portions of the Software.
765
+
766
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
767
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
768
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
769
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
770
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
771
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
772
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nestjs-drizzle-crud",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "A complete CRUD abstraction layer for Drizzle ORM in NestJS applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,12 +38,12 @@
38
38
  "license": "MIT",
39
39
  "repository": {
40
40
  "type": "git",
41
- "url": "https://github.com/suman-bonakurthi/viliha-drizzle-crud"
41
+ "url": "https://github.com/myviliha/viliha-drizzle-crud"
42
42
  },
43
43
  "bugs": {
44
- "url": "https://github.com/suman-bonakurthi/viliha-drizzle-crud/issues"
44
+ "url": "https://github.com/myviliha/viliha-drizzle-crud/issues"
45
45
  },
46
- "homepage": "https://github.com/suman-bonakurthi/viliha-drizzle-crud/blob/main/README.md",
46
+ "homepage": "https://crud.viliha.com/",
47
47
  "peerDependencies": {
48
48
  "@nestjs/common": ">=10.0.0",
49
49
  "@nestjs/core": ">=10.0.0",