Skip to content

Commit

Permalink
Publish v1.1.29 and updated CHANGELOG
Browse files Browse the repository at this point in the history
TSIA


Summary:

Test Plan:
  • Loading branch information
Rossdan Craig [email protected] committed Mar 5, 2024
1 parent 0a08bd9 commit 1b4081b
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 10 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## (2024-03-05) Python Version 1.1.29, NPM Version 1.1.13

Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1401

### Features

- **vscode:** Enabled find widget (`CMD/CTRL + F`) in AIConfig editor webviews (https://github.com/lastmile-ai/aiconfig/pull/1369)
- **editor:** Added input model schema for Hugging Face Visual Question Answering tasks
(https://github.com/lastmile-ai/aiconfig/pull/1396)
- **editor:** Set the environment variables in an `.env` file that gets saved into the VS Code configuration settings and refreshed during the current session (https://github.com/lastmile-ai/aiconfig/pull/1390)

### Bug Fixes / Tasks

- **vscode:** Fixed issue where autosaving was causing outputs to disappear and prompt inputs to lose focus when typing (https://github.com/lastmile-ai/aiconfig/pull/1380)
- **vscode:** Updated new/untitled AIConfig file flow to follow regular new/untitled file flow in VS Code, prompting for file name on first save (https://github.com/lastmile-ai/aiconfig/pull/1351)
- **vscode:** Used untitled name instead of first line contents for untitled file tab name (https://github.com/lastmile-ai/aiconfig/pull/1354)
- **vscode:** Removed surfacing ‘Error updating aiconfig server’ message when closing untitled AIConfig files (https://github.com/lastmile-ai/aiconfig/pull/1352)
- **editor:** Fixed an issue where readonly rendering of prompt settings was causing the page rendering to fail (https://github.com/lastmile-ai/aiconfig/pull/1358)
- **editor:** Fixed default cell styles when no mode or themeOverride is specified (https://github.com/lastmile-ai/aiconfig/pull/1388)
- **vscode:** Reran extension server to re-read environment variables after they’re been updated (https://github.com/lastmile-ai/aiconfig/pull/1376)

## (2024-02-27) Python Version 1.1.28, NPM Version 1.1.12

Last PR included in this release: https://github.com/lastmile-ai/aiconfig/pull/1379
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"]

[project]
name = "python-aiconfig"
version = "1.1.28"
version = "1.1.29"
authors = [
{ name="LastMile AI" },
{ name="Sarmad Qadri", email="[email protected]" },
Expand Down
6 changes: 3 additions & 3 deletions python/src/aiconfig/editor/server/static/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"files": {
"main.js": "/static/js/main.2eb53053.js",
"main.js": "/static/js/main.5ddb8dcc.js",
"index.html": "/index.html",
"main.2eb53053.js.map": "/static/js/main.2eb53053.js.map"
"main.5ddb8dcc.js.map": "/static/js/main.5ddb8dcc.js.map"
},
"entrypoints": [
"static/js/main.2eb53053.js"
"static/js/main.5ddb8dcc.js"
]
}
2 changes: 1 addition & 1 deletion python/src/aiconfig/editor/server/static/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>AIConfig Editor</title><script defer="defer" src="/static/js/main.2eb53053.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>AIConfig Editor</title><script defer="defer" src="/static/js/main.5ddb8dcc.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

This file was deleted.

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aiconfig",
"version": "1.1.12",
"version": "1.1.13",
"description": "Library to help manage AI prompts, models and parameters using the .aiconfig file format.",
"repository": {
"type": "git",
Expand Down

0 comments on commit 1b4081b

Please sign in to comment.