snowflake-upgrade-migration

Solid

Upgrade Snowflake drivers, handle breaking changes, and migrate between editions. Use when upgrading snowflake-sdk or snowflake-connector-python versions, migrating between Snowflake editions, or handling deprecations. Trigger with phrases like "upgrade snowflake", "snowflake migration", "snowflake breaking changes", "update snowflake driver", "snowflake version".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Snowflake Upgrade & Migration ## Overview Guide for upgrading Snowflake driver versions, handling Snowflake behavior change releases, and migrating between editions. ## Prerequisites - Current driver version identified - Test suite available - Staging Snowflake account - Git for version control ## Instructions ### Step 1: Check Current Versions ```bash # Node.js driver npm list snowflake-sdk npm view snowflake-sdk version # Latest available # Python connector pip show snowflake-connector-python pip index versions snowflake-connector-python 2>/dev/null | head -5 # Snowflake platform version (run in SQL) # SELECT CURRENT_VERSION(); ``` ### Step 2: Review Snowflake Release Notes ```bash # Check Node.js driver changelog open https://github.com/snowflakedb/snowflake-connector-nodejs/blob/master/CHANGELOG.md # Check Python connector changelog open https://docs.snowflake.com/en/release-notes/clients-drivers/python-connector-2025 # Check Snowflake BCR (Behavior Change Releases) open https://docs.snowflake.com/en/release-notes/bcr-bundles ``` ### Step 3: Upgrade on a Branch ```bash # Node.js git checkout -b chore/upgrade-snowflake-sdk npm install snowflake-sdk@latest npm test # Python git checkout -b chore/upgrade-snowflake-connector pip install --upgrade snowflake-connector-python pytest ``` ### Step 4: Handle Common Breaking Changes **Node.js Driver Changes (1.x to 2.x+):** ```typescript // Old: Synchronous configure // snowflake.configure({ logLevel: 'DEBUG' }...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

snowflake-migration-deep-dive

Execute migration to Snowflake from Redshift, BigQuery, or on-prem databases with data transfer, schema conversion, and validation strategies. Use when migrating to Snowflake from another platform, planning data transfers, or re-platforming existing data warehouses to Snowflake. Trigger with phrases like "migrate to snowflake", "snowflake migration", "redshift to snowflake", "bigquery to snowflake", "snowflake replatform".

2,266 Updated today
jeremylongshore
AI & Automation Featured

snowflake-install-auth

Install and configure Snowflake driver authentication for Node.js and Python. Use when setting up snowflake-sdk, snowflake-connector-python, key pair auth, OAuth, or SSO browser authentication. Trigger with phrases like "install snowflake", "setup snowflake", "snowflake auth", "snowflake connection", "snowflake key pair".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-upgrade-migration

Upgrade @hubspot/api-client SDK versions and migrate between API versions. Use when upgrading the HubSpot Node.js SDK, migrating from v1/v2 to v3 APIs, or handling breaking changes in the HubSpot API client. Trigger with phrases like "upgrade hubspot", "hubspot SDK update", "hubspot breaking changes", "migrate hubspot API version", "hubspot v3 migration".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-upgrade-migration

Upgrade Palantir Foundry SDK versions and handle breaking changes. Use when upgrading foundry-platform-sdk, migrating between API versions, or detecting deprecations in Foundry integrations. Trigger with phrases like "upgrade palantir", "palantir migration", "foundry breaking changes", "update foundry SDK".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clickhouse-upgrade-migration

Upgrade ClickHouse server versions and @clickhouse/client SDK safely. Use when upgrading ClickHouse, handling breaking changes between versions, or migrating from older client libraries. Trigger: "upgrade clickhouse", "clickhouse version upgrade", "update clickhouse client", "clickhouse breaking changes", "new clickhouse version".

2,266 Updated today
jeremylongshore