Skip to content

Commit

Permalink
Version Packages (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssanjay1 authored May 9, 2024
1 parent e0eb7f8 commit efcffb7
Show file tree
Hide file tree
Showing 33 changed files with 103 additions and 59 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-maps-matter.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-lies-dress.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rich-eels-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-moose-call.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-clocks-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-fishes-pull.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/warm-fishes-divide.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/wicked-phones-pay.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { OntologyMetadata as OM } from '@osdk/api';

export type $ExpectedClientVersion = '0.17.0';
export type $ExpectedClientVersion = '0.18.0';
export const $osdkMetadata = { extraUserAgent: 'typescript-sdk/dev osdk-cli/dev' };

export interface OntologyMetadata extends OM<$ExpectedClientVersion> {}

export const OntologyMetadata: OntologyMetadata = {
expectsClientVersion: '0.17.0',
expectsClientVersion: '0.18.0',
ontologyRid: 'ri.ontology.main.ontology.a35bb7f9-2c57-4199-a1cd-af461d88bd6e',
ontologyApiName: 'default',
userAgent: 'typescript-sdk/dev osdk-cli/dev',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { OntologyMetadata as OM } from '@osdk/api';

export type $ExpectedClientVersion = '0.17.0';
export type $ExpectedClientVersion = '0.18.0';
export const $osdkMetadata = { extraUserAgent: 'typescript-sdk/dev osdk-cli/dev' };

export interface OntologyMetadata extends OM<$ExpectedClientVersion> {}

export const OntologyMetadata: OntologyMetadata = {
expectsClientVersion: '0.17.0',
expectsClientVersion: '0.18.0',
ontologyRid: 'ri.ontology.main.ontology.a35bb7f9-2c57-4199-a1cd-af461d88bd6e',
ontologyApiName: 'ontology-d097f725-ab77-46cf-83c0-e3cb9186bff1',
userAgent: 'typescript-sdk/dev osdk-cli/dev',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { OntologyMetadata as OM } from '@osdk/api';

export type $ExpectedClientVersion = '0.17.0';
export type $ExpectedClientVersion = '0.18.0';
export const $osdkMetadata = { extraUserAgent: 'typescript-sdk/dev osdk-cli/dev' };

export interface OntologyMetadata extends OM<$ExpectedClientVersion> {}

export const OntologyMetadata: OntologyMetadata = {
expectsClientVersion: '0.17.0',
expectsClientVersion: '0.18.0',
ontologyRid: 'ri.ontology.main.ontology.a35bb7f9-2c57-4199-a1cd-af461d88bd6e',
ontologyApiName: 'ontology-d097f725-ab77-46cf-83c0-e3cb9186bff1',
userAgent: 'typescript-sdk/dev osdk-cli/dev',
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @osdk/cli

## 0.20.0

### Minor Changes

- 3955502: Updates archiver dependency

## 0.19.0

### Minor 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": "@osdk/cli",
"version": "0.19.0",
"version": "0.20.0",
"description": "",
"access": "public",
"license": "Apache-2.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @osdk/client

## 0.18.0

### Minor Changes

- d183d92: Deprecated get and added fetchOne as a replacement. They function exactly the same.
- c68983b: Add fetchOneWithErrors that will add a result wrapper when fetching one object. This wrapper will either contain the data value, or an error if an error was thrown.
- f810576: Separate unstable client features from regular import

## 0.17.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/client",
"version": "0.17.0",
"version": "0.18.0",
"description": "",
"access": "public",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface Client {
}

// BEGIN: THIS IS GENERATED CODE. DO NOT EDIT.
const MaxOsdkVersion = "0.17.0";
const MaxOsdkVersion = "0.18.0";
// END: THIS IS GENERATED CODE. DO NOT EDIT.
export type MaxOsdkVersion = typeof MaxOsdkVersion;
const ErrorMessage = Symbol("ErrorMessage");
6 changes: 6 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @osdk/create-app

## 0.15.0

### Minor Changes

- 7ed0984: Always include trailing slash for registry urls in .npmrc

## 0.14.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/create-app",
"version": "0.14.0",
"version": "0.15.0",
"description": "",
"access": "public",
"license": "Apache-2.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/example-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @osdk/example-generator

## 0.4.0

### Patch Changes

- Updated dependencies [7ed0984]
- @osdk/create-app@0.15.0

## 0.3.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/example-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@osdk/example-generator",
"private": true,
"version": "0.3.0",
"version": "0.4.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
7 changes: 7 additions & 0 deletions packages/foundry.core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @osdk/foundry.core

## 0.1.0

### Minor Changes

- e0eb7f8: Prepare foundry platform sdk for shipping
2 changes: 1 addition & 1 deletion packages/foundry.core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/foundry.core",
"version": "0.0.0",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/foundry.security/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @osdk/foundry.security

## 0.1.0

### Minor Changes

- e0eb7f8: Prepare foundry platform sdk for shipping

### Patch Changes

- Updated dependencies [e0eb7f8]
- @osdk/foundry[email protected]
2 changes: 1 addition & 1 deletion packages/foundry.security/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/foundry.security",
"version": "0.0.0",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
12 changes: 12 additions & 0 deletions packages/foundry.thirdpartyapplications/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# @osdk/foundry.thirdpartyapplications

## 0.1.0

### Minor Changes

- e0eb7f8: Prepare foundry platform sdk for shipping

### Patch Changes

- Updated dependencies [e0eb7f8]
- @osdk/foundry[email protected]
2 changes: 1 addition & 1 deletion packages/foundry.thirdpartyapplications/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/foundry.thirdpartyapplications",
"version": "0.0.0",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
14 changes: 14 additions & 0 deletions packages/foundry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @osdk/foundry

## 0.1.0

### Minor Changes

- e0eb7f8: Prepare foundry platform sdk for shipping

### Patch Changes

- Updated dependencies [e0eb7f8]
- @osdk/foundry[email protected]
- @osdk/foundry[email protected]
- @osdk/foundry[email protected]
2 changes: 1 addition & 1 deletion packages/foundry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/foundry",
"version": "0.0.0",
"version": "0.1.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/generator/src/v2.0/generateMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { formatTs } from "../util/test/formatTs";
import type { WireOntologyDefinition } from "../WireOntologyDefinition";

// BEGIN: THIS IS GENERATED CODE. DO NOT EDIT.
const ExpectedOsdkVersion = "0.17.0";
const ExpectedOsdkVersion = "0.18.0";
// END: THIS IS GENERATED CODE. DO NOT EDIT.

export async function generateOntologyMetadataFile(
Expand Down
7 changes: 7 additions & 0 deletions packages/oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @osdk/oauth

## 0.2.0

### Minor Changes

- b1518b3: Fixes issue with **DEV** not being defined
2 changes: 1 addition & 1 deletion packages/oauth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@osdk/oauth",
"version": "0.1.0",
"version": "0.2.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/platform-sdk-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @osdk/platform-sdk-generator

## 0.3.0

### Minor Changes

- e0eb7f8: Prepare foundry platform sdk for shipping

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-sdk-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@osdk/platform-sdk-generator",
"private": true,
"version": "0.2.0",
"version": "0.3.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down

0 comments on commit efcffb7

Please sign in to comment.