Skip to content

Commit

Permalink
Upgraded to v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Oct 20, 2021
1 parent 34356b3 commit 035fe16
Show file tree
Hide file tree
Showing 20 changed files with 27 additions and 32 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
4.0.11
4.1.0
2 changes: 1 addition & 1 deletion chocolatey/altair-graphql.nuspec
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>4.0.11</version>
<version>4.1.0</version>
<packageSourceUrl>https://github.com/altair-graphql/altair</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Daniel Richter&lt;danielrichter@posteo.de&gt;, Samuel Imolorhe</owners>
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/tools/chocolateyInstall.ps1
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop'; # stop on all errors

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$fileLocation = Join-Path $toolsDir '..\bins\altair_4.0.11_x64_win.exe'
$fileLocation = Join-Path $toolsDir '..\bins\altair_4.1.0_x64_win.exe'
$fileHash = Get-FileHash $fileLocation

$packageArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion chrome-ext-files/manifest.json
Expand Up @@ -3,7 +3,7 @@
"name": "Altair GraphQL Client",
"short_name": "Altair",
"description": "The only graphQL client you'll ever need.",
"version": "4.0.11",
"version": "4.1.0",
"icons": {
"16": "assets/img/altair_logo_128.png",
"48": "assets/img/altair_logo_128.png",
Expand Down
2 changes: 1 addition & 1 deletion cwex.yml
Expand Up @@ -10,7 +10,7 @@ manifestOptions:
name: Altair GraphQL Client
short_name: Altair
description: A beautiful feature-rich GraphQL client for all platforms
version: 4.0.11
version: 4.1.0
icons:
16: assets/img/altair_logo_128.png
48: assets/img/altair_logo_128.png
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "4.0.11",
"version": "4.1.0",
"registry": "https://registry.npmjs.org/",
"npmClient": "yarn",
"stream": true
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "altair",
"version": "4.0.11",
"version": "4.1.0",
"license": "MIT",
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design/)",
"description": "The best graphQL client you will ever need",
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-app/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-app",
"version": "4.0.11",
"version": "4.1.0",
"description": "Contains the altair app",
"main": "dist/main.js",
"license": "MIT",
Expand Down Expand Up @@ -51,7 +51,7 @@
"@webcomponents/custom-elements": "^1.4.1",
"abab": "^2.0.5",
"actioncable": "^5.2.4-4",
"altair-graphql-core": "^4.0.11",
"altair-graphql-core": "^4.1.0",
"angular-feather": "^6.0.10",
"apollo-cache-inmemory": "^1.6.6",
"apollo-link": "^1.2.14",
Expand Down
Expand Up @@ -11,7 +11,6 @@ export const getInitialState = (): SettingsState => {
language: <SettingsLanguage>altairConfig.default_language,
addQueryDepthLimit: altairConfig.add_query_depth_limit,
tabSize: altairConfig.tab_size,
"editor.shortcuts": {},
...initialSettings,
};
};
Expand Down
Expand Up @@ -39,7 +39,6 @@ describe('settings', () => {
language: 'en-US',
addQueryDepthLimit: 1,
tabSize: 1,
'editor.shortcuts': {},
});
});

Expand All @@ -63,7 +62,6 @@ describe('settings', () => {
language: 'en-US',
addQueryDepthLimit: 1,
tabSize: 1,
'editor.shortcuts': {},
});
});

Expand All @@ -76,7 +74,6 @@ describe('settings', () => {
language: 'en-US',
addQueryDepthLimit: 1,
tabSize: 1,
'editor.shortcuts': {},
});
});

Expand All @@ -95,7 +92,6 @@ describe('settings', () => {
language: 'en-US',
addQueryDepthLimit: 1,
tabSize: 1,
'editor.shortcuts': {},
});
});

