Skip to content

Commit

Permalink
Version Packages (#258)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Jul 11, 2024
1 parent f0b80de commit 168671d
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 26 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-fans-drum.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-poems-explode.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/strange-candles-develop.md

This file was deleted.

9 changes: 9 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @vocab/cli

## 2.0.1

### Patch Changes

- [#254](https://github.com/seek-oss/vocab/pull/254) [`17cc753`](https://github.com/seek-oss/vocab/commit/17cc7536d148030607cd047314388571a08c9810) Thanks [@jahredhope](https://github.com/jahredhope)! - Remove unused dependency on `form-data` npm package

- Updated dependencies [[`f0b80de`](https://github.com/seek-oss/vocab/commit/f0b80de146d1a4c565bda0302ef53b0e07657559), [`17cc753`](https://github.com/seek-oss/vocab/commit/17cc7536d148030607cd047314388571a08c9810)]:
- @vocab/phrase@2.0.1

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vocab/cli",
"version": "2.0.0",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/vocab.git",
Expand Down
28 changes: 23 additions & 5 deletions packages/phrase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @vocab/phrase

## 2.0.1

### Patch Changes

- [#255](https://github.com/seek-oss/vocab/pull/255) [`f0b80de`](https://github.com/seek-oss/vocab/commit/f0b80de146d1a4c565bda0302ef53b0e07657559) Thanks [@jahredhope](https://github.com/jahredhope)! - Update user-agent when calling Phrase to reference Vocab repository

- [#254](https://github.com/seek-oss/vocab/pull/254) [`17cc753`](https://github.com/seek-oss/vocab/commit/17cc7536d148030607cd047314388571a08c9810) Thanks [@jahredhope](https://github.com/jahredhope)! - Fix forbidden errors when pushing translations

Migrate from `form-data` npm package to the native [Node FormData class](https://nodejs.org/api/globals.html#class-formdata) to ensure compatibility with the earlier move to native Fetch.

Mixing the two was causing some consumers to receive 503 Forbidden errors when pushing translations to Phrase.

## 2.0.0

### Major Changes
Expand Down Expand Up @@ -69,12 +81,15 @@
const vocabConfig = {
devLanguage: 'en',
language: ['en', 'fr'],
language: ['en', 'fr']
};
await pull(
{ branch: 'myBranch', errorOnNoGlobalKeyTranslation: true },
vocabConfig,
{
branch: 'myBranch',
errorOnNoGlobalKeyTranslation: true
},
vocabConfig
);
```

Expand Down Expand Up @@ -215,10 +230,13 @@
const vocabConfig = {
devLanguage: 'en',
language: ['en', 'fr'],
language: ['en', 'fr']
};
await push({ branch: 'myBranch', deleteUnusedKeys: true }, vocabConfig);
await push(
{ branch: 'myBranch', deleteUnusedKeys: true },
vocabConfig
);
```
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/phrase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vocab/phrase",
"version": "2.0.0",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/vocab.git",
Expand Down

0 comments on commit 168671d

Please sign in to comment.