Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deprecation warnings on run #16

Merged
merged 1 commit into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
PROVIDER_VERSION=1.7.0

# Pulumi bridged provider version (this package)
VERSION=1.7.0
VERSION=1.7.1

default: build

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@tetratelabs/pulumi-checkmate",
"version": "1.7.0",
"version": "1.7.1",
"description": ". Based on terraform-provider-checkmate: version v1.7.0",
"main": "ts_bin/index.js",
"types": "ts_bin/index.d.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.7.0 --server github://api.github.com/tetratelabs"
"install": "node sdk/scripts/install-pulumi-plugin.js resource checkmate 1.7.1 --server github://api.github.com/tetratelabs"
},
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
Expand Down
4 changes: 2 additions & 2 deletions package.json.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@tetratelabs/pulumi-checkmate",
"version": "${VERSION}",
"description": ". Based on terraform-provider-checkmate: version v${PROVIDER_VERSION}",
"main": "ts_bin/index.js",
"types": "ts_bin/index.d.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func Provider() tfbridge.ProviderInfo {
Name: "checkmate",
GitHubOrg: "tetratelabs",
TFProviderVersion: "1.7.0",
Version: "1.7.0",
Version: "1.7.1",
Resources: map[string]*tfbridge.ResourceInfo{
"checkmate_http_health": {Tok: checkResourceTok(checkMod, "HttpHealth")},
"checkmate_local_command": {Tok: checkResourceTok(checkMod, "LocalCommand")},
Expand Down
2 changes: 1 addition & 1 deletion sdk/scripts/install-pulumi-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var childProcess = require("child_process");

var args = process.argv.slice(2);

if (args.indexOf("v1.7.0") !== -1) {
if (args.indexOf("v1.7.1") !== -1) {
process.exit(0);
}

Expand Down
Loading