You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DESCRIPTION.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,14 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
9
9
# Release Notes
10
10
11
11
- v3.0.5(TBD)
12
-
- Added a feature that lets you add connection definitions to the `config.toml` configuration file. A connection definition refers to a collection of connection parameters. The connection configuration name must begin with **connections**, similar to the following that defines the parameters for the `prod` connection:
13
-
12
+
- Added a feature that lets you add connection definitions to the `connections.toml` configuration file. A connection definition refers to a collection of connection parameters, for example, if you wanted to define a connection named `prod``:
14
13
```toml
15
-
[connections.prod]
14
+
[prod]
16
15
account = "my_account"
17
16
user = "my_user"
18
17
password = "my_password"
19
18
```
20
-
By default, we look for the `config.toml` file in the location specified in the `SNOWFLAKE_HOME` environment variable (default: `~/.snowflake`). If this folder does not exist, the Python connector looks for the file in the `platformdirs` location, as follows:
19
+
By default, we look for the `connections.toml` file in the location specified in the `SNOWFLAKE_HOME` environment variable (default: `~/.snowflake`). If this folder does not exist, the Python connector looks for the file in the [platformdirs](https://github.com/platformdirs/platformdirs/blob/main/README.rst) location, as follows:
21
20
22
21
- On Linux: `~/.config/snowflake/`, but follows XDG settings
23
22
- On Mac: `~/Library/Application Support/snowflake/`
@@ -26,7 +25,7 @@ Source code is also available at: https://github.com/snowflakedb/snowflake-conne
26
25
You can determine which file is used by running the following command:
0 commit comments