Skip to content

Commit fdf84f7

Browse files
chore: version packages [skip ci]
1 parent 0f3c73c commit fdf84f7

6 files changed

Lines changed: 25 additions & 14 deletions

File tree

.changeset/dsql-alter-table-drop.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bb-distributed-data/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @aws-blocks/bb-distributed-data
22

3+
## 0.1.4
4+
5+
### Patch Changes
6+
7+
- 0f3c73c: Reject `ALTER TABLE DROP COLUMN` at dev time, including the keyword-less Postgres shorthand (`ALTER TABLE t DROP col` / `DROP IF EXISTS col`). It is not in DSQL's supported `ALTER TABLE` subset ("unsupported ALTER TABLE DROP COLUMN statement", 0A000), but the PGlite-based local mock previously accepted it, so the error only surfaced on deploy. Migration and mock validation now fail locally instead. The supported forms — `ALTER COLUMN ... DROP DEFAULT` / `DROP NOT NULL` / `DROP EXPRESSION` / `DROP IDENTITY` and `DROP CONSTRAINT` — are not affected.
8+
9+
The `@aws-blocks/blocks` umbrella package receives a `patch` because its published `docs/` folder is assembled from sibling block READMEs at build time (`scripts/sync-block-docs.mjs`), so this `bb-distributed-data` README update changes `@aws-blocks/blocks` packaged content.
10+
311
## 0.1.3
412

513
### Patch Changes

packages/bb-distributed-data/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-blocks/bb-distributed-data",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"author": "Amazon Web Services",
55
"license": "Apache-2.0",
66
"type": "module",

packages/blocks/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @aws-blocks/blocks
22

3+
## 0.2.5
4+
5+
### Patch Changes
6+
7+
- 0f3c73c: Reject `ALTER TABLE DROP COLUMN` at dev time, including the keyword-less Postgres shorthand (`ALTER TABLE t DROP col` / `DROP IF EXISTS col`). It is not in DSQL's supported `ALTER TABLE` subset ("unsupported ALTER TABLE DROP COLUMN statement", 0A000), but the PGlite-based local mock previously accepted it, so the error only surfaced on deploy. Migration and mock validation now fail locally instead. The supported forms — `ALTER COLUMN ... DROP DEFAULT` / `DROP NOT NULL` / `DROP EXPRESSION` / `DROP IDENTITY` and `DROP CONSTRAINT` — are not affected.
8+
9+
The `@aws-blocks/blocks` umbrella package receives a `patch` because its published `docs/` folder is assembled from sibling block READMEs at build time (`scripts/sync-block-docs.mjs`), so this `bb-distributed-data` README update changes `@aws-blocks/blocks` packaged content.
10+
11+
- Updated dependencies [0f3c73c]
12+
- @aws-blocks/bb-distributed-data@0.1.4
13+
314
## 0.2.4
415

516
### Patch Changes

packages/blocks/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-blocks/blocks",
3-
"version": "0.2.4",
3+
"version": "0.2.5",
44
"author": "Amazon Web Services",
55
"license": "Apache-2.0",
66
"type": "module",
@@ -62,7 +62,7 @@
6262
"@aws-blocks/bb-distributed-table": "^0.1.3",
6363
"@aws-blocks/bb-realtime": "^0.1.3",
6464
"@aws-blocks/bb-data": "^0.2.3",
65-
"@aws-blocks/bb-distributed-data": "^0.1.3",
65+
"@aws-blocks/bb-distributed-data": "^0.1.4",
6666
"@aws-blocks/bb-async-job": "^0.1.2",
6767
"@aws-blocks/bb-cron-job": "^0.1.3",
6868
"@aws-blocks/bb-file-bucket": "^0.1.2",

0 commit comments

Comments
 (0)