@bitblit/ratchet-epsilon-deployment 6.1.185-alpha → 6.1.192-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +11 -5
  2. package/CHANGELOG.md +0 -177
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-epsilon-deployment",
3
- "version": "6.1.185-alpha",
3
+ "version": "6.1.192-alpha",
4
4
  "description": "Epsilon CDK extensions to simplify deployment",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -51,15 +51,21 @@
51
51
  },
52
52
  "license": "Apache-2.0",
53
53
  "dependencies": {
54
- "@bitblit/ratchet-aws": "6.1.185-alpha",
55
- "@bitblit/ratchet-common": "6.1.185-alpha",
56
- "@bitblit/ratchet-epsilon-common": "6.1.185-alpha",
54
+ "@bitblit/ratchet-aws": "6.1.192-alpha",
55
+ "@bitblit/ratchet-common": "6.1.192-alpha",
56
+ "@bitblit/ratchet-epsilon-common": "6.1.192-alpha",
57
57
  "aws-cdk-lib": "2.240.0",
58
58
  "constructs": "10.5.1"
59
59
  },
60
60
  "peerDependencies": {
61
- "@bitblit/ratchet-common": "6.1.185-alpha",
61
+ "@bitblit/ratchet-common": "6.1.192-alpha",
62
62
  "aws-cdk-lib": "^2.240.0",
63
63
  "constructs": "^10.5.1"
64
+ },
65
+ "scripts": {
66
+ "build": "tsc",
67
+ "test": "vitest run",
68
+ "test-coverage": "vitest run --coverage",
69
+ "custom-publish": "pnpm publish --access public --provenance --tag $GITHUB_REF_NAME --no-git-checks"
64
70
  }
65
71
  }
package/CHANGELOG.md DELETED
@@ -1,177 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Notes]
9
-
10
- The comments above about changelogs and semantic versioning start about 2022-09-05. I'm trying to be better about
11
- documenting things now, but earlier versions of Ratchet don't necessarily fully follow semantic versioning.
12
-
13
- Alpha releases are exactly what they sound like - places where I am trying out new things that aren't ready for prime
14
- time, but I need published to see how they interact with the rest of my software ecosystem. If you use an alpha
15
- package without knowing why it is alpha you'll get exactly what you deserve.
16
-
17
- ## [Unreleased]
18
-
19
- - Currently, expanding Epsilon to take advantage of CDK for my most common deployments
20
-
21
- ## [4.0.x] - In Process
22
-
23
- - Added ability to serve HTTPS from the sample local server
24
- - Switched to AWS SDK version 3
25
-
26
- ## [3.3.x] - 2023-01-02
27
-
28
- ### Added
29
-
30
- - DaemonHandler and associated classes to make it easy to expose Ratchet Daemons through your REST API
31
-
32
- ### Changed
33
-
34
- - Changed the index files to move all deployment to its own barrel, so that if you don't use CDK you don't have to have it in your build
35
-
36
- ## [3.2.x] - 2022-12-12
37
-
38
- ### Changed
39
-
40
- - Updated to newer library versions
41
-
42
- ## [3.1.x] - 2022-11-21
43
-
44
- ### Changed
45
-
46
- - Updated to newer library versions
47
- - (Backwards incompatible) Changed Local web token manipulator to be async to allow keys to be pulled from async source
48
- - Refactored local web token manipulator to delegate all actual work to JwtRatchet
49
- - New JwtRatchet correctly uses the exp field as seconds instead of MS (may log out old tokens, or push exp so far in the
50
- future that changing keys is advisable)
51
- - Updated Commander to much newer version, breaking old wiring
52
-
53
- ## [2.1.x] - 2022-10-27
54
-
55
- ### Changed
56
-
57
- - Updated to newer library versions
58
- - Official release of CDK support for "Standard" Epsilon design
59
-
60
- ## [1.0.x] - 2022-08-24
61
-
62
- ### Added
63
-
64
- - Support for trace id and level in structured logs
65
-
66
- ### Changed
67
-
68
- - Switched to default to structured logging
69
-
70
- ## [0.13.x] - 2022-01-26
71
-
72
- ### Changed
73
-
74
- - Updated AWS, switched to Github actions
75
- - Above 0.13.10 added most basic support for ApiGatewayV2 (and Lambda Function Url) handling backwards compatibility
76
-
77
- ## [0.12.x] - 2022-01-16
78
-
79
- ### Changed
80
-
81
- - Updated Apollo (GraphQL) to v3 which may be backwards incompatible
82
-
83
- ## [0.11.x] - 2021-11-01
84
-
85
- ### Changed
86
-
87
- - Adding concept of inter-api events (Only useful when combining multiple related apis and decoupling)
88
-
89
- ## [0.10.x] - 2021-09-10
90
-
91
- ### Changed
92
-
93
- - Deprecated Salt Mine library and moved all handling into Epsilon under "Background" handling
94
- - Switched HTTP handling to a filter based model
95
-
96
- ## [0.9.x] - 2021-02-28
97
-
98
- ### Changed
99
-
100
- - TBD
101
-
102
- ## [0.8.x] - 2021-02-26
103
-
104
- ### Changed
105
-
106
- - Updated core libs
107
- - Switched to Luxon from Moment to match Ratchet
108
-
109
- ## [0.7.x] - 2021-01-08
110
-
111
- ### Changed
112
-
113
- - Updated core libs
114
- - Added ContextUtil to get static access to the AWS context object
115
- - Renamed apiGateway to http in config
116
- - Add ability to log JWT parse errors at defined levels
117
- - Added new endpoints to the sample server
118
- - Added outbound model validation
119
- - Added blocking on "null" literal string on query and path params
120
- - Added request id as outbound header
121
- - Added better (no longer crashes) handling when a null object returns from a handler
122
-
123
- ## [0.6.x] - 2020-11-04
124
-
125
- ### Changed
126
-
127
- - Updated core libs
128
- - Added richer error object and builder pattern for errors
129
-
130
- ## [0.5.x] - 2020-09-19
131
-
132
- ### Changed
133
-
134
- - Updated core libs
135
- - Moved to eslint and cleaned up
136
-
137
- ## [0.4.x] - 2020-07-08
138
-
139
- ### Changed
140
-
141
- - Switched logging for GraphQL introspection calls on local-server down to silly level
142
- - Updated to new version of libraries
143
- - Switched to js-yaml instead of node-yaml
144
- - Moved api-gateway package to http package to reflect that this also handles ALB endpoints
145
-
146
- ## [0.3.x] - 2020-04-30
147
-
148
- ### Changed
149
-
150
- - Remapped CRON handler to be able to filter on more than just the incoming Event name. Given the new mapping,
151
- I'd recommend just setting up an "every minute" Cloudwatch event and using filters. Filters now allow
152
- running multiple Batch processors, eg Dev/QA/Prod
153
- - Adding logging of request ID to output errors
154
- - Added default error (to allow masking of 500 errors in prod and prevent information leakage)
155
- - Allow optional access to the request context for handlers (esp for the request id, remaining time)
156
-
157
- ## [0.2.x] - 2020-02-13
158
-
159
- ### Changed
160
-
161
- - TBD when I do some repo diving
162
-
163
- ## [0.1.x] - 2019-08-02
164
-
165
- ### Changed
166
-
167
- - TBD when I do some repo diving
168
-
169
- ## [0.0.x] - 2018-07-13
170
-
171
- ### Changed
172
-
173
- - TBD when I do some repo diving
174
-
175
- ### Added
176
-
177
- - Initial releases