Skip to content

Commit

Permalink
Version Packages (#210)
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 May 12, 2024
1 parent 89b4f84 commit db44b12
Show file tree
Hide file tree
Showing 18 changed files with 123 additions and 64 deletions.
11 changes: 0 additions & 11 deletions .changeset/cyan-tables-invite.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/red-geese-swim.md

This file was deleted.

33 changes: 0 additions & 33 deletions .changeset/spicy-ads-complain.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/three-foxes-protect.md

This file was deleted.

11 changes: 11 additions & 0 deletions apps/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @plutolang/cli

## 0.4.18

### Patch Changes

- Updated dependencies [c406bdf]
- Updated dependencies [b3400ad]
- @plutolang/pulumi-adapter@0.4.5
- @plutolang/pyright-deducer@0.1.11
- @plutolang/static-deducer@0.4.6
- @plutolang/simulator-adapter@0.3.17

## 0.4.17

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/cli",
"version": "0.4.17",
"version": "0.4.18",
"description": "The command line of Pluto-lang",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions components/adapters/pulumi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @plutolang/pulumi-adapter

## 0.4.5

### Patch Changes

- c406bdf: feat(adapter): add `projectRoot` to Pulumi config for path resolution

This commit adds the `projectRoot` setting to the Pulumi configuration by default. This feature improves the accuracy of relative path resolution for resource creation, like a Website. With the `projectRoot` available, the infra SDK can correctly resolve paths given by the user relative to the project's base directory. For instance, creating a Website resource with a path parameter relative to the project root is now possible as demonstrated:

```typescript
const website = new Website("./public");
```

## 0.4.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/adapters/pulumi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/pulumi-adapter",
"version": "0.4.4",
"version": "0.4.5",
"repository": {
"type": "git",
"url": "git+https://github.com/pluto-lang/pluto.git",
Expand Down
9 changes: 9 additions & 0 deletions components/adapters/simulator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @plutolang/simulator-adapter

## 0.3.17

### Patch Changes

- Updated dependencies [e58e6d2]
- Updated dependencies [93a0d4b]
- @plutolang/pluto-infra@0.4.13
- @plutolang/pluto@0.4.8

## 0.3.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/adapters/simulator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/simulator-adapter",
"version": "0.3.16",
"version": "0.3.17",
"repository": {
"type": "git",
"url": "git+https://github.com/pluto-lang/pluto.git",
Expand Down
33 changes: 33 additions & 0 deletions components/deducers/python-pyright/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @plutolang/pyright-deducer

## 0.1.11

### Patch Changes

- b3400ad: feat(deducer): allow using direct captured properties as arguments in infra API

This change introduces the ability to use direct captured properties as arguments in infrastructure API calls. For instance, the code below is now considered valid:

```python
from pluto_client import Website, Router

router = Router("router")
website = Website(path="path/to/website", name="website")

website.addEnv("ROUTER", router.url())
```

In this example, `router.url()` is a direct captured property which the website utilizes to establish a connection to the backend service.

The goal is for the infrastructure API to accept both direct captured properties and variables assigned with these properties, as demonstrated here:

```python
from pluto_client import Website, Router

router = Router("router")
website = Website(path="path/to/website", name="website")

router_url = router.url()
website.addEnv("ROUTER", router_url)
```

Currently, the API only accepts direct captured properties as arguments. Future updates will include support for variables that store the return values of these properties.

## 0.1.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/deducers/python-pyright/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/pyright-deducer",
"version": "0.1.10",
"version": "0.1.11",
"repository": {
"type": "git",
"url": "git+https://github.com/pluto-lang/pluto.git",
Expand Down
33 changes: 33 additions & 0 deletions components/deducers/static/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# @plutolang/static-deducer

## 0.4.6

### Patch Changes

- b3400ad: feat(deducer): allow using direct captured properties as arguments in infra API

This change introduces the ability to use direct captured properties as arguments in infrastructure API calls. For instance, the code below is now considered valid:

```python
from pluto_client import Website, Router

router = Router("router")
website = Website(path="path/to/website", name="website")

website.addEnv("ROUTER", router.url())
```

In this example, `router.url()` is a direct captured property which the website utilizes to establish a connection to the backend service.

The goal is for the infrastructure API to accept both direct captured properties and variables assigned with these properties, as demonstrated here:

```python
from pluto_client import Website, Router

router = Router("router")
website = Website(path="path/to/website", name="website")

router_url = router.url()
website.addEnv("ROUTER", router_url)
```

Currently, the API only accepts direct captured properties as arguments. Future updates will include support for variables that store the return values of these properties.

## 0.4.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion components/deducers/static/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/static-deducer",
"version": "0.4.5",
"version": "0.4.6",
"repository": {
"type": "git",
"url": "git+https://github.com/pluto-lang/pluto.git",
Expand Down
12 changes: 12 additions & 0 deletions packages/pluto-infra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @plutolang/pluto-infra

## 0.4.13

### Patch Changes

- e58e6d2: feat(sdk): add Website resource type
- 93a0d4b: chore(sdk): upgrade @pulumi/aws to support Python 3.12 in Lambda

Upgraded `@pulumi/aws` version from 6.4.1 to 6.34.1 to ensure compatibility with the Python 3.12 runtime in AWS Lambda functions.

- Updated dependencies [e58e6d2]
- @plutolang/pluto@0.4.8

## 0.4.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pluto-infra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/pluto-infra",
"version": "0.4.12",
"version": "0.4.13",
"description": "",
"scripts": {
"build": "node scripts/copy-assets.js && tsc",
Expand Down
6 changes: 6 additions & 0 deletions packages/pluto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @plutolang/pluto

## 0.4.8

### Patch Changes

- e58e6d2: feat(sdk): add Website resource type

## 0.4.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pluto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plutolang/pluto",
"version": "0.4.7",
"version": "0.4.8",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit db44b12

Please sign in to comment.