Releases: single-spa/import-map-deployer
Releases · single-spa/import-map-deployer
v2.2.4
Fixes
- Add better error message when manifestFormat is invalid (#77 via @brandones)
- Allow for username/password to be set as environment variables (#73 via @kgehmlich)
Maintenance
- Bump lodash from 4.17.15 to 4.17.19 (#66)
- refactor(updateDeleteServiceDocumentation): Update delete service docs (#67 via @elefantelimpio)
- Bump dot-prop from 5.1.0 to 5.2.0 (#69)
- Bump dot-prop from 5.1.0 to 5.2.0 (#69)
- docs: adds example for travis ci, aws, and no import map deployer (#71 via @thawkin3)
- fix: corrects the github urls in package.json (#72 via @thawkin3)
- fix: correction of the conf.js example (#75)
- Adding jq examples (#76)
v2.2.3
This release is exactly the same as 2.2.2. We created it to test docker hub's auto build feature to ensure that new versions are published to docker hub with the correct tag. More info at #61 (comment)
v2.2.2
v2.2.1
v2.2.0
Features
- Support for packages via trailing slashes (#60 via @BartJanvanAssen)
Documentation Part 1 (Search for packagesViaTrailingSlashes
)
Documentation Part 2 (Search for packageDirLevel
)
// conf.js
module.exports = {
packagesViaTrailingSlashes: true,
// add all the other required options to this, as well
}
The following request:
http PATCH :5000/services\?env=stage service=my-service url=http://example.com/path/to/my-service.js
Results in the following import map
{
"imports": {
"my-service": "http://example.com/path/to/my-service.js",
"my-service/": "http://example.com/path/to/"
}
}
- Support for import map scopes (#53 via @BartJanvanAssen)
Documentation (Search for scopes
)
http PATCH :5000/import-map.json\?env=prod < importmap.json
{
"imports": {
"querystringify": "/node_modules/querystringify/index.js"
},
"scopes": {
"/node_modules/socksjs-client/": {
"querystringify": "/node_modules/socksjs-client/querystringify/index.js"
}
}
}
- Feature/support multiple environment keys for Azure Storage (#55 via @BartJanvanAssen)
Fixes
- Disable auth for health check endpoints (#56 via @BartJanvanAssen)
Maintenance
- Adding tests. Resolves #46. (#57 via @joeldenning)
- Create FUNDING.yml
v2.1.0
Features
- Setting the correct Cache-Control header for Azure Storage import maps (#52 @BartJanvanAssen)
- S3 PutObject options are now configurable, including changing the ACL (#49)
- Adding skipValidUrlCheck option. Resolves #41 (#43 @joeldenning)
- add ability to set custom container port exposed + add image build instructions (@kristianmandrup)
- Support for setting environment variables via dotenv (#52 @BartJanvanAssen)
Fixes
- Health check endpoint no longer is authenticated (#31, #33 @TheMcMurder)
- Content-Type header changed to be spec-compliant
application/importmap+json
(#52 @BartJanvanAssen)
Examples
- Adding dockerfile example 2625ac9 @joeldenning
Docs
- Update documentation for url safe list 1117e20 @joeldenning
- Update configuration files 0e8e254 3bbd193 9f1a6dd d180dcb
- Update documentation for url safe list #44 via @arya-pi
Maintenance
v1.0.0
1.0.0 release
- Publishing to npm