Skip to content

Commit

Permalink
Version Packages (#214)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Apr 29, 2024
1 parent 56c956c commit 82ee2f8
Show file tree
Hide file tree
Showing 10 changed files with 1,337 additions and 1,460 deletions.
20 changes: 0 additions & 20 deletions .changeset/little-knives-flash.md

This file was deleted.

27 changes: 27 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @ts-safeql/eslint-plugin

## 3.1.0

### Minor Changes

- 56c956c: You can now modify the expected type for each table column. This could be useful when dealing with
dynamic types such as JSONB or when you want to enforce a specific type for a column.

```json
{
// ...,
"overrides": {
"columns": {
"table_name.column_name": "CustomType"
}
}
}
```

You can read more about it in the [documentation](https://safeql.dev/api/#connections-overrides-columns-optional)

### Patch Changes

- Updated dependencies [56c956c]
- @ts-safeql/generate@3.1.0
- @ts-safeql/shared@3.1.0
- @ts-safeql/test-utils@0.0.16

## 3.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/eslint-plugin",
"version": "3.0.2",
"version": "3.1.0",
"main": "lib/index.js",
"license": "MIT",
"repository": "https://github.com/ts-safeql/safeql/tree/master/packages/eslint-plugin",
Expand Down
25 changes: 25 additions & 0 deletions packages/generate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @ts-safeql/generate

## 3.1.0

### Minor Changes

- 56c956c: You can now modify the expected type for each table column. This could be useful when dealing with
dynamic types such as JSONB or when you want to enforce a specific type for a column.

```json
{
// ...,
"overrides": {
"columns": {
"table_name.column_name": "CustomType"
}
}
}
```

You can read more about it in the [documentation](https://safeql.dev/api/#connections-overrides-columns-optional)

### Patch Changes

- @ts-safeql/shared@3.1.0
- @ts-safeql/test-utils@0.0.16

## 3.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/generate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/generate",
"version": "3.0.2",
"version": "3.1.0",
"description": "",
"main": "lib/index.js",
"license": "MIT",
Expand Down Expand Up @@ -31,8 +31,8 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@ts-safeql/shared": "workspace:3.0.2",
"@ts-safeql/test-utils": "workspace:0.0.15",
"@ts-safeql/shared": "workspace:3.1.0",
"@ts-safeql/test-utils": "workspace:0.0.16",
"fp-ts": "^2.13.1",
"pg-connection-string": "^2.5.0",
"postgres": "^3.3.4"
Expand Down
2 changes: 2 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @ts-safeql/shared

## 3.1.0

## 3.0.2

## 3.0.1
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/shared",
"version": "3.0.2",
"version": "3.1.0",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ts-safeql/test-utils

## 0.0.16

### Patch Changes

- @ts-safeql/shared@3.1.0

## 0.0.15

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/test-utils",
"version": "0.0.15",
"version": "0.0.16",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand All @@ -25,7 +25,7 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@ts-safeql/shared": "workspace:3.0.2",
"@ts-safeql/shared": "workspace:3.1.0",
"nanoid": "^4.0.2",
"pg-connection-string": "^2.5.0",
"postgres": "^3.3.4"
Expand Down
Loading

0 comments on commit 82ee2f8

Please sign in to comment.