Skip to content

Releases: single-spa/self-hosted-shared-dependencies

v2.0.1

18 Feb 23:25
Compare
Choose a tag to compare

What's Changed

  • Fixes for private packages and registries by @miguel-silva in #20
  • Fixes for packages whose versions are objects rather than strings.

New Contributors

Full Changelog: v2.0.0...v2.0.1

v2.0.0

13 Aug 17:24
Compare
Choose a tag to compare

Breaking Changes

  • Remove npmRegistry option. Document registryFetchOptions. (#16)

Previously there were two ways to pass in the npm registry to use: npmRegistry and registryFetchOptions.registry. The npmRegistry option didn't work and there's no reason to have two ways to do this, so we removed npmRegistry and documented registryFetchOptions.registry instead.

To migrate:

{
-  npmRegistry: "https://private-registry.com/"
+  registryFetchOptions: {
+    registry: "https://private-registry.com/"
+  }
}

Fixes

Maintenance

  • Add CI/CD (#17)

v1.3.0

16 Jul 19:54
Compare
Choose a tag to compare

Features

  • Support for registryFetchOptions config. Allows passing username, password, and/or token to npm registry. (#12 #11)

v1.2.0

13 May 22:12
Compare
Choose a tag to compare

Features

v1.1.0

07 May 21:35
Compare
Choose a tag to compare

Features

  • Support for npmRegistry config option. This lets you set which npm registry to download packages from (#8 via @prof-schnitzel)

v1.0.4

05 May 00:10
Compare
Choose a tag to compare

Fixes

v1.0.3

05 May 00:07
Compare
Choose a tag to compare

Fixes

Maintenance

v1.0.2

23 Apr 21:32
Compare
Choose a tag to compare

Fixes

v1.0.1

23 Apr 21:31
Compare
Choose a tag to compare

Fixes

v1.0.0

23 Apr 21:31
Compare
Choose a tag to compare

Initial release

  • See readme for documentation