Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into api-authorizer-rework
Browse files Browse the repository at this point in the history
  • Loading branch information
Happy0 committed Jan 23, 2024
2 parents 382e20e + 077ecd6 commit 8eac066
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 27 deletions.
17 changes: 0 additions & 17 deletions .changeset/pre.json

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"format": "prettier --write .",
"changeset": "changeset",
"version": "turbo run build && changeset version && pnpm install",
"release": "changeset publish",
"release": "changeset publish --tag alpha",
"prepare": "husky install"
},
"repository": {
Expand Down
9 changes: 9 additions & 0 deletions packages/aws.iac/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @notation/aws.iac

## 0.4.3

### Patch Changes

- Fix updating std.zip resource
- Updated dependencies
- @notation/core@0.5.1
- @notation/std[email protected]

## 0.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/aws.iac/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/aws.iac",
"version": "0.4.2",
"version": "0.4.3",
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch"
Expand Down
10 changes: 10 additions & 0 deletions packages/aws/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @notation/aws

## 0.5.3

### Patch Changes

- Fix updating std.zip resource
- Updated dependencies
- @notation/aws[email protected]
- @notation/core@0.5.1
- @notation/std[email protected]

## 0.5.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/aws/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/aws",
"version": "0.5.2",
"version": "0.5.3",
"exports": {
"./*": {
"import": "./dist/*/index.js",
Expand Down
10 changes: 10 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @notation/cli

## 0.6.2

### Patch Changes

- Fix updating std.zip resource
- Updated dependencies
- @notation/core@0.5.1
- @notation/dashboard@0.2.0
- @notation/esbuild-plugins@0.4.2

## 0.6.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/cli",
"version": "0.6.1",
"version": "0.6.2",
"files": [
"dist",
"templates"
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @notation/core

## 0.5.1

### Patch Changes

- Fix updating std.zip resource

## 0.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/core",
"version": "0.5.0",
"version": "0.5.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
5 changes: 3 additions & 2 deletions packages/core/src/provisioner/operations/operation.read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ async function read(opts: { resource: BaseResource; state: State }) {
let backoff = 1000;

if (!resource.read) {
const params = await resource.getParams();
const stateNode = await state.get(resource.id);
if (!stateNode) return {};
return stateNode.output;
if (!stateNode) return params;
return { ...stateNode.output, ...params };
}

async function getSettledReadResult() {
Expand Down
6 changes: 6 additions & 0 deletions packages/create-notation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-notation

## 0.0.5

### Patch Changes

- Fix updating std.zip resource

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-notation/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "create-notation",
"version": "0.0.4",
"version": "0.0.5",
"bin": {
"create-notation": "dist/index.js"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/esbuild-plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @notation/esbuild-plugins

## 0.4.2

### Patch Changes

- Updated dependencies
- @notation/core@0.5.1

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/esbuild-plugins/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/esbuild-plugins",
"version": "0.4.1",
"version": "0.4.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
7 changes: 7 additions & 0 deletions packages/std.iac/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @notation/std.iac

## 0.4.3

### Patch Changes

- Updated dependencies
- @notation/core@0.5.1

## 0.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/std.iac/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@notation/std.iac",
"version": "0.4.2",
"version": "0.4.3",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down

0 comments on commit 8eac066

Please sign in to comment.