Skip to content

Commit

Permalink
Version Packages (#52)
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] committed Sep 25, 2022
1 parent 3d3ca50 commit 358138e
Show file tree
Hide file tree
Showing 12 changed files with 65 additions and 43 deletions.
8 changes: 0 additions & 8 deletions .changeset/tough-pumpkins-shave.md

This file was deleted.

6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ts-safeql/docs

## 1.1.1

### Patch Changes

- 3d3ca50: allow (column) field case transformation (e.g `"fieldTransform": "camel"` - `user_id``userId`)

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ts-safeql/docs",
"private": true,
"version": "1.1.0",
"version": "1.1.1",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
Expand Down
10 changes: 10 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @ts-safeql/eslint-plugin

## 0.0.12

### Patch Changes

- 3d3ca50: allow (column) field case transformation (e.g `"fieldTransform": "camel"` - `user_id``userId`)
- Updated dependencies [3d3ca50]
- @ts-safeql/generate@0.0.4
- @ts-safeql/shared@0.0.4
- @ts-safeql/test-utils@0.0.4

## 0.0.11

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions 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": "0.0.11",
"version": "0.0.12",
"main": "lib/index.js",
"license": "MIT",
"repository": "https://github.com/ts-safeql/safeql/tree/master/packages/eslint-plugin",
Expand Down Expand Up @@ -31,9 +31,9 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/generate": "workspace:0.0.3",
"@ts-safeql/shared": "workspace:0.0.3",
"@ts-safeql/test-utils": "workspace:0.0.3",
"@ts-safeql/generate": "workspace:0.0.4",
"@ts-safeql/shared": "workspace:0.0.4",
"@ts-safeql/test-utils": "workspace:0.0.4",
"@typescript-eslint/utils": "^5.36.2",
"fp-ts": "^2.12.3",
"pg-connection-string": "2.5.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/generate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @ts-safeql/generate

## 0.0.4

### Patch Changes

- 3d3ca50: allow (column) field case transformation (e.g `"fieldTransform": "camel"` - `user_id``userId`)
- Updated dependencies [3d3ca50]
- @ts-safeql/shared@0.0.4
- @ts-safeql/test-utils@0.0.4

## 0.0.3

### 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": "0.0.3",
"version": "0.0.4",
"description": "",
"main": "lib/index.js",
"license": "MIT",
Expand Down Expand Up @@ -31,8 +31,8 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/shared": "workspace:0.0.3",
"@ts-safeql/test-utils": "workspace:0.0.3",
"@ts-safeql/shared": "workspace:0.0.4",
"@ts-safeql/test-utils": "workspace:0.0.4",
"fp-ts": "^2.12.3",
"pg-connection-string": "^2.5.0",
"postgres": "github:porsager/postgres",
Expand Down
6 changes: 6 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ts-safeql/shared

## 0.0.4

### Patch Changes

- 3d3ca50: allow (column) field case transformation (e.g `"fieldTransform": "camel"` - `user_id``userId`)

## 0.0.3

### Patch Changes
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": "0.0.3",
"version": "0.0.4",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @ts-safeql/test-utils

## 0.0.4

### Patch Changes

- Updated dependencies [3d3ca50]
- @ts-safeql/shared@0.0.4

## 0.0.3

### 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.3",
"version": "0.0.4",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand All @@ -25,7 +25,7 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/shared": "workspace:0.0.3",
"@ts-safeql/shared": "workspace:0.0.4",
"nanoid": "^4.0.0",
"pg-connection-string": "^2.5.0",
"postgres": "github:porsager/postgres"
Expand Down
40 changes: 16 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 358138e

@vercel
Copy link

@vercel vercel bot commented on 358138e Sep 25, 2022

Choose a reason for hiding this comment

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

Please sign in to comment.