Skip to content

Commit dc63e49

Browse files
authored
docs: Add 1.3.1 to CHANGELOG (#912)
1 parent 2bc190f commit dc63e49

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ Breaking changes marked with a :boom:
8787
- Fix bundler with default workflow interceptors ([#891](https://github.com/temporalio/sdk-typescript/pull/891))
8888
- Limit eager activity requests to 3 ([#891](https://github.com/temporalio/sdk-typescript/pull/891))
8989

90+
## [1.3.1] - 2022-10-10
91+
92+
### Bug Fixes
93+
94+
- Depend on `~1.3.1` of `@temporalio/*` packages to prevent `>= 1.4.0` versions from being installed.
95+
9096
## [1.3.0] - 2022-09-20
9197

9298
### Bug Fixes

CONTRIBUTING.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ for f in ~/Downloads/packages-*.zip; do mkdir "$HOME/Downloads/$(basename -s .zi
192192
# we should now have all 5 build targets
193193
ls packages/core-bridge/releases/
194194

195-
npx lerna version patch --exact --force-publish='*' # or major|minor|etc, or leave out to be prompted. either way, you get a confirmation dialog.
195+
npx lerna version patch --force-publish='*' # or major|minor|etc, or leave out to be prompted. either way, you get a confirmation dialog.
196+
197+
# to only publish tilde deps, see section `# Tilde deps` instead of doing next step
196198
npx lerna publish from-git # add `--dist-tag next` for pre-release versions
197199

198200
npm deprecate temporalio@^1.0.0 "Instead of installing temporalio, we recommend directly installing our packages: npm remove temporalio; npm install @temporalio/client @temporalio/worker @temporalio/workflow @temporalio/activity"
@@ -222,6 +224,20 @@ npm deprecate temporalio@^1.0.0 "Instead of installing temporalio, we recommend
222224
npm test
223225
```
224226

227+
### Tilde deps
228+
229+
Since `lerna version --exact` doesn't work with local path deps like `file:../common`, do this between `lerna version` and `lerna publish`:
230+
231+
- Find & replace `file:../.*"` with eg `~1.5.0` in `packages/`.
232+
233+
```sh
234+
git tag v1.5.0 -f
235+
git push origin v1.5.0 -f
236+
npx lerna publish from-package
237+
```
238+
239+
(`from-git` may miss some packages)
240+
225241
### Updating published packages
226242

227243
`npm` commands we may need to use:

0 commit comments

Comments
 (0)