Expand Down
Expand Up @@ -41,7 +41,7 @@
},
"editor.shortcuts": {
"$ref": "#/definitions/Record<string,string>",
"description": "Contains shortcut to action napping"
"description": "Contains shortcut to action mapping"
},
"enableExperimental": {
"description": "Enable experimental features.\nNote: Might be unstable",
Expand Down
Expand Up @@ -445,7 +445,7 @@ validate.schema = {
},
"editor.shortcuts": {
"$ref": "#/definitions/Record<string,string>",
"description": "Contains shortcut to action napping"
"description": "Contains shortcut to action mapping"
},
"enableExperimental": {
"description": "Enable experimental features.\nNote: Might be unstable",
Expand Down
2 changes: 1 addition & 1 deletion packages/altair-core/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-graphql-core",
"version": "4.0.11",
"version": "4.1.0",
"description": "Several of the core logic for altair graphql client",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-electron/package.json
@@ -1,7 +1,7 @@
{
"name": "altair",
"productName": "Altair GraphQL Client",
"version": "4.0.11",
"version": "4.1.0",
"description": "Electron wrapper for Altair",
"main": "index.js",
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design/)",
Expand All @@ -15,7 +15,7 @@
"dev": "electron ."
},
"dependencies": {
"altair-static": "^4.0.11",
"altair-static": "^4.1.0",
"electron-debug": "^3.0.1",
"electron-is-dev": "^1.2.0",
"electron-log": "^3.0.6",
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-express-middleware/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-express-middleware",
"version": "4.0.11",
"version": "4.1.0",
"description": "Express middleware for altair graphql client",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
},
"homepage": "https://github.com/altair-graphql/altair#readme",
"dependencies": {
"altair-static": "^4.0.11",
"altair-static": "^4.1.0",
"express": "^4.16.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-fastify-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-fastify-plugin",
"version": "4.0.11",
"version": "4.1.0",
"description": "Fastify Plugin of Altair GraphQL Client",
"keywords": [
"graphql",
Expand Down Expand Up @@ -31,7 +31,7 @@
"test": "echo \"Error: no test specified\" && exit 0"
},
"dependencies": {
"altair-static": "^4.0.11",
"altair-static": "^4.1.0",
"fastify-plugin": "^2.3.4",
"fastify-static": "^3.2.1"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-koa-middleware/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-koa-middleware",
"version": "4.0.11",
"version": "4.1.0",
"description": "Koa middleware for altair graphql client",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
Expand Down Expand Up @@ -31,7 +31,7 @@
"homepage": "https://github.com/altair-graphql/altair#readme",
"dependencies": {
"@koa/router": "^10.1.1",
"altair-static": "^4.0.11",
"altair-static": "^4.1.0",
"koa-send": "^5.0.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/altair-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-graphql-plugin",
"version": "4.0.11",
"version": "4.1.0",
"description": "Plugin helper for altair graphql client",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand All @@ -27,7 +27,7 @@
},
"homepage": "https://github.com/altair-graphql/altair#readme",
"dependencies": {
"altair-graphql-core": "^4.0.11"
"altair-graphql-core": "^4.1.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
Expand Down
6 changes: 3 additions & 3 deletions packages/altair-static/package.json
@@ -1,6 +1,6 @@
{
"name": "altair-static",
"version": "4.0.11",
"version": "4.1.0",
"description": "Static package for altair graphql client",
"main": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down Expand Up @@ -29,11 +29,11 @@
},
"homepage": "https://github.com/altair-graphql/altair#readme",
"dependencies": {
"altair-graphql-core": "^4.0.11"
"altair-graphql-core": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"altair-app": "^4.0.11",
"altair-app": "^4.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "4.0.7"
Expand Down
4 changes: 2 additions & 2 deletions packages/gatsby-plugin-altair-graphql/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-altair-graphql",
"version": "4.0.11",
"version": "4.1.0",
"description": "A gatsby plugin for using Altair GraphQL client",
"main": "gatsby-node.js",
"scripts": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"typescript": "4.0.7"
},
"dependencies": {
"altair-express-middleware": "^4.0.11"
"altair-express-middleware": "^4.1.0"
},
"funding": {
"type": "opencollective",
Expand Down

0 comments on commit 035fe16

Please sign in to comment.