Zoltan Kochan
f815b6ca39
chore(release): 7.9.2
2022-08-17 12:03:52 +03:00
Zoltan Kochan
850cf0a8ee
chore(release): 7.9.1
2022-08-10 12:41:58 +03:00
Dominic Elm
23984abd1a
feat: add hook for custom fetchers ( #5185 )
...
* feat: add hook for custom fetchers
* fixup: simplify fetcher overwrites
* fixup: refactor some types and implement fetcher hooks
* fixup: add changeset
2022-08-09 14:20:40 +03:00
Zoltan Kochan
c9ce2725c4
chore(release): 7.9.0
2022-08-06 18:19:52 +03:00
Zoltan Kochan
f5f0e4348e
chore(release): 7.9.0-0
2022-08-03 17:48:37 +03:00
Zoltan Kochan
761be978b2
chore(release): 7.8.0
2022-07-31 11:25:05 +03:00
Zoltan Kochan
1d1fc087ba
chore(release): 7.7.0-0
2022-07-27 12:39:42 +03:00
Zoltan Kochan
132b83d1d5
chore(release): 7.6.0-0
2022-07-20 17:54:40 +03:00
Zoltan Kochan
716a29acc9
chore(deps): update
2022-07-06 03:01:33 +03:00
Zoltan Kochan
b2d271d29c
chore: use workspace with star to reference workspace dependencies
2022-07-01 03:45:20 +03:00
Zoltan Kochan
0cd8a962b4
chore(release): 7.4.1
2022-06-30 11:57:34 +03:00
Zoltan Kochan
ef7d414ed9
chore(release): 7.4.0
2022-06-28 15:58:36 +03:00
Zoltan Kochan
6576a92b12
chore(release): 7.4.0-1
2022-06-24 21:46:26 +03:00
Zoltan Kochan
c0a777e62d
chore(release): 7.4.0-0
2022-06-23 01:17:54 +03:00
Zoltan Kochan
148c028468
chore(release): 7.3.0
2022-06-18 23:31:44 +03:00
Zoltan Kochan
c38c2c5922
fix: support Node.js v14.6 ( #4878 )
2022-06-11 04:49:48 +03:00
Zoltan Kochan
1c884e8f57
chore(release): 7.2.0
2022-06-10 14:50:14 +03:00
Zoltan Kochan
0d18484f54
chore(release): 7.1.8
2022-06-05 00:27:29 +03:00
Zoltan Kochan
58d656b070
chore(release): 7.1.1
2022-05-17 17:06:51 +03:00
Zoltan Kochan
cb31207f17
chore(release): 7.0.0
2022-05-01 01:35:26 +03:00
Zoltan Kochan
4170eada79
chore(release): 7.0.0-rc.7
2022-04-19 16:02:16 +03:00
Kenrick
c6463b9fd0
feat(git-fetcher): shallow clone when fetching git resource ( #4548 )
...
Co-authored-by: Zoltan Kochan <z@kochan.io >
2022-04-14 12:08:59 +03:00
Zoltan Kochan
cc4a46d44d
chore(release): 7.0.0-beta.1
2022-03-19 20:43:30 +02:00
Zoltan Kochan
06e679f80f
feat: prevent deep imports using exports ( #4440 )
2022-03-15 23:42:48 +02:00
Zoltan Kochan
5420148392
feat: Node.js 12 is not supported
2022-03-15 02:18:08 +02:00
Zoltan Kochan
e2d490192a
chore(release): 6.32.2
2022-02-27 18:18:29 +02:00
Zoltan Kochan
29ce7f7ea8
chore(release): 6.32.0
2022-02-22 03:04:17 +02:00
Zoltan Kochan
25a0b58d5d
ci: use pnpm v7 ( #4307 )
2022-02-08 02:33:55 +02:00
Zoltan Kochan
f6c5354b24
chore(release): 7.0.0-alpha.0
2022-01-31 18:08:28 +02:00
Zoltan Kochan
e68cde97b7
fix: links to homepage and repository
...
close #4276
2022-01-22 15:57:26 +02:00
Valentin Semirulnik
b39cabde82
ci: setup cache for TS and Jest ( #4049 )
2022-01-19 00:13:13 +02:00
Zoltan Kochan
551b253b71
chore(release): 6.26.0
2022-01-12 16:22:04 +02:00
Zoltan Kochan
83a4ea0662
fix: prod deps should not be installed as dev deps ( #4210 )
2022-01-08 03:27:38 +02:00
Zoltan Kochan
34f4409316
docs(readme): update installation sections
2022-01-07 18:05:35 +02:00
Zoltan Kochan
2c7970c4d6
chore(release): 6.25.0-0
2022-01-03 21:01:01 +02:00
Dave Brotherstone
a6cf11cb77
feat(config): add support for token helper ( #4163 )
...
* feat(config): add support for token helper
Use the new interface in `pnpm/credentials-by-uri` for supporting token
helpers. A token helper is an executable, set in the user's `.npmrc`
which outputs an auth token. This can be used in situations where the
`authToken` is not a constant value, but is something that refreshes
regularly, where a script or other tool can use an existing refresh
token to obtain a new access token.
The configuration for the path to the helper must be an absolute path,
with no arguments. In order to be secure, it is _only_ permitted to set
this value in the user `.npmrc`, otherwise a project could place a value
in a project local `.npmrc` and run arbitrary executables.
A similar feature is available in many similar tools. The implementation
in `credentials-by-uri` is modelled after the `vault` (vaultproject.io)
implementation - https://github.com/hashicorp/vault/blob/main/command/token/helper_external.go
* test: fix
* docs: add changesets
Co-authored-by: Zoltan Kochan <z@kochan.io >
2021-12-30 23:16:06 +02:00
Zoltan Kochan
6e4becd997
chore(release): 6.24.4
2021-12-29 13:01:14 +02:00
Zoltan Kochan
3c704d9d4c
chore(release): 6.24.1
2021-12-15 20:17:48 +02:00
Zoltan Kochan
af15da323e
chore(release): 6.24.0
2021-12-14 14:17:42 +02:00
Zoltan Kochan
e30064087b
chore(release): 6.23.6
2021-12-04 03:00:37 +02:00
Zoltan Kochan
b83756bd7f
chore(release): 6.23.5
2021-12-02 16:21:44 +02:00
Zoltan Kochan
fe6bdf7677
chore(release): 6.23.3
2021-11-28 11:34:18 +02:00
Zoltan Kochan
23de26f187
chore(release): 6.23.0
2021-11-21 11:31:14 +02:00
Zoltan Kochan
2e3dd8af47
chore(release): 6.22.1
2021-11-15 00:23:43 +02:00
Zoltan Kochan
6aa89cc5b8
chore(release): 6.22.0
2021-11-14 21:32:37 +02:00
Zoltan Kochan
98b383bd0e
chore(release): 6.21.0
2021-11-10 03:11:59 +02:00
Zoltan Kochan
918d23de78
chore(release): 6.20.2
2021-11-04 00:47:04 +02:00
Zoltan Kochan
1650b6e962
fix: rename typings field to types
2021-11-03 15:24:31 +02:00
Zoltan Kochan
6dc3a26bce
chore(release): 6.20.0
2021-11-01 10:06:00 +02:00
Zoltan Kochan
4ab87844a9
feat: injecting workspace packages ( #3915 )
...
close #3510
2021-11-01 10:14:52 +08:00