Releases: VirtusLab/besom
Releases · VirtusLab/besom
v0.5.0
Welcome to Besom 0.5.0!
Besom is no longer in beta. 0.5.0 is considered stable-candidate and will be the last version before 1.0.0.
What's Changed
Core API
- WithArgs (copy) method added to args companion objects for all Args classes.
- StackReferences can now be typed statically by just providing the target type to which exports are to be loaded.
- The
(using Context)clause has been dropped from many APIs due to the introduction of built-in reader monad into theOutputmonad's internals that passesContextinternally. It is now only required whereContextis used to establish resource parenthood relationships or where free functions require access to the data related to the current stack. - Fixed codegen issue where
"plain"input parameters were generated asInputs instead of raw arguments. This fixes a whole category of smaller issues with providers. - Code-generated output classes now use
Outputtypes for all fields. This ensures that deserialization errors are isolated to individual fields and that field secrecy is handled with finer granularity. - All public APIs now take
Iterable[A]instead ofList[A]. This allows greater flexibility of the user API - no more.toList! - Resource aliases are now implemented!
- Codegen now supports hotfixes allowing usage of many previously blocked packages.
- Various fixes and optimizations to codegen in preparation for full automation of release pipeline. Examples are now used as complete end to end tests before releases.
Kubernetes provider
- Added Custom Resource and Custom Resource Patch support in Kubernetes provider via overlays mechanism.
- We now support generation of resource classes from Kubernetes Custom Resource Definitions via command line tool crd2besom (experimental).
New examples:
- GCP Functions
- GCP Instance + Nginx
- Google Firestore
- Google Cloud BigQuery
- Azure ACI
- Kubernetes + Keycloak
- Azure CosmosDB + LogicApp
- ETL pipeline with Amazon Redshift + AWS Glue
- Azure Synapse Workspace and Pools
- Azure web app with Private Endpoint and VNet injection
Issue / PR-wise:
- Allow overriding publishing settings for codegen by @nikolaiser in #508
- WithArgs (copy) method added to args companion object by @PawelGizka in #522
- Do not ignore plain input parameters by @PawelGizka in #526
- Fix issue 432 - Add Output type to fields in generated output case classes by @polkx in #524
- Use Iterable instead of List by @PawelGizka in #529
- Aliases support by @PawelGizka in #532
- Add GCP Functions example by @polkx in #484
- Add GCP Instance NGINX example by @polkx in #485
- Add Google Firestore database example by @polkx in #496
- Add Google Cloud BigQuery example by @polkx in #495
- Add Azure ACI example by @polkx in #452
- Kpoliwka/kubernetes keycloak by @polkx in #491
- An example of azure-cosmosdb-logicapp by @polkx in #520
- Small corrections for gcp cloudrun example by @lbialy in #405
- An ETL pipeline with Amazon Redshift and AWS Glue example by @polkx in #498
- Fix target java version for scripts package by @lbialy in #519
- Add Azure Synapse Workspace and Pools example by @polkx in #501
- Deploy front web app with VNet injection and Back web app with a Private Endpoint by @polkx in #507
- Add custom resource and custom resource patch overlays by @polkx in #531
- Fix issue 527 - Add to StackReference, methods converting to typed Outputs by @polkx in #528
- Kpoliwka/create case class from yaml by @polkx in #534
- Improve all public APIs by dropping (using Context) by @lbialy in #538
- Improvements to besom-cfg by @lbialy in #525
- Deduplicated generation of packages in integration tests by @lbialy in #547
- Bumped protobuf, regenerated rpc, corrected Language trait by @lbialy in #549
- Preparations for Scala 3.3.4 by @lbialy in #548
- Pass plugin discoverer output via a temp file by @prolativ in #544
- Codegen with new pulumi by @prolativ in #556
- Codegen hotfixes allow ovh, vultr and digitalocean to compile by @lbialy in #558
- Codegen is now parallel using Ox by @lbialy in #570
- Component API is back to using given Context by @lbialy in #570
- Examples used as integration tests by @lbialy in #570
New Contributors
- @nikolaiser made their first contribution in #508
- @PawelGizka made their first contribution in #522
Full Changelog: v0.3.2...v0.5.0
v0.5.0-SNAPSHOT
What's Changed
- Allow overriding publishing settings for codegen by @nikolaiser in #508
- WithArgs (copy) method added to args companion object by @PawelGizka in #522
- Do not ignore plain input parameters by @PawelGizka in #526
- Fix issue 432 - Add Output type to fields in generated output case classes by @polkx in #524
- Use Iterable instead of List by @PawelGizka in #529
- Aliases support by @PawelGizka in #532
- Add GCP Functions example by @polkx in #484
- Add GCP Instance NGINX example by @polkx in #485
- Add Google Firestore database example by @polkx in #496
- Add Google Cloud BigQuery example by @polkx in #495
- Add Azure ACI example by @polkx in #452
- Kpoliwka/kubernetes keycloak by @polkx in #491
- An example of azure-cosmosdb-logicapp by @polkx in #520
- Small corrections for gcp cloudrun example by @lbialy in #405
- An ETL pipeline with Amazon Redshift and AWS Glue example by @polkx in #498
- fix target java version for scripts package by @lbialy in #519
- Add Azure Synapse Workspace and Pools example by @polkx in #501
- Deploy front web app with VNet injection and Back web app with a Private Endpoint by @polkx in #507
- Add custom resource and custom resource patch overlays by @polkx in #531
- Fix issue 527 - Add to StackReference, methods converting to typed Outputs by @polkx in #528
- Kpoliwka/create case class from yaml by @polkx in #534
- Improve all public APIs by dropping (using Context) by @lbialy in #538
- improvements to besom-cfg by @lbialy in #525
- deduplicated generation of packages in integration tests by @lbialy in #547
- bumped protobuf, regenerated rpc, corrected Language trait by @lbialy in #549
- Preparations for Scala 3.3.4 by @lbialy in #548
- Pass plugin discoverer output via a temp file by @prolativ in #544
- Codegen with new pulumi by @prolativ in #556
- codegen hotfixes allow ovh, vultr and digitalocean to compile by @lbialy in #558
New Contributors
- @nikolaiser made their first contribution in #508
- @PawelGizka made their first contribution in #522
Full Changelog: v0.3.2...v0.5.0-SNAPSHOT
v0.4.0-SNAPSHOT
What's Changed
- Allow overriding publishing settings for codegen by @nikolaiser in #508
- WithArgs (copy) method added to args companion object by @PawelGizka in #522
- Do not ignore plain input parameters by @PawelGizka in #526
- Fix issue 432 - Add Output type to fields in generated output case classes by @polkx in #524
- Use Iterable instead of List by @PawelGizka in #529
- Aliases support by @PawelGizka in #532
- Add GCP Functions example by @polkx in #484
- Add GCP Instance NGINX example by @polkx in #485
- Add Google Firestore database example by @polkx in #496
- Add Google Cloud BigQuery example by @polkx in #495
- Add Azure ACI example by @polkx in #452
- Kpoliwka/kubernetes keycloak by @polkx in #491
- An example of azure-cosmosdb-logicapp by @polkx in #520
- Small corrections for gcp cloudrun example by @lbialy in #405
- An ETL pipeline with Amazon Redshift and AWS Glue example by @polkx in #498
- fix target java version for scripts package by @lbialy in #519
- Add Azure Synapse Workspace and Pools example by @polkx in #501
- Deploy front web app with VNet injection and Back web app with a Private Endpoint by @polkx in #507
- Add custom resource and custom resource patch overlays by @polkx in #531
- Fix issue 527 - Add to StackReference, methods converting to typed Outputs by @polkx in #528
- Kpoliwka/create case class from yaml by @polkx in #534
- Improve all public APIs by dropping (using Context) by @lbialy in #538
- improvements to besom-cfg by @lbialy in #525
- deduplicated generation of packages in integration tests by @lbialy in #547
- bumped protobuf, regenerated rpc, corrected Language trait by @lbialy in #549
- Preparations for Scala 3.3.4 by @lbialy in #548
- Pass plugin discoverer output via a temp file by @prolativ in #544
- Codegen with new pulumi by @prolativ in #556
- codegen hotfixes allow ovh, vultr and digitalocean to compile by @lbialy in #558
New Contributors
- @nikolaiser made their first contribution in #508
- @PawelGizka made their first contribution in #522
Full Changelog: v0.3.2...v0.4.0-SNAPSHOT
v0.3.2
What's Changed
- Update scripts by @pawelprazak in #469
- Update mangled properties list by @pawelprazak in #463
- Add AWS API Gateway V2 with EventBridge example by @polkx in #479
- Update protobuf by @pawelprazak in #450
- Towards Auto API by @pawelprazak in #336
- Fix issue 489 - trace level messages get evaluated to send to Pulumi engine by @lbialy in #492
- bumped versions of libraries in core to solve #487 by @lbialy in #500
- Allow passing options to scala-cli via language plugin executor by @lbialy in #503
- fix issue 488 by @lbialy in #502
- exposed CustomTimeouts via a factory object in aliases by @lbialy in #504
- besom-cfg initial checkin to monorepo by @lbialy in #494
- resolved issue #397 by @lbialy in #505
Full Changelog: v0.3.1...v0.3.2
v0.3.2-SNAPSHOT
What's Changed
- Update scripts by @pawelprazak in #469
- Update mangled properties list by @pawelprazak in #463
- Add AWS API Gateway V2 with EventBridge example by @polkx in #479
- Update protobuf by @pawelprazak in #450
- Towards Auto API by @pawelprazak in #336
- Fix issue 489 - trace level messages get evaluated to send to Pulumi engine by @lbialy in #492
- bumped versions of libraries in core to solve #487 by @lbialy in #500
- Allow passing options to scala-cli via language plugin executor by @lbialy in #503
- fix issue 488 by @lbialy in #502
- exposed CustomTimeouts via a factory object in aliases by @lbialy in #504
- besom-cfg initial checkin to monorepo by @lbialy in #494
- resolved issue #397 by @lbialy in #505
Full Changelog: v0.3.1...v0.3.2-SNAPSHOT
v0.3.1
Maven Central
All Scala packages are available on Maven Central
What's Changed
Read changelog on the website for details.
TL;DR:
- Fix issue 459 by @lbialy in #460
- Fix issue 462 - MatchError in Output[String] -> Output[NonEmptyString] inference by @lbialy in #465
- Add more combinators to Output - issue #466 by @lbialy in #467
- Add GCP webserver example by @polkx in #461
- Add GKE cluster example by @polkx in #464
- Add Azure static website example by @polkx in #457
- Add Azure webserver example by @polkx in #455
Full Changelog: v0.3.0...v0.3.1
v0.3.0
Maven Central
All Scala packages are available on Maven Central
What's Changed
Read changelog on the website for details.
TL;DR:
- Fix #407 - recurrent type encoder by @pawelprazak in #409
- New refied output serde by @pawelprazak in #414
- Update AWS EKS hello world example by @polkx in #399
- Memoization of pulumi side effects by @lbialy in #429
- JSON handling improvements by @lbialy in #404
- Fix traverse problem from #430, fix component API function too by @lbialy in #441
- Added
parSequenceonResultandparSequence/parTraverseonOutputby @lbialy in #440 - Add
Output.whenby @pawelprazak in #439 - Improve errors around
Output.evalandOutput#flatMap/ToFuture@implicitNotFoundby @lbialy in #443 - Add lifts to
Output[Option[List[A]]]etc. by @pawelprazak in #445 - Add overlay support to
codegenby @pawelprazak in #402
Full Changelog: v0.2.2...v0.3.0
v0.3.0-SNAPSHOT
What's Changed
Full Changelog: v0.2.2...v0.3.0-SNAPSHOT
v0.2.3-SNAPSHOT
Full Changelog: v0.2.2...v0.2.3-SNAPSHOT
v0.2.2
Maven Central
All Scala packages are available on Maven Central
What's Changed
- fixed component argument serialization issue 398 by @lbialy in #398
- add kubernetes guestbook example by @polkx in #395
Full Changelog: v0.2.1...v0.2.2