Skip to content

Commit

Permalink
Release 1.1.0 (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPreston authored Apr 17, 2024
1 parent c2c893d commit c7c86fe
Show file tree
Hide file tree
Showing 6 changed files with 116 additions and 77 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -26,7 +26,7 @@ repos:
args: [ "--py39-plus", "--keep-runtime-typing" ]

- repo: https://github.com/psf/black
rev: 24.3.0
rev: 24.4.0
hooks:
- id: black

Expand Down
38 changes: 38 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,44 @@
History
=======

1.1.0 (2024-04-11)
====================

Major change
--------------

The services security groups now are created in a stack off the root stack to allow creating services
to services ingress rules early. This is required to get Service Connect working properly, as some
services depend on each other early.


* f1facf12 - x-elbvs docs: Small corrections and adding short example of lookup (John "Preston" Mille)
* 6e5e6d5a - Fixing up tidy function validation (#749) (John Preston)
* ada6d5f2 - Bump to 1.1.0-rc1 (John "Preston" Mille)
* 33130390 - Feature - ECS Service Connect (#745) (John Preston)
* ca6923cd - Security groups at root-stack level specifically for service-to-service (#747) (John Preston)
* fee1861c - Fixing up docs build (#744) (John Preston)


1.0.0 (2024-03-08)
==================

4th year release. The structure of the services and resources is stable.
The major change is for resources.Services no longer takes in a list, but instead
unique entries in the form of objects.

0.25.0 was also released at that date as a way to close up the 0.x series.


* baaf43b3 - Working composable environment variables (#743) (John Preston)
* 766907d0 - Needs further rework, but patches exception (#739) (John Preston)
* fd99795f - Fixing up volumes mounts when using hosts (#695) (John Preston)
* c5d250d8 - x-elbv2.loadbalancer lookup (#734) (John Preston)
* f7fc4246 - Update NLB Health check parameters to match docs, allow NLB un/healthy counts to be different (#733) (Louis Mollick)
* 3b465702 - Randomizing base number for LB rule to allow for updates (#729) (John Preston)
* 9c3be5bf - NLBs without EIPs, Retain EIPs (#726) (John Preston)


0.24.0 (2023-11-21)
===================

Expand Down
2 changes: 1 addition & 1 deletion ecs_composex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

__author__ = """John Preston"""
__email__ = "[email protected]"
__version__ = "1.1.0-rc1"
__version__ = "1.1.0-rc3"
2 changes: 1 addition & 1 deletion ecs_composex/ecs_ingress/ecs_ingress_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, family: ComposeFamily, sgs_stack: XStack):
Tags=Tags(
{
"Name": Sub(
f"${family.logical_name}-${{STACK_NAME}}",
f"{family.logical_name}-${{STACK_NAME}}",
STACK_NAME=define_stack_name(),
),
"compose-x:family-name": family.name,
Expand Down
143 changes: 72 additions & 71 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ecs_composex"
version = "1.1.0-rc1"
version = "1.1.0-rc3"
description = "Manage, Configure and Deploy your services and AWS services and applications from your docker-compose definition"
authors = ["John Preston <[email protected]>"]
maintainers = ["John Preston <[email protected]>"]
Expand Down Expand Up @@ -84,7 +84,7 @@ sphinx-material = "^0.0.35"
github_url = "https://github.com/compose-x/ecs_composex"

[tool.tbump.version]
current = "1.1.0-rc1"
current = "1.1.0-rc3"
regex = '''
(?P<major>\d+)
\.
Expand Down

0 comments on commit c7c86fe

Please sign in to comment